All Apps and Add-ons

Passing the results or values from one Dashboard to another dashboard

ncbshiva
Communicator

Hi I have some results in Dashboard1
Example- No of Students in Classroom=120

I need the above result to be used in Dashboard2 for some computation.

Is this possible in splunk to pass the Dynamic results from one Dashboard to another ..?

Please help me in this..

Thanking you in advance

Tags (1)
0 Karma
1 Solution

sideview
SplunkTrust
SplunkTrust

You've tagged the question with Sideview Utils and this is certainly quite easy with Sideview Utils. After you've familiarized yourself with the first couple pages of overview docs within the app itself, look in the menu under "Key Techniques > Linking"

The most common scenario is from a Table or Chart click.

A Sideview Table module just looks like

<module name="Table" />

but to make it clickable and to make that click take the user to a view called Dashboard2, and pass the timerange and the field called "number_of_students", would look like this:

<module name="Table">

  <module name="Redirector">
    <param name="url">Dashboard2</param>
    <param name="arg.number_of_students">$row.fields.number_of_students$</param>
    <param name="arg.earliest">$search.timeRange.earliest$</param>
    <param name="arg.latest">$search.timeRange.latest$</param>
  </module>
</module>

View solution in original post

sideview
SplunkTrust
SplunkTrust

You've tagged the question with Sideview Utils and this is certainly quite easy with Sideview Utils. After you've familiarized yourself with the first couple pages of overview docs within the app itself, look in the menu under "Key Techniques > Linking"

The most common scenario is from a Table or Chart click.

A Sideview Table module just looks like

<module name="Table" />

but to make it clickable and to make that click take the user to a view called Dashboard2, and pass the timerange and the field called "number_of_students", would look like this:

<module name="Table">

  <module name="Redirector">
    <param name="url">Dashboard2</param>
    <param name="arg.number_of_students">$row.fields.number_of_students$</param>
    <param name="arg.earliest">$search.timeRange.earliest$</param>
    <param name="arg.latest">$search.timeRange.latest$</param>
  </module>
</module>
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...