Splunk Search

How to find Fieldnames which have some strings

zegg
Engager

If there are events like these.
And I want  to find Fieldnames which have "abc"

Event 1 

File : abcdefg

URL : 1232323232.com

NUM : 1234567899

Name : James

Event 2

File : abcdefg

URL : 1232323232.abc

NUM : 1234567899

Name : James

 

File has "abc" 2 times and URL has "abc" 1 time.
I want result like this

FieldNameCount
File2
URL1



How can I make this result by SPL?

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| foreach *
    [| eval <<FIELD>>=if(like(<<FIELD>>,"%abc%"),1,null())]
| stats sum(*) as *
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...