Hi,
I have a file in local directory with name myconf.conf .
This file is create by setup form filled by user.
I want to know how can to use this values in splunk query.
Myconf.conf file contain data abount customer name and email and index.
this is what is stored in .conf file
[customerinfo]
custname = eku
custemail = eku@gmail.com
indexmain = main
My requirement is to use this value in search like
indexmain | stats count by custname
Any help is appreciated.
Thanks
Hello @ektasiwani,
You can use the rest api to return configurations in Splunk. This works well for Splunk defined or Modular input conf files.
Using configs:
| rest /services/configs/conf-authorize
OR
| rest /services/configs/conf-<file>
Using properties endpoint:
| rest /services/properties/authorize
OR
| rest /services/properties/<conf_file>
Cheers,
Hello @ektasiwani,
You can use the rest api to return configurations in Splunk. This works well for Splunk defined or Modular input conf files.
Using configs:
| rest /services/configs/conf-authorize
OR
| rest /services/configs/conf-<file>
Using properties endpoint:
| rest /services/properties/authorize
OR
| rest /services/properties/<conf_file>
Cheers,