官方给出了如下的通过cURL调用kibana api的方法,但只能在default空间创建index pattern。
如果要指定space的话需要添加什么呢?
curl -k -u username:passwd -X POST "localhost:5601/api/saved_objects/index-pattern/my-pattern" -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d'
{
"attributes": {
"title": "my-pattern-*"
}
}
'
如果要指定space的话需要添加什么呢?
curl -k -u username:passwd -X POST "localhost:5601/api/saved_objects/index-pattern/my-pattern" -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d'
{
"attributes": {
"title": "my-pattern-*"
}
}
'
1 个回复
medcl - 今晚打老虎。
赞同来自: zhuhaidong