Dashboards & Visualizations

How to add label with search query on dashboard using HTML

MeMilo09
Path Finder

Hello There,

I would like to add a label to my dashboard using HTML. The label is based out of my search query using Splunk SPL. I am able to add the label but my query shows the raw source code on my dashboard. How can I get my search query to show the actual results of the query and not the source code. Below is my code. Any help is welcome: 

<html>

<body>

<h1>Sports Report</h1>

<search>

<query>

  | rest /servicesNS/-/-/data/lookup-table-files search="*_Sports_Report.csv"

| eval updated=strptime(updated,"%FT%T%:z")

| eval desired_time=strftime(updated, "%B %d, %Y")

| rename desired_time as "Last Updated" title as Team

| table "Last Updated", Team

  </query>

</search>

</body>

</html>
Labels (1)
Tags (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@MeMilo09 

You can not execute Simple XML Element I HTML panel Or code. But you can execute it outside of HTML and use in html.

Please check below sample code.

<dashboard>
  <label>Value in HTML Panel</label>
  <search>
    <query>| makeresults | eval DashboardLabel="My Dashboard Label"</query>
    <earliest>-24h@h</earliest>
    <latest>now</latest>
    <done>
      <set token="tkn_DashboardLabel">$result.DashboardLabel$</set>
    </done>
  </search>
  <row>
    <panel>
      <html>
        <body>
          <h1>$tkn_DashboardLabel$</h1>
        </body>
      </html>
    </panel>
  </row>
</dashboard>
0 Karma

MeMilo09
Path Finder

I only see the label, but not my query

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...