Splunk Search

search brackets and special charachters

indeed_2000
Motivator

Hi

How can search something like this: 

40: message.body.v10.timeLocalTransaction: [00*]

 

FYI: seems not support special char in search.

 

Thanks,

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults | eval event="40: message.body.v10.timeLocalTransaction: [001]"
| regex event="40: message.body.v10.timeLocalTransaction: \[00.+\]"

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Special characters need to be escaped

| makeresults | eval event="40: message.body.v10.timeLocalTransaction: [00*]"
| regex event="40: message.body.v10.timeLocalTransaction: \[00\*\]"
0 Karma

indeed_2000
Motivator

star is wild card not "*"

e.x

[001]

[000008]

[0032]

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults | eval event="40: message.body.v10.timeLocalTransaction: [001]"
| regex event="40: message.body.v10.timeLocalTransaction: \[00.+\]"
0 Karma

indeed_2000
Motivator

It work but slow!

is it possible to do this faster? I mean tune spl command?

 

Thanks,

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Where is it slow? Analyse the job inspector to see where processing is taking place, then look to see if you can modify the query to improve the performance. Sometimes, large amounts of data take a long time to process!

Get Updates on the Splunk Community!

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...

UCC Framework: Discover Developer Toolkit for Building Technology Add-ons

The Next-Gen Toolkit for Splunk Technology Add-on Development The Universal Configuration Console (UCC) ...

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...