首页 > Windows开发 > 详细

[ELK]-使用API自动创建kibana索引

时间:2020-05-09 22:49:26      阅读:230      评论:0      收藏:0      [点我收藏+]

官网地址

https://www.elastic.co/guide/en/kibana/current/saved-objects-api-delete.html
https://www.elastic.co/guide/en/kibana/current/saved-objects-api-create.html

添加索引

curl -X POST "10.0.0.51:5601/api/saved_objects/index-pattern/twitter" -H ‘kbn-xsrf: true‘ -H ‘Content-Type: application/json‘ -d‘
{
  "attributes": {
    "title": "twitter"
  }
}
‘

删除索引

curl -X DELETE "10.0.0.51:5601/api/saved_objects/index-pattern/twitter" -H ‘kbn-xsrf: true‘

[ELK]-使用API自动创建kibana索引

原文:https://www.cnblogs.com/alaska/p/12860182.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!