I'm running a new prod 7.2 cluster. Want to view my ES logs in kibana as I did in dev cluster. I understand recommendation to use a seperate monitoring cluster, but for now, just want local. I set my cluster settings set dymanically to this:
{
"persistent" : {
"xpack" : {
"monitoring" : {
"elasticsearch" : {
"collection" : {
"enabled" : "true"
}
},
"collection" : {
"enabled" : "true"
}
}
}
}
but if I run GET /_cat/indices, no .monitoring* indices are created, and in kibana monitoring tab, I get no monitoring data found message.
Any suggestions?
One note, my cluster has no ingest nodes, only data, master, and coordinating. I saw in docs that for remote monitoring cluster, at least one ingest node is required, but i assumed this didn't apply for local output. Is this correct?