Hi,
Is there a easy way to get multiple JSONs using inputs.amqp_consumer from RabbitMQ? The payload message looks like below:
{“event_type”: “purge”, “ip_src”: “172.16.22.1”, “ip_dst”: “100.100.100.100”, “stamp_inserted”: “2020-10-18 23:25:00”, “stamp_updated”: “2020-10-18 23:29:57”, “packets”: 48, “bytes”: 4032, “writer_id”: “default_amqp/27932”}
{“event_type”: “purge”, “ip_src”: “172.16.22.1”, “ip_dst”: “172.16.22.3”, “stamp_inserted”: “2020-10-18 23:25:00”, “stamp_updated”: “2020-10-18 23:29:57”, “packets”: 4, “bytes”: 246, “writer_id”: “default_amqp/27932”}
The error I get:
E! [inputs.amqp_consumer] Error in plugin: invalid character ‘{’ after top-level value
Thanks!