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 Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...