Splunk Search

Get the field name for a given value out of an event?

fbl_itcs
Path Finder

Hi,

let's say we have an event with the following information:

"Network Information:
Client Address: ee:fa:23:12:21:b1"

Is there a way to check if the Value after "Client Address" is already extracted into a field? It would be sort of a reverse search like "Tell me which fields has the value ee:fa:23:12:21:b1".

Thanks for your help,
Felix

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

I don't think the basic SPL can do that - however, you can write your own Python command that iterates over all fields looking for some value.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

I don't think the basic SPL can do that - however, you can write your own Python command that iterates over all fields looking for some value.

fbl_itcs
Path Finder

Works like a flaw! Thanks a lot!

0 Karma

fbl_itcs
Path Finder

Ill try it out. Would be great if it works.

The performance isn't of any issue, it would be more then enough if we use it on only one event (... | head 1 | ...).

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Giving this a bit more thought, there is a way to achieve this using basic SPL:

index=_internal | stats values(*) | transpose | rename "row 1" as values | search values=*23*

However, this is very inefficient and does not work for any reasonably large set of data. On my laptop with no real amount of data, this breaks for the _internal index even when using only the last 15 minutes.

fbl_itcs
Path Finder

Thanks for your answer.

I couldn't find a way by my own, but maybe someone will come up with something. It can be really hard to check if a given value is already extracted if there are like 80+ fields extracted.

If there is no solution it could be worth trying to write something by my own.

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

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