Earlier quoted context omitted.
The one thing that holds me back is the pull nature of Prometheus. We are pushing metrics already, so moving to a pull model feels like a return to the 20th century.
It actually tends to work a lot better. You almost never actually need metric granularity so fine that push is necessary. If you do, your usually using a purpose built tool for that. It also saves you from accidentally DOSing yourself when someone starts unexpectedly emitting more metrics than you can ingest (due to bug, more traffic, etc). All doable with push based systems but they tend to end up using queues or so…
Grafana 3.0 Stable Released
31–35 of 35 posts
Re: Grafana 3.0 Stable Released
#32I've used grafana from a browser at a company once, and liked it a lot. However, when I've looked at installing it myself, the docs immediately start talking about other projects, like influxdb and elasticsearch, things I know little about nor want to. Conversely, the things I do want to know about, what is it written in, architecture, how to send data?, etc, are missing or buried somewhere. Is there an easy tutorial…
Re: Grafana 3.0 Stable Released
#33I 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
#34Earlier quoted context omitted.
It actually tends to work a lot better. You almost never actually need metric granularity so fine that push is necessary. If you do, your usually using a purpose built tool for that. It also saves you from accidentally DOSing yourself when someone starts unexpectedly emitting more metrics than you can ingest (due to bug, more traffic, etc). All doable with push based systems but they tend to end up using queues or so…
Actually, you probably want to have both. Push is great when you are collecting results of some operations, otherwise you would have to save data somewhere until it is fetched.
Re: Grafana 3.0 Stable Released
#35I've used grafana from a browser at a company once, and liked it a lot. However, when I've looked at installing it myself, the docs immediately start talking about other projects, like influxdb and elasticsearch, things I know little about nor want to. Conversely, the things I do want to know about, what is it written in, architecture, how to send data?, etc, are missing or buried somewhere. Is there an easy tutorial…
Technically speaking, you don't send data to Grafana -- it polls a data source (like influxdb, elasticsearch and graphite).