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!

Security Professional: Sharpen Your Defenses with These .conf25 Sessions

Sooooooooooo, guess what. .conf25 is almost here, and if you're on the Security Learning Path, this is your ...

First Steps with Splunk SOAR

Our first step was to gather a list of the playbooks we wanted and to sort them by priority.  Once this list ...

How To Build a Self-Service Observability Practice with Splunk Observability Cloud

If you’ve read our previous post on self-service observability, you already know what it is and why it ...