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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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