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!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...