Dashboards & Visualizations

Any other way to compare between the same variable?

ViniciusMariano
Explorer

Hey Guys,

I have a problem: I have two time fields because one of the type source is json file and there is another script running, but now I have to mix both, so I created this eval:

 

| eval _time=if(match(source, "[(\S).json]\w+"), strptime(time, "%Y/%m/%d %H:%M:%S.%f"), _time)

 

but when I search I just receive the .json file search, so Is there any other way to "join"?, or at least the "if" statement ignore and just modify the json source?

Labels (1)
Tags (3)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The regex used in the match function appears to match more than is intended.  Because of the dot with the square brackets, the expression will match anything.  Try this command:

 

| eval _time=if(match(source, "\S\.json\w"), strptime(time, "%Y/%m/%d %H:%M:%S.%f"), _time)

 

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...

[Live Demo] Watch SOC transformation in action with the reimagined Splunk Enterprise ...

Overwhelmed SOC? Splunk ES Has Your Back Tool sprawl, alert fatigue, and endless context switching are making ...

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...