Splunk Search

How to compare two columns in two different table panels, and show the matching values in a different panel?

bharathkumarnec
Contributor

Hello,

I have two different panels in a dashboard and the common field is a time field. I need to compare these two time fields, and if they match, I want to show the same matching values in a different panel.

Your inputs will help me a lot!

Thanks in advance!

0 Karma
1 Solution

lguinn2
Legend

As @somesoni2 said, you can't actually compare across panels in a dashboard. But you could create a third panel, with this search

index=xyz host=abc (condition1) OR (condition2) 
| eval commonTime = coalesce(rtime,stime)
| stats values(def) as DEF values(ghi) AS GHI by commonTime
| where isnotull(DEF) AND isnotnull(GHI)

Note that the above search requires an exact match of the time fields. Often, times may vary by as much as a few seconds and still be considered a match. If this is true in your case, you might want to use the the bin command to "round" the time. To "round" to the second, insert the following as the third command in the sequence:

| bin span=1s commonTime

View solution in original post

lguinn2
Legend

As @somesoni2 said, you can't actually compare across panels in a dashboard. But you could create a third panel, with this search

index=xyz host=abc (condition1) OR (condition2) 
| eval commonTime = coalesce(rtime,stime)
| stats values(def) as DEF values(ghi) AS GHI by commonTime
| where isnotull(DEF) AND isnotnull(GHI)

Note that the above search requires an exact match of the time fields. Often, times may vary by as much as a few seconds and still be considered a match. If this is true in your case, you might want to use the the bin command to "round" the time. To "round" to the second, insert the following as the third command in the sequence:

| bin span=1s commonTime

bharathkumarnec
Contributor

Thanks a lot lguinn, it is very helpful!

0 Karma

somesoni2
Revered Legend

How about using search for both the panels to populate 3rd panel? As far as I know, for simple xml, results for one panel can't be accessed in other panel. Could you post your current query ?

0 Karma

bharathkumarnec
Contributor

Thanks for your reply:

First Panel Query : index=xyz host=abc condition1 | table rtime,def
Second Panel Query : index=xyz host=abc condition2 | table stime,ghi

I need to comparre rtime and stime from two panels and project common values in third panel.

0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...