nagios: The frontends hostgroup now includes prod and staging frontends.

This lets the config file remove some repetition.
This commit is contained in:
Alex Vandiver 2022-06-13 16:09:08 -07:00 committed by Alex Vandiver
parent 1e81775fa0
commit 4c17f2bccc
2 changed files with 3 additions and 2 deletions

View File

@ -37,6 +37,7 @@ define hostgroup {
define hostgroup {
hostgroup_name frontends
alias Frontend web servers
hostgroup_members staging_frontends, prod_frontends
}
define hostgroup {

View File

@ -4,7 +4,7 @@ define host{
host_name <%= host %>
alias <%= host %>
address <%= host %>.<%= @default_host_domain %>
hostgroups all,aws_host,web,frontends,prod_frontends,pageable_servers
hostgroups all,aws_host,web,prod_frontends,pageable_servers
}
<% end -%>
@ -24,7 +24,7 @@ define host{
host_name <%= host %>
alias <%= host %>
address <%= host %>.<%= @default_host_domain %>
hostgroups all,aws_host,web,frontends,staging_frontends,not_pageable_servers
hostgroups all,aws_host,web,staging_frontends,not_pageable_servers
}
<% end -%>