Splunk Search

How to extract all fields from my sample log and graph the average of the values?

karthikbits
New Member

Single log line:

{kpiMuleMS=12, kpiSecurityCheckMS=230, kpiGetQuoteMS=56, kpiGetLegalEntityMS=0, kpiOIILookupPersonaMS=0, kpiCreateSubscriptionMS=40, kpiGetOfferMS=0, kpiProcessSubscriptionMS=23, kpiPayAuthMS=9, kpiOIIFindRealmMS=1, kpiUpdateAccountMS=40, kpiGetAccountMS=10}

How do I graph the avg values of all the keys in a single graph?
Unfortunately, I do not have the log line in the following format..

key=kpiSecurityCheckMS latency=230
key=kpiMuleMS latency=12
0 Karma

sundareshr
Legend

Try this (if the fields are already extracted, ignore the extract segement)

base search | extract pairdelim="," kvdelim="=" | stats avg(kpiMuleMS) as kpiMuleMS avg(kpiSecurityCheckMS) as kpiSecurityCheckMS <<similarly for rest of your fields
0 Karma

mhpark
Path Finder

The kv or extract command would work well here.

But, do you want an average of each kpi,
or an average of all kpis?

Try this for the former.

| kv pairdelim="=", kvdelim=","
| fields - _raw
| stats avg(*)
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, ...