Files
zulip/puppet/zulip_ops/files/nagios3/conf.d/hosts.cfg
Tim Abbott 36e336edc3 puppet: Rename zulip_internal to zulip_ops.
The old "zulip_internal" name was from back when Zulip, Inc. had two
distributions of Zulip, the enterprise distribution in puppet/zulip/
and the "internal" SAAS distribution in puppet/zulip_internal.  I
think the name is a bit confusing in the new fully open-source Zulip
work, so we're replacing it with "zulip_ops".  I don't think the new
name is perfect, but it's better.

In the following commits, we'll delete a bunch of pieces of Zulip,
Inc.'s infrastructure that don't exist anymore and thus are no longer
useful (e.g. the old Trac configuration), with the goal of cleaning
the repository of as much unnecessary content as possible.
2016-10-16 19:23:27 -07:00

104 lines
2.7 KiB
INI

define host{
use generic-host
host_name lb0
alias lb0
address lb0.zulip.net
hostgroups all,pageable_servers
}
define host{
use generic-host
host_name prod0
alias prod0
address prod0.zulip.net
hostgroups all,web,frontends,pageable_servers
}
define host{
use generic-host
host_name staging
alias staging
address staging.zulip.net
hostgroups all,web,frontends,not_pageable_servers
}
define host{
use generic-host
host_name trac
alias trac
address trac.zulip.net
hostgroups all,web,not_pageable_servers,postgres_other
}
define host{
use generic-host
host_name git
alias git
address git.zulip.net
hostgroups all,web,not_pageable_servers
}
define host{
use generic-host
host_name zmirror
alias zmirror
address zmirror.zulip.net
hostgroups all,zmirror
}
define host{
use generic-host
host_name zmirror2
alias zmirror2
address zmirror2.zulip.net
hostgroups all,zmirror
}
define host{
use generic-host
host_name bots
alias bots
address bots.zulip.net
hostgroups all,not_pageable_servers
}
define host{
use generic-host
host_name postgres1
alias postgres1
address postgres1.zulip.net
hostgroups all,postgres_appdb,pageable_servers
}
define host{
use generic-host
host_name postgres3
alias postgres3
address postgres3.zulip.net
hostgroups all,postgres,postgres_appdb_primary,pageable_servers
}
define host{
use generic-host
host_name stats
alias stats
address stats.zulip.net
hostgroups all,not_pageable_servers
}
define host{
use generic-host
host_name redis0
alias redis0
address redis0.zulip.net
hostgroups all,not_pageable_servers
}
define host{
use generic-host
host_name redis1
alias redis1
address redis1.zulip.net
hostgroups all,not_pageable_servers
}