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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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