Splunk Search

how to draw a simple graph of response times against _time

edookati
Path Finder

I need to draw a simple graph of all the response times for a particular service in my application. I am using the below query for now, but i do not want average. I want all the response times on 'y' and _time on 'x' and the graph showing them. There are more than 1 call per second and avg doesn't actually represent the issue we are trying to resolve.
Thanks a lot.

index=jms_logs sourcetype=perflogs operation_name="RSA*" | timechart span=1s avg(response_time)

Tags (1)
1 Solution

MuS
Legend

Hi edookati,

you can use either list or values within the timechart but if you really have multiple results within one second the graph could look strange. Nevertheless try something like this:

index=jms_logs sourcetype=perflogs operation_name="RSA*" | timechart span=1s list(response_time)

or

index=jms_logs sourcetype=perflogs operation_name="RSA*" | timechart span=1s values(response_time)

list will bring back all values and values only the distinct values for all events, see the docs for more details http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/CommonStatsFunctions

cheers, MuS

View solution in original post

MuS
Legend

Hi edookati,

you can use either list or values within the timechart but if you really have multiple results within one second the graph could look strange. Nevertheless try something like this:

index=jms_logs sourcetype=perflogs operation_name="RSA*" | timechart span=1s list(response_time)

or

index=jms_logs sourcetype=perflogs operation_name="RSA*" | timechart span=1s values(response_time)

list will bring back all values and values only the distinct values for all events, see the docs for more details http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/CommonStatsFunctions

cheers, MuS

edookati
Path Finder

Pretty close to my requirement and thanks a lot. This will do for now 🙂

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...