Dashboards & Visualizations

Is it possible to play an audio alert when a search (single viz) on a dashboard changes?

ALXWBR
Path Finder

I have a dashboard with a real-time search that populates a single viz with a number between 1 and 7.
I was wondering if it was possible to play an audio alert when the result changes, just a simple ping from a .wav file?
I have done a bit of research but was unable to find anything suitable.

0 Karma
1 Solution

ALXWBR
Path Finder

This was actually solved with some very simple html.

I Uploaded the .mp3 files to $SPLUNK_HOME/etc/apps/[MYAPP]/appserver/static and name them 1.mp3, 2.mp3...

In the single viz, I set it to populate the result into a token using the below code.

<search base="base">
  <query>| head 1 | table position</query>
    <progress>
      <set token="position_tok">$result.position$</set>
    </progress>
</search>

In a html panel I then placed the following

<html>
  <body>
    <audio src="/static/app/[MYAPP]/$position_tok$.mp3" autoplay="autoplay"/>
  </body>
</html>

and hid the panel. Now, when the result changes, it plays the relevant mp3 file on change

View solution in original post

ALXWBR
Path Finder

This was actually solved with some very simple html.

I Uploaded the .mp3 files to $SPLUNK_HOME/etc/apps/[MYAPP]/appserver/static and name them 1.mp3, 2.mp3...

In the single viz, I set it to populate the result into a token using the below code.

<search base="base">
  <query>| head 1 | table position</query>
    <progress>
      <set token="position_tok">$result.position$</set>
    </progress>
</search>

In a html panel I then placed the following

<html>
  <body>
    <audio src="/static/app/[MYAPP]/$position_tok$.mp3" autoplay="autoplay"/>
  </body>
</html>

and hid the panel. Now, when the result changes, it plays the relevant mp3 file on change

Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...