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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

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

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...