I have streamed CPU load data using Firehose to ES and displaying the data in Kibana. Now the problem I am facing is I just want to plot CPU load in Y-axis and datetime in X-axis, but Y-axis asks for aggregation which I don't want in this particular case. So how do I do that?
I have the logs in this format and the are parsed accordingly by aws-kinesis-agent
10/Dec/2019:09:35:01 0.02 0.01 0.00 2/254 3295
And parsed data are showing as bellow in kibana
{
"_index": "cpu-load",
"_type": "_doc",
"_id": "49602067745068477890864645725460844388937766040273682434.0",
"_version": 1,
"_score": 0,
"_source": {
"datetime": "10/Dec/2019:06:41:01",
"current": "0.07",
"5min": "0.03",
"15min": "0.01",
"procinfo": "2/274",
"workload": "30143"
}
}