Hey@jeffbat,
In HTML and JS,
you can reference this as such:
var element2 = new ChartElement({
"id": "element2",
"resizable": true,
"refresh.auto.interval": "30",
"managerid": "search2",
"el": $('#element2')
}, {tokens: true}).render();
In Simple XML, you can reference this as such:
<panel>
<chart>
<title>Enable auto refresh of 30s</title>
<searchString>index=_internal | top limit=3 sourcetype</searchString>
<earliestTime>-60m@m</earliestTime>
<latestTime>now</latestTime>
<option name="refresh.auto.interval">30</option>
</chart>
</panel>
Let me know if this helps!!
... View more