《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.3.Kibana基础应用(5) https://developer.aliyun.com/article/1228980
判断索引 test 是否存在
HEAD test
返回
200 - OK
打开索引 test
POST test/_open
返回
{ "acknowledged" : true, "shards_acknowledged" : true, "indices" : { "test" : { "closed" : true } } }
关闭索引 test
POST test/_close
返回
{ "acknowledged" : true, "shards_acknowledged" : false, "indices" : { } }
查看索引 test 状态
GET test/_stats
返回
{ "_shards" : { "total" : 2, "successful" : 2, "failed" : 0 }, "_all" : { "primaries" : { "docs" : { "count" : 0, "deleted" : 0 }, "store" : { "size_in_bytes" : 230, "reserved_in_bytes" : 0 }, "indexing" : { "index_total" : 0, "index_time_in_millis" : 0, "index_current" : 0, "index_failed" : 0, "delete_total" : 0, "delete_time_in_millis" : 0, "delete_current" : 0, "noop_update_total" : 0, "is_throttled" : false, "throttle_time_in_millis" : 0 }, ......
删除索引 test
l 根据索引名称删除
DELETE test?pretty
l 可以一次删除多个索引(以逗号间隔)删除所有索引 _all 或通配符 *
查看索引模板
GET _template #查看所有索引摸板 GET _template/temp* #查看以temp开头的索引模板 GET _template/template_1,template_2 #查看template_1和template_2索引摸板 GET _template/template_name #查看名称为template_name的索引摸板
删除索引模板
DELETE _template/template_name
返回
Grok Debugger 调试
更多模式参考:http://grokdebug.herokuapp.com/patterns
《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.3.Kibana基础应用(7) https://developer.aliyun.com/article/1228978