hi All!
just a quick question regarding the statistics with persistent queues enabled: the pipeline stats command localhost:9600/_node/stats/pipeline?pretty
shows an empty queue:
"queue" : {
"events" : 0,
"type" : "persisted",
"capacity" : {
"page_capacity_in_bytes" : 262144000,
"max_queue_size_in_bytes" : 1073741824,
"max_unread_events" : 0
},
"data" : {
"path" : "/var/lib/logstash/queue/main",
"free_space_in_bytes" : 14430138368,
"storage_type" : "ext4"
}
},
"id" : "main"
}
but the logstash process has been running many hours already with the disconnected ES output (the ES server is unreachable, LS receiving new messages all the time).
I would expect to see a non-zero queue, as the messages cannot be sent out.
Am I looking at the wrong place?
Thanks!