Kibana显示您看到的数据可能不完整或错误



配置我的elk堆栈=>Kibana,弹性搜索和filebeat。所有工作都很好,但是,当我想查看kibana上的日志时,我收到了这个错误

8个碎片中有1个失败您看到的数据可能不完整或错误。

See response:
{
"took": 332,
"timed_out": false,
"_shards": {
"total": 9,
"successful": 8,
"skipped": 8,
"failed": 1,
"failures": [
{
"shard": 0,
"index": ".apm-agent-configuration",
"node": "_KJoEVfvT9W8-ezUwcdPlg",
"reason": {
"type": "illegal_argument_exception",
"reason": "Trying to retrieve too many docvalue_fields. Must be less 
than or equal to: [100] but was [136]. This limit can be set by 
changing the [index.max_docvalue_fields_search] index level 
setting."
}
}
]
},
"hits": {
"total": 0,
"max_score": 0,
"hits": []
}
}

拜托,你知道这个吗?

可以通过更改该索引的index.max_docvalue_fields_search设置来解决问题:

PUT .apm-agent-configuration/_settings
{
"index.max_docvalue_fields_search": 200
}

最新更新