elasticsearch - Kibana 显示 The data you are seeing might be incomplete or wrong

标签 elasticsearch kibana filebeat elk

配置我的 elk stack => Kibana、elasticsearch 和 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
}

关于elasticsearch - Kibana 显示 The data you are seeing might be incomplete or wrong,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63496718/

相关文章:

elasticsearch - 如何在Elasticsearch中用 “Others”替换所有空/空白值?

elasticsearch - Kibana-给定索引,如何依靠它找到保存的对象?

elasticsearch - 在elasticsearch中为消息字段创建自定义grok模式

amazon-web-services - FIlebeat-Redis-Logstash : Filebeat fast and Logstah slow, logstash 线程?

elasticsearch - 如何让filebeat忽略某些容器日志

elasticsearch - Logstash geoip随机故障

elasticsearch - 嵌套对象中的脚本字段,特别是地理形状

centos - 更改 logging.dest 后 Kibana 无法在 CentOs 7 上启动

java - Elasticsearch Java 客户端 SearchResponse 无法识别聚合/存储桶

json - 日期字段上的Elasticsearch范围查询始终给出空结果