Dashboards & Visualizations

Can I pass a token in Dashboard with 2 values?

kiran331
Builder

Hi,

I have a Dashboard using two different searches. I have a drop down with zone1 and zone2. Is there a way when I select a zone1 to pass two values, each for each panel?

Tags (1)
0 Karma

somesoni2
Revered Legend

Assuming your dropdown selection values zone1 and zone2 are static, you set the token value from the dropdown to just the zone names and pass just the zone name to searches as other portion in the eventtype name is constant. So basically, your dropdown xml would be like this

<input type="dropdown" token="zone_tok">
      <label>Select a Zone</label>
      <default>splunkd</default>
      <choice value="zone1">Zone1</choice>
      <choice value="zone2">Zone2</choice>
    </input>

Your panel searches should be like this

Panel1: eventtype= "host_detection_$zone_tok$" |......

Panel2:  eventtype="vm_detection-$zone_tok$" |....
0 Karma

alemarzu
Motivator

Hi there kiran331,

If you create an eventtype for each zone you'll end up with one value as token for each zone, like this.

eventtypes.conf
[zone1]
search = (eventtype="host-detection_zone1" OR eventtype=vm_detection-zone1")
[zone2]
search = (eventtype="host-detection_zone2" OR eventtype=vm_detection-zone2")

Hope it helps.

0 Karma

somesoni2
Revered Legend

Could you provide more details? What two values will be passed and from where those two values comes from? How do you want to use those values in your panel searches?

0 Karma

kiran331
Builder

If i select Zone1 its has to pass "host_detection_zone1" & "vm_detection-zone1" and If i select zone2 it has to pass "host_detection_zone2" & "vm_detection-zone2" to the dashboard with is based on the two searches

eventtype= "host_detection_zone1" |......

eventtype="vm_detection-zone1" |....

If i select zone2 it has to show the results of

eventtype= "host_detection_zone2" |......

eventtype="vm_detection-zone2" |....

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...