Hello,
I'm not managing to get my Logstash metrics to be shown in Kibana's Stack Monitoring UI:
Even though it looks like Metricbeat is sending events to the cluster:
GET .monitoring-logstash-7-mb-2020.11.27/_search
{
"size": 0,
"aggs": {
"1": {
"terms": {
"field": "cluster_uuid",
"size": 10
}
}
}
}
{
"took" : 1,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 235,
"relation" : "eq"
},
"max_score" : null,
"hits" : [ ]
},
"aggregations" : {
"1" : {
"doc_count_error_upper_bound" : 0,
"sum_other_doc_count" : 0,
"buckets" : [
{
"key" : "T-qSzUf1QNOYDw6-nGkQbA",
"doc_count" : 234
},
{
"key" : "M3nD3LkeQaCR9MtyvlpEzw",
"doc_count" : 1
}
]
}
}
}
By the way, cluster T-qSzUf1QNOYDw6-nGkQbA
is the one coming from Logstash/Metricbeat, and the other one (M3nD3LkeQaCR9MtyvlpEzw
) is the monitoring cluster itself (Elastic Cloud). I manually set the cluster_uuid
for one document to the monitoring cluster's uuid guessing that Kibana would only show data for the same uuid... Didn't work.
So, how do I manage to:
- See my Logstash monitoring data in the Stack Monitoring UI
- See my Logstash pipelines in the Pipeline Management UI
Cluster: 7.10
Logstash: 7.3
Metricbeat: 7.10
Thank you!