I did the upgrade to Alteryx 2018.1 on our scheduler on friday. Most of our processes have moved across fine but the process that pulls our logs from the MongoDB has started throwing an error.
The Macro I used is based on
https://gallery.alteryx.com/#!app/Alteryx-Server-Scheduler-Status/5786057ca248970b4462ef8b
Which has been modified using filter similar to this
https://community.alteryx.com/t5/Data-Sources/Date-Filter-in-Mongo-Input/td-p/92957
It currently uses this filter that then has the id dynamically changed on runtime:
{_id:{$gt:ObjectId("5685c1800000000000000000")}}
I am getting this error:
Error: MongoDB Input (3): Got parse error at "_", position 1: "SPECIAL_EXPECTED": could not parse JSON document
I also tried:
{"_id":{"$gt":ObjectId('5685c1800000000000000000')}}
--> Error: MongoDB Input (3): Got parse error at "O", position 14: "SPECIAL_EXPECTED": could not parse JSON document
Anyone have any ideas?
Workflow is attached