Splunk Dev

Splunk Python conf file read/write

arun_kant_sharm
Path Finder

Hi Experts,

For an app creation, I need to create my own .conf file. Please inform me How I create a custom conf file, and how I read and write data in that conf file using Python.
Please inform me where I can learn Splunk Python packages, better if it in present in any youtube channel.

Labels (1)
0 Karma

gaurav_maniar
Builder

hi Arun,

Your question is very broad, but I will try to answer it as specific as possible.

Create Custom .conf file
- You can include setup.xml in your application. Using it you can create your custom conf and modify it.
- It will be accessible to users from "Manage Apps" page.
- Setup page is useful when you want to customize an app for a particular usage
- You can update the values using the setup page. The values will be saved in local directory of the app
- https://dev.splunk.com/enterprise/docs/developapps/setuppage

Now, to read the custom conf value, use the below code with your splunk python script,

from splunk.clilib import cli_common as cli
.
...
.
cfg = cli.getConfStanza('custom_conf_file_name','custom_stanza')
print cfg.get('parameter')

Let me know if you have any queries.

0 Karma

mcederhage_splu
Splunk Employee
Splunk Employee
0 Karma
Get Updates on the Splunk Community!

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2025 SplunkTrust is officially open! If you ...

Splunk Answers Content Calendar, June Edition II

Get ready to dive into Splunk Dashboard panels this week! We'll be tackling common questions around ...

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...