ceilometer.network.statistics.port_v2

Source code for ceilometer.network.statistics.port_v2

#
# Copyright (C) 2017 Ericsson India Global Services Pvt Ltd.
#
#  Licensed under the Apache License, Version 2.0 (the "License"); you may
#  not use this file except in compliance with the License. You may obtain
#  a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#  License for the specific language governing permissions and limitations
#  under the License.


from ceilometer.network import statistics
from ceilometer import sample


[docs]class PortPollster(statistics._Base): meter_name = 'port' meter_type = sample.TYPE_GAUGE meter_unit = 'port'
[docs]class PortPollsterUptime(statistics._Base): meter_name = 'port.uptime' meter_type = sample.TYPE_GAUGE meter_unit = 's'
[docs]class PortPollsterReceivePackets(statistics._Base): meter_name = 'port.receive.packets' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'packet'
[docs]class PortPollsterTransmitPackets(statistics._Base): meter_name = 'port.transmit.packets' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'packet'
[docs]class PortPollsterReceiveBytes(statistics._Base): meter_name = 'port.receive.bytes' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'B'
[docs]class PortPollsterTransmitBytes(statistics._Base): meter_name = 'port.transmit.bytes' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'B'
[docs]class PortPollsterReceiveDrops(statistics._Base): meter_name = 'port.receive.drops' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'packet'
[docs]class PortPollsterReceiveErrors(statistics._Base): meter_name = 'port.receive.errors' meter_type = sample.TYPE_CUMULATIVE meter_unit = 'packet'
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.