Monit vs StatsD: What are the differences?
Developers describe Monit as "*A free, open-source process supervision tool *". It can monitor and manage distributed computer systems, conduct automatic maintenance and repair and execute meaningful causal actions in error situations. On the other hand, StatsD is detailed as "Simple daemon for easy stats aggregation". StatsD is a front-end proxy for the Graphite/Carbon metrics server, originally written by Etsy's Erik Kastner. StatsD is a network daemon that runs on the Node.js platform and listens for statistics, like counters and timers, sent over UDP and sends aggregates to one or more pluggable backend services (e.g., Graphite).
Monit and StatsD can be categorized as "Monitoring" tools.
Some of the features offered by Monit are:
- Responsive UI
- Control Services Remotely
- Services Monitoring modes
On the other hand, StatsD provides the following key features:
- buckets: Each stat is in its own "bucket". They are not predefined anywhere. Buckets can be named anything that will translate to Graphite (periods make folders, etc)
- values: Each stat will have a value. How it is interpreted depends on modifiers. In general values should be integer.
- flush: After the flush interval timeout (defined by config.flushInterval, default 10 seconds), stats are aggregated and sent to an upstream backend service.
StatsD is an open source tool with 14.2K GitHub stars and 1.84K GitHub forks. Here's a link to StatsD's open source repository on GitHub.