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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...