Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

...

Here, "cluster_name" is changed to "cluster_name.keyword"

This improved the Dashboard a lot:

 

Image Added

But in several places, the red exclamation sign is still telling us that there is a problem, like:

Image Added

So we need to change the field - documented in https://www.elastic.co/guide/en/elasticsearch/reference/5.0/fielddata.html

I ran this in Kibana's Dev Console for the status field (not the request as the screenshot shows):

Kodeblok
PUT elasticsearch_metrics-*/_mapping/message
{
  "properties": {
    "status": { 
      "type":     "text",
      "fielddata": true
    }
  }
}

And got

Kodeblok
{
  "acknowledged": true
}