Splunk Search

case insensitive transforms.conf

EricPartington
Communicator

is there a way to have case sensitive matches for transforms.conf?

I have a regex setting the sourcetype and index but i require matching some words with case insensitivity. is there a way to match insensitive as you would for a normal regex (i)

REGEX=:\d+\s([O|o|S|s|G|g][HOST|host].*[ABC|abc])[\w\d]+\s[

i would rather use a case insensitive regex if possible.

Tags (2)
0 Karma
1 Solution

gkanapathy
Splunk Employee
Splunk Employee

You put(?i) in your regex at the point you want it to be case-insensitive:

REGEX=(?i):d+s([osg][host].*[abc])[wd]+s[

or:

REGEX=:d+s(?i)([osg][host].*[abc])(?-i)[wd]+s[

or:

REGEX=:d+s(?i:([osg][host].*[abc]))[wd]+s[

View solution in original post

gkanapathy
Splunk Employee
Splunk Employee

You put(?i) in your regex at the point you want it to be case-insensitive:

REGEX=(?i):d+s([osg][host].*[abc])[wd]+s[

or:

REGEX=:d+s(?i)([osg][host].*[abc])(?-i)[wd]+s[

or:

REGEX=:d+s(?i:([osg][host].*[abc]))[wd]+s[

EricPartington
Communicator

works like a charm, thanks

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...