Splunk Search

how join with condition

Tzur
New Member

this is part of one table
hostname |  monitor | ip |  other fields...
aaa |v | ....
aaa |x | ...
bbb | v | ...

how can change the value of 'x' to 'v'  in the second row (when there is two diffrent value save it as V)
i should save the ip because it can be different, the other fields also can be different


the main problem it that I use join to this table by hostname which relies on the value of montior and something it got X when the real value is V
maybe  can I use join if there is V at monitor?
hope you undersatnd. 

Labels (1)
Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

hi @Tzur 

let me understand: you want to take the last value of "monitor" field or there's a rule?

if the last value, you could try:

<your_search>
| stats
     last(monitor) AS monitor
     values(ip) AS ip
     values(other_fields) AS other_fields
     BY hostname 

if there' s a rule (e.g. if ip=1.2.3.4),

you can try:

<your_search>
| stats
     values(eval(if(ip="1.2.3.4","v","x"))) AS monitor
     values(ip) AS ip
     values(other_fields) AS other_fields
     BY hostname 

Ciao.

Giuseppe

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...