
Kibana most useful keyboard shortcuts
π Published: β’ Thomas Queste
My most used keyboard shortcuts for Kibana. Yes, Kibana has keyboard shortcuts! π
TL;DR
- β¨οΈ Ctrl/Cmd + Enter β Execute current request
- β¨οΈ Ctrl/Cmd + β (and β) β Go the previous (or next) request
- β¨οΈ Ctrl/Cmd + I β Auto-indent current request
- β¨οΈ Ctrl/Cmd + / β Open relevant documentation
1. Run the current request
This well-known shortcut is essential for productivity, yet many still reach for their mouse.
Similar to BigQuery console and other development tools.
β¨οΈ Control/Cmd + Enter β Execute your current request
2. Move between requests
Easy ones:
β¨οΈ Control/Cmd + β (and β) β Go to the previous (or next) request
3. Fix indentation in your request
Perfect for when you paste JSON that comes in misformatted.
While it wonβt fix invalid JSON syntax, it instantly fixes indentation issues.
β¨οΈ Control/Cmd + I β Auto-indent
Note: This doesnβt fix malformed JSON, but thatβs a feature opportunity for AI integration! (I should do a PR for that!)
4. Access documentation
This shortcut quickly opens documentation relevant to your query.
While helpful, it has limitations because it currently opens general documentation for the query type (_search
) rather than specific type (match_phrase
).
β¨οΈ Control/Cmd + / (slash) β Open documentation