Getting Data In

Route events to different indexes based on hostname

Abha111
Loves-to-Learn Lots

Hi, 

 

I want to send data to x index if the host is non prod and host name is like abc-nprd* for  /var/log

However, would like to send data to y index if host is prod and host name is like abc-prd* for /var/log

Don't want to create multiple apps for prod and non prod. So is there is way I can achieve the above by deploying the same app to prod and non prod.  

Any help appreciated. 

Thanks.

 

Labels (1)
0 Karma

bhargavi
Path Finder

Hi @Abha111 ,

Will the host name parameter come inside the events as well? If yes. you can simply define a regex in transforms.conf to route it to specific index.

Example below.

props.conf

[your_sourcetype]
enter your props
TRANSFORMS-routing=set_nonprod,setprod

transforms.conf
[set_nonprod]
REGEX = abc-nprd*
DEST_KEY = _MetaData:Index
FORMAT = index_x

[setprod]
REGEX = abc-prd*
DEST_KEY = _MetaData:Index
FORMAT = index_y

Try this. Let me know for any further questions. If this works, give thumbs-up 🙂

Happy Splunking!! 

0 Karma
Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

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

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...