What is the primary purpose of Kibana in the Elastic Stack?
Think about which tool helps you see and interact with your data.
Kibana is the visualization layer of the Elastic Stack. It connects to Elasticsearch and lets users create charts, dashboards, and explore data visually.
Given the following Kibana configuration snippet, what is the URL Kibana will use to connect to Elasticsearch?
elasticsearch.hosts: ["http://localhost:9200"]
Look at the port number and protocol in the configuration.
The configuration shows Kibana connecting to Elasticsearch at http://localhost:9200, which is the default Elasticsearch HTTP port.
You see this error in Kibana logs: Unable to connect to Elasticsearch at http://localhost:9200. Which of the following is the most likely cause?
Think about what would cause a connection failure to Elasticsearch.
If Kibana cannot connect to Elasticsearch, it usually means Elasticsearch is down, unreachable, or the URL is incorrect. Other options do not directly cause connection failures.
Which of the following Kibana configuration lines correctly sets the Elasticsearch hosts to connect to a cluster running on https://es.example.com:9200?
Remember the YAML syntax for lists and strings.
The correct syntax uses a YAML list with square brackets and quotes around the URL. Options B, C, and D are invalid YAML or missing list brackets.
You want to restrict access to certain Kibana dashboards based on user roles. Which Elastic Stack feature should you configure to achieve this?
Think about how Kibana organizes dashboards and controls user permissions.
Kibana Spaces allow grouping dashboards and visualizations, and combined with RBAC, you can restrict user access to specific spaces and dashboards.