Splunk Search

Multi value event merging and breaking

ramanjain1983
Path Finder

Hi there,

I am trying working out a scenario with Splunk and having a hard time on it.

I have got a XML which has the order number in it. I need to do everything at search time.

Example XPATH: //OrderNumber (the number of occurrence is one only in whole XML)
Then I am pulling out all the sub orders inside this order by using XPATH= //OrderNumber/SubOrderNumber ( this is dynamic - which means it can have more than 1 occurrences)
Then I am also looking for there statuses in the XML against the SubOrderNumber using XPATH= //OrderNumber/SubOrderNumberSTATUS ( this is dynamic - which means it can have more than 1 occurrences but it may be less or more than the sub order numbers)

Now the problem is that all these fields are pulled out quite well but they all are in single event.

Results:-


Event 1:

OrderNumber SubOrderNumber  SubOrderNumberStatus
12345        12345-1         Open
             12345-2         Closed
             12345-3        

But I want to see the output as individual events , something like this:

OrderNumber SubOrderNumber  SubOrderNumberStatus
12345        12345-1         Open
12345        12345-2         Closed
12345        12345-3         {leave it blank}

The above should be 3 different events.

I tried using the below query which works fine if all the fields have some data :-

| fields OrderNumber SubOrderNumber SubOrderNumberStatus
|eval fields=mvzip(OrderNumber,SubOrderNumber) | mvexpand fields | eval temp=split(fields,",") | eval OrderNumber_new =mvindex(temp,0)|eval SubOrderNumber_new =mvindex(temp,1)| table OrderNumber_new, SubOrderNumber_new

Can anyone please provide some pointer around it.

Thanks in advance.

Tags (2)
0 Karma

ramanjain1983
Path Finder

Easy this one!
I was unnecessarily complicating it by using mvzip.

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, ...