Splunk Search

Plot error % as timeseries

sudhakar_mnsr
New Member

How to plot http error % as timeseries? (when I add _time or timeseries count Iam getting DAG: Execution exception (search cancelled)).

Query:

index=abc source=efg cdn=pqr "message.reqHost"="*xyz*" earliest=-15m latest=now

| eventstats count As Total

| eval Status=case(like(dm_status,"4%"),"HTTPERR", like(dm_status,"5%"),"HTTPERR") | stats count AS ERR_Count by Status, Total

| eval ERR_PERCENTAGE=round(((ERR_Count)/Total)*100,2)

| eval ERR_PERCENTAGE = if(isnull(ERR_PERCENTAGE),"0",ERR_PERCENTAGE)

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Can you share the search that doesn't work as well as the one that does?

0 Karma

sudhakar_mnsr
New Member

Thanks for looking into this. Please find the query that give error

 

index=abc source=efg dm_cdn=pqr "message.reqHost"=xyz earliest=-15m latest=now

| eventstats count As Total

| eval Status=case(like(dm_status,"4%"),"HTTP4XX")| stats count AS ERR_Count by Status, Total, _time

| eval ERR_PERCENTAGE=round(((ERR_Count)/Total)*100,2)

| eval ERR_PERCENTAGE = if(isnull(ERR_PERCENTAGE),"0",ERR_PERCENTAGE) | fields _time, ERR_PERCENTAGE

| timechart span=10s count by ERR_PERCENTAGE

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Which version of splunk are you using? Is there any useful information in the job inspector?

0 Karma

sudhakar_mnsr
New Member

Splunk Cloud (Version:8.2.2105.2).

Iam new to Splunk, if you can help me to get the information you are looking for, I can send it. However in verbose mode (events) I could not get any information.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...