Splunk Search

Percentage Timechart

paulf
Explorer

Hi All,

I am trying to plot the percentage of "total requests" vs "total errors" and am unfortunately in need of help.

I struggled for a good day now, using lots of different methods to do this, im fairly new to Splunk so any help would be appreciated.

Ok, simply.... my data can be searched using the below.

sourcetype="tcsb_webintel" ServiceName="MCS (Middleware Communication Service)" (AvailableFaresRequestMessage OR GetScheduledAirAvailabilityRequestMessage)

This will bring back all requests, all of which have HasError=0 or HasError=1 in the data to signify an error exists with that particular request.

i,e if i just wanted all errors i could search for ...
sourcetype="tcsb_webintel" ServiceName="MCS (Middleware Communication Service)" (AvailableFaresRequestMessage OR GetScheduledAirAvailabilityRequestMessage) HasError=1

What i am after is to show the total requests on a timechart, along with the percentage those requests that had errors.

I wont post what i have tried already as i have tried a few different ways, appending searches, using eval etc, none of which i could bend to my will.

i would greatly appreciate any assistance or guidance in the correct way to approach this....

Thanks
Paul

Tags (1)
0 Karma
1 Solution

kristian_kolb
Ultra Champion

This should do something like what you want;

... | timechart span=1m c(eval(HasError=1)) AS err c AS tot | eval err_ratio_perc = round(err/tot*100,0)

the round() and multiplication by 100 are not necessary, but produces '16' instead of '0.16000'

Hope this helps,

Kristian

View solution in original post

kristian_kolb
Ultra Champion

This should do something like what you want;

... | timechart span=1m c(eval(HasError=1)) AS err c AS tot | eval err_ratio_perc = round(err/tot*100,0)

the round() and multiplication by 100 are not necessary, but produces '16' instead of '0.16000'

Hope this helps,

Kristian

Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...