Splunk Search

How do I create a host name from two matches with host_regex?

kevlar0
Engager

If I'm gathering data from /data/"folder"/"subfolder" and want to make the host = "folder"-"subfolder", is this possible to do with host_regex?

Obviously I can get "folder" or "subfolder" trivially, but I can't figure out a way to append both of those strings together.

0 Karma
1 Solution

lguinn2
Legend

You can easily get "folder/subfolder", but I don't know how to change the "/" to a "-" in inputs.conf

host_regex = "/data/(.*?/.*?)/"

If you really, really must have a "-", you will have to do it at parsing time on the indexer (or heavy forwarder):

props.conf

[yoursourcetypehere]
TRANSFORMS-rh = rename_host

transforms.conf

[rename_host]
SOURCE_KEY=MetaData:Host
REGEX=(.*?)/(.*)
DEST_KEY=MetaData:Host
FORMAT=host::$1-$2

View solution in original post

lguinn2
Legend

You can easily get "folder/subfolder", but I don't know how to change the "/" to a "-" in inputs.conf

host_regex = "/data/(.*?/.*?)/"

If you really, really must have a "-", you will have to do it at parsing time on the indexer (or heavy forwarder):

props.conf

[yoursourcetypehere]
TRANSFORMS-rh = rename_host

transforms.conf

[rename_host]
SOURCE_KEY=MetaData:Host
REGEX=(.*?)/(.*)
DEST_KEY=MetaData:Host
FORMAT=host::$1-$2

kevlar0
Engager

Thanks! I'd suspected I'd need to use transforms, but was hoping I could still do it with inputs.conf.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...