Earlier quoted context omitted.
Is it even right to try to compare this with New Relic? Prometheus looks very interesting and I'm trying to figure out if this is something useful to us. Thanks!
Not quite, though there is some overlap. Someone else asked me to compare Prometheus to other tools in the APM (application performance monitoring) space, and I'm going to share the summary I came up with: The way I would describe Prometheus in relation to those other tools: - Prometheus is open-source and self-hosted. - Prometheus is about dimensional numeric time series metrics only (no log-based analysis, no per-r…
Prometheus reaches 1.0
31–40 of 60 posts
Re: Prometheus reaches 1.0
#32Congrats! Prometheus + grafana are a killer duet! Easy to setup and use. Same goes for node_exporter. I only wish more JVM apps included a configuration file for the jmx_exporter and an easier to setup nginx_exporter. :) Incidentally yesterday I created a simple exporter for (linux) coretemp, hddtemp and NUT's upsc: https://github.com/andmarios/sensor_exporter
Re: Prometheus reaches 1.0
#33Earlier quoted context omitted.
What is the typical user/customer of this system ? I've found it very hard to get customers to spend time configuring a motoring system, let alone writing any scripts to gather data.
Yeah, it goes from people putting Prometheus on their Raspberry PI all the way to companies like DigitalOcean monitoring millions of machines with Prometheus ( https://promcon.io/talks/scaling_to_a_million_machines_with_... ). A lot of open-source projects (Kubernetes, Etcd, ...) are also exposing native Prometheus metrics now, making it easier to integrate with those. EDIT: also check the PromCon schedule for other…
Re: Prometheus reaches 1.0
#34Earlier quoted context omitted.
What is the typical user/customer of this system ? I've found it very hard to get customers to spend time configuring a motoring system, let alone writing any scripts to gather data.
I'm not sure there is a typical user. We've got everything from single-sysadmin small companies to Fortune 500s to companies looking to integrate it into their products. https://prometheus.io/blog/2016/03/23/interview-with-life360... and https://prometheus.io/blog/2016/05/01/interview-with-showmax... look at two of our users.
Re: Prometheus reaches 1.0
#35Congrats! Prometheus + grafana are a killer duet! Easy to setup and use. Same goes for node_exporter. I only wish more JVM apps included a configuration file for the jmx_exporter and an easier to setup nginx_exporter. :) Incidentally yesterday I created a simple exporter for (linux) coretemp, hddtemp and NUT's upsc: https://github.com/andmarios/sensor_exporter
Funny coincidence, yesterday I did almost the same thing, though mine's based on lm-sensors and hddtemp: https://github.com/ncabatoff/sensor-exporter
I started with the same path, using github.com/prometheus/client_golang/prometheus, but it exported too many application metrics (an order of magnitude more than the sensors I exported :p), so I went to a more custom approach.
Re: Prometheus reaches 1.0
#36Earlier quoted context omitted.
Is it even right to try to compare this with New Relic? Prometheus looks very interesting and I'm trying to figure out if this is something useful to us. Thanks!
Not quite, though there is some overlap. Someone else asked me to compare Prometheus to other tools in the APM (application performance monitoring) space, and I'm going to share the summary I came up with: The way I would describe Prometheus in relation to those other tools: - Prometheus is open-source and self-hosted. - Prometheus is about dimensional numeric time series metrics only (no log-based analysis, no per-r…
Any thoughts on a companion (open source) system that focuses more on logs and such?
Re: Prometheus reaches 1.0
#37Earlier quoted context omitted.
Not quite, though there is some overlap. Someone else asked me to compare Prometheus to other tools in the APM (application performance monitoring) space, and I'm going to share the summary I came up with: The way I would describe Prometheus in relation to those other tools: - Prometheus is open-source and self-hosted. - Prometheus is about dimensional numeric time series metrics only (no log-based analysis, no per-r…
> Prometheus is about dimensional numeric time series metrics only (no log-based analysis, no per-request tracing, etc.). Any thoughts on a companion (open source) system that focuses more on logs and such?
Re: Prometheus reaches 1.0
#38Earlier quoted context omitted.
I'm not sure there is a typical user. We've got everything from single-sysadmin small companies to Fortune 500s to companies looking to integrate it into their products. https://prometheus.io/blog/2016/03/23/interview-with-life360... and https://prometheus.io/blog/2016/05/01/interview-with-showmax... look at two of our users.
What is the business model, do you charge per input, server core or ?
Read more here: https://prometheus.io/docs/introduction/overview/ and here: https://prometheus.io/community/
Re: Prometheus reaches 1.0
#39Earlier quoted context omitted.
I'm not sure there is a typical user. We've got everything from single-sysadmin small companies to Fortune 500s to companies looking to integrate it into their products. https://prometheus.io/blog/2016/03/23/interview-with-life360... and https://prometheus.io/blog/2016/05/01/interview-with-showmax... look at two of our users.
What is the business model, do you charge per input, server core or ?
Re: Prometheus reaches 1.0
#40Is anyone using Promotheus for monitoring micro-services deployed with Kubernetes? Any feedbacks?