Questions tagged [kibana-5]

Kibana is an open source analytics and visualization platform designed to work with Elasticsearch. You use Kibana to search, view, and interact with data stored in Elasticsearch indices. You can easily perform advanced data analysis and visualize your data in a variety of charts, tables, and maps.

Kibana is an open source analytics and visualization platform designed to work with Elasticsearch. You use Kibana to search, view, and interact with data stored in Elasticsearch indices. You can easily perform advanced data analysis and visualize your data in a variety of charts, tables, and maps.

Kibana is a visualization tool that is usually used along with Logstash and Elastic search. It was created by the elastic co. It can be use on elastic cloud or on stand alone server.

Steps to install Kibana - http://www.riptutorial.com/kibana/topic/8843/getting-started-with-kibana

233 questions
1
vote
1 answer

How to pass dynamic variable value to Filebeat?

I am new to ELK stack. I configured ELK stack Filebeat, Logstash, ElasticSearch, Kibana by updating related configuration(yml) files. It was working fine but What I was trying to do I changed the filebeat configuration parameter name with variable…
Rohit Luthra
  • 1,256
  • 17
  • 27
1
vote
0 answers

Calculating time between specific logs based on condition

I have a lists of system logs in a log file ,in which I have to calculate time difference between two particular logs based on some condition @timestamp message May 19th 2016, 02:55:29.003 just some log May 19th 2016,…
Peru
  • 67
  • 3
1
vote
2 answers

Elasticsearch results limit issue

I have a python script that should print all the ID's of people in my JSON files stored in elasticsearch. But I only get ten results(truncated), as I know that by default only 10 results are shown. from elasticsearch import Elasticsearch import…
Cyber_Tron
  • 299
  • 1
  • 6
  • 17
1
vote
0 answers

Can someone share nginx config for reverse proxying Kibana 5.1.1

I am newbie to Nginx and reverse proxy I am struggling to make accessing of kibana through Nginx work with latest versions of Kibana Kibana 5.1.1 This is current config server { listen 8070; location ~ /analytics/(?.*)…
Ramyachinna
  • 413
  • 1
  • 8
  • 20
1
vote
0 answers

Kibana displaying wrong data

So i'm currently working on some temperature logging. I've set up a php-script that will pump data directly in elasticsearch. So far, so good. For displaying that data i've used Kibana 5. But Kibana is somehow displaying not the right data :(. Here…
Jemx
  • 45
  • 5
1
vote
2 answers

Query on number field matching string fields

I have an ELK stack setup. When I am performing a query on number fields then it is also matching against string fields. For example, I am sending Load Balancer logs to ELK and if I perform backend_processing_time:>5 on that then it is matching…
shivams
  • 2,597
  • 6
  • 25
  • 47
1
vote
2 answers

Kibana discovery not showing all types within an index

I have an elastic search index which contains five different types of documents. Totally I have 50,000 documents, each mapping type contains 10,000 documents. index name : fruits mapping types : apple, orange, banana, papaya, grapes. Now I indexed…
Karthikeyan KR
  • 1,134
  • 1
  • 17
  • 38
1
vote
1 answer

Subtract two values in Kibana for specific timestamps

This is the first time Im doing this and cant seem to find an online resource. The index is aggregated at a daily level. So one record per day. 26 April: { "_index": "gamers", "_type": "dailyAgg", "_id": "dailyAgg-2015-04-26T00:00:00Z", …
steven
  • 644
  • 1
  • 11
  • 23
1
vote
1 answer

Kibana - Can I combine values from different rows into one based on aggregations?

Actual: Expected: I want to display it in a data table vis.
Madiha
  • 115
  • 2
  • 9
1
vote
1 answer

KIBANA: can I edit the event onclick over one chart(histogram-piechart)?

I made an histogram on kibana dashboard and until here everything is fine. When I click over one column happen this: https://i.stack.imgur.com/Me797.png I really don't like this visual whit just the one big column selected so I want to edit the…
ATO
  • 37
  • 3
1
vote
1 answer

Logstash: Using offset as document_id

I have following setup: FileBeat -> Logstash -> Elasticsearch -> Kibana (all 5.1.1) When I push the log file (JSON) into Filebeat, and If I try to see it in Kibana Interface, the same logs are added 3-4 time (duplicates). After checking the…
Vishal Kinjavdekar
  • 321
  • 1
  • 5
  • 14
1
vote
1 answer

Configure Elasticsearch, Kibana 5, Logstash with http input

I am trying to install the ELK stack in the last couples of days but unfortunately I could not get it to work. The steps that I've done: installing Elasticsearch with X-pack. installing Kibana 5 with X-pack. kibana.yml: server.port:…
1
vote
0 answers

is it possible to overlay two graphs (line and bar) in kibana

I am creating few graphs in Kibana to show statistics about the process. I have graph which takes how much time process took each time we ran the program. I show that using bar charts, however it would be nice to have a line graph on top of this bar…
Gaurang Shah
  • 11,764
  • 9
  • 74
  • 137
1
vote
0 answers

Elasticsearch5, storing servers logs, find all servers having two given log message

I have the following mapping (I'm using elasticsearch5) curl -XPUT 'http://localhost:9200/server_logs8?pretty' -d ' { "mappings": { "kafka-connect": { "properties": { "message": { "type": "string" }, …
allan.simon
  • 3,886
  • 6
  • 35
  • 60
1
vote
1 answer

Kibana integrated with Firehose

I am pushing two different tools data in Elastic search using Kinesis Firehose. I need to display data in Kibana and I am able to do it separately But i want these two indexes to display in single index that means want to merge index and…