Kibana按照索引过滤数据

    1.创建索引模式

Es查询工具使用

  2.查询索引中的数据

 Es查询工具使用

 

Es查询不返回数据

Es查询工具使用

    创建索引的时候指定mapping

mappings={
"mappings": {
    "_doc": {
        "_source": {
            "enabled": True
        }
    }
  }
}
# print("创建新的索引")
es.indices.create(index=indexname,body=mappings)
View Code

相关文章:

  • 2021-08-10
  • 2021-10-05
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-24
  • 2022-12-23
猜你喜欢
  • 2021-10-16
  • 2021-06-20
  • 2022-12-23
  • 2021-07-20
  • 2021-06-25
  • 2022-01-24
  • 2021-08-20
相关资源
相似解决方案