我曾经Kolla
部署OpenStack
,但他们现在没有。
公制
问问题
587 次
1 回答
-1
This is not an issue in Kolla
and an issue in Ceilometer
.
The OpenStack compute service must be configured to use Telemetry. Then, Ceilometer can extract CPU, memory and disk usage from the VMs. Add the following in /etc/nova/nova.conf
on all the compute nodes:
[DEFAULT]
...
instance_usage_audit = True
instance_usage_audit_period = hour
notify_on_state_change = vm_and_task_state
compute_monitors= cpu.virt_driver
[oslo_messaging_notifications]
...
driver = messagingv2
I suggest using the latest Ceilometer
release (10.0.0
or Queens
):
https://releases.openstack.org/teams/telemetry.html https://docs.openstack.org/releasenotes/ceilometer/queens.html
于 2018-02-10T03:21:03.633 回答