Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.49 KB

README.md

File metadata and controls

61 lines (38 loc) · 1.49 KB

Grafana Gauge Panel

This panel plugin provides a FlipClock based counter panel for Grafana 3.x

Screenshots

Example counter

Screenshot

Screencast

Building

This plugin relies on Grunt/NPM/Bower, typical build sequence:

npm install
bower install
grunt

For development, you can run:

grunt watch

The code will be parsed then copied into "dist" if "jslint" passes without errors.

External Dependencies

  • Grafana 3.x

Build Dependencies

  • npm
  • bower
  • grunt

Usage Tips

This panel expects a data series result from your query. It'll update counter to sum of all but the last point and uses that point to predict its rate. So technically it's showing an earlier value off by query Group By time.

For the best result I recommend you add another time shift to the panel using Time Range option tab. This way you'll have a more complete data to predict the rate from.

Acknowledgements

This panel is based on FlipClock and built upon Grafana gauge panel skeleton.

Changelog

v0.0.4
  • Always refresh if the previous rate calculation failed
v0.0.3
  • Throttle refresh frequency
v0.0.2
  • Initial commit