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
0 answers

kibana 4 discover table in dashboard

How can I add a visualize "widget" discover table in my dashboard. To emulate the feel of kibana 3. Currently in kibana 4 you have the first tab "discover" that provides that functionality. But the dashboard(s) and discover are not linked. Thank…
DomaNitro
  • 3,156
  • 1
  • 23
  • 19
0
votes
1 answer

Non standard intervals in date histogram in Kibana

I'm using Kibana 4 to graph response times. When there is low load on the system, the average responses vary a lot if I aggregate them by second (because there might only be a couple of requests coming in during that second). I could aggregate…
Cyberwiz
  • 11,027
  • 3
  • 20
  • 40
0
votes
1 answer

How can I aggregate terms based on a string prefix in Kibana4?

One field which is flowing into our Kibana instance contains the logger name of Python applications. Those names represent the application structure, separated by dots. For example, we could have the following loggers: a a.b a.b.c a.d b.c I would…
exhuma
  • 20,071
  • 12
  • 90
  • 123
0
votes
1 answer

Elasticsearch: How do I find a term which exists in all documents of a certain type?

Say I have a type type1 for which one of the fields is an array: curl -XPUT localhost:9200/index1/type1/1 { 'field1': ['A', 'B', 'C'], 'field2': 1 } curl -XPUT localhost:9200/index1/type1/2 { 'field1': ['A', 'E', 'D'], 'field2': 2 } I'd…
Dolev
  • 85
  • 7
0
votes
1 answer

Aggregating on entities within Kibana using values in nested entities

An ElasticSearch index contains a Product entity. Each product has an array of Components entities. A component may contain an optional outOfStock field. Given the following example: "Product": "name": "blue_toy" "Components": [ { …
user1052610
  • 4,440
  • 13
  • 50
  • 101
0
votes
1 answer

Using an aggregation on data with forward slash in elasticsearch

I have data, that has an attribute like this apiUrl:/REST/endpoint/123 Now I would like to show all the urls and I am trying to use an aggregate function (apiUrl.raw is not_analyzed part of the multifield): POST /index/type/_search { …
Robert Varga
  • 321
  • 2
  • 4
  • 10
0
votes
1 answer

Sripted fields in Kibana: adding values

Given the following Foo entry which is stored in an ElasticSearch index : "Foo": { "x":"500", "y":"200" } What is the correct syntax to create a sripted field within Kibana which adds the X and Y values together?
user1052610
  • 4,440
  • 13
  • 50
  • 101
0
votes
1 answer

Error When Running Released Version of Kibana (ZeroClipboard)

So I'm running Kibana on a server in the cloud and I'm getting the following error: Error: Uncaught ReferenceError: ZeroClipboard is not defined (http://.../index.js?_b=6004:89886) at window.onerror (http://.../index.js?_b=6004:45829:24) I've…
threejeez
  • 2,314
  • 6
  • 30
  • 51
0
votes
1 answer

Logstash unable to start when I add grep filter

I have a logstash instance deployed on my local and I am trying to get head wrapped around it. I added a simple grep filter to the logstash.conf file, but when I restart the service, it fails. And when I remove the grep statement it works fine. Here…
Shriram Sharma
  • 599
  • 1
  • 5
  • 19
0
votes
1 answer

Performing complex calculations across a set of data in ElasticSearch

How does one perform a complex calculation in ElasticSearch which requires finding the maximum and minimum values across an entry in an index? The following example is silly, but for illustration it serves the purpose. Given an object User which is…
user1052610
  • 4,440
  • 13
  • 50
  • 101
0
votes
1 answer

Need to create value over time chart using Kibana 4

Am using logstash to store logfile containing the read time of a cable (specific to my application) I would like to plot the graph of Cable Read Time (Y-Axis) over Elapsed Time (X-Axis) using Kibana. Logstash config file looks as below input { …
Selva M
  • 23
  • 4
0
votes
0 answers

Multiple index search in Kibana and plot common values

I have some data which is separated for organizational purposes into two separate indexes with the same key value mappings (although some that exist in index B do not exist in index A). I know in Kibana 4 I can now query multiple indexes at the…
tcstool
  • 25
  • 1
  • 3
0
votes
2 answers

kibana retrieve term values between a given time interval

I am pretty new to Kibana. I am logging ssh access hits and I want to compare the access hit counts during night time vs day time. How can I get this data? Also, How can I visualize this? Also, what if I want to compare hits on weekends vs…
raghu
  • 131
  • 3
  • 13
0
votes
2 answers

Logstash output to ElasticSearch With Valid Types

ELK Stack has been successfully setup. using grokdebug.herokuapp.com my gork patterns are also valid and getting Dumped into ElasticSearch filter { if [type] == "some_log" { grok { match => { "message" => '%{WORD:word_1} %{TIME:time_1}…
Ratan Kumar
  • 1,640
  • 3
  • 25
  • 52
0
votes
1 answer

Representing summary data in a Kibana Data Table

Using Kibana, is it possible to display one row of data which is a summary of other rows? This is our requirement: Given an entry in an index with the following structure: string requestId boolean raisedException boolean requiredExternalLookup We…
user1052610
  • 4,440
  • 13
  • 50
  • 101