We had the same issue. Adding the Proxy Certs to this file did do the trick. /opt/splunk/etc/apps/Splunk_TA_aws/bin/3rdparty/python3/certifi/cacert.pem
... View more
My customer did come up with this little generic code using the css classes from Splunk itself. Just put it inside the fieldset tag and change the href to the dashboard filename:
<html>
<style>
div.fieldset.dashboard-form-globalfieldset div.dashboard-element.html.dashboard-element-html {
display: inline-block;
}
</style>
<a href="{dashboard_filename}" class="btn btn-primary">Reset</a>
</html>
... View more
It does work for me with the new 'refresh' tag:
Setting the interval with an input:
<input type="radio" token="refresh_interval" searchWhenChanged="true">
<label>Panel Refresh</label>
<choice value="24h">no refresh</choice>
<choice value="1m">1 Minute</choice>
<choice value="5m">5 Minutes</choice>
<default>1m</default>
<initialValue>1m</initialValue>
</input>
And then setting this inside the
<refresh>$refresh_interval$</refresh>
... View more