Dashboards & Visualizations

How to get the day of week everyday in dropdown in Dashboards?

uhkc777
Explorer

I add the input dropdown to my dashboard which having Days of week from monday to sunday. But it needs to take the default value based on day of week of Today.

Suppose Today is Thursday, it will take Thursday as Default value. Tomorrow it should change to Friday as default value.

Is it possible to pass like that?

Thanks

Tags (1)
0 Karma

niketn
Legend

Create a base search in the dashboard to generate Date Day token

<search>
  <query>| makeresults 
| eval TodayWeekDay=strftime(now(),"%A")
| table TodayWeekDay
  </query>
  <preview>
    <set token="DefaultWeekDay">$result.TodayWeekDay$</set>
  <preview>
</search>

In the dropdown input XML code select default as $DefaultWeekDay$

<input type="dropdown" .....
   ....
   ....
   ....
   <default>$DefaultWeekDay$</default>
 </input>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

jkat54
SplunkTrust
SplunkTrust

| makeresults count=1| eval DayOfWeek=strftime(now(),"%A") | fields DayOfWeek

Similar to somesoni2 but slightly different too. should run completely on the indexers and spare the search heads.

0 Karma

somesoni2
Revered Legend

This should do it

<input type="dropdown" token="dayOfWeek">
      <label>Day Of Week</label>
      <search>
        <query>| gentimes start=-7  | eval DayOfWeek=strftime(starttime,"%A") | table DayOfWeek</query>
      </search>
      <fieldForLabel>DayOfWeek</fieldForLabel>
      <fieldForValue>DayOfWeek</fieldForValue>
      <selectFirstChoice>true</selectFirstChoice>
    </input>
0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...