Splunk Search

Repeating fields

klaudiac
Path Finder

Hi guys, 

I'm looking to add a new column to my inputlookup. 

The idea is to mark the values that repeat e.g.: 

Email Threat Attachment DeliveredAnalytics
Voice mail spamNetwork
Jira HeartbeatN/A
Voice mail spamNetwork

 

And do something like this: 

NameZoneRepeats
Email Threat Attachment DeliveredAnalyticsNo
Voice mail spamNetworkYes
Jira HeartbeatN/ANo
Voice mail spamNetworkYes

 

I know I can just do a | stats count by Name, but that doesn't solve my problem.

Any hints on how to solve it would be greatly appreciated 🙂 

Labels (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Why does stats not solve your problem?  Have you tried eventstats?

| makeresults | eval _raw="Name                                Zone
Email Threat Attachment Delivered   Analytics
Voice mail spam	                    Network
Jira Heartbeat	                    N/A
Voice mail spam	                    Network" | multikv forceheader=1
```Above just sets up test data```
| eventstats count as Repeats by Name,Zone
| eval Repeats=if(Repeats=1,"No", "Yes")
| table Name Zone Repeats

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...