It would be so damn convenient to have data visualization and alerts on the same system because usually they are strongly related from the user point of view. And, well, one thing less to setup and maintain.
However, I am aware of the debate whether alerts do actually belong to grafana, or should it be responsible for visualization only and seems like they have settled with the later. Which definitely makes sense because once you start to expand to alerting it's a whole new world and I respect the choice. So yeah, I am a bit sad as a user, however I totally get the authors.
Maybe it will be available as a plugin?
That being said... What tools HNers are using for placing alerts on data stored in graphite?
As things expand though I'd definitely like to move to something to look after it for me.
[1]: https://github.com/sensu-plugins/sensu-plugins-graphite
Which supported data source would you recommend for a quick test ride?
Here is a comment on druid I posted recently:
* Big UI improvements and polish
* Redesigned plugin architecture and SDK
* Grafana-cli command line tool shipped with grafana,
installs plugins
* Persisted dashboard playlists
* Preferences like home dashboard, timezone and theme on
org and user level
* New plugin types, Apps, and Panels.
* New platform site built around Grafana at Grafana.net
* Plugin repository
* Dashboard repository (coming soon)
* Hosted Grafana and Hosted metrics (coming soon)
* Monitoring and backups of on-prem Grafana (coming soon)
* Annotation popovers can contain clickable links
* Templated data source Easiy reuse the same dashboard for multiple data source instances
* OSX Homebrew support Homebrew installation instructions
* Support for InfluxDB 0.11+ (and new functions)
Youtube screencast with feature showcase:
https://www.youtube.com/watch?v=1kJyQKgk_oYCongratulations on the new release and, really, fantastic work!
Is there an easy tutorial on how to start sending it data after install? That's all I want. Also, would like to use standard tools like curl, python, and postgres, is that possible?
- Some amount of caching/pre-fetching so moving the graph around doesn't take a few seconds each time. At least in the cases where I am zooming in and all the data is already loaded on the client it shouldn't need a network round trip.
- The ability to drag the charts left and right by keeping the shift key pressed, as is the default on Dygraphs charts (dygraphs.com)
- Switch from Flot to Dygraphs would make client-side rendering faster (at least for the typical line charts)
The main problem with prefetching or doing delta fetches is that some queries depend on the whole time range to execute (like moving average, integral, derivate).