Splunk Search

How do I get the max from each column?

HattrickNZ
Motivator

With a search like ....| eval Field3=Field1+Field3

I have data as follows(in the stats tab):

_time   Field1  Field2  Field3
2015-05-11 00:00    915.426122  698.086667  217.33945530
2015-05-11 01:00    593.966923  462.311111  131.65581163
2015-05-11 02:00    403.424360  319.715556  83.708804253
2015-05-11 03:00    327.785973  261.006667  66.779305556 
.
.
.

how do I get the max of each column?

I am thinking something like addcoltotalsbut that gets the sum of the columns but I want the max.

Labels (1)
Tags (2)
0 Karma
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi HattrickNZ,

how about something like this:

.... | eval Field1=Field2+Field3 | stats max(Field1) AS Field1 max(Field2) AS Field2 max(Field3) AS Field3 by _time

It looks like you're adding up Field2 + Field3 so I changed it in above search.

Hope this helps ....

cheers, MuS

View solution in original post

jotne
Builder

If you have may fields and do not know the name of them or variable number of fields, you can run it like this:

| stats max(*) as max_*
0 Karma

MuS
SplunkTrust
SplunkTrust

Hi HattrickNZ,

how about something like this:

.... | eval Field1=Field2+Field3 | stats max(Field1) AS Field1 max(Field2) AS Field2 max(Field3) AS Field3 by _time

It looks like you're adding up Field2 + Field3 so I changed it in above search.

Hope this helps ....

cheers, MuS

HattrickNZ
Motivator

easy as that, tks.

0 Karma
Get Updates on the Splunk Community!

Upcoming Webinar: Unmasking Insider Threats with Slunk Enterprise Security’s UEBA

Join us on Wed, Dec 10. at 10AM PST / 1PM EST for a live webinar and demo with Splunk experts! Discover how ...

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...