当前位置:   article > 正文

kibana 使用笔记_kibana 中get _template

kibana 中get _template

001.获得模板

GET _template

GET _template/es_table_name   

002.删除索引

DELETE _template/es_table_name

003.创建索引

PUT _template/es_table_name 

{

....

}

从001获得模板改成003创建索引的修改点:

0.#get: GET _template/es_table_name         //执行获得待修改的代码
1.#add: DELETE _template/es_table_name //增加删除
2.#add: PUT _template/es_table_name        //
3.#del:  "es_table_name" : {                          //删除不必要的
4.#del:  }                                                        //删除不必要的

004.删除索引

DELETE es_table_name

005.查询es表数据

GET r_new_park_detail_date_2021-04-19/_search


006.ES的sql查询es表数据

POST _xpack/sql?format=txt
 {
   "query":"""


""",
   
   "fetch_size":110
 }


007 查看mapping

GET /r_new_park_department_park_index_2021-04-22/_mapping

008

GET /r_new_park_department_park_index_2021-04-22/_stats

009

POST /_xpack/sql?format=txt
{
"query": """

select count(*) from "r_new_park_department_park_index_2021-04-22" where attackpark_depart_cust_ratio_chain is null

"""
}

010

GET _search
{
"query": {
"match_all": {}
}
}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/200650
推荐阅读
  

闽ICP备14008679号