Kibana creates multiple charts using list queries

I am trying to create several diagrams in kiban using the values โ€‹โ€‹from the list in the query.

For example, suppose I have a list of cities that send messages between them (to one or more other cities):

cities: [Moscow London Paris Munich] 

Each city sends messages to other cities, these messages may reach their destination or get lost.

for each city, I have data about which messages he sent and which of them was delivered to the destination, for example:

 London sent: date, destination, received 15.2, [Moscow Paris], [Paris] 14.2, [Moscow Paris Munich], [Paris Munich] 

Now I want to create the following diagrams. While the "investigation" of a particular city, I want to display the speed of message delivery.

For example, when exploring London, I need these charts

 percentage of succesfull deliveries from London to Paris as function of date percentage of succesfull deliveries from London to Moscow as function of date 

etc., the same for every other city

The graphs I expect to see look something like this:

enter image description here

I am using Kibana 4.2, is it possible to do this?

thanks

+5
source share
1 answer

This should be possible if you also added the number of failed deliveries to the schedule. Your bucket will be a date histogram, up to the Y axis you can add the total set of successful and unsuccessful deliveries, and from the "Parameters" you can select the background mode.

Addition: Charts do not look like you depicted, since they would always be the same, but with dedicated successful / unconvincing deliveries. Depending on your data, you may need to copy it to Logstash to get the numerical values โ€‹โ€‹of the events.

0
source

Source: https://habr.com/ru/post/1264263/


All Articles