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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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