Splunk Search

How do I perform a stats count(fieldname) without it deleting all other search results output?

williamcharlton
Path Finder

I do believe I'm missing something fundamental here....

So, the search: index=X returns many events where each event has many fields. I want to add a field to each search result event that contains the count of events returned in the search. So, I attempt this by doing: index=x | stats count (oneOfTheFieldNames) AS Total. My expectation is that I'll see the list of events with all fields originally returned by the plain vanilla search index=X but each event will have a new field named Total whose value is the number of events returned in the search.

Instead, all I see is one event with one field named 'Total' whose value is the number of events that the plain vanilla search index=X returns.

How do I compose a search such that I get the list of events with all fields originally returned by the plain vanilla search index=X but with each event having a new field named Total whose value is the number of events returned in the search?

0 Karma
1 Solution

chrisyounger
SplunkTrust
SplunkTrust

Just use eventstats instead of stats

index=x | eventstats count (oneOfTheFieldNames) AS Total

View solution in original post

0 Karma

jason_prondak
Explorer

Try

... | eventstats count AS Total by oneOfTheFieldNames
0 Karma

vnravikumar
Champion

hi

try with eventstats

0 Karma

chrisyounger
SplunkTrust
SplunkTrust

Just use eventstats instead of stats

index=x | eventstats count (oneOfTheFieldNames) AS Total

0 Karma

williamcharlton
Path Finder

I thought I was missing something fundamental - thank-you - my search works as expected now

0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...