Splunk Search

How To Count A Field In 3 New Fields And Table Them Together?

vtsguerrero
Contributor

I have a field called "Status" and I wanna count when Status=P, when Status=I, when Status=E and then use the command | table _time, P, I, E
In my database they're all just one field, I kinda have to create 3 new fields splitting'em...
Thanks in advance!

Tags (4)
0 Karma
1 Solution

MuS
Legend

Hi vtsguerrero,

take this run everywhere example and adapt it to your needs:

index=_internal | stats count(eval(like(sourcetype, "splunkd"))) AS P count(eval(like(sourcetype, "%web%"))) AS I

This will count sourcetype="splunkd" as P and sourcetype="*web*" as I. So if you use this on the Status field in your case.

hope this helps to get you started ...

cheers, MuS

View solution in original post

vtsguerrero
Contributor

The result table should be something like this:

| table _time, Channel, Code, StatusP, StatusI, StatusE

but the Status field in my database is only one field. I need to count and store'em individually

0 Karma

MuS
Legend

Hi vtsguerrero,

take this run everywhere example and adapt it to your needs:

index=_internal | stats count(eval(like(sourcetype, "splunkd"))) AS P count(eval(like(sourcetype, "%web%"))) AS I

This will count sourcetype="splunkd" as P and sourcetype="*web*" as I. So if you use this on the Status field in your case.

hope this helps to get you started ...

cheers, MuS

vtsguerrero
Contributor

Thanks a lot @MuS !

I knew how to the count, but for only one field, first time I use three fields at once, worked liked a charm! Tks!

0 Karma

vtsguerrero
Contributor

Forgot to mention that I may have other fields in my table grid query....

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, ...