Splunk Search

How to search for a series of strings then count and display by host?

skiller1234
Explorer

Hello everybody!

Trying to search for a series of strings - then count and display by host. I got this far:

index=index host=*server* "failover" OR "Whatever" OR "screwup"
| rex "(?<error>failover)"
| rex "(?<error>Whatever)"
| rex "(?<error>screwup)"
| stats count by host,error
| xyseries error,host,count

So I get a chart like so:

error                     server1                       server2                  server3

screwup                10                                      11                            18

Which is what I want - but I only get the last result set (for screwup). I know all 3 have results. What am I doing wrong in creating my new field called error with 3 possible values?

Skiller

0 Karma
1 Solution

xpac
SplunkTrust
SplunkTrust

Change your rex like this:

| rex "(?(?:failover|Whatever|screwup))"

This should check all conditions in one. Else every rex line has the potential to overwrite the result from the line(s) before it. 😉

EDIT: Can there be more than one error in the same event?

In that case, do | rex max_match=0 "(?(?:failover|Whatever|screwup))"

View solution in original post

xpac
SplunkTrust
SplunkTrust

Change your rex like this:

| rex "(?(?:failover|Whatever|screwup))"

This should check all conditions in one. Else every rex line has the potential to overwrite the result from the line(s) before it. 😉

EDIT: Can there be more than one error in the same event?

In that case, do | rex max_match=0 "(?(?:failover|Whatever|screwup))"

richgalloway
SplunkTrust
SplunkTrust

Please share some sample events.

---
If this reply helps you, Karma would be appreciated.
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 ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...