mirror of https://github.com/status-im/consul.git
Merge pull request #9762 from hashicorp/er/nagios-sensu-update
Consul vs Nagios/sensu page updates
This commit is contained in:
commit
e6afd65236
|
@ -1,16 +1,16 @@
|
||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
page_title: 'Consul vs. Nagios, Sensu'
|
page_title: 'Consul vs. Nagios'
|
||||||
sidebar_title: 'Nagios, Sensu'
|
sidebar_title: 'Nagios'
|
||||||
description: >-
|
description: >-
|
||||||
Nagios and Sensu are both tools built for monitoring. They are used to quickly
|
Nagios is a tool built for monitoring. It is used to quickly
|
||||||
notify operators when an issue occurs.
|
notify operators when an issue occurs.
|
||||||
---
|
---
|
||||||
|
|
||||||
# Consul vs. Nagios, Sensu
|
# Consul vs. Nagios
|
||||||
|
|
||||||
Nagios and Sensu are both tools built for monitoring. They are used
|
Nagios is a tool built for monitoring. It is used to quickly notify
|
||||||
to quickly notify operators when an issue occurs.
|
operators when an issue occurs.
|
||||||
|
|
||||||
Nagios uses a group of central servers that are configured to perform
|
Nagios uses a group of central servers that are configured to perform
|
||||||
checks on remote hosts. This design makes it difficult to scale Nagios,
|
checks on remote hosts. This design makes it difficult to scale Nagios,
|
||||||
|
@ -20,21 +20,14 @@ difficult to use with modern DevOps and configuration management tools,
|
||||||
as local configurations must be updated when remote servers are added
|
as local configurations must be updated when remote servers are added
|
||||||
or removed.
|
or removed.
|
||||||
|
|
||||||
Sensu has a much more modern design, relying on local agents to run
|
Consul provides the same health checking abilities as Nagios,
|
||||||
checks and pushing results to an AMQP broker. A number of servers
|
is friendly to modern DevOps, and avoids the inherent scaling issues.
|
||||||
ingest and handle the result of the health checks from the broker. This model
|
Consul runs all checks locally, avoiding placing a burden on central servers.
|
||||||
is more scalable than Nagios, as it allows for much more horizontal scaling
|
The status of checks is maintained by the Consul servers, which are fault
|
||||||
and a weaker coupling between the servers and agents. However, the central broker
|
tolerant and have no single point of failure. Lastly, Consul can scale to
|
||||||
has scaling limits and acts as a single point of failure in the system.
|
vastly more checks because it relies on edge-triggered updates. This means
|
||||||
|
that an update is only triggered when a check transitions from "passing"
|
||||||
Consul provides the same health checking abilities as both Nagios and Sensu,
|
to "failing" or vice versa.
|
||||||
is friendly to modern DevOps, and avoids the scaling issues inherent in the
|
|
||||||
other systems. Consul runs all checks locally, like Sensu, avoiding placing
|
|
||||||
a burden on central servers. The status of checks is maintained by the Consul
|
|
||||||
servers, which are fault tolerant and have no single point of failure.
|
|
||||||
Lastly, Consul can scale to vastly more checks because it relies on edge-triggered
|
|
||||||
updates. This means that an update is only triggered when a check transitions
|
|
||||||
from "passing" to "failing" or vice versa.
|
|
||||||
|
|
||||||
In a large fleet, the majority of checks are passing, and even the minority
|
In a large fleet, the majority of checks are passing, and even the minority
|
||||||
that are failing are persistent. By capturing changes only, Consul reduces
|
that are failing are persistent. By capturing changes only, Consul reduces
|
|
@ -15,7 +15,7 @@ export default [
|
||||||
content: [
|
content: [
|
||||||
'zookeeper',
|
'zookeeper',
|
||||||
'chef-puppet',
|
'chef-puppet',
|
||||||
'nagios-sensu',
|
'nagios',
|
||||||
'skydns',
|
'skydns',
|
||||||
'smartstack',
|
'smartstack',
|
||||||
'serf',
|
'serf',
|
||||||
|
|
|
@ -256,8 +256,8 @@ module.exports = [
|
||||||
permanent: true,
|
permanent: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/intro/vs/nagios-sensu',
|
source: '/intro/vs/nagios',
|
||||||
destination: '/docs/intro/vs/nagios-sensu',
|
destination: '/docs/intro/vs/nagios',
|
||||||
permanent: true,
|
permanent: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue