HI,
I'm starting with graph visualization in Kibana and I would like to known if it is possible to visualize following task.
I Have a network consisted of 10 servers, for example and one client which receives messages from all servers. Client can recognize the path from the received message (a message went trough servers 1,5 and 6 for example). So, I would like to visualize in Graph in Kibana all nodes (10 server + 1 client) and the path of the filtered packet. So I designed the following json data set.
[
{ "Device": 1}, {"Device: 2"},...,{"Device:11"},
{
"Packet": 1,
"Path": [2,1]
},
{
"Packet": 1,
"Path": [1, null]
}
]
Then I'm able to show the path without any problems. See the graph
But if I add to json another packet for example:
[
{ "Device": 1}, {"Device: 2"},...,{"Device:11"},
{
"Packet": 1,
"Path": [2,1]
},
{
"Packet": 1,
"Path": [1, null]
},
{
"Packet":2,
"Path": [1, 5]
},
{
"Packet": 2,
"Path": [5, null]
}
]
I will get the following graph:
There is one more connection with node 5 from packet 2. So I would like to show only connection within data of packet 1. So the question is how I can do this and if it is possible.
The goal is to visualize complete network topology in graph (display all nodes without any connection) and draw the path of filtered packets - draw connection of nodes which participated on the transmitting of the selected packet.
Thank's