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>
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!

How to Send Splunk Observability Alerts to Webex teams in Minutes

As a Developer Evangelist at Splunk, my team and I are constantly tinkering with technology to explore its ...

.conf25 Registration is OPEN!

Ready. Set. Splunk! Your favorite Splunk user event is back and better than ever. Get ready for more technical ...

Detecting Cross-Channel Fraud with Splunk

This article is the final installment in our three-part series exploring fraud detection techniques using ...