Port 5601 is the default Kibana web interface port. Kibana is the visualization layer of the Elastic Stack (ELK – Elasticsearch, Logstash, Kibana). Kibana connects to Elasticsearch on port 9200. Port 5601 should never be exposed directly to the internet – use nginx reverse proxy with authentication instead.
Port Number
5601
Protocol
TCP
Service
Kibana Web UI
Range
IANA Registered (1024–49151)
Check Kibana health status (green/yellow/red)
curl -s http://localhost:5601/api/status | jq .status.overall.levelCount dashboards in Kibana
curl -s http://localhost:5601/api/saved_objects/_find?type=dashboard | jq .totalVerify Kibana process is listening
ss -tnlp sport = :5601curl http://localhost:5601/api/status
curl -u elastic:password http://localhost:5601/api/fleet/agentsKibana was created as a PHP frontend for Logstash in 2011, rewritten in Node.js for Kibana 3 (2013). It became the standard ELK visualization layer. Kibana 7.0 (2019) introduced Elastic Security (SIEM). OpenSearch Dashboards forked from Kibana 7.10 in 2021.
Kibana vs Grafana for log visualization?
Kibana is purpose-built for Elasticsearch data – native KQL queries, Discover log exploration, and deep integration with Elastic APM/Security. Grafana is multi-datasource (Prometheus, Loki, ES, InfluxDB) and better for metrics dashboards. Use Kibana for log search and SIEM, Grafana for infrastructure metrics.