All Apps and Add-ons

Constant strings

dreadangel
Path Finder

Hi,

I'm using dbdata (https://splunkbase.splunk.com/app/4253/) application in order to access my REST endpoint to collect events to splunk.
Here is a sample:

| dbdata url="[Endpoint url]?param1=value1&param2=value2" headers="[headers data]"

So as far I have several searches, is it possible in splunk to consfigure parametrized constants for url and headers params, so I could reuse them in those searches - kind of searches global config:

| dbdata url=URL_CONSTANT."?param1=value1&param2=value2" headers=HEADER_CONSTANT

Any thoughts?

0 Karma
1 Solution

woodcock
Esteemed Legend

Yes, first create macros called URL_CONSTANT and HEADER_CONSTANT that have your strings, then use it like this:

| makereuslts
| eval url = `URL_CONSTANT` . "?param1=value1&param2=value2", headers=`HEADER_CONSTANT`
| map search="| dbdata url=$url$ headers=headers"

View solution in original post

woodcock
Esteemed Legend

Yes, first create macros called URL_CONSTANT and HEADER_CONSTANT that have your strings, then use it like this:

| makereuslts
| eval url = `URL_CONSTANT` . "?param1=value1&param2=value2", headers=`HEADER_CONSTANT`
| map search="| dbdata url=$url$ headers=headers"

dreadangel
Path Finder

thanks, macros is the solution here -

Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...