Timelion Query to extract 2 different data(Fields)

Need help in creating query to extract data (Fields) in Timelion
i am trying to fetch data from csv file.
below is the logstat config.

filter {
csv {

    separator => ","
	columns => ["Label","Throughput","Average","Min","Max"]
	"skip_header" => "true"

}

my csv file data is as below.

Label,Throughput,Average,Min,Max
POST DATA,1,222,333,44
GET DATA,2,43,1019,1019

..

So based on Label i need to display Throughput in Timeline.
can any one help me in forming the query..

Should be something like

.es(index="your_index_name", metric="sum:throughput")

Or something like that. Timelion doesn't support visualizing individual documents.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.