Hi, we are having ELK 5.4.3 and 6.1.1 and in both cases thin one chart - histogram is really slow. Other charts are fine. Any idea why?
I've set "_all" field so "query:*" will search only in one field.
And in Profiler query takes 2,8 ms that's fine nad expands only into boolean query, ConstantScoreQuery -> termquery and IndexOrDocValuesQuery.
I think the problem will be in Kibana. I don't use any scripted field.
{
"size": 0,
"_source": {
"excludes": []
},
"aggs": {
"2": {
"histogram": {
"field": "attrs.rtp-MOScqex-avg",
"interval": 1,
"min_doc_count": 1
},
"aggs": {
"1": {
"avg": {
"field": "attrs.rtp-MOScqex-avg"
}
}
}
}
},
"version": true,
"query": {
"bool": {
"must": [
{
"match_all": {}
},
{
"query_string": {
"analyze_wildcard": true,
"fuzziness": 0,
"query": "*",
"fuzzy_max_expansions": 0
}
},
{
"range": {
"@timestamp": {
"gte": 1538473194625,
"lte": 1538494794625,
"format": "epoch_millis"
}
}
}
],
"must_not": []
}
}
}