Hi ,
I've been trying to play an audio when the dashboard loads. but can't seem to make it work.
mp3 file path
/opt/splunk/etc/apps/(APPNAME)/appserver/static/welcome.mp3
Splunk code:
<dashboard>
<label>AudioWelcome_POC</label>
<row>
<panel>
<title>SAMPLE PANEL</title>
<html>
<body>
<audio src="welcome.mp3" autoplay="autoplay"/>
</body>
</html>
<table>
<search>
<query>index=""</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
</table>
</panel>
</row>
</dashboard>
... View more