Closed jaketoolson closed 7 years ago
in JSON, addons
's value must be an array of objects. i.e:
"addons": [{...}, {...}]
for PHP, i imagine that looks something like:
"keen" => [
"addons" => [[
"name" => "keen:date_time_parser",
"input" => [ "date_time" => "updated_at.date" ],
"output" => "updated_at_timestamp"
]]
]
also note that your input
might be incorrect. it's pointing to a property called updated_at.date
, but your value seems to be just called updated_at
(unless $claim->updated_at
is a struct that has a .date
).
@dkador my updated_at
is an object with a date
property.
Thanks, I've made the change to the addons array.
cool, glad you have it working now. please re-open if you see any other issues.
I'm sending the following event:
I'm receiving the following error:
I'm not sure how to construct the addons otherwise.