Splunk Search

Search Help

alan20854
Path Finder

In my search, I am trying to display four columns: enr, firstTime, lastTime, and ErrorCount. However, it is currently not displaying anything in the ErrorCount column

Here is my query: host=X source=X ("Loader.swf - IOError loading" OR "Sending result file") | rex field=_raw "\x5BE=(?P[0123456789]+)\x5D" | eventstats count(eval(searchmatch("Loader.swf - IOError loading"))) AS bad count(eval(searchmatch("Sending result file"))) AS Complete by enr | where bad>0 and Complete=0| stats earliest(_time) as First, latest(_time) as Last by enr| convert ctime(Last) as LastTime, ctime(First) as FirstTime, auto(bad) as ErrorCount| table enr, FirstTime, LastTime, ErrorCount

How do I fix this?

Tags (1)
0 Karma
1 Solution

sundareshr
Legend

Try this

host=X source=X ("Loader.swf - IOError loading") 
| rex field=_raw "\x5BE=(?P<enr>[0123456789]+)\x5D" 
| stats earliest(_time) as First, latest(_time) as Last count as ErrorCount by enr
| convert ctime(Last) as LastTime, ctime(First) as FirstTime
| table enr, FirstTime, LastTime, ErrorCount

The reason you werent getting anything in ErrorCount is becuase the stats command was only returing enr, FirstTime and LastTime.

View solution in original post

sundareshr
Legend

Try this

host=X source=X ("Loader.swf - IOError loading") 
| rex field=_raw "\x5BE=(?P<enr>[0123456789]+)\x5D" 
| stats earliest(_time) as First, latest(_time) as Last count as ErrorCount by enr
| convert ctime(Last) as LastTime, ctime(First) as FirstTime
| table enr, FirstTime, LastTime, ErrorCount

The reason you werent getting anything in ErrorCount is becuase the stats command was only returing enr, FirstTime and LastTime.

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 ...