Splunk Search

Dedup command not working after using the stats list command

kmrkunal
New Member

When I am running the following search:

index=main sourcetype="access_combined_wcookie"| stats list(useragent) as Browsers | dedup Browsers consecutive=true

The dedup command is not removing duplicate entries in the browser field.
Can someone explain to me why it is happening?

0 Karma

nareshinsvu
Builder

Did you try mvdedup?

index=main sourcetype="access_combined_wcookie"
| stats list(useragent) as Browsers
| eval Browsers=mvdedup(Browsers)
0 Karma

diogofgm
SplunkTrust
SplunkTrust

While using dedup on a table, splunk will deduplicate values (read cells) of a given field. Your result has a single value/cell (regardless of having multiple values inside it) so there is nothing to dedup.

What you're probably looking for is something like:
index=main sourcetype="access_combined_wcookie"| stats values(useragent) as Browsers

OR

index=main sourcetype="access_combined_wcookie"| stats count by useragent

------------
Hope I was able to help you. If so, some karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...