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

Importing json file to Kibana via UI

I've just move from 5.2.1 to 5.2.2 (own bug fixed) Before I migrated, I've export all queries/ searches to json file in order to upload it to the new Kibana version At first, I've update the ES version and to make sure all works, I reopen Kibana…
Aviv Cohen
  • 69
  • 6
1
vote
1 answer

Mix nested query with scripted filter

Context We have data about malware in elasticsearch. We must analyse it with kibana. For each sample (malware), we have some SSL certificates. These are nested fields. I'm new to elasticsearch and have difficulties to find what I want in the…
rm4
  • 711
  • 4
  • 15
1
vote
0 answers

Using --plugin-dir parameter when starting Kibana

I am developing plugins for Kibana 5.2.1 on Windows 10. I have the following directory structure: KibanaAll Kibana (this is the regular Kibana installation) Plugins MyPlugin1 MyPlugin2 To start Kibana with a single plugin, I go to the Kibana…
Forcent Vintier
  • 159
  • 1
  • 7
1
vote
2 answers

How to generalize the kibana visualization (bar chart)

In Kibana visualization (bar chart), i have created the bar chart for one of the index pattern (eg: Aircel), I have created the another index pattern (eg: Nationwide), having the similar columns for both index patterns with different data. My…
1
vote
0 answers

Import CSV File as input in logstash and pass the output data to elasticsearch

I am new to elastic search and I am trying to import data from csv to elasticsearch using logstash and want to show output in kibana. I am using the below logstash conf file. input { file { path =>…
1
vote
1 answer

Self host kibana 5.1.1 keeps getting request timeout while connecting to AWS Elasticsearch 5.1

We are testing AWS elasticsearch service 5.1 with selfhost kibana 5.1. We keep getting elasticsearch plugin request timeout error also the endpoint is correctly configured in kibana.yml. IAM policy is correctly configured since logstash servers…
Ritchie G.
  • 11
  • 2
1
vote
1 answer

How to put an image in a kibana visualization plugin?

I want to put an image in my visualization. This is a very static vis. The html I got so far: As…
Obstc0rp
  • 41
  • 4
1
vote
1 answer

ElastAlert and Kibana 5.0

I am trying to use elastalert with Kibana 5.0 and I see that it says in the documentation for elastalert works for 1.x and 2.x . I have kibana 5.0 and want to know if anyone got elastalert to work with kibana 5.0
1
vote
1 answer

Visualising time difference between two fields in Elasticsearch and Kibana

I'm trying to visualize the time difference (in hours) between two date fields. The fields are declared like this: "fieldname": { "type": "date" }, The solution I found was: , "script_fields" : { "timedifference" : { "script" :…
Rick van Lieshout
  • 2,276
  • 2
  • 22
  • 39
1
vote
1 answer

Migrating dashboards from Kibana 4 to Kibana 5

I'm trying to migrate my old dashboards fron kibana 4.1.2 to kibana 5.0.0. , but haven't been able to successfully do it. I took an export of my searches, visualisations and dashboards from the older version and imported it to the newer version.…
ashutosh singh
  • 76
  • 3
  • 11
1
vote
2 answers

kibana 5 upload CSV

I am trying to use Kibana 5 to upload CSV. https://www.elastic.co/blog/kibana-5-0-0-alpha4 as per this link - we have a provision to upload the CSV file in kibana 5. I tried accessing to upload CSV as mentioned in the document as Management .. I…
Soundarya Thiagarajan
  • 574
  • 2
  • 13
  • 31
0
votes
1 answer

Consuming multiple data files from ES Cluster in Kibana

Is it possible to consume multiple data files from an Elasticsearch cluster in real-time to create a visualization in a Kibana dashboard? I am expecting multiple ndjson files and everytime I receive a new file I want to merge its visualization to…
0
votes
1 answer

How do I create a Kibana visualization that shows the SUM of requests to each unique Filter value?

I'm trying to create a Kibana visualization that shows the number of requests per service. Service is identified through a Filter called Service_name I believe I can use SUM, however, each visualization either shows the total of all the requests to…
fuzzi
  • 1,967
  • 9
  • 46
  • 90
0
votes
1 answer

Unable to create index in Elastic search using API

I am trying to create index in Elasticsearch using API using the following mapping in kibana dev tools. Once I create the index, I want to use reindex API to copy documents from an already existing index. PUT /ipflow-logs { …
user13540211
  • 53
  • 1
  • 7
0
votes
1 answer

Min_score doesn’t working with aggs using elasticsearch

Can any elastic search member help me for prepare aggregation query with min_score? In below i wrote my query, and this elastic query run but not getting any document count, but 1000 score documents are available. Request: GET product/_search { …