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:

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