Splunk Search

How can I count/sum single values of ONE field

TNRRVN93
New Member

Hello together,

I am new at Splunk and need help for the following issue.
I have the field KitchenStuff with 5 values and the number of the values, of this field. 4 of the values are vegetables and 1 value is a fruit. The vegetables are cucumber, tomato, onion and carrot. And the fruit is apple.

With the search sourcetype="notrelevant" | chart count by KitchenStuff I can present the single values with the number of the values in the pie chart. But I want to present the count/sum of all vegetables and fruit(s) in the pie chart.

I have already looked in the documentation and in other questions, but unfortunately I could not find a solution.
Could you please help me?

Thanks in advance!

0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

HI
try something like this

index=your_index sourcetype="notrelevant" 
| eval type=if(KitchenStuff="Apple","Fruit","Vegetables")
| chart count by type

if the number of KitchenStuff grows, you can put them in a lookup (e.g. types.csv with two fields:KitchenStuff, type) and run something like this

index=your_index sourcetype="notrelevant" 
| lookup types.csv KitchenStuff OUTPUT type
| chart count by type

Bye.
Giuseppe

View solution in original post

niketn
Legend

Give following a try:

sourcetype="notrelevant" 
| chart count by KitchenStuff 
| eventstats sum(count) as sum
| eval perc=count/sum
| table KitchenStuff perc
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

gcusello
SplunkTrust
SplunkTrust

HI
try something like this

index=your_index sourcetype="notrelevant" 
| eval type=if(KitchenStuff="Apple","Fruit","Vegetables")
| chart count by type

if the number of KitchenStuff grows, you can put them in a lookup (e.g. types.csv with two fields:KitchenStuff, type) and run something like this

index=your_index sourcetype="notrelevant" 
| lookup types.csv KitchenStuff OUTPUT type
| chart count by type

Bye.
Giuseppe

TNRRVN93
New Member

Hello cusello,

thank you very much, it works!

With best regards,

TNRRVN93

0 Karma

gcusello
SplunkTrust
SplunkTrust

if you're satisfied, accept my answer.
Bye.
Giuseppe

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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