我设置了一个 icinga2 安装来监控一组服务器。在客户端节点上(ubuntu 16.04,通过 apt 从 Ubuntu 存储库安装的 icinga2)我在 hosts.conf 中设置:
object Host NodeName {
/* Import the default host template defined in `templates.conf`. */
display_name = "Gitlab-CI"
import "generic-host"
/* Specify the address attributes for checks e.g. `ssh` or `http`. */
address = "127.0.0.1"
address6 = "::1"
/* Set custom attribute `os` for hostgroup assignment in `groups.conf`. */
vars.os = "Linux"
}
但在网络界面中,我只看到它的 FQDN gitlabci.example.com
。
谁可以在不删除NodeName
指令的情况下更改显示的名称,因为这是标准 Ubuntu(并且我认为所有标准 Icinga2 设置)配置的一个不错的功能?