@kmjefferson42 Hi Ken! What you're looking to do is possible in Simple XML Dashboards (don't know about Studio). Interesting that you already have this, but can't reverse engineer it? That might req...
See more...
@kmjefferson42 Hi Ken! What you're looking to do is possible in Simple XML Dashboards (don't know about Studio). Interesting that you already have this, but can't reverse engineer it? That might require more details in a different question. To answer the question you asked, please find a run-anywhere example below. To use it, create a new classic (simple xml) dashboard, click "source" to edit the xml code, delete the existing lines, and paste the below example in. This will give you the bones to creating all the panels you want with hyperlinks. <dashboard version="1.1">
<label>dashboard panel for links</label>
<row>
<panel>
<html>
<h2>Panel 1</h2>
<p>
<ul>
<li>This is a bulleted list of notes. Copy and paste this line of html for each bullet needed</li>
<li><a href="https://www.splunk.com/">Replace this URL with your search, report, or dashboard URL</a></li>
</ul>
</p>
</html>
</panel>
<panel>
<html>
<h2>Panel 2</h2>
<p>
<ul>
<li>Same content below. Showing multiple panels are possible on the same row. Season to taste.</li>
<li><a href="https://www.splunk.com/">Replace this URL with your search, report, or dashboard URL</a></li>
</ul>
</p>
</html>
</panel>
</row>
</dashboard>