1

我设置了一个 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 设置)配置的一个不错的功能?

4

1 回答 1

1

我从自下而上移动到自上而下的配置模式并将 Icinga2 更新到 2.6.0 版本,然后它按照上述问题中的描述工作。

于 2017-03-29T06:52:11.340 回答