0
0
Elasticsearchquery~20 mins

Kibana setup and connection in Elasticsearch - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Kibana Setup Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Kibana's Role

What is the primary purpose of Kibana in the Elastic Stack?

ATo store and index data for fast search and analytics
BTo visualize and explore data stored in Elasticsearch
CTo ingest and transform data before indexing
DTo secure Elasticsearch clusters with authentication
Attempts:
2 left
💡 Hint

Think about which tool helps you see and interact with your data.

Predict Output
intermediate
1:30remaining
Kibana Connection URL Format

Given the following Kibana configuration snippet, what is the URL Kibana will use to connect to Elasticsearch?

elasticsearch.hosts: ["http://localhost:9200"]
Ahttp://localhost:5601
Bhttp://localhost:9300
Chttp://localhost:9200
Dhttps://localhost:9200
Attempts:
2 left
💡 Hint

Look at the port number and protocol in the configuration.

🔧 Debug
advanced
2:00remaining
Troubleshooting Kibana Connection Error

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?

AElasticsearch index patterns are not created in Kibana
BKibana is running on the wrong port 5602 instead of 5601
CKibana configuration file is missing the <code>server.host</code> setting
DElasticsearch is not running or not reachable at the specified URL
Attempts:
2 left
💡 Hint

Think about what would cause a connection failure to Elasticsearch.

📝 Syntax
advanced
1:30remaining
Correct Kibana Configuration for Elasticsearch Connection

Which of the following Kibana configuration lines correctly sets the Elasticsearch hosts to connect to a cluster running on https://es.example.com:9200?

Aelasticsearch.hosts: ["https://es.example.com:9200"]
Belasticsearch.hosts = https://es.example.com:9200
Celasticsearch.hosts: "https://es.example.com:9200"
Delasticsearch.hosts: https://es.example.com:9200
Attempts:
2 left
💡 Hint

Remember the YAML syntax for lists and strings.

🚀 Application
expert
2:30remaining
Kibana Dashboard Access Control Setup

You want to restrict access to certain Kibana dashboards based on user roles. Which Elastic Stack feature should you configure to achieve this?

AKibana Spaces with Role-Based Access Control (RBAC)
BElasticsearch Index Lifecycle Management (ILM)
CElasticsearch Snapshot and Restore
DKibana Canvas Workpads
Attempts:
2 left
💡 Hint

Think about how Kibana organizes dashboards and controls user permissions.