Splunk Search

How to do sum or count of all my fields one time?

NPR
Path Finder

hi.
i have more 15 fields in my events with different field name.
ex:
field1 field2 field3 ... fieldn

i want do sum,avg or count of all my fields one time, how do it ?
i try this:
|stats sum(field1) sum(field) ...sum(fieldn) by User date_day

it is work but it is very laborious for me.

please help me.

Tags (3)
0 Karma
1 Solution

fdi01
Motivator

try like this:

...|stats c(*) sum(*) avg(*) by User date_day
   or 
...|stats c(*) as count_* sum(*) as sum_* avg(*) as avg_* by User date_day

View solution in original post

fdi01
Motivator

try like this:

...|stats c(*) sum(*) avg(*) by User date_day
   or 
...|stats c(*) as count_* sum(*) as sum_* avg(*) as avg_* by User date_day

NPR
Path Finder

thank you.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...