Splunk Search

How to create a regex that removes everything after a second underscore?

gbwilson
Path Finder

I have a regex that should remove everything after a second underscore. When I try to search with the regex, it doesn't work. Any ideas? I must be doing something wrong, just can't figure out what.

Data looks like this:

AB200_Cdef_233
Abcde_FG400_34
And should end up looking like this:

AB200_Cdef
Abcde_FG400

    index=cms_vm
    | eval DatastoreName=replace(DatastoreName,"^[^_]*_[^_]*\K.*$")
    | table DatastoreName
    | dedup DatastoreName
    | sort DatastoreName
Tags (2)
0 Karma
1 Solution

FrankVl
Ultra Champion

Your regex is fine, you're just missing the mandatory 3rd argument of the replace(X,Y,Z) function.

It should work fine if you run it like this:

 index=cms_vm
 | eval DatastoreName=replace(DatastoreName,"^[^_]*_[^_]*\K.*$","")
 | table DatastoreName
 | dedup DatastoreName
 | sort DatastoreName

View solution in original post

FrankVl
Ultra Champion

Your regex is fine, you're just missing the mandatory 3rd argument of the replace(X,Y,Z) function.

It should work fine if you run it like this:

 index=cms_vm
 | eval DatastoreName=replace(DatastoreName,"^[^_]*_[^_]*\K.*$","")
 | table DatastoreName
 | dedup DatastoreName
 | sort DatastoreName

ddrillic
Ultra Champion

Maybe -

index=cms_vm
 | rex field=DatastoreName "(?<DatastoreName>.*_.*)_.*"
 | table DatastoreName
 | dedup DatastoreName
 | sort DatastoreName
0 Karma

rteja9
Path Finder

Try below query,

index=cms_vm
| eval DatastoreName=replace(DatastoreName,"^[^]+[^_]+(.*)","")
| table DatastoreName
| dedup DatastoreName
| sort DatastoreName

0 Karma
Get Updates on the Splunk Community!

Developer Spotlight with Paul Stout

Welcome to our very first developer spotlight release series where we'll feature some awesome Splunk ...

State of Splunk Careers 2024: Maximizing Career Outcomes and the Continued Value of ...

For the past four years, Splunk has partnered with Enterprise Strategy Group to conduct a survey that gauges ...

Data-Driven Success: Splunk & Financial Services

Splunk streamlines the process of extracting insights from large volumes of data. In this fast-paced world, ...