Splunk Search

How to get max value of string inside braces

jsamadhan
New Member

Hi All,

I am new to splunk and need help in creating a table to get max value.
Below are my sample logs -

2017-05-25 14:21:06,757 INFO [http-/x.x.x.x.x:] [blablaServiceImpl] [myservices()][blablablablabla] [blablablablabla] [TOTAL_TIME_TAKEN][181]

Kindly help getting a table where max value of TOTAL_TIME_TAKEN will be displayed in (tabular foramat) per service

0 Karma

woodcock
Esteemed Legend

Like this:

Your Base Search Here
|  rex "^([^\]]+\]){2}\s*\[(?<service>.*?)\(\)\]([^\]]+\]){2}\s*\[TOTAL_TIME_TAKEN\]\s*\[(?<TOTAL_TIME_TAKEN>\d+)"
| stats max(TOTAL_TIME_TAKEN) BY service

adonio
Ultra Champion

if you have lets say 181 extracted as a value of TOTAL_TIME_TAKEN

... | stats max(TOTAL_TIME_TAKEN) by service ?
0 Karma

adonio
Ultra Champion

or... full solution by @woodcock

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