Questions tagged [kibana-4]

Kibana is a highly scalable user interface for `elasticsearch` that allows you to efficiently search, graph, analyze and otherwise make sense of a mountain(s) of data. It is often used to visualize data that is stored in `elasticsearch` which agains is usually parsed and fed in by `logstash`. It essentially uses the `elasticsearch's` REST APIs to query it and has in built graphing and search functionalities that are highly intuitive and simple to use.

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.

Overview: Kibana

Related tags:

, , ,

611 questions
0
votes
1 answer

Create dashboard automatically using file-system in Kibana4

In Kibana-3x, I was copying the .json file to /app/dashboards directory directly, so that it was building the dashboard automatically. How I will achieve the same in Kibana 4.1.0? have a number of auto-generated dashboards that I need to…
lambodar
  • 3,495
  • 5
  • 34
  • 58
0
votes
2 answers

Kibana: How to get list of unique entries of one field?

I want to get a list of all unique entires in one field in an elasticsearch-database. The field I am looking for is: friendly_name I am aware of how to visualize the unique count of a field when visualizing. Explained here:…
s1st
  • 31
  • 2
  • 5
0
votes
1 answer

Why in Kibana 4 , it is showing "You must choose and item from the list" in the Field section of Data visualisations page?

I have an elasticsearch index which I am using to index a set of documents. These documents are originally in csv format and I am looking parse these using logstash. In Kibana 4 Visualisation page, (See Attached Image below) In the Field " Current…
0
votes
1 answer

No results found in KIbana with ElasticSearch

I have set up an index in elasticsearch, included its mapping have some data. When I make the GET request, I can check the contents as follows: { "took": 5, "timed_out": false, "_shards": { "total": 5, "successful": 5, "failed": 0 …
kosta
  • 4,302
  • 10
  • 50
  • 104
0
votes
1 answer

Kibana: Visualize only one entry

Our application exposes various metrics through an MBean, these are pulled by logstash and saved to ElasticSearch. Typical metrics are "number_of_connected_users", connection status for external dependencies etc. I'd like to visualize this, but I…
gogstad
  • 3,607
  • 1
  • 29
  • 32
0
votes
1 answer

C# nest elasticsearch geo point array index not shown in kibana

I have the following classes public class MyLayer { public List Locations { get; set; } } public class MyLocation { public string Name { get; set; } public MyCoordinate Coordinate { get; set; } } public class MyCoordinate { …
User1234
  • 510
  • 3
  • 20
0
votes
1 answer

Not able to access Kibana running in a Docker container on port 5601

I have built a docker image with the following Docker file. # gunicorn-flask …
liv2hak
  • 14,472
  • 53
  • 157
  • 270
0
votes
1 answer

Search for parse errors in logstash/grok

I´m using the elk stack to analyze log data and have to handle large volumes of log data. It looks like all the logs can be parsed with logstash/grok. Is there a way to search with kibana for loglines that couldn´t be parsed?
christian
  • 9,412
  • 10
  • 41
  • 51
0
votes
1 answer

Elastic Search analyzing fields and Kibana Graphs Legends

I'm using elasticsearch 1.5.2 and Kibana 4.0.3. I'm having a problem with the analyzers, using the default one the legends in the kibana graphs split the field by &, / and -. Which is the default behavior. I've tried setting the fields to…
isaapm
  • 157
  • 2
  • 12
0
votes
0 answers

Error while updating a document in ElasticSearch using python es.update()

I am trying to update a document in elasticsearch using the default python interface for Elasticsearch using the below command. res = es.update(index='its', doc_type='vents', id=txid, body={"doc":{"f_vent" :{"b_vent":rx_buffer}}}) The updated…
liv2hak
  • 14,472
  • 53
  • 157
  • 270
0
votes
1 answer

How do I create a scripted field in Kibana that calculates length of an array of strings?

I have stored a field that is an array of strings: ["name1","name2",...] I want to create a scripted field in Kibana 4 that returns the length of that array for each document and tried this script based on what I found…
mattiasostmar
  • 2,869
  • 4
  • 17
  • 26
0
votes
0 answers

Mapping for Nested JSON document in Elasticsearch

I have inserted the following JSON document into ElasticSearch. { "AppName": "undefined", "CPUs": 8, "Errors": 0, "Forms": 2, "Group": "Unknown", "Language": "en-GB", "UserName": "user.name", "msgType": "234", …
liv2hak
  • 14,472
  • 53
  • 157
  • 270
0
votes
2 answers

Kibana Dashboard multiple time periods and search terms

Is it possible to give different time periods or different search terms to each Visualization in a Kibana Dashboard?
Michael
  • 3,206
  • 5
  • 26
  • 44
0
votes
0 answers

Securing Kibana with Nginx

Using Nginx , With the following configuration I can make user authentication for kibana 4 version.But If I provide my username and password to user then all my information becomes accessible. How can I make my elastic search node available for…
prem
  • 572
  • 2
  • 7
  • 26
0
votes
1 answer

Configure Kibana 4 on IIS7

I'm trying to configure Kibana 4 on IIS without any luck on the process. I was able to configure the previous version by using a reverse proxy but with this version I'm not able to make it work. Has someone of you was able to do it? In that case…