Splunk Search

Searching on fields extracted from Source field

oliverw
New Member

I have multiple application environments on one host, and need to identify the environment based on the directory path in the source log file.

Using a regex in the search works fine, like so

sourcetype="gfstats" | rex field=source "[\w\W/]+/gf-(?<env>[^\.]+)\.log" | search env="app1"

But I would like to define the environment as a field I can use in other searches.

I added a line to props.conf:

EXTRACT-sourcefields = (?<logdir>[\w\W/]+)/gf-(?<environment>[^\.]+)\.log in source

But although I can now see the content of the environment field when I perform searches, I cannot use that field in searches.

sourcetype="gfstats" environment="app1"

returns no results. Why?

Tags (2)
0 Karma

wollinet
Path Finder

You can add the field in fields.conf

[environment] INDEXED = false INDEX_VALUE = false

Settings INDEX_VALUE to false should prevent the search to be expanded to "val" AND fname="val"

0 Karma

dwaddle
SplunkTrust
SplunkTrust

We do practically the same thing for some of our apps. For this to work via props.conf / transforms.conf you have to set up "environment" as an indexed field.

(props.conf)
[mysourcetype]
TRANSFORMS-env=environment

(transforms.conf)
[environment]
SOURCE_KEY=MetaData:Source
REGEX=/path/to/app/([^/]+)/log/.*\.log
FORMAT=environment::$1
WRITE_META=true

This works, but all of the usual caveats related to indexed fields apply. Something just as good might be achievable with eventtypes, but I've not tried it to see.

0 Karma

gkanapathy
Splunk Employee
Splunk Employee

The reason this happens is that a query for fname="val" on an search-time extracted field fname is internally converted to a search for ("val" AND fname="val") which first searches only for events containing the token val in the raw data. Unfortunately, your extracted field is not in the raw data, so the desired events don't come back.

0 Karma
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...