Dashboards & Visualizations

How to display last refreshed/updated time in dashboard?

koshyk
Super Champion

May be a quick question to UI experts out there.
My dashboard have auto-refresh enabled, but wanted to show the "last updated" (refreshed) time in another panel.
Is there an easy simpleXML function for this?

(I'm thinking of running a dummy search and putting the timestamp as last resort)

Cheers

0 Karma
1 Solution

somesoni2
Revered Legend

You can set a token to the current time when your panel search is completed. You can then use the token in other panel to display it. I think it can be done with something like this:-

<panel>
      <title></title>
     <table>
      <search>
        <query>index=_internal |  top sourcetype</query>
        <earliest>0</earliest>
        <latest>now</latest>
        <done>
          <eval token="lastUpdatedOn">strftime(now(),"%m/%d/%Y %H:%M:%S")</eval>
        </done>
      </search>
     ...other options
    </table>
    </panel>

Reference:

http://docs.splunk.com/Documentation/Splunk/6.4.1/Viz/PanelreferenceforSimplifiedXML#search

View solution in original post

somesoni2
Revered Legend

You can set a token to the current time when your panel search is completed. You can then use the token in other panel to display it. I think it can be done with something like this:-

<panel>
      <title></title>
     <table>
      <search>
        <query>index=_internal |  top sourcetype</query>
        <earliest>0</earliest>
        <latest>now</latest>
        <done>
          <eval token="lastUpdatedOn">strftime(now(),"%m/%d/%Y %H:%M:%S")</eval>
        </done>
      </search>
     ...other options
    </table>
    </panel>

Reference:

http://docs.splunk.com/Documentation/Splunk/6.4.1/Viz/PanelreferenceforSimplifiedXML#search

Taruchit
Contributor

Hi @somesoni2 

Thank you for sharing your inputs. I am able to get the date and time on the dashboard. 
in my scenario, the dashboard takes data from lookup table, which is being updated at runtime. 

 

0 Karma

koshyk
Super Champion

Cheers. It works

0 Karma

somesoni2
Revered Legend

What version of Splunk you're using?

0 Karma

koshyk
Super Champion

6.4.1 enterprise

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...