Splunk Search

Plot response time from this log

parekhdevang
New Member

Hi There,

Thanks in advance. I am trying to plot a graph with the request time for each request on the y-axis and minutes on the x axis.

Here is an example log entry.

10.xx.xx.xx - - [19/May/2020:03:15:46 +0000] "POST /web/Authorization?schema=1.3&form=json&httpError=true&cid=cd65b044-426b-4131-8e92-5f239a31cfc5" 200 92131 1 "Apache-HttpClient/4.3.1 (java 1.5)" "" cd65b044-426b-4131-8e92-5f239a31cfc5 miss "{\"authorize\":{\"operations\":[{\"service\":\"offerDataService\",\"instance\":\"offerDataService-gracenote-prod\",\"endpoint\":\"ContentEntitlement\",\"method\":\"GET\"}]}}"

Can anyone help me write a Splunk query for it?

Best,
DP

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @parekhdevang,
if request time is the timestamp of your ResultCode=200 events and you want a graph with the number of events in every minute for each host, you could try someing like this:

your_index ResultCode=200 
| timechart span=1m count BY host

if you haven't already extracted the ResultCode, you can do it in the search using the rex command

your_index 
| rex "\"\s+(?<ResultCode>\d+)\s+"
| search ResultCode=200 
| timechart span=1m count BY host

Ciao.
Giuseppe

0 Karma

to4kawa
Ultra Champion

where is request time ?

a graph with the request time for each request on the y-axis and minutes on the x axis.

I am not sure the graph, please provide sample graph or pic.

0 Karma
Get Updates on the Splunk Community!

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...

Splunk MCP & Agentic AI: Machine Data Without Limits

Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization uses ...