Monitoring data not appearing

Hello,
I used these setting on my elasticsearch nodes temlplate to make indexing faster
POST _template/default
{
"index_patterns": ["*"],
"order": -1,
"settings": {
"number_of_shards": "1",
"number_of_replicas": "0",
"refresh_interval" : -1
}
}

But mow its giving me errors that no monitoring data found and no cluster found ,
i used this command and got the result in the below image

i re-changed it using
POST _template/default
{
"index_patterns": ["*"],
"order": -1,
"settings": {
"number_of_shards": "1",
"number_of_replicas": "0",
"refresh_interval" : "30s"
]
}
}

and restarted the cluster but all the monitoring refresh intervals are still -1
i want to restore them to "5s"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.