Export dashboard kibana
Export a Kibana dashboard with all dependencies
curl -s 'http://kibana:5601/api/saved_objects/_export' -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d '{"type":"dashboard","includeReferencesDeep":true}' -o dashboard.ndjson
more kibana
all 15 commands →
Import dashboard
curl -X POST 'http://kibana:5601/api/saved_objects/_import' -H 'kbn-xsrf: true' --form file=@dashboard.ndjson
KQL: filter by field value
status: 404 AND method: GET
KQL: range query
response_time > 500 AND @timestamp > now-1h
KQL: wildcard search
message: *OOMKilled*
KQL: nested field filter
kubernetes.pod.name: web-* AND kubernetes.namespace: prod