Getting Data In

Fetching data in splunk using API

anujsharma19109
New Member

Hi Team,
I need suggestion please, I want to import XML data to Splunk using below py script

My concerns are:

  1. Can I directly configure  py script output to index data in Splunk using inputs.conf, or first I need to save output into a .csv file. If yes can anyone please suggest some approach so that data does not get changed after storing it into a new .csv file.
  2. 2)How can I configure that .py file to fetch data in every 5 min.

CODE :

import requests
import xmltodict
import json

url = "https://www.w3schools.com/xml/plant_catalog.xml"

response = requests.get(url)
content=xmltodict.parse(response.text)
print(content)

 

Labels (2)
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...