Class: IControl::ARX::VirtualServiceStats
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::ARX::VirtualServiceStats
- Defined in:
- lib/icontrol/arx.rb,
lib/icontrol/arx.rb
Overview
A structure that contains the statistics of a particular virtual service.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the virtual service.
-
#rx_dropped ⇒ Numeric
The number of receive packets dropped.
-
#rx_nonunicast ⇒ Numeric
The number of nonunicast packets received.
-
#rx_octets ⇒ Numeric
The number of bytes received.
-
#rx_unicast ⇒ Numeric
The number of unicast packets received.
-
#tx_dropped ⇒ Numeric
The number of transmit packets dropped.
-
#tx_nonunicast ⇒ Numeric
The number of nonunicast packets transmitted.
-
#tx_octets ⇒ Numeric
The number of bytes transmitted.
-
#tx_unicast ⇒ Numeric
The number of unicast packets transmitted.
Instance Attribute Details
#name ⇒ String
The name of the virtual service.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def name @name end |
#rx_dropped ⇒ Numeric
The number of receive packets dropped.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def rx_dropped @rx_dropped end |
#rx_nonunicast ⇒ Numeric
The number of nonunicast packets received.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def rx_nonunicast @rx_nonunicast end |
#rx_octets ⇒ Numeric
The number of bytes received.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def rx_octets @rx_octets end |
#rx_unicast ⇒ Numeric
The number of unicast packets received.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def rx_unicast @rx_unicast end |
#tx_dropped ⇒ Numeric
The number of transmit packets dropped.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def tx_dropped @tx_dropped end |
#tx_nonunicast ⇒ Numeric
The number of nonunicast packets transmitted.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def tx_nonunicast @tx_nonunicast end |
#tx_octets ⇒ Numeric
The number of bytes transmitted.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def tx_octets @tx_octets end |
#tx_unicast ⇒ Numeric
The number of unicast packets transmitted.
405 406 407 |
# File 'lib/icontrol/arx.rb', line 405 def tx_unicast @tx_unicast end |