The Clock Panel can show the current time or a countdown/countup and updates every second.
Show the time in another office or show a countdown/countup to an important event.
Mode:
Default is time. If countdown is chosen then set the Countdown End Time to start the countdown. If countup is chosen then set the Countup Begin Time to start the countup.
12 or 24 hour:
Show time in the 12/24 hour format.
Timezone:
This timezones are supplied by the moment timezone library. Timezone can be set or left to default. Default is moment's guess (whatever that is on your computer). Timezone is also used to calculate countdown deadline in countdown mode.
Locale:
Locales for date-formatting are supplied by the moment library. The locale can be set or left to default. Default is moment's guess.
Countdown End Time:
Used in conjunction with the mode being set to countdown. Choose a date and time to count down to.
This field also supports dashboard (constant) variables (e.g. ${countdown_target}
) to dynamically set the countdown deadline for the Dashboard.
Countdown End Text:
The text to show when the countdown ends. E.g. LIFTOFF
Countup Begin Time:
Used in conjunction with the mode being set to countup. Choose a date and time to count up from.
Countup End Text:
The text to show before the countup starts. E.g. LIFTOFF
Date/Time formatting options:
The font size, weight and date/time formatting can be customized here. If the seconds ticking annoys you then change the time format to HH:mm for the 24 hour clock or h:mm A for the 12 hour clock, or see the full list of formatting options.
Bg Color:
Choose a background color for the clock with the color picker.
Sync:
The clock is paused and only updated when the dashboard refreshes - the clock will show the timestamp for the last refresh.
Using Docker:
cd
to ityarn install --pure-lockfile
yarn watch
docker run -p 3000:3000 -d --name grafana-plugin-dev --env GF_AUTH_ANONYMOUS_ORG_ROLE="Admin" --env GF_AUTH_ANONYMOUS_ENABLED="true" --env GF_AUTH_BASIC_ENABLED="false" --env GF_DEFAULT_APP_MODE="development" --volume $(pwd)/dist:/var/lib/grafana/plugins/clock-panel grafana/grafana
docker logs -f grafana-plugin-dev
To build a production build with minification: yarn build