Questions tagged [kibana]

Kibana is an application for exploring and visualizing your data. It helps you find and demonstrate trends in your data with tools for searching, creating visualizations, and combining those visualizations to build dashboards.

Kibana is an application for exploring and visualizing your data. It helps you find meaning in that data with tools for searching, creating visualizations, and combining those visualizations to build dashboards. It is commonly used within the system administration, logging, and business analytics communities but is compatible with just about any data.

Kibana is an open-source project and uses the engine, another open-source project, for its powerful search and aggregation capabilities.

As a part of the , Kibana and elasticsearch can be paired with to build a powerful logging analysis solution.

Steps to install Kibana - Installation

Overview: Kibana

Related tags:

, , ,

6349 questions
12
votes
1 answer

Is it possible to run an elasticsearch aggregation query in Kibana?

I would like to run the following aggregation query in Kibana: GET _search { "size": 0, "aggs": { "group_by_host": { "terms": { "field": "host", "size": 20 } } } } I can run it in the dev tools console…
mark
  • 59,016
  • 79
  • 296
  • 580
12
votes
5 answers

Logstash log tail in browser

So I setup Logstash 1.4.2 with ElasticSearch and Kibana using logstash-forwarder(lumberjack) and thats working pretty well but I also wanted to show just a raw log output(maybe searchable) via a browser similar to something like papertrail? Is this…
arduima
  • 413
  • 6
  • 13
11
votes
3 answers

kibana-Unable to retrieve version information from Elasticsearch nodes.missing authentication credentials for REST request

Im trying to Install kibana 8.1.1 on windows10 the thing is when it starts installions it stops on an error like that [2022-04-16T01:16:59.744+00:00][ERROR][elasticsearch-service] Unable to retrieve version information from Elasticsearch nodes.…
Lulu Ka.
  • 111
  • 1
  • 1
  • 3
11
votes
4 answers

how can i generate enrollment token for elasticsearch to connect with kibana?

I am having running elastic-search on my Kubernetes cluster with host http://192.168.18.35:31200/. Now I have to connect my elastic search to the kibana. For that an enrollment token needs to be generated but how? When I login to the root directory…
ashique
  • 935
  • 2
  • 8
  • 26
11
votes
1 answer

What does actually minimum_should_match in percentage work for query search?

I would to understand more how minimum_should_match works in elasticsearch for a a query search GET /customers/_search { "query": { "bool": { "must":[ { "query_string":{ "query": "大月亮", …
Sorin Penteleiciuc
  • 653
  • 1
  • 10
  • 26
11
votes
1 answer

docker-compose.yml for elasticsearch 7.0.1 and kibana 7.0.1

I am using Docker Desktop with linux containers on Windows 10 and would like to launch the latest versions of the elasticsearch and kibana containers over a docker compose file. Everything works fine when using some older version like 6.2.4. This is…
RickyTad
  • 281
  • 1
  • 3
  • 15
11
votes
1 answer

Running Filebeat in windows

I set up filebeat on windows recently using these instructions https://www.elastic.co/downloads/beats/filebeat but it forces me to keep a cmd prompt open running the command filebeat.exe -c filebeat.yml I am wondering if there is a way to run this…
ScipioAfricanus
  • 1,331
  • 6
  • 18
  • 39
11
votes
2 answers

FileBeat directly to ELS or via LogStash?

We are installing ELS and Kibana for log aggregation/analysis. The first system to use it is greenfield so we output structured logs from the services that make up our system. Given that we don't need to add structure to our logs I was planning on…
Myles McDonnell
  • 12,943
  • 17
  • 66
  • 116
11
votes
1 answer

How to negate filter query in Kibana

I'm using ELK stack and I'm trying to find out how to visualize all logs except of those from specific IP ranges (for example 10.0.0.0/8). Is there any way how to negate filter query: {"wildcard":{"src_address":"10.*"}} I put it to Buckets -> Split…
Majzlik
  • 199
  • 1
  • 3
  • 13
11
votes
1 answer

BigQuery vs Elasticsearch for analysing and storing application logs

I'm investigating the merits of using BigQuery for gaining insights into application logfiles. The logs are produced by Java and C# applications, most of them on cloud-based VMs. I'm interested to hear whether others have done this and of the…
user3628387
  • 139
  • 1
  • 2
  • 9
11
votes
1 answer

analyzed or not_analyzed, what to choose

I'm using only kibana to search ElasticSearch and i have several fields that can only take a few values (worst case, servername, 30 different values). I do understand what analyze do to bigger, more complex fields like this, but the small and simple…
higuita
  • 2,127
  • 20
  • 25
11
votes
4 answers

OR filter on dashboard in Kibana 4

I want to create a dashboard which shows information about a limited set of request values : request:("/path1" OR "/path2" OR "/path3") What I've tried so far: I can add filters to the dashboard by clicking on a part of a pie chart, but all these…
Conffusion
  • 4,335
  • 2
  • 16
  • 28
11
votes
1 answer

Adding fields depending on event message in Logstash not working

I have ELK installed and working in my machine, but now I want to do a more complex filtering and field adding depending on event messages. Specifically, I want to set "id_error" and "descripcio" depending on the message pattern. I have been trying…
Natsen
  • 175
  • 1
  • 2
  • 13
11
votes
1 answer

New Fields Not Visible in Kibana

I have Kibana 4.0.1 running on top of elasticsearch 1.4.4. It was very smooth and virtually had no setup time. Suddenly I have run into a problem. If I add a new field in my elasticsearch index, it's not visible in fields section. I can still query…
azi
  • 929
  • 1
  • 11
  • 31
11
votes
1 answer

How do I create a scripted field in kibana 4 that uses aggregation?

Kibana 4 has a new feature to add scripted fields and write custom scripts. I wish to write a script that uses aggregations. Its easy to do simple arithmetic operations in scripted scripts but for doing aggregations I am puzzled. I am a new comer to…
Shubham Mishra
  • 1,053
  • 4
  • 13
  • 23