Splunk Search

How do I edit my search to get the distinct count for fields generated with eval?

raindrop18
Communicator

I have this search and I want only the unique count. I'm getting the unique count for the id field, but not for Permit and Deny How can I fix my search to get the unique count for Permit and Deny?

|  stats dc(id), count(eval(_raw LIKE "%Permit%")) as "Permit" , count(eval(_raw LIKE "%Deny%")) as "Deny" by username

thanks,

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

To count only unique Permit and Deny strings, use dc instead of count.

| stats dc(id), dc(eval(_raw LIKE "%Permit%")) as "Permit" , dc(eval(_raw LIKE "%Deny%")) as "Deny" by username
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

To count only unique Permit and Deny strings, use dc instead of count.

| stats dc(id), dc(eval(_raw LIKE "%Permit%")) as "Permit" , dc(eval(_raw LIKE "%Deny%")) as "Deny" by username
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

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

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...