Splunk Search

Regex Help in splunk 6.1.3

pavanae
Builder

The following were the different strings visible in my splunk search results…

"SYSTEM_USE_CD" : "C"
"SYSTEM_RSP_CD" : "0100"
"SYSTEM_STAT_CD" : "ACCEPT"

Now with the help of regex in my search string i want to display only these values and also want to see their stats count for these three of them like

system_cd Count

"SYSTEM_USE_CD" : "C" (some count)
"SYSTEM_RSP_CD" : "0100" (some count)

"SYSTEM_STAT_CD" : "ACCEPT" (some count)

Please help me how to display these stats from a splunk search with the help of regex

0 Karma
1 Solution

alacercogitatus
SplunkTrust
SplunkTrust

You could do something like this:

<your_search> | rex field=_raw "SYSTEM_(?<system_cd>[^_]+)_CD.\s*:\s*\"(?<system_cd_value>[^\"]+)" | stats count by system_cd system_cd_value

You will probably also want to auto-extract these as well, it will keep your searches clean.

View solution in original post

alacercogitatus
SplunkTrust
SplunkTrust

You could do something like this:

<your_search> | rex field=_raw "SYSTEM_(?<system_cd>[^_]+)_CD.\s*:\s*\"(?<system_cd_value>[^\"]+)" | stats count by system_cd system_cd_value

You will probably also want to auto-extract these as well, it will keep your searches clean.

pavanae
Builder

Worked Great Thanks..

0 Karma

echalex
Builder

Hi,

Can you post some sample lines? It is not completely clear from the context what sort of regex would do the trick.

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...