aggregation - Plot a graph in kibana 4 with raw performance counter data -
i new kibana. using version 4.1.0.
i using logstash agent on application servers publish custom performance counters elasticsearch incidence.
the performance counter data’s fetched each server using logstash wmi input plugin , interval set 30 seconds.
every 30 seconds have new row in elasticsearch timestamp, cumulative calls, calls per second, cumulative exceptions, cumulative process success , successful process per second.
now requirement plot graph similar perfmon on incoming performance counter data.
i tried using kibana line chart requirement timestamp (date histogram) in x axis , other counters y axis. not sure aggregation need select each counters on y-axis because need plot graph on raw data received , not on calculated data.
if select of aggregation kibana calculation on data based on selected aggregation , result not matching perfmon.
can point me right chart type , way plot graph in kibana raw value of counter.
thanks,
with x-axis date histogram, you'll end bunch of buckets, 1 per minute. default, y-axis count of number of documents in minute.
more interesting you, perhaps, change y-axis sum
of cumulative calls
field, show how many calls there had been in minute.
to compare other tools, make sure you're computing same values , x-axis has same scale.
Comments
Post a Comment