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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...