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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...