Hi there,
In elastic-search I store a data structure like following
{
"source": "192.168.0.113",
"destination": "108.177.127.138",
"timestamp": 1558011580.284477000,
"sent_timestamp": 1558011577.509367,
"time_diff": 2.77511,
"type": "UDP"
}
My purpose is to store network packets like TCP, UDP, SNMP etc.
Each packet has a timestamp and sent_timestamp. Is it possible to sort packets with respect to their timestamps in the X-Axis, and show the time_diff in the Y axis. If so, what is the aggregation types in the Y and X axis? Is there such a filtering for creating graphs for an attribute of document?
At the end, I need something that looks like the following.