logstash - Need to create value over time chart using Kibana 4 -
am using logstash store logfile containing read time of cable (specific application)
i plot graph of cable read time (y-axis) on elapsed time (x-axis) using kibana.
logstash config file looks below
input { file { path => "/opt/performancemetrics.csv" type => "core2" start_position => beginning } } filter { csv { columns => ["elapsed_time_hour", " cable_read_time_avg_us", " cable _read_time_max_us" ] separator => "," } mutate { convert => [ "elapsed_time_hour ", "integer" ] convert => [ "cable_read_time_avg_us", "integer" ] convert => [ "cable_read_time_max_us", "integer" ] } } output { elasticsearch { action => "index" host => "localhost" index => "logstash-%{+yyyy.mm.dd}" workers => 1 } stdout { codec => rubydebug } } i view log files on kibana, unable find way customize y-axis have value of cable_read_time (instead of count).
is there thing incorrect logstash config file ?
please suggest way customize y-axis on kibana.
on visualize tab, under query bar current index pattern. under metrics. have "y-axis... count". click little arrow on left of "y-axis" , select other method aggregation pulldown.
Comments
Post a Comment