Icinga2 -- 主机的 display_name 被 icingaweb2 忽略

Icinga2 -- host's display_name is ignored by icingaweb2

我设置了一个 icinga2 安装来监控一组服务器。在客户端节点上(ubuntu 16.04,icinga2 通过 apt 从 Ubuntu 存储库安装)我在 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"
  }

但在 Web 界面中我只看到它的 FQDN gitlabci.example.com

谁可以在不删除 NodeName 指令的情况下更改显示名称,因为这是标准 Ubuntu(我认为所有标准 Icinga2 设置)配置的一个很好的功能?

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