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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...