I am trying to plot a simple X and Y line chart with kibana. However, it doesn't do what I need it to do and I don't know how to do it. Please help.
e.g. csv file I am sending to ES.
{
"message" => "1488466235.39,2017-03-02 06:02:34.695,821",
"@version" => "1",
"@timestamp" => "2017-03-30T22:48:06.125Z",
"path" => "/home/abi/TOTAL_FD_mp.csv",
"host" => "abi",
"type" => "csv",
"time/s" => "1488466235.39",
"date and time" => "2017-03-02 06:02:34.695",
"open FDs" => "821"
}
{
"message" => "1488466415.404,2017-03-02 06:02:34.702,854",
"@version" => "1",
"@timestamp" => "2017-03-30T22:48:06.125Z",
"path" => "/home/abi/TOTAL_FD_mp.csv",
"host" => "abi",
"type" => "csv",
"time/s" => "1488466415.404",
"date and time" => "2017-03-02 06:02:34.702",
"open FDs" => "854"
}
I see that logs are ingested into ES on my kibana discover page. All I want to do it plot a line chart like:
Y axis with "open FDs" and X axis with "timestamp".
How do I do it ?