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 (2)
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!

Streamline Data Ingestion With Deployment Server Essentials

REGISTER NOW!Every day the list of sources Admins are responsible for gets bigger and bigger, often making the ...

Remediate Threats Faster and Simplify Investigations With Splunk Enterprise Security ...

REGISTER NOW!Join us for a Tech Talk around our latest release of Splunk Enterprise Security 7.2! We’ll walk ...

Introduction to Splunk AI

WATCH NOWHow are you using AI in Splunk? Whether you see AI as a threat or opportunity, AI is here to stay. ...