Splunk Search

How to write "| stats count" to field?

sbimizry
Engager

How to I must a write result from stats count to field?
Example ideas...

| inputlookup lookup
| stats count(eval(field1="example-data")) as Example, count(eval(field1="secondexample-data")) as SecondExample
| table Example, SecondExample

Thank.

0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi sbimizry,
Probably I didn't understand your problem, but you could try something like this:

| inputlookup lookup 
| stats count BY field1

Bye.
Giuseppe

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

| inputlookup lookup
| stats count BY field1
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi sbimizry,
Probably I didn't understand your problem, but you could try something like this:

| inputlookup lookup 
| stats count BY field1

Bye.
Giuseppe

0 Karma

sbimizry
Engager

Hi, I will try to explain.
There is a lookup with data, there is a field with 4 possible values. let's call this field conditionally field1.
I need to count the number of all 4 values ​​and save in a separate field, for example fieldcount1, fieldcount2, fieldcount3, fieldcount4 and use this for example | table fieldcount1, fieldcount2, fieldcount3, fieldcount4

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi sbimizry,
to have the for values on one row, try something like this:

| inputlookup lookup 
| stats count(eval(field1="value1")) AS value1 count(eval(field1="value2")) AS value2 count(eval(field1="value3")) AS value3 count(eval(field1="value4")) AS value4

Bye.
Giuseppe

0 Karma

sbimizry
Engager

I tried to do it, it does not work in my case.

0 Karma

jacobpevans
Motivator

Try this run-anywhere search (based on @gcusello 's answer).

| makeresults count=100
| eval field1=(random() % 4) + 1
| eval field1="value" . field1
| stats count(eval(field1="value1")) AS fieldcount1
        count(eval(field1="value2")) AS fieldcount2
        count(eval(field1="value3")) AS fieldcount3
        count(eval(field1="value4")) AS fieldcount4
Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...