First time here? Check out the FAQ!
![]() | 1 | initial version |
Hi karma,
I did lot of debugging and found network_incoming_packets_rate and network_outgoing_packet_rate metric not supported by vSphere inspector. I checked for KVM and i can see all network related metric like: site-packages/ceilometer/compute/virt/libvirt/inspector.py dom_stats = domain.interfaceStats(name) stats = virt_inspector.InterfaceStats(rx_bytes=dom_stats[0], rx_packets=dom_stats[1], tx_bytes=dom_stats[4], tx_packets=dom_stats[5])
For Vmware-> site-packages/ceilometer/compute/virt/vmware/inspector.py stats = virt_inspector.InterfaceRateStats(rx_bytes_rate, tx_bytes_rate)
Please help here because in openstack doc its clearly mention packet rate metric supported for Vmware but in python code its missing.
![]() | 2 | No.2 Revision |
Hi karma,yprokule's,
I did lot of debugging and found network_incoming_packets_rate and network_outgoing_packet_rate metric not supported by vSphere inspector. I checked for KVM and i can see all network related metric like: site-packages/ceilometer/compute/virt/libvirt/inspector.py dom_stats = domain.interfaceStats(name) stats = virt_inspector.InterfaceStats(rx_bytes=dom_stats[0], rx_packets=dom_stats[1], tx_bytes=dom_stats[4], tx_packets=dom_stats[5])
For Vmware-> site-packages/ceilometer/compute/virt/vmware/inspector.py stats = virt_inspector.InterfaceRateStats(rx_bytes_rate, tx_bytes_rate)
Please help here because in openstack doc its clearly mention packet rate metric supported for Vmware but in python code its missing.