Splunk Search

How to add a new column in my chart with a new event count after using the dedup command?

guillecasco
Path Finder

I have a search like this:

search| stats count by errortype

which is quite simple and returns:

errortype   count
1600         45
1234         60

Now I want to add in same chart a new column using the dedup command (that I already have and works), but filters a new result with less logs count. I would like to have something like:

errortype count newcount

How can I do it?

0 Karma
1 Solution

sundareshr
Legend

You could either do a | stats count dc(field) as distinct by errortype or use appendcols like this

.. | stats count by errortype | appendcols [ search ... | dedup field | stats count as distinct by errortype  ]

View solution in original post

sundareshr
Legend

You could either do a | stats count dc(field) as distinct by errortype or use appendcols like this

.. | stats count by errortype | appendcols [ search ... | dedup field | stats count as distinct by errortype  ]

guillecasco
Path Finder

thanks budy, appendcols worked perfectly

0 Karma

ppablo
Retired

@guillecasco Glad you found your answer through @sundareshr !

Since it has a working solution, don't forget to resolve the question by clicking "Accept" directly below sundareshr's post.

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