Splunk Search

How to add a column with the max values for a set of fields on each row and add these values in the totals row?

David_Hodgson
Engager

I need to add a maximum column for a set of fields on each row (created using chart ... OVER ... BY ... ), and then add the maximum of this into the totals row. Any suggestions on how to do this?

0 Karma

sundareshr
Legend

Don't believe addtotals has that option, but here is a workaround you could try

eventtype=splunkd-log earliest=@h | chart count over component by eventtype | untable component eventtype count | appendpipe [stats max(count) as max by component ] | sort component | eval c=coalesce(count, max) | fillnull value="Max" eventtype | chart list(c) as c over component by eventtype
0 Karma
Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...