Congratulations on the new release and, really, fantastic work!
Grafana 3.0 Stable Released
11–20 of 35 posts
Re: Grafana 3.0 Stable Released
#12Which supported data source would you recommend for a quick test ride?
Re: Grafana 3.0 Stable Released
#13Looks like a nice release! One thing I really miss in grafana and seems like it's not included is alerts. 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 responsibl…
Re: Grafana 3.0 Stable Released
#14Earlier quoted context omitted.
I'd love to hear how others manage it too. I have a bunch of little python scripts in cron jobs that pull / compare numbers from graphite and then post to slack. Adhoc but at least there was nothing much to set up / maintain and it's totally flexible. As things expand though I'd definitely like to move to something to look after it for me.
We're extremely happy campers here combining the Grafana dashboard with https://prometheus.io/ Datastore and Alerts. That project has some serious traction and is one of just a few that seems actually built for the cloud and distributed systems first , as it's primarily role and not host based.
My minimal understanding is that prometheus is time-series only so you'd have to supplement with something like ElasticSearch to aggregate logs. Does this mean you are alerting only on metrics or have multiple alert systems or ...?
Re: Grafana 3.0 Stable Released
#15Earlier quoted context omitted.
I'd love to hear how others manage it too. I have a bunch of little python scripts in cron jobs that pull / compare numbers from graphite and then post to slack. Adhoc but at least there was nothing much to set up / maintain and it's totally flexible. As things expand though I'd definitely like to move to something to look after it for me.
We're extremely happy campers here combining the Grafana dashboard with https://prometheus.io/ Datastore and Alerts. That project has some serious traction and is one of just a few that seems actually built for the cloud and distributed systems first , as it's primarily role and not host based.
Did you (or has anyone else) migrate your legacy data from graphite to prometheus? What's the grafana support like on top? Do you need to run a proxy or something to support the same querying or does it require reworking all the existing graphs?
Re: Grafana 3.0 Stable Released
#16- 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)
Re: Grafana 3.0 Stable Released
#17Looks like a nice release! One thing I really miss in grafana and seems like it's not included is alerts. 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 responsibl…
Re: Grafana 3.0 Stable Released
#18I have some random historical meteorological data (multiple time series, ~3 million values, a couple of parameters, nothing big) lying around in a MySQL database which I would love to explore. Grafana looks like a nice tool to at least visualize it. Which supported data source would you recommend for a quick test ride?
Re: Grafana 3.0 Stable Released
#19Here are some release highlights :) * 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 repos…
You (and the other contributors) are a machine. Congratulations on the release!
Re: Grafana 3.0 Stable Released
#20Things I wish were included in that release: - 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) - Swi…
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).