Hello,
telegraf have a plugin for logstash.
The actual parser works for losgstash 6 but the format had change during the release 7.
Before 7 :
"queue": {
"events": 103,
"type": "persisted",
"capacity": {
"queue_size_in_bytes": 1872391,
"page_capacity_in_bytes": 67108864,
"max_queue_size_in_bytes": 1073741824,
"max_unread_events": 0
},
After 7 :
"queue" : {
"type" : "persisted",
"events_count" : 0,
"queue_size_in_bytes" : 37677344,
"max_queue_size_in_bytes" : 6442450944
},
We need to change the structure of data in the plugin.
Hello,
telegraf have a plugin for logstash.
The actual parser works for losgstash 6 but the format had change during the release 7.
Before 7 :
After 7 :
We need to change the structure of data in the plugin.