Splunk Search

regular expression help

rajgowd1
Communicator

Hi,
i am trying to get metric and respective values using regex

can you help us to get corresponding metrics and values like
Misc:NUM_PROCS = 183
Misc:NUM_ZOMBIES=0
Procs:Waiting=0

0 Karma
1 Solution

somesoni2
Revered Legend

Since your logs is json and/or has key-value pair, the fields name and value should already be extracted. To list them try something like this

your base search | eval {name}=value | table _time  "HealthCheck|*" | rename "HealthCheck|*" as *

To chart the values (choose a aggregation function to use e.g. avg, max, min etc. The example uses avg)

your base search | eval {name}=value | table _time  "HealthCheck|*" | rename "HealthCheck|*" as * 
| timechart avg(*) as *

View solution in original post

0 Karma

somesoni2
Revered Legend

Since your logs is json and/or has key-value pair, the fields name and value should already be extracted. To list them try something like this

your base search | eval {name}=value | table _time  "HealthCheck|*" | rename "HealthCheck|*" as *

To chart the values (choose a aggregation function to use e.g. avg, max, min etc. The example uses avg)

your base search | eval {name}=value | table _time  "HealthCheck|*" | rename "HealthCheck|*" as * 
| timechart avg(*) as *
0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...