Create index pattern via API kibana
Register a new index pattern via Kibana REST API
curl -X POST http://kibana:5601/api/saved_objects/index-pattern -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d '{"attributes":{"title":"logs-*","timeFieldName":"@timestamp"}}'
more kibana
all 15 commands →
Export saved objects
curl -X POST http://kibana:5601/api/saved_objects/_export -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d '{"type":["dashboard","visualization"],"includeReferencesDeep":true}' -o export.ndjson
Import saved objects
curl -X POST http://kibana:5601/api/saved_objects/_import?overwrite=true -H 'kbn-xsrf: true' -F file=@export.ndjson
Check Kibana health
curl -s http://kibana:5601/api/status | jq '{status: .status.overall.level, version: .version.number}'
List all index patterns
curl -s http://kibana:5601/api/saved_objects/_find?type=index-pattern | jq '.saved_objects[].attributes.title'
Dev Tools console query
GET logs-*/_search
{
"query": {"match": {"level": "error"}},
"size": 10
}