Splunk Dev

Splitting up multiple events on the same submission from python

maguec
New Member

I'm trying to have Splunk submit two separate events in one run .

 

def run():
logging.info("Running Test....")

now = time.time()
output = f"""
<stream>
<event>
<time>{now}</time>
<data>event_status="(0)Item0."</data>
</event>
<event>
<time>{now}</time>
<data>event_status="(1)Item1."</data>
</event>
</stream>
"""
print(output)

sys.stdout.flush()

 

 

This runs and the XML is submitted but it only shows as a single event

 

 

1/12/22
9:47:54.000 PM	
<stream>
  <event>
    <time>1642024074.8583786</time>
    <data>event_status="(0)Item0."</data>
  </event>
  <event>
    <time>1642024074.8583786</time>
    <data>event_status="(1)Item1."</data>
  </event>
</stream>

 

 

Is there any way to submit these two events so they show up as separate events?  I'm looking at polling multiple statistics for a multitenant application and would like to display each tenant separately.

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

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...