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
28
votes
2 answers

Logstash date parsing as timestamp using the date filter

Well, after looking around quite a lot, I could not find a solution to my problem, as it "should" work, but obviously doesn't. I'm using on a Ubuntu 14.04 LTS machine Logstash 1.4.2-1-2-2c0f5a1, and I am receiving messages such as the following…
Josep
  • 563
  • 1
  • 5
  • 12
27
votes
2 answers

Running a local kibana in a container

I am trying to run use kibana console with my local elasticsearch (container) In the ElasticSearch documentation I see docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.2.2 Which…
Bick
  • 17,833
  • 52
  • 146
  • 251
26
votes
2 answers

Can't create two Types to same index elasticsearch & Kibana

I'm new in elasticsearch and kibana I'm doing some exercices with elasticsearch (create index,types and documents..) I created an index 'business' with type 'building' put /business/building/217 { "adresse":"11 Pen Ave", "floors":5, …
YK mar
  • 669
  • 2
  • 10
  • 32
26
votes
2 answers

malformed query, expected END_OBJECT but found FIELD_NAME error in Kibana (Elastic Search)

I am running the following GET query within my Kibana Console and for some reason I am getting a error in the response window as follows : // error [match] malformed query, expected [END_OBJECT] but found [FIELD_NAME] Can anyone suggest why I am…
Zabs
  • 13,852
  • 45
  • 173
  • 297
26
votes
4 answers

Kibana: Search within text for string

I have A log message in Kibana that contains this: org.hibernate.exception.GenericJDBCException: Cannot open connection at org.springframework.orm.hibernate3.HibernateTransactionManager.doBegin(HibernateTransactionManager.java:597) Actual search…
A_Elric
  • 3,508
  • 13
  • 52
  • 85
25
votes
4 answers

How to write comments in Kibana console?

Can you provide me with a hint how to comment out lines in Kibana Dev Tools console? I am interested in comment syntax.
ludgo
  • 465
  • 1
  • 6
  • 13
25
votes
3 answers

What's the difference between the 'field' and 'field.keyword' fields in Kibana?

When adding a filter in kibana all string fields have a entry and .keyword entry. What is the difference?
PaulB
  • 23,264
  • 14
  • 56
  • 75
25
votes
3 answers

SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

Recently our server was rebooted without correctly shutting down the Elastic Search / Kibana. After that reboot, both applications were running but no indices were getting created anymore. I checked logstash setup in debug mode and it is sending…
RayofCommand
  • 4,054
  • 17
  • 56
  • 92
25
votes
3 answers

Can I change the index pattern of a visualization in Kibana?

I have created a full set of visualizations.Due to some reason I have to deleted that index in elastic. We need to create a new pattern of index. Problem is that after deleting index visualizations will not work . I will have to recreate it one by…
Kumar Pallav
  • 590
  • 1
  • 6
  • 16
25
votes
4 answers

Replicate Kibana 3 Dashboard using Kibana 4

I've been using Kibana 3 for event log review for about a year or so and it's worked out great. I can create different dashboards for different types of logs and provide end users (IT folks) with the dashboards they require. In these dashboards I'll…
Sgt B
  • 1,211
  • 2
  • 11
  • 21
24
votes
3 answers

Kibana Regular expression search

I am newbie to ELK. I want to search for docs based on order of occurrence of words in a field. For example, In doc1, my_field: "MY FOO WORD BAR EXAMPLE" In doc2, my_field: "MY BAR WORD FOO EXAMPLE" I would like to query in Kibana for docs where…
Krishna Chaitanya
  • 275
  • 1
  • 2
  • 9
23
votes
2 answers

Elasticsearch reindex error - client request timeout

I am trying to reindex using following line: POST _reindex { "source": { "index": "poi_201705" }, "dest": { "index": "poi_dev_2" } } But I am getting following error in kibana console: { "statusCode": 504, "error": "Gateway…
S S
  • 1,443
  • 2
  • 12
  • 42
22
votes
5 answers

Elasticsearch Docker: flood stage disk watermark [95%] exceeded

I have a problem with my Elasticsearch nodes running in a docker environment. I'm starting them up with docker-compose and after a few minutes they tell me: flood stage disk watermark [95%] exceeded I'm running it on a cluster with rather high…
Stimmot
  • 999
  • 1
  • 7
  • 22
22
votes
3 answers

Can we export all search result data in Kibana?

I am trying to export all search result data in Kibana 5. But it's only exporting count of the result. Is there any way to export all data in CSV format in Kibana? Tried so far Clicked on symbol (^) at the bottom of search result visualization.…
Roopendra
  • 7,674
  • 16
  • 65
  • 92
22
votes
1 answer

How to create multiple indexes in logstash.conf file?

I used the following piece of code to create an index in logstash.conf output { stdout {codec => rubydebug} elasticsearch { host => "localhost" protocol => "http" index => "trial_indexer" } } To…
kavya
  • 759
  • 4
  • 14
  • 31