Splunk Search

transaction grouping with startwith and endwith

xinde
Path Finder

log format:

start: A
End: A
start: B
End: B
Start: C
Start: D
End: C
End: D
Start:E
End:F

Query I am using:
| rex field=_raw "END:(?.*)"
| transaction processEndName startswith="Start:" endswith="END:" keeporphans=false keepevicted=false
| sort -duration
| head 10
| stats avg(duration) by processEndName

In the return:
A and B can be group together correctly as:
startA
endA
startB
endB

But C and D are messed up:
startD
endC

also E only has starts, F only has ends, but their process name is different, they got grouped together as well:
startE
endF

Is there a way to properly group C/D and exclude E and F?

Thanks in advance!

0 Karma
1 Solution

mayurr98
Super Champion

Well, I think you are extracting only END process name, you need to extract START as well. As A,B,C,D,so on is your common values(Process names) which will be in both START and END.
Also, put your code in 101010 sample format so that query will display correctly.

well You query is looking absurd so can not give you correct regex but you can try something like this

(END|START):(?<processname>.*)

let me know if this helps!

View solution in original post

0 Karma

mayurr98
Super Champion

Well, I think you are extracting only END process name, you need to extract START as well. As A,B,C,D,so on is your common values(Process names) which will be in both START and END.
Also, put your code in 101010 sample format so that query will display correctly.

well You query is looking absurd so can not give you correct regex but you can try something like this

(END|START):(?<processname>.*)

let me know if this helps!

0 Karma

xinde
Path Finder

Thanks man, it works!

0 Karma

xinde
Path Finder

Not sure why the query did not display correctly
I got processEndName from the following query
| rex field=_raw "END:(?.*)"

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