我正在使用icinga2的快照版本来表示api功能。 我能够通过api动态地成功添加主机组和主机并查询它们。
但是,我无法通过icingaweb2中的api看到主机组添加。
这就是我在做的事情:
添加主机组: curl -k -s -u icingaadmin:icinga' https://localhost:5665/v1/objects/hostgroups/testgrp' -X PUT -d' {" attrs":{" name" :" testgrp" " DISPLAY_NAME" :" testgrp" ," state_loaded" :true}}'
添加主持人:
curl -k -s -u icingaadmin:icinga' https://localhost:5665/v1/objects/hosts/8.8.8.8' -X PUT -d' {" templates":[" generic-host" ]," attrs":{"地址":" 8.8.8.8" ,"群组" :[" testgrp" ]}}'
在用户界面中,我无法看到通过API创建的主机组,但主机在UI中可见。