Splunk Search

relating fields with eval

jrich523
Path Finder

I have two fields (different sourcetypes) that have a Node ( for example: node001) and NodeID (example: 1)

How would i extract Node to NodeID dealing with the leading zeros?

Tags (2)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

First you'll need to search for events from both sourcetypes, then normalize your Node field to match the NodeID field, and then do whatever you're actually trying to do with the data:

  sourcetype=eventsWithNodeID OR sourcetype=eventsWithNode
| rex field=Node "0*(?<tempNodeID>\d+)$" | eval mergedNodeID = case(sourcetype="eventsWithNodeID", NodeID, sourcetype="eventsWithNode", tempNodeID)
| stats values(foo) as foo max(bar) as bar by mergedNodeID

Check out the excellent March 2016 Virtual.conf talk by @sideview on this very subject available at http://wiki.splunk.com/Virtual_.conf

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

First you'll need to search for events from both sourcetypes, then normalize your Node field to match the NodeID field, and then do whatever you're actually trying to do with the data:

  sourcetype=eventsWithNodeID OR sourcetype=eventsWithNode
| rex field=Node "0*(?<tempNodeID>\d+)$" | eval mergedNodeID = case(sourcetype="eventsWithNodeID", NodeID, sourcetype="eventsWithNode", tempNodeID)
| stats values(foo) as foo max(bar) as bar by mergedNodeID

Check out the excellent March 2016 Virtual.conf talk by @sideview on this very subject available at http://wiki.splunk.com/Virtual_.conf

changux
Builder

Hi. Something like:

sourcetype=X OR sourcetype=Y | rename Node* as *

Can be an option.

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...