icontrol 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
- module IControl
1
+ module IControl # :nodoc:
2
2
 
3
- class ArrayMapper
3
+ class ArrayMapper # :nodoc:
4
4
  def self.map_object(result)
5
5
  case result[:array_type]
6
6
  when /string/ then result[:item]
@@ -45,7 +45,7 @@ module IControl
45
45
  end
46
46
 
47
47
 
48
- class StatMapper
48
+ class StatMapper # :nodoc:
49
49
  def self.map_object(result)
50
50
  ArrayMapper.map_object(result[:statistics])
51
51
  end
@@ -53,7 +53,7 @@ module IControl
53
53
 
54
54
  MAPPINGS = { "A:Array" => ArrayMapper, "iControl:LocalLB.VirtualServer.VirtualServerStatistics" => StatMapper }
55
55
 
56
- class Mappings
56
+ class Mappings # :nodoc:
57
57
  def self.map_object(return_object)
58
58
  return MAPPINGS[return_object[:type]].map_object(return_object) if return_object.is_a?(Hash)
59
59
  return return_object
@@ -1,950 +1,950 @@
1
- module IControl::Common
1
+ module IControl::Common # :nodoc:
2
2
  class StatisticType
3
3
  # Number of times a virtual server has been unabled to direct connection to a node.
4
- class STATISTIC_NO_NODE_ERRORS ; VALUE = 0; end
4
+ STATISTIC_NO_NODE_ERRORS = 0
5
5
  # The minimum duration of connection.
6
- class STATISTIC_MINIMUM_CONNECTION_DURATION ; VALUE = 1; end
6
+ STATISTIC_MINIMUM_CONNECTION_DURATION = 1
7
7
  # The mean duration of connection.
8
- class STATISTIC_MEAN_CONNECTION_DURATION ; VALUE = 2; end
8
+ STATISTIC_MEAN_CONNECTION_DURATION = 2
9
9
  # The maximum duration of connection.
10
- class STATISTIC_MAXIMUM_CONNECTION_DURATION ; VALUE = 3; end
10
+ STATISTIC_MAXIMUM_CONNECTION_DURATION = 3
11
11
  # Total number of requests.
12
- class STATISTIC_TOTAL_REQUESTS ; VALUE = 4; end
12
+ STATISTIC_TOTAL_REQUESTS = 4
13
13
  # Total number of connections assisted by PVA.
14
- class STATISTIC_TOTAL_PVA_ASSISTED_CONNECTIONS ; VALUE = 5; end
14
+ STATISTIC_TOTAL_PVA_ASSISTED_CONNECTIONS = 5
15
15
  # Current number of connections assisted by PVA.
16
- class STATISTIC_CURRENT_PVA_ASSISTED_CONNECTIONS ; VALUE = 6; end
16
+ STATISTIC_CURRENT_PVA_ASSISTED_CONNECTIONS = 6
17
17
  # Total number of timeout errors.
18
- class STATISTIC_TIMEOUTS ; VALUE = 7; end
18
+ STATISTIC_TIMEOUTS = 7
19
19
  # Total number of collisions.
20
- class STATISTIC_COLLISIONS ; VALUE = 8; end
20
+ STATISTIC_COLLISIONS = 8
21
21
  # Total number of dropped packets on ingress.
22
- class STATISTIC_DROPPED_PACKETS_IN ; VALUE = 9; end
22
+ STATISTIC_DROPPED_PACKETS_IN = 9
23
23
  # Total number of dropped packets on egress.
24
- class STATISTIC_DROPPED_PACKETS_OUT ; VALUE = 10; end
24
+ STATISTIC_DROPPED_PACKETS_OUT = 10
25
25
  # Total number of dropped packets.
26
- class STATISTIC_DROPPED_PACKETS_TOTAL ; VALUE = 11; end
26
+ STATISTIC_DROPPED_PACKETS_TOTAL = 11
27
27
  # Total number of errors on ingress.
28
- class STATISTIC_ERRORS_IN ; VALUE = 12; end
28
+ STATISTIC_ERRORS_IN = 12
29
29
  # Total number of errors on egress.
30
- class STATISTIC_ERRORS_OUT ; VALUE = 13; end
30
+ STATISTIC_ERRORS_OUT = 13
31
31
  # Total CPU cycles spent in traffic management. The actual CPU cycles spent handling traffic is Total - (Idle + Sleep). These numbers are cumulative since startup. The difference over an interval should be used to get the current load.
32
- class STATISTIC_TM_TOTAL_CYCLES ; VALUE = 14; end
32
+ STATISTIC_TM_TOTAL_CYCLES = 14
33
33
  # CPU cycles spent polling with no traffic. The actual CPU cycles spent handling traffic is Total - (Idle + Sleep). These numbers are cumulative since startup. The difference over an interval should be used to get the current load.
34
- class STATISTIC_TM_IDLE_CYCLES ; VALUE = 15; end
34
+ STATISTIC_TM_IDLE_CYCLES = 15
35
35
  # CPU cycles yielded to other processes (uniprocessor only). The actual CPU cycles spent handling traffic is Total - (Idle + Sleep). These numbers are cumulative since startup. The difference over an interval should be used to get the current load.
36
- class STATISTIC_TM_SLEEP_CYCLES ; VALUE = 16; end
36
+ STATISTIC_TM_SLEEP_CYCLES = 16
37
37
  # Connection requests rejected because the virtual server was in maintenance mode.
38
- class STATISTIC_MAINTENANCE_MODE_DENIALS ; VALUE = 17; end
38
+ STATISTIC_MAINTENANCE_MODE_DENIALS = 17
39
39
  # Connection requests rejected because they exceeded the connection limit for a virtual address.
40
- class STATISTIC_VIRTUAL_ADDRESS_MAXIMUM_CONNECTION_DENIALS ; VALUE = 18; end
40
+ STATISTIC_VIRTUAL_ADDRESS_MAXIMUM_CONNECTION_DENIALS = 18
41
41
  # Connection requests rejected because they exceeded the connection limit for a virtual server.
42
- class STATISTIC_VIRTUAL_SERVER_MAXIMUM_CONNECTION_DENIALS ; VALUE = 19; end
42
+ STATISTIC_VIRTUAL_SERVER_MAXIMUM_CONNECTION_DENIALS = 19
43
43
  # Packets that are not connection requests and are destined for a virtual server that has no connection for the client address.
44
- class STATISTIC_VIRTUAL_SERVER_NON_SYN_DENIALS ; VALUE = 20; end
44
+ STATISTIC_VIRTUAL_SERVER_NON_SYN_DENIALS = 20
45
45
  # Incoming packets that could not be processed by a virtual server, NAT, or SNAT.
46
- class STATISTIC_NO_HANDLER_DENIALS ; VALUE = 21; end
46
+ STATISTIC_NO_HANDLER_DENIALS = 21
47
47
  # Number of dropped packets due to exceeding licensing limitations.
48
- class STATISTIC_LICENSE_DENIALS ; VALUE = 22; end
48
+ STATISTIC_LICENSE_DENIALS = 22
49
49
  # Connection could not be created because memory was not available.
50
- class STATISTIC_CONNECTION_FAILED_MEMORY_ERRORS ; VALUE = 23; end
50
+ STATISTIC_CONNECTION_FAILED_MEMORY_ERRORS = 23
51
51
  # Number of active CPUs on the system.
52
- class STATISTIC_ACTIVE_CPU_COUNT ; VALUE = 24; end
52
+ STATISTIC_ACTIVE_CPU_COUNT = 24
53
53
  # The processor mode the system is running in (0 ; VALUE = Uniprocessor, 1 = multiprocessor).; end
54
- class STATISTIC_MULTI_PROCESSOR_MODE ; VALUE = 25; end
54
+ STATISTIC_MULTI_PROCESSOR_MODE = 25
55
55
  # Total memory available to TMM.
56
- class STATISTIC_MEMORY_TOTAL_BYTES ; VALUE = 26; end
56
+ STATISTIC_MEMORY_TOTAL_BYTES = 26
57
57
  # Total memory in use by TMM.
58
- class STATISTIC_MEMORY_USED_BYTES ; VALUE = 27; end
58
+ STATISTIC_MEMORY_USED_BYTES = 27
59
59
  # Number of transmitted packets.
60
- class STATISTIC_IP_TRANSMITTED_PACKETS ; VALUE = 28; end
60
+ STATISTIC_IP_TRANSMITTED_PACKETS = 28
61
61
  # Number of received packets.
62
- class STATISTIC_IP_RECEIVED_PACKETS ; VALUE = 29; end
62
+ STATISTIC_IP_RECEIVED_PACKETS = 29
63
63
  # Number of dropped packets.
64
- class STATISTIC_IP_DROPPED_PACKETS ; VALUE = 30; end
64
+ STATISTIC_IP_DROPPED_PACKETS = 30
65
65
  # Number of transmitted fragments.
66
- class STATISTIC_IP_TRANSMITTED_FRAGMENTS ; VALUE = 31; end
66
+ STATISTIC_IP_TRANSMITTED_FRAGMENTS = 31
67
67
  # Number of dropped transmitted fragments.
68
- class STATISTIC_IP_DROPPED_TRANSMITTED_FRAGMENTS ; VALUE = 32; end
68
+ STATISTIC_IP_DROPPED_TRANSMITTED_FRAGMENTS = 32
69
69
  # Number of received fragments.
70
- class STATISTIC_IP_RECEIVED_FRAGMENTS ; VALUE = 33; end
70
+ STATISTIC_IP_RECEIVED_FRAGMENTS = 33
71
71
  # Number of dropped received fragments.
72
- class STATISTIC_IP_DROPPED_RECEIVED_FRAGMENTS ; VALUE = 34; end
72
+ STATISTIC_IP_DROPPED_RECEIVED_FRAGMENTS = 34
73
73
  # Number of reassembled packets.
74
- class STATISTIC_IP_REASSEMBLED_PACKETS ; VALUE = 35; end
74
+ STATISTIC_IP_REASSEMBLED_PACKETS = 35
75
75
  # Number of invalid checksum errors.
76
- class STATISTIC_IP_INVALID_CHECKSUM_ERRORS ; VALUE = 36; end
76
+ STATISTIC_IP_INVALID_CHECKSUM_ERRORS = 36
77
77
  # Number of invalid packet length errors.
78
- class STATISTIC_IP_INVALID_LENGTH_ERRORS ; VALUE = 37; end
78
+ STATISTIC_IP_INVALID_LENGTH_ERRORS = 37
79
79
  # Number of memory errors.
80
- class STATISTIC_IP_MEMORY_ERRORS ; VALUE = 38; end
80
+ STATISTIC_IP_MEMORY_ERRORS = 38
81
81
  # Number of retransmit errors.
82
- class STATISTIC_IP_RETRANSMITTED_ERRORS ; VALUE = 39; end
82
+ STATISTIC_IP_RETRANSMITTED_ERRORS = 39
83
83
  # Number of invalid protocol errors.
84
- class STATISTIC_IP_INVALID_PROTOCOL_ERRORS ; VALUE = 40; end
84
+ STATISTIC_IP_INVALID_PROTOCOL_ERRORS = 40
85
85
  # Number of options errors.
86
- class STATISTIC_IP_OPTIONS_ERRORS ; VALUE = 41; end
86
+ STATISTIC_IP_OPTIONS_ERRORS = 41
87
87
  # Number of reassembly errors.
88
- class STATISTIC_IP_REASSEMBLED_TOO_LONG_ERRORS ; VALUE = 42; end
88
+ STATISTIC_IP_REASSEMBLED_TOO_LONG_ERRORS = 42
89
89
  # Number of transmitted packets in IPv6
90
- class STATISTIC_IPV6_TRANSMITTED_PACKETS ; VALUE = 43; end
90
+ STATISTIC_IPV6_TRANSMITTED_PACKETS = 43
91
91
  # Number of received packets in IPv6.
92
- class STATISTIC_IPV6_RECEIVED_PACKETS ; VALUE = 44; end
92
+ STATISTIC_IPV6_RECEIVED_PACKETS = 44
93
93
  # Number of dropped packets in IPv6.
94
- class STATISTIC_IPV6_DROPPED_PACKETS ; VALUE = 45; end
94
+ STATISTIC_IPV6_DROPPED_PACKETS = 45
95
95
  # Number of transmitted fragments in IPv6.
96
- class STATISTIC_IPV6_TRANSMITTED_FRAGMENTS ; VALUE = 46; end
96
+ STATISTIC_IPV6_TRANSMITTED_FRAGMENTS = 46
97
97
  # Number of dropped transmitted fragments in IPv6.
98
- class STATISTIC_IPV6_DROPPED_TRANSMITTED_FRAGMENTS ; VALUE = 47; end
98
+ STATISTIC_IPV6_DROPPED_TRANSMITTED_FRAGMENTS = 47
99
99
  # Number of received fragments in IPv6.
100
- class STATISTIC_IPV6_RECEIVED_FRAGMENTS ; VALUE = 48; end
100
+ STATISTIC_IPV6_RECEIVED_FRAGMENTS = 48
101
101
  # Number of dropped received fragments in IPv6.
102
- class STATISTIC_IPV6_DROPPED_RECEIVED_FRAGMENTS ; VALUE = 49; end
102
+ STATISTIC_IPV6_DROPPED_RECEIVED_FRAGMENTS = 49
103
103
  # Number of reassembled packets in IPv6.
104
- class STATISTIC_IPV6_REASSEMBLED_PACKETS ; VALUE = 50; end
104
+ STATISTIC_IPV6_REASSEMBLED_PACKETS = 50
105
105
  # Number of invalid checksum errors in IPv6.
106
- class STATISTIC_IPV6_INVALID_CHECKSUM_ERRORS ; VALUE = 51; end
106
+ STATISTIC_IPV6_INVALID_CHECKSUM_ERRORS = 51
107
107
  # Number of invalid packet length errors in IPv6.
108
- class STATISTIC_IPV6_INVALID_LENGTH_ERRORS ; VALUE = 52; end
108
+ STATISTIC_IPV6_INVALID_LENGTH_ERRORS = 52
109
109
  # Number of memory errors in IPv6.
110
- class STATISTIC_IPV6_MEMORY_ERRORS ; VALUE = 53; end
110
+ STATISTIC_IPV6_MEMORY_ERRORS = 53
111
111
  # Number of retransmit errors in IPv6.
112
- class STATISTIC_IPV6_RETRANSMITTED_ERRORS ; VALUE = 54; end
112
+ STATISTIC_IPV6_RETRANSMITTED_ERRORS = 54
113
113
  # Number of invalid protocol errors in IPv6.
114
- class STATISTIC_IPV6_INVALID_PROTOCOL_ERRORS ; VALUE = 55; end
114
+ STATISTIC_IPV6_INVALID_PROTOCOL_ERRORS = 55
115
115
  # Number of options errors in IPv6.
116
- class STATISTIC_IPV6_OPTIONS_ERRORS ; VALUE = 56; end
116
+ STATISTIC_IPV6_OPTIONS_ERRORS = 56
117
117
  # Number of reassembly errors in IPv6.
118
- class STATISTIC_IPV6_REASSEMBLED_TOO_LONG_ERRORS ; VALUE = 57; end
118
+ STATISTIC_IPV6_REASSEMBLED_TOO_LONG_ERRORS = 57
119
119
  # Number of transmitted packets.
120
- class STATISTIC_ICMP_TRANSMITTED_PACKETS ; VALUE = 58; end
120
+ STATISTIC_ICMP_TRANSMITTED_PACKETS = 58
121
121
  # Number of re-transmitted packets.
122
- class STATISTIC_ICMP_RETRANSMITTED_PACKETS ; VALUE = 59; end
122
+ STATISTIC_ICMP_RETRANSMITTED_PACKETS = 59
123
123
  # Number of received packets.
124
- class STATISTIC_ICMP_RECEIVED_PACKETS ; VALUE = 60; end
124
+ STATISTIC_ICMP_RECEIVED_PACKETS = 60
125
125
  # Number of forwarded packets.
126
- class STATISTIC_ICMP_FORWARDED_PACKETS ; VALUE = 61; end
126
+ STATISTIC_ICMP_FORWARDED_PACKETS = 61
127
127
  # Number of dropped packets.
128
- class STATISTIC_ICMP_DROPPED_PACKETS ; VALUE = 62; end
128
+ STATISTIC_ICMP_DROPPED_PACKETS = 62
129
129
  # Number of invalid checksum errors.
130
- class STATISTIC_ICMP_INVALID_CHECKSUM_ERRORS ; VALUE = 63; end
130
+ STATISTIC_ICMP_INVALID_CHECKSUM_ERRORS = 63
131
131
  # Number of invalid packet length errors.
132
- class STATISTIC_ICMP_INVALID_LENGTH_ERRORS ; VALUE = 64; end
132
+ STATISTIC_ICMP_INVALID_LENGTH_ERRORS = 64
133
133
  # Number of memory errors.
134
- class STATISTIC_ICMP_MEMORY_ERRORS ; VALUE = 65; end
134
+ STATISTIC_ICMP_MEMORY_ERRORS = 65
135
135
  # Number of retransmit errors.
136
- class STATISTIC_ICMP_RETRANSMITTED_ERRORS ; VALUE = 66; end
136
+ STATISTIC_ICMP_RETRANSMITTED_ERRORS = 66
137
137
  # Number of invalid protocol errors.
138
- class STATISTIC_ICMP_INVALID_PROTOCOL_ERRORS ; VALUE = 67; end
138
+ STATISTIC_ICMP_INVALID_PROTOCOL_ERRORS = 67
139
139
  # Number of options errors.
140
- class STATISTIC_ICMP_OPTIONS_ERRORS ; VALUE = 68; end
140
+ STATISTIC_ICMP_OPTIONS_ERRORS = 68
141
141
  # Number of other types of errors.
142
- class STATISTIC_ICMP_OTHER_ERRORS ; VALUE = 69; end
142
+ STATISTIC_ICMP_OTHER_ERRORS = 69
143
143
  # Number of transmitted packets in ICMPv6.
144
- class STATISTIC_ICMPV6_TRANSMITTED_PACKETS ; VALUE = 70; end
144
+ STATISTIC_ICMPV6_TRANSMITTED_PACKETS = 70
145
145
  # Number of re-transmitted packets in ICMPv6.
146
- class STATISTIC_ICMPV6_RETRANSMITTED_PACKETS ; VALUE = 71; end
146
+ STATISTIC_ICMPV6_RETRANSMITTED_PACKETS = 71
147
147
  # Number of received packets in ICMPv6.
148
- class STATISTIC_ICMPV6_RECEIVED_PACKETS ; VALUE = 72; end
148
+ STATISTIC_ICMPV6_RECEIVED_PACKETS = 72
149
149
  # Number of forwarded packets in ICMPv6.
150
- class STATISTIC_ICMPV6_FORWARDED_PACKETS ; VALUE = 73; end
150
+ STATISTIC_ICMPV6_FORWARDED_PACKETS = 73
151
151
  # Number of dropped packets in ICMPv6.
152
- class STATISTIC_ICMPV6_DROPPED_PACKETS ; VALUE = 74; end
152
+ STATISTIC_ICMPV6_DROPPED_PACKETS = 74
153
153
  # Number of invalid checksum errors in ICMPv6.
154
- class STATISTIC_ICMPV6_INVALID_CHECKSUM_ERRORS ; VALUE = 75; end
154
+ STATISTIC_ICMPV6_INVALID_CHECKSUM_ERRORS = 75
155
155
  # Number of invalid packet length errors in ICMPv6.
156
- class STATISTIC_ICMPV6_INVALID_LENGTH_ERRORS ; VALUE = 76; end
156
+ STATISTIC_ICMPV6_INVALID_LENGTH_ERRORS = 76
157
157
  # Number of memory errors in ICMPv6.
158
- class STATISTIC_ICMPV6_MEMORY_ERRORS ; VALUE = 77; end
158
+ STATISTIC_ICMPV6_MEMORY_ERRORS = 77
159
159
  # Number of retransmit errors in ICMPv6.
160
- class STATISTIC_ICMPV6_RETRANSMITTED_ERRORS ; VALUE = 78; end
160
+ STATISTIC_ICMPV6_RETRANSMITTED_ERRORS = 78
161
161
  # Number of invalid protocol errors in ICMPv6.
162
- class STATISTIC_ICMPV6_INVALID_PROTOCOL_ERRORS ; VALUE = 79; end
162
+ STATISTIC_ICMPV6_INVALID_PROTOCOL_ERRORS = 79
163
163
  # Number of options errors in ICMPv6.
164
- class STATISTIC_ICMPV6_OPTIONS_ERRORS ; VALUE = 80; end
164
+ STATISTIC_ICMPV6_OPTIONS_ERRORS = 80
165
165
  # Number of other types of errors in ICMPv6.
166
- class STATISTIC_ICMPV6_OTHER_ERRORS ; VALUE = 81; end
166
+ STATISTIC_ICMPV6_OTHER_ERRORS = 81
167
167
  # Current open connections.
168
- class STATISTIC_UDP_OPEN_CONNECTIONS ; VALUE = 82; end
168
+ STATISTIC_UDP_OPEN_CONNECTIONS = 82
169
169
  # Current connections that have been accepted.
170
- class STATISTIC_UDP_ACCEPTED_CONNECTIONS ; VALUE = 83; end
170
+ STATISTIC_UDP_ACCEPTED_CONNECTIONS = 83
171
171
  # Number of accept failures.
172
- class STATISTIC_UDP_ACCEPT_FAILURES ; VALUE = 84; end
172
+ STATISTIC_UDP_ACCEPT_FAILURES = 84
173
173
  # Current connections that have been established, but not accepted.
174
- class STATISTIC_UDP_ESTABLISHED_CONNECTIONS ; VALUE = 85; end
174
+ STATISTIC_UDP_ESTABLISHED_CONNECTIONS = 85
175
175
  # Number of connection failures.
176
- class STATISTIC_UDP_CONNECTION_FAILURES ; VALUE = 86; end
176
+ STATISTIC_UDP_CONNECTION_FAILURES = 86
177
177
  # Expired connections due to idle timeout.
178
- class STATISTIC_UDP_EXPIRED_CONNECTIONS ; VALUE = 87; end
178
+ STATISTIC_UDP_EXPIRED_CONNECTIONS = 87
179
179
  # Number of transmitted datagrams.
180
- class STATISTIC_UDP_TRANSMITTED_DATAGRAMS ; VALUE = 88; end
180
+ STATISTIC_UDP_TRANSMITTED_DATAGRAMS = 88
181
181
  # Number of received datagrams.
182
- class STATISTIC_UDP_RECEIVED_DATAGRAMS ; VALUE = 89; end
182
+ STATISTIC_UDP_RECEIVED_DATAGRAMS = 89
183
183
  # Number of malformed datagrams received.
184
- class STATISTIC_UDP_RECEIVED_MALFORMED_DATAGRAMS ; VALUE = 90; end
184
+ STATISTIC_UDP_RECEIVED_MALFORMED_DATAGRAMS = 90
185
185
  # Number of ICMP unreachables received.
186
- class STATISTIC_UDP_RECEIVED_UNREACHABLE_ICMP_DATAGRAMS ; VALUE = 91; end
186
+ STATISTIC_UDP_RECEIVED_UNREACHABLE_ICMP_DATAGRAMS = 91
187
187
  # Number of bad checksum datagrams received.
188
- class STATISTIC_UDP_RECEIVED_BAD_CHECKSUM_DATAGRAMS ; VALUE = 92; end
188
+ STATISTIC_UDP_RECEIVED_BAD_CHECKSUM_DATAGRAMS = 92
189
189
  # Number of no-checksum datagrams received.
190
- class STATISTIC_UDP_RECEIVED_NO_CHECKSUM_DATAGRAMS ; VALUE = 93; end
190
+ STATISTIC_UDP_RECEIVED_NO_CHECKSUM_DATAGRAMS = 93
191
191
  # Current open connections.
192
- class STATISTIC_TCP_OPEN_CONNECTIONS ; VALUE = 94; end
192
+ STATISTIC_TCP_OPEN_CONNECTIONS = 94
193
193
  # Current connections in CLOSE-WAIT/LAST-ACK state.
194
- class STATISTIC_TCP_CLOSE_WAIT_CONNECTIONS ; VALUE = 95; end
194
+ STATISTIC_TCP_CLOSE_WAIT_CONNECTIONS = 95
195
195
  # Current connections in FIN-WAIT/CLOSING state.
196
- class STATISTIC_TCP_FIN_WAIT_CONNECTIONS ; VALUE = 96; end
196
+ STATISTIC_TCP_FIN_WAIT_CONNECTIONS = 96
197
197
  # Current connections in TIME-WAIT state.
198
- class STATISTIC_TCP_TIME_WAIT_CONNECTIONS ; VALUE = 97; end
198
+ STATISTIC_TCP_TIME_WAIT_CONNECTIONS = 97
199
199
  # Current connections that have been accepted.
200
- class STATISTIC_TCP_ACCEPTED_CONNECTIONS ; VALUE = 98; end
200
+ STATISTIC_TCP_ACCEPTED_CONNECTIONS = 98
201
201
  # Number of accept failures.
202
- class STATISTIC_TCP_ACCEPT_FAILURES ; VALUE = 99; end
202
+ STATISTIC_TCP_ACCEPT_FAILURES = 99
203
203
  # Current connections that have been established, but not accepted.
204
- class STATISTIC_TCP_ESTABLISHED_CONNECTIONS ; VALUE = 100; end
204
+ STATISTIC_TCP_ESTABLISHED_CONNECTIONS = 100
205
205
  # Number of connection failures.
206
- class STATISTIC_TCP_CONNECTION_FAILURES ; VALUE = 101; end
206
+ STATISTIC_TCP_CONNECTION_FAILURES = 101
207
207
  # Expired connections due to idle timeout.
208
- class STATISTIC_TCP_EXPIRED_CONNECTIONS ; VALUE = 102; end
208
+ STATISTIC_TCP_EXPIRED_CONNECTIONS = 102
209
209
  # Abandoned connections due to retries/keep-alives.
210
- class STATISTIC_TCP_ABANDONED_CONNECTIONS ; VALUE = 103; end
210
+ STATISTIC_TCP_ABANDONED_CONNECTIONS = 103
211
211
  # Number of RSTs received.
212
- class STATISTIC_TCP_RECEIVED_RESETS ; VALUE = 104; end
212
+ STATISTIC_TCP_RECEIVED_RESETS = 104
213
213
  # Number of bad checksum packets received.
214
- class STATISTIC_TCP_RECEIVED_BAD_CHECKSUMS ; VALUE = 105; end
214
+ STATISTIC_TCP_RECEIVED_BAD_CHECKSUMS = 105
215
215
  # Number of malformed segments received.
216
- class STATISTIC_TCP_RECEIVED_BAD_SEGMENTS ; VALUE = 106; end
216
+ STATISTIC_TCP_RECEIVED_BAD_SEGMENTS = 106
217
217
  # Number of out-of-order segments received.
218
- class STATISTIC_TCP_RECEIVED_OUT_OF_ORDER_SEGMENTS ; VALUE = 107; end
218
+ STATISTIC_TCP_RECEIVED_OUT_OF_ORDER_SEGMENTS = 107
219
219
  # Number of SYN cookies received.
220
- class STATISTIC_TCP_RECEIVED_SYN_COOKIES ; VALUE = 108; end
220
+ STATISTIC_TCP_RECEIVED_SYN_COOKIES = 108
221
221
  # Number of bad SYN cookies received.
222
- class STATISTIC_TCP_RECEIVED_BAD_SYN_COOKIES ; VALUE = 109; end
222
+ STATISTIC_TCP_RECEIVED_BAD_SYN_COOKIES = 109
223
223
  # Number of SYN cache overflows.
224
- class STATISTIC_TCP_SYN_CACHE_OVERFLOWS ; VALUE = 110; end
224
+ STATISTIC_TCP_SYN_CACHE_OVERFLOWS = 110
225
225
  # Number of retransmitted segments.
226
- class STATISTIC_TCP_RETRANSMITTED_SEGMENTS ; VALUE = 111; end
226
+ STATISTIC_TCP_RETRANSMITTED_SEGMENTS = 111
227
227
  # Total number of bytes in.
228
- class STATISTIC_BYTES_IN ; VALUE = 112; end
228
+ STATISTIC_BYTES_IN = 112
229
229
  # Total number of bytes out.
230
- class STATISTIC_BYTES_OUT ; VALUE = 113; end
230
+ STATISTIC_BYTES_OUT = 113
231
231
  # Total number of packets in.
232
- class STATISTIC_PACKETS_IN ; VALUE = 114; end
232
+ STATISTIC_PACKETS_IN = 114
233
233
  # Total number of packets out.
234
- class STATISTIC_PACKETS_OUT ; VALUE = 115; end
234
+ STATISTIC_PACKETS_OUT = 115
235
235
  # Total number of multicast packets in.
236
- class STATISTIC_MULTICASTS_IN ; VALUE = 116; end
236
+ STATISTIC_MULTICASTS_IN = 116
237
237
  # Total number of multicast packets out.
238
- class STATISTIC_MULTICASTS_OUT ; VALUE = 117; end
238
+ STATISTIC_MULTICASTS_OUT = 117
239
239
  # Total number of bytes in through the ephemeral port.
240
- class STATISTIC_EPHEMERAL_BYTES_IN ; VALUE = 118; end
240
+ STATISTIC_EPHEMERAL_BYTES_IN = 118
241
241
  # Total number of bytes out through the ephemeral port.
242
- class STATISTIC_EPHEMERAL_BYTES_OUT ; VALUE = 119; end
242
+ STATISTIC_EPHEMERAL_BYTES_OUT = 119
243
243
  # Total number of packets in through the ephemeral port.
244
- class STATISTIC_EPHEMERAL_PACKETS_IN ; VALUE = 120; end
244
+ STATISTIC_EPHEMERAL_PACKETS_IN = 120
245
245
  # Total number of packets out through the ephemeral port.
246
- class STATISTIC_EPHEMERAL_PACKETS_OUT ; VALUE = 121; end
246
+ STATISTIC_EPHEMERAL_PACKETS_OUT = 121
247
247
  # Current number of connections through the ephemeral port.
248
- class STATISTIC_EPHEMERAL_CURRENT_CONNECTIONS ; VALUE = 122; end
248
+ STATISTIC_EPHEMERAL_CURRENT_CONNECTIONS = 122
249
249
  # Maximum number of connections through the ephemeral port.
250
- class STATISTIC_EPHEMERAL_MAXIMUM_CONNECTIONS ; VALUE = 123; end
250
+ STATISTIC_EPHEMERAL_MAXIMUM_CONNECTIONS = 123
251
251
  # Total number of connections through the ephemeral port.
252
- class STATISTIC_EPHEMERAL_TOTAL_CONNECTIONS ; VALUE = 124; end
252
+ STATISTIC_EPHEMERAL_TOTAL_CONNECTIONS = 124
253
253
  # Total number of bytes in from the client-side of the object.
254
- class STATISTIC_CLIENT_SIDE_BYTES_IN ; VALUE = 125; end
254
+ STATISTIC_CLIENT_SIDE_BYTES_IN = 125
255
255
  # Total number of bytes out from the client-side of the object.
256
- class STATISTIC_CLIENT_SIDE_BYTES_OUT ; VALUE = 126; end
256
+ STATISTIC_CLIENT_SIDE_BYTES_OUT = 126
257
257
  # Total number of packets in from the client-side of the object.
258
- class STATISTIC_CLIENT_SIDE_PACKETS_IN ; VALUE = 127; end
258
+ STATISTIC_CLIENT_SIDE_PACKETS_IN = 127
259
259
  # Total number of packets out from the client-side of the object.
260
- class STATISTIC_CLIENT_SIDE_PACKETS_OUT ; VALUE = 128; end
260
+ STATISTIC_CLIENT_SIDE_PACKETS_OUT = 128
261
261
  # Current number of connections from the client-side of the object.
262
- class STATISTIC_CLIENT_SIDE_CURRENT_CONNECTIONS ; VALUE = 129; end
262
+ STATISTIC_CLIENT_SIDE_CURRENT_CONNECTIONS = 129
263
263
  # Maximum number of connections from the client-side of the object.
264
- class STATISTIC_CLIENT_SIDE_MAXIMUM_CONNECTIONS ; VALUE = 130; end
264
+ STATISTIC_CLIENT_SIDE_MAXIMUM_CONNECTIONS = 130
265
265
  # Total number of connections from the client-side of the object.
266
- class STATISTIC_CLIENT_SIDE_TOTAL_CONNECTIONS ; VALUE = 131; end
266
+ STATISTIC_CLIENT_SIDE_TOTAL_CONNECTIONS = 131
267
267
  # Total number of bytes in that are handled by PVA from the client-side of the object.
268
- class STATISTIC_PVA_CLIENT_SIDE_BYTES_IN ; VALUE = 132; end
268
+ STATISTIC_PVA_CLIENT_SIDE_BYTES_IN = 132
269
269
  # Total number of bytes out that are handled by PVA from the client-side of the object.
270
- class STATISTIC_PVA_CLIENT_SIDE_BYTES_OUT ; VALUE = 133; end
270
+ STATISTIC_PVA_CLIENT_SIDE_BYTES_OUT = 133
271
271
  # Total number of packets in that are handled by PVA from the client-side of the object.
272
- class STATISTIC_PVA_CLIENT_SIDE_PACKETS_IN ; VALUE = 134; end
272
+ STATISTIC_PVA_CLIENT_SIDE_PACKETS_IN = 134
273
273
  # Total number of packets out that are handled by PVA from the client-side of the object.
274
- class STATISTIC_PVA_CLIENT_SIDE_PACKETS_OUT ; VALUE = 135; end
274
+ STATISTIC_PVA_CLIENT_SIDE_PACKETS_OUT = 135
275
275
  # Current number of connections that are handled by PVA from the client-side of the object.
276
- class STATISTIC_PVA_CLIENT_SIDE_CURRENT_CONNECTIONS ; VALUE = 136; end
276
+ STATISTIC_PVA_CLIENT_SIDE_CURRENT_CONNECTIONS = 136
277
277
  # Maximum number of connections that are handled by PVA from the client-side of the object.
278
- class STATISTIC_PVA_CLIENT_SIDE_MAXIMUM_CONNECTIONS ; VALUE = 137; end
278
+ STATISTIC_PVA_CLIENT_SIDE_MAXIMUM_CONNECTIONS = 137
279
279
  # Total number of connections that are handled by PVA from the client-side of the object.
280
- class STATISTIC_PVA_CLIENT_SIDE_TOTAL_CONNECTIONS ; VALUE = 138; end
280
+ STATISTIC_PVA_CLIENT_SIDE_TOTAL_CONNECTIONS = 138
281
281
  # Total number of bytes in from the server-side of the object.
282
- class STATISTIC_SERVER_SIDE_BYTES_IN ; VALUE = 139; end
282
+ STATISTIC_SERVER_SIDE_BYTES_IN = 139
283
283
  # Total number of bytes out from the server-side of the object.
284
- class STATISTIC_SERVER_SIDE_BYTES_OUT ; VALUE = 140; end
284
+ STATISTIC_SERVER_SIDE_BYTES_OUT = 140
285
285
  # Total number of packets in from the server-side of the object.
286
- class STATISTIC_SERVER_SIDE_PACKETS_IN ; VALUE = 141; end
286
+ STATISTIC_SERVER_SIDE_PACKETS_IN = 141
287
287
  # Total number of packets out from the server-side of the object.
288
- class STATISTIC_SERVER_SIDE_PACKETS_OUT ; VALUE = 142; end
288
+ STATISTIC_SERVER_SIDE_PACKETS_OUT = 142
289
289
  # Current number of connections from the server-side of the object.
290
- class STATISTIC_SERVER_SIDE_CURRENT_CONNECTIONS ; VALUE = 143; end
290
+ STATISTIC_SERVER_SIDE_CURRENT_CONNECTIONS = 143
291
291
  # Maximum number of connections from the server-side of the object.
292
- class STATISTIC_SERVER_SIDE_MAXIMUM_CONNECTIONS ; VALUE = 144; end
292
+ STATISTIC_SERVER_SIDE_MAXIMUM_CONNECTIONS = 144
293
293
  # Total number of connections from the server-side of the object.
294
- class STATISTIC_SERVER_SIDE_TOTAL_CONNECTIONS ; VALUE = 145; end
294
+ STATISTIC_SERVER_SIDE_TOTAL_CONNECTIONS = 145
295
295
  # Total number of bytes in that are handled by PVA from the server-side of the object.
296
- class STATISTIC_PVA_SERVER_SIDE_BYTES_IN ; VALUE = 146; end
296
+ STATISTIC_PVA_SERVER_SIDE_BYTES_IN = 146
297
297
  # Total number of bytes out that are handled by PVA from the server-side of the object.
298
- class STATISTIC_PVA_SERVER_SIDE_BYTES_OUT ; VALUE = 147; end
298
+ STATISTIC_PVA_SERVER_SIDE_BYTES_OUT = 147
299
299
  # Total number of packets in that are handled by PVA from the server-side of the object.
300
- class STATISTIC_PVA_SERVER_SIDE_PACKETS_IN ; VALUE = 148; end
300
+ STATISTIC_PVA_SERVER_SIDE_PACKETS_IN = 148
301
301
  # Total number of packets out that are handled by PVA from the server-side of the object.
302
- class STATISTIC_PVA_SERVER_SIDE_PACKETS_OUT ; VALUE = 149; end
302
+ STATISTIC_PVA_SERVER_SIDE_PACKETS_OUT = 149
303
303
  # Current number of connections that are handled by PVA from the server-side of the object.
304
- class STATISTIC_PVA_SERVER_SIDE_CURRENT_CONNECTIONS ; VALUE = 150; end
304
+ STATISTIC_PVA_SERVER_SIDE_CURRENT_CONNECTIONS = 150
305
305
  # Maximum number of connections that are handled by PVA from the server-side of the object.
306
- class STATISTIC_PVA_SERVER_SIDE_MAXIMUM_CONNECTIONS ; VALUE = 151; end
306
+ STATISTIC_PVA_SERVER_SIDE_MAXIMUM_CONNECTIONS = 151
307
307
  # Total number of connections that are handled by PVA from the server-side of the object.
308
- class STATISTIC_PVA_SERVER_SIDE_TOTAL_CONNECTIONS ; VALUE = 152; end
308
+ STATISTIC_PVA_SERVER_SIDE_TOTAL_CONNECTIONS = 152
309
309
  # The number of times packet filter is invoked.
310
- class STATISTIC_PACKET_FILTER_HITS ; VALUE = 153; end
310
+ STATISTIC_PACKET_FILTER_HITS = 153
311
311
  # The number of replace operations completed.
312
- class STATISTIC_STREAM_REPLACEMENTS ; VALUE = 154; end
312
+ STATISTIC_STREAM_REPLACEMENTS = 154
313
313
  # The current number of idle connections in the pool.
314
- class STATISTIC_ONECONNECT_CURRENT_IDLE_CONNECTIONS ; VALUE = 155; end
314
+ STATISTIC_ONECONNECT_CURRENT_IDLE_CONNECTIONS = 155
315
315
  # The maximum number of idle connections in the pool.
316
- class STATISTIC_ONECONNECT_MAXIMUM_IDLE_CONNECTIONS ; VALUE = 156; end
316
+ STATISTIC_ONECONNECT_MAXIMUM_IDLE_CONNECTIONS = 156
317
317
  # The total number of times connections were reused from the pool.
318
- class STATISTIC_ONECONNECT_TOTAL_REUSES ; VALUE = 157; end
318
+ STATISTIC_ONECONNECT_TOTAL_REUSES = 157
319
319
  # The number of times a new connection was initiated.
320
- class STATISTIC_ONECONNECT_NEW_CONNECTIONS ; VALUE = 158; end
320
+ STATISTIC_ONECONNECT_NEW_CONNECTIONS = 158
321
321
  # Number of bytes at base rate
322
- class STATISTIC_RATE_CLASS_BYTES_AT_BASE_RATE ; VALUE = 159; end
322
+ STATISTIC_RATE_CLASS_BYTES_AT_BASE_RATE = 159
323
323
  # Number of bytes during bursting
324
- class STATISTIC_RATE_CLASS_BYTES_DURING_BURST ; VALUE = 160; end
324
+ STATISTIC_RATE_CLASS_BYTES_DURING_BURST = 160
325
325
  # Number of bytes dropped
326
- class STATISTIC_RATE_CLASS_BYTES_DROPPED ; VALUE = 161; end
326
+ STATISTIC_RATE_CLASS_BYTES_DROPPED = 161
327
327
  # Number of bytes queued
328
- class STATISTIC_RATE_CLASS_BYTES_QUEUED ; VALUE = 162; end
328
+ STATISTIC_RATE_CLASS_BYTES_QUEUED = 162
329
329
  # Number of bytes per second over last 4 secs
330
- class STATISTIC_RATE_CLASS_BYTES_PER_SEC ; VALUE = 163; end
330
+ STATISTIC_RATE_CLASS_BYTES_PER_SEC = 163
331
331
  # Number of rule failures.
332
- class STATISTIC_RULE_FAILURES ; VALUE = 164; end
332
+ STATISTIC_RULE_FAILURES = 164
333
333
  # Number of rule aborts due to TCL errors.
334
- class STATISTIC_RULE_ABORTS ; VALUE = 165; end
334
+ STATISTIC_RULE_ABORTS = 165
335
335
  # Number of rule event executions.
336
- class STATISTIC_RULE_TOTAL_EXECUTIONS ; VALUE = 166; end
336
+ STATISTIC_RULE_TOTAL_EXECUTIONS = 166
337
337
  # The average number of cycles spent during an execution of this rule event.
338
- class STATISTIC_RULE_AVERAGE_CYCLES ; VALUE = 167; end
338
+ STATISTIC_RULE_AVERAGE_CYCLES = 167
339
339
  # The maximum number of cycles spent during an execution of this rule event.
340
- class STATISTIC_RULE_MAXIMUM_CYCLES ; VALUE = 168; end
340
+ STATISTIC_RULE_MAXIMUM_CYCLES = 168
341
341
  # The minimum number of cycles spent during an execution of this rule event.
342
- class STATISTIC_RULE_MINIMUM_CYCLES ; VALUE = 169; end
342
+ STATISTIC_RULE_MINIMUM_CYCLES = 169
343
343
  # Number of Set-Cookie header insertions
344
- class STATISTIC_HTTP_COOKIE_PERSIST_INSERTS ; VALUE = 170; end
344
+ STATISTIC_HTTP_COOKIE_PERSIST_INSERTS = 170
345
345
  # Number of server-side responses in range of 200 to 206 (successful responses)
346
- class STATISTIC_HTTP_2XX_RESPONSES ; VALUE = 171; end
346
+ STATISTIC_HTTP_2XX_RESPONSES = 171
347
347
  # Number of server-side responses in range of 300 to 307 (redirection resposes)
348
- class STATISTIC_HTTP_3XX_RESPONSES ; VALUE = 172; end
348
+ STATISTIC_HTTP_3XX_RESPONSES = 172
349
349
  # Number of server-side responses in range of 400 to 417 (client errors)
350
- class STATISTIC_HTTP_4XX_RESPONSES ; VALUE = 173; end
350
+ STATISTIC_HTTP_4XX_RESPONSES = 173
351
351
  # Number of server-side responses in range of 500 to 505 (server errors)
352
- class STATISTIC_HTTP_5XX_RESPONSES ; VALUE = 174; end
352
+ STATISTIC_HTTP_5XX_RESPONSES = 174
353
353
  # Total number of HTTP requests
354
- class STATISTIC_HTTP_TOTAL_REQUESTS ; VALUE = 175; end
354
+ STATISTIC_HTTP_TOTAL_REQUESTS = 175
355
355
  # Total number of GET requests
356
- class STATISTIC_HTTP_GET_REQUESTS ; VALUE = 176; end
356
+ STATISTIC_HTTP_GET_REQUESTS = 176
357
357
  # Total number of POST requests
358
- class STATISTIC_HTTP_POST_REQUESTS ; VALUE = 177; end
358
+ STATISTIC_HTTP_POST_REQUESTS = 177
359
359
  # Total number of version 9 requests
360
- class STATISTIC_HTTP_V9_REQUESTS ; VALUE = 178; end
360
+ STATISTIC_HTTP_V9_REQUESTS = 178
361
361
  # Total number of version 10 requests
362
- class STATISTIC_HTTP_V10_REQUESTS ; VALUE = 179; end
362
+ STATISTIC_HTTP_V10_REQUESTS = 179
363
363
  # Total number of version 11 requests
364
- class STATISTIC_HTTP_V11_REQUESTS ; VALUE = 180; end
364
+ STATISTIC_HTTP_V11_REQUESTS = 180
365
365
  # Total number of version 9 responses
366
- class STATISTIC_HTTP_V9_RESPONSES ; VALUE = 181; end
366
+ STATISTIC_HTTP_V9_RESPONSES = 181
367
367
  # Total number of version 10 responses
368
- class STATISTIC_HTTP_V10_RESPONSES ; VALUE = 182; end
368
+ STATISTIC_HTTP_V10_RESPONSES = 182
369
369
  # Total number of version 11 responses
370
- class STATISTIC_HTTP_V11_RESPONSES ; VALUE = 183; end
370
+ STATISTIC_HTTP_V11_RESPONSES = 183
371
371
  # Maximum number of requests made in a connection
372
- class STATISTIC_HTTP_MAXIMUM_KEEPALIVE_REQUESTS ; VALUE = 184; end
372
+ STATISTIC_HTTP_MAXIMUM_KEEPALIVE_REQUESTS = 184
373
373
  # Number of responses under 1k
374
- class STATISTIC_HTTP_BUCKET_1K_RESPONSES ; VALUE = 185; end
374
+ STATISTIC_HTTP_BUCKET_1K_RESPONSES = 185
375
375
  # Number of responses from 1 - 4k
376
- class STATISTIC_HTTP_BUCKET_4K_RESPONSES ; VALUE = 186; end
376
+ STATISTIC_HTTP_BUCKET_4K_RESPONSES = 186
377
377
  # Number of responses from 4 - 16k
378
- class STATISTIC_HTTP_BUCKET_16K_RESPONSES ; VALUE = 187; end
378
+ STATISTIC_HTTP_BUCKET_16K_RESPONSES = 187
379
379
  # Number of responses from 16 - 32k
380
- class STATISTIC_HTTP_BUCKET_32K_RESPONSES ; VALUE = 188; end
380
+ STATISTIC_HTTP_BUCKET_32K_RESPONSES = 188
381
381
  # Number of responses from 32 - 64k
382
- class STATISTIC_HTTP_BUCKET_64K_RESPONSES ; VALUE = 189; end
382
+ STATISTIC_HTTP_BUCKET_64K_RESPONSES = 189
383
383
  # Total number of response bytes before compression has taken place
384
- class STATISTIC_HTTP_PRE_COMPRESSION_BYTES ; VALUE = 190; end
384
+ STATISTIC_HTTP_PRE_COMPRESSION_BYTES = 190
385
385
  # To number of response bytes after compression has taken place
386
- class STATISTIC_HTTP_POST_COMPRESSION_BYTES ; VALUE = 191; end
386
+ STATISTIC_HTTP_POST_COMPRESSION_BYTES = 191
387
387
  # Number of bytes subjected to NULL compression (for license enforcement).
388
- class STATISTIC_HTTP_NULL_COMPRESSION_BYTES ; VALUE = 192; end
388
+ STATISTIC_HTTP_NULL_COMPRESSION_BYTES = 192
389
389
  # Number of response bytes before compression has taken place for MIME type HTML.
390
- class STATISTIC_HTTP_HTML_PRE_COMPRESSION_BYTES ; VALUE = 193; end
390
+ STATISTIC_HTTP_HTML_PRE_COMPRESSION_BYTES = 193
391
391
  # Number of response bytes after compression has taken place for MIME type HTML.
392
- class STATISTIC_HTTP_HTML_POST_COMPRESSION_BYTES ; VALUE = 194; end
392
+ STATISTIC_HTTP_HTML_POST_COMPRESSION_BYTES = 194
393
393
  # Number of response bytes before compression has taken place for MIME type CSS.
394
- class STATISTIC_HTTP_CSS_PRE_COMPRESSION_BYTES ; VALUE = 195; end
394
+ STATISTIC_HTTP_CSS_PRE_COMPRESSION_BYTES = 195
395
395
  # Number of response bytes after compression has taken place for MIME type CSS.
396
- class STATISTIC_HTTP_CSS_POST_COMPRESSION_BYTES ; VALUE = 196; end
396
+ STATISTIC_HTTP_CSS_POST_COMPRESSION_BYTES = 196
397
397
  # Number of response bytes before compression has taken place for MIME type Javascript.
398
- class STATISTIC_HTTP_JS_PRE_COMPRESSION_BYTES ; VALUE = 197; end
398
+ STATISTIC_HTTP_JS_PRE_COMPRESSION_BYTES = 197
399
399
  # Number of response bytes after compression has taken place for MIME type Javascript.
400
- class STATISTIC_HTTP_JS_POST_COMPRESSION_BYTES ; VALUE = 198; end
400
+ STATISTIC_HTTP_JS_POST_COMPRESSION_BYTES = 198
401
401
  # Number of response bytes before compression has taken place for MIME type XML.
402
- class STATISTIC_HTTP_XML_PRE_COMPRESSION_BYTES ; VALUE = 199; end
402
+ STATISTIC_HTTP_XML_PRE_COMPRESSION_BYTES = 199
403
403
  # Number of response bytes after compression has taken place for MIME type XML.
404
- class STATISTIC_HTTP_XML_POST_COMPRESSION_BYTES ; VALUE = 200; end
404
+ STATISTIC_HTTP_XML_POST_COMPRESSION_BYTES = 200
405
405
  # Number of response bytes before compression has taken place for MIME type SGML.
406
- class STATISTIC_HTTP_SGML_PRE_COMPRESSION_BYTES ; VALUE = 201; end
406
+ STATISTIC_HTTP_SGML_PRE_COMPRESSION_BYTES = 201
407
407
  # Number of response bytes after compression has taken place for MIME type SGML.
408
- class STATISTIC_HTTP_SGML_POST_COMPRESSION_BYTES ; VALUE = 202; end
408
+ STATISTIC_HTTP_SGML_POST_COMPRESSION_BYTES = 202
409
409
  # Number of response bytes before compression has taken place for MIME type Plain text.
410
- class STATISTIC_HTTP_PLAIN_PRE_COMPRESSION_BYTES ; VALUE = 203; end
410
+ STATISTIC_HTTP_PLAIN_PRE_COMPRESSION_BYTES = 203
411
411
  # Number of response bytes after compression has taken place for MIME type Plain text.
412
- class STATISTIC_HTTP_PLAIN_POST_COMPRESSION_BYTES ; VALUE = 204; end
412
+ STATISTIC_HTTP_PLAIN_POST_COMPRESSION_BYTES = 204
413
413
  # Number of response bytes before compression has taken place for MIME type Octet.
414
- class STATISTIC_HTTP_OCTET_PRE_COMPRESSION_BYTES ; VALUE = 205; end
414
+ STATISTIC_HTTP_OCTET_PRE_COMPRESSION_BYTES = 205
415
415
  # Number of response bytes after compression has taken place for MIME type Octet.
416
- class STATISTIC_HTTP_OCTET_POST_COMPRESSION_BYTES ; VALUE = 206; end
416
+ STATISTIC_HTTP_OCTET_POST_COMPRESSION_BYTES = 206
417
417
  # Number of response bytes before compression has taken place for MIME type Image.
418
- class STATISTIC_HTTP_IMAGE_PRE_COMPRESSION_BYTES ; VALUE = 207; end
418
+ STATISTIC_HTTP_IMAGE_PRE_COMPRESSION_BYTES = 207
419
419
  # Number of response bytes after compression has taken place for MIME type Image.
420
- class STATISTIC_HTTP_IMAGE_POST_COMPRESSION_BYTES ; VALUE = 208; end
420
+ STATISTIC_HTTP_IMAGE_POST_COMPRESSION_BYTES = 208
421
421
  # Number of response bytes before compression has taken place for MIME type Video.
422
- class STATISTIC_HTTP_VIDEO_PRE_COMPRESSION_BYTES ; VALUE = 209; end
422
+ STATISTIC_HTTP_VIDEO_PRE_COMPRESSION_BYTES = 209
423
423
  # Number of response bytes after compression has taken place for MIME type Video.
424
- class STATISTIC_HTTP_VIDEO_POST_COMPRESSION_BYTES ; VALUE = 210; end
424
+ STATISTIC_HTTP_VIDEO_POST_COMPRESSION_BYTES = 210
425
425
  # Number of response bytes before compression has taken place for MIME type Audio.
426
- class STATISTIC_HTTP_AUDIO_PRE_COMPRESSION_BYTES ; VALUE = 211; end
426
+ STATISTIC_HTTP_AUDIO_PRE_COMPRESSION_BYTES = 211
427
427
  # Number of response bytes after compression has taken place for MIME type Audio.
428
- class STATISTIC_HTTP_AUDIO_POST_COMPRESSION_BYTES ; VALUE = 212; end
428
+ STATISTIC_HTTP_AUDIO_POST_COMPRESSION_BYTES = 212
429
429
  # Number of response bytes before compression has taken place for all other MIME types.
430
- class STATISTIC_HTTP_OTHER_PRE_COMPRESSION_BYTES ; VALUE = 213; end
430
+ STATISTIC_HTTP_OTHER_PRE_COMPRESSION_BYTES = 213
431
431
  # Number of response bytes after compression has taken place for all other MIME types.
432
- class STATISTIC_HTTP_OTHER_POST_COMPRESSION_BYTES ; VALUE = 214; end
432
+ STATISTIC_HTTP_OTHER_POST_COMPRESSION_BYTES = 214
433
433
  # Current entries in the SSL cache.
434
- class STATISTIC_SSL_CACHE_CURRENT_ENTRIES ; VALUE = 215; end
434
+ STATISTIC_SSL_CACHE_CURRENT_ENTRIES = 215
435
435
  # Maximum entries in the SSL cache.
436
- class STATISTIC_SSL_CACHE_MAXIMUM_ENTRIES ; VALUE = 216; end
436
+ STATISTIC_SSL_CACHE_MAXIMUM_ENTRIES = 216
437
437
  # Number of SSL cache overflows.
438
- class STATISTIC_SSL_CACHE_OVERFLOWS ; VALUE = 217; end
438
+ STATISTIC_SSL_CACHE_OVERFLOWS = 217
439
439
  # Anonymous Diffie-Hellman.
440
- class STATISTIC_SSL_CIPHER_ADH_KEY_EXCHANGE ; VALUE = 218; end
440
+ STATISTIC_SSL_CIPHER_ADH_KEY_EXCHANGE = 218
441
441
  # Deprecated in 9.2.0 - Diffie-Hellman w/ DSS certificate.
442
- class STATISTIC_SSL_CIPHER_DH_DSS_KEY_EXCHANGE ; VALUE = 219; end
442
+ STATISTIC_SSL_CIPHER_DH_DSS_KEY_EXCHANGE = 219
443
443
  # Diffie-Hellman w/ RSA certificate.
444
- class STATISTIC_SSL_CIPHER_DH_RSA_KEY_EXCHANGE ; VALUE = 220; end
444
+ STATISTIC_SSL_CIPHER_DH_RSA_KEY_EXCHANGE = 220
445
445
  # Deprecated in 9.2.0 - DSS certificate.
446
- class STATISTIC_SSL_CIPHER_DSS_KEY_EXCHANGE ; VALUE = 221; end
446
+ STATISTIC_SSL_CIPHER_DSS_KEY_EXCHANGE = 221
447
447
  # Deprecated in 9.2.0 - Ephemeral Diffie-Hellman w/ DSS cert.
448
- class STATISTIC_SSL_CIPHER_EDH_DSS_KEY_EXCHANGE ; VALUE = 222; end
448
+ STATISTIC_SSL_CIPHER_EDH_DSS_KEY_EXCHANGE = 222
449
449
  # Ephemeral Diffie-Hellman w/ RSA cert.
450
- class STATISTIC_SSL_CIPHER_EDH_RSA_KEY_EXCHANGE ; VALUE = 223; end
450
+ STATISTIC_SSL_CIPHER_EDH_RSA_KEY_EXCHANGE = 223
451
451
  # RSA certificate.
452
- class STATISTIC_SSL_CIPHER_RSA_KEY_EXCHANGE ; VALUE = 224; end
452
+ STATISTIC_SSL_CIPHER_RSA_KEY_EXCHANGE = 224
453
453
  # No encryption.
454
- class STATISTIC_SSL_CIPHER_NULL_BULK ; VALUE = 225; end
454
+ STATISTIC_SSL_CIPHER_NULL_BULK = 225
455
455
  # Advances Encryption Standard (CBC).
456
- class STATISTIC_SSL_CIPHER_AES_BULK ; VALUE = 226; end
456
+ STATISTIC_SSL_CIPHER_AES_BULK = 226
457
457
  # Digital Encryption Standard (CBC).
458
- class STATISTIC_SSL_CIPHER_DES_BULK ; VALUE = 227; end
458
+ STATISTIC_SSL_CIPHER_DES_BULK = 227
459
459
  # IDEA (old SSLv2 cipher).
460
- class STATISTIC_SSL_CIPHER_IDEA_BULK ; VALUE = 228; end
460
+ STATISTIC_SSL_CIPHER_IDEA_BULK = 228
461
461
  # Rivest Cipher 2.
462
- class STATISTIC_SSL_CIPHER_RC2_BULK ; VALUE = 229; end
462
+ STATISTIC_SSL_CIPHER_RC2_BULK = 229
463
463
  # Rivest Cipher 4.
464
- class STATISTIC_SSL_CIPHER_RC4_BULK ; VALUE = 230; end
464
+ STATISTIC_SSL_CIPHER_RC4_BULK = 230
465
465
  # No message authentication.
466
- class STATISTIC_SSL_CIPHER_NULL_DIGEST ; VALUE = 231; end
466
+ STATISTIC_SSL_CIPHER_NULL_DIGEST = 231
467
467
  # Message Digest 5.
468
- class STATISTIC_SSL_CIPHER_MD5_DIGEST ; VALUE = 232; end
468
+ STATISTIC_SSL_CIPHER_MD5_DIGEST = 232
469
469
  # Secure Hash Algorithm.
470
- class STATISTIC_SSL_CIPHER_SHA_DIGEST ; VALUE = 233; end
470
+ STATISTIC_SSL_CIPHER_SHA_DIGEST = 233
471
471
  # Total connections for SSLv2 protocol.
472
- class STATISTIC_SSL_PROTOCOL_SSLV2 ; VALUE = 234; end
472
+ STATISTIC_SSL_PROTOCOL_SSLV2 = 234
473
473
  # Total connections for SSLv3 protocol.
474
- class STATISTIC_SSL_PROTOCOL_SSLV3 ; VALUE = 235; end
474
+ STATISTIC_SSL_PROTOCOL_SSLV3 = 235
475
475
  # Total connections for TLSv1 protocol.
476
- class STATISTIC_SSL_PROTOCOL_TLSV1 ; VALUE = 236; end
476
+ STATISTIC_SSL_PROTOCOL_TLSV1 = 236
477
477
  # Currently open connections.
478
- class STATISTIC_SSL_COMMON_CURRENT_CONNECTIONS ; VALUE = 237; end
478
+ STATISTIC_SSL_COMMON_CURRENT_CONNECTIONS = 237
479
479
  # Maximum simultaneous connections.
480
- class STATISTIC_SSL_COMMON_MAXIMUM_CONNECTIONS ; VALUE = 238; end
480
+ STATISTIC_SSL_COMMON_MAXIMUM_CONNECTIONS = 238
481
481
  # Currently open native connections.
482
- class STATISTIC_SSL_COMMON_CURRENT_NATIVE_CONNECTIONS ; VALUE = 239; end
482
+ STATISTIC_SSL_COMMON_CURRENT_NATIVE_CONNECTIONS = 239
483
483
  # Maximum simultaneous native connections.
484
- class STATISTIC_SSL_COMMON_MAXIMUM_NATIVE_CONNECTIONS ; VALUE = 240; end
484
+ STATISTIC_SSL_COMMON_MAXIMUM_NATIVE_CONNECTIONS = 240
485
485
  # Total native connections.
486
- class STATISTIC_SSL_COMMON_TOTAL_NATIVE_CONNECTIONS ; VALUE = 241; end
486
+ STATISTIC_SSL_COMMON_TOTAL_NATIVE_CONNECTIONS = 241
487
487
  # Currently open compatible-mode connections.
488
- class STATISTIC_SSL_COMMON_CURRENT_COMPATIBLE_MODE_CONNECTIONS ; VALUE = 242; end
488
+ STATISTIC_SSL_COMMON_CURRENT_COMPATIBLE_MODE_CONNECTIONS = 242
489
489
  # Maximum simultaneous compatible-mode connections.
490
- class STATISTIC_SSL_COMMON_MAXIMUM_COMPATIBLE_MODE_CONNECTIONS ; VALUE = 243; end
490
+ STATISTIC_SSL_COMMON_MAXIMUM_COMPATIBLE_MODE_CONNECTIONS = 243
491
491
  # Total compatible-mode connections.
492
- class STATISTIC_SSL_COMMON_TOTAL_COMPATIBLE_MODE_CONNECTIONS ; VALUE = 244; end
492
+ STATISTIC_SSL_COMMON_TOTAL_COMPATIBLE_MODE_CONNECTIONS = 244
493
493
  # Total encrypted bytes received.
494
- class STATISTIC_SSL_COMMON_ENCRYPTED_BYTES_IN ; VALUE = 245; end
494
+ STATISTIC_SSL_COMMON_ENCRYPTED_BYTES_IN = 245
495
495
  # Total encrypted bytes sent.
496
- class STATISTIC_SSL_COMMON_ENCRYPTED_BYTES_OUT ; VALUE = 246; end
496
+ STATISTIC_SSL_COMMON_ENCRYPTED_BYTES_OUT = 246
497
497
  # Total decrypted bytes received.
498
- class STATISTIC_SSL_COMMON_DECRYPTED_BYTES_IN ; VALUE = 247; end
498
+ STATISTIC_SSL_COMMON_DECRYPTED_BYTES_IN = 247
499
499
  # Total decrypted bytes sent.
500
- class STATISTIC_SSL_COMMON_DECRYPTED_BYTES_OUT ; VALUE = 248; end
500
+ STATISTIC_SSL_COMMON_DECRYPTED_BYTES_OUT = 248
501
501
  # Total records received.
502
- class STATISTIC_SSL_COMMON_RECORDS_IN ; VALUE = 249; end
502
+ STATISTIC_SSL_COMMON_RECORDS_IN = 249
503
503
  # Total records transmitted.
504
- class STATISTIC_SSL_COMMON_RECORDS_OUT ; VALUE = 250; end
504
+ STATISTIC_SSL_COMMON_RECORDS_OUT = 250
505
505
  # Total offloaded connections.
506
- class STATISTIC_SSL_COMMON_FULLY_HW_ACCELERATED_CONNECTIONS ; VALUE = 251; end
506
+ STATISTIC_SSL_COMMON_FULLY_HW_ACCELERATED_CONNECTIONS = 251
507
507
  # Total assisted connections.
508
- class STATISTIC_SSL_COMMON_PARTIALLY_HW_ACCELERATED_CONNECTIONS ; VALUE = 252; end
508
+ STATISTIC_SSL_COMMON_PARTIALLY_HW_ACCELERATED_CONNECTIONS = 252
509
509
  # Total software connections.
510
- class STATISTIC_SSL_COMMON_NON_HW_ACCELERATED_CONNECTIONS ; VALUE = 253; end
510
+ STATISTIC_SSL_COMMON_NON_HW_ACCELERATED_CONNECTIONS = 253
511
511
  # Total unclean shutdowns.
512
- class STATISTIC_SSL_COMMON_PREMATURE_DISCONNECTS ; VALUE = 254; end
512
+ STATISTIC_SSL_COMMON_PREMATURE_DISCONNECTS = 254
513
513
  # Total mid-connection handshakes.
514
- class STATISTIC_SSL_COMMON_MIDSTREAM_RENEGOTIATIONS ; VALUE = 255; end
514
+ STATISTIC_SSL_COMMON_MIDSTREAM_RENEGOTIATIONS = 255
515
515
  # Current entries in this cache.
516
- class STATISTIC_SSL_COMMON_SESSION_CACHE_CURRENT_ENTRIES ; VALUE = 256; end
516
+ STATISTIC_SSL_COMMON_SESSION_CACHE_CURRENT_ENTRIES = 256
517
517
  # Total cache hits.
518
- class STATISTIC_SSL_COMMON_SESSION_CACHE_HITS ; VALUE = 257; end
518
+ STATISTIC_SSL_COMMON_SESSION_CACHE_HITS = 257
519
519
  # Total cache lookups.
520
- class STATISTIC_SSL_COMMON_SESSION_CACHE_LOOKUPS ; VALUE = 258; end
520
+ STATISTIC_SSL_COMMON_SESSION_CACHE_LOOKUPS = 258
521
521
  # Total cache overflows.
522
- class STATISTIC_SSL_COMMON_SESSION_CACHE_OVERFLOWS ; VALUE = 259; end
522
+ STATISTIC_SSL_COMMON_SESSION_CACHE_OVERFLOWS = 259
523
523
  # Total session invalidations.
524
- class STATISTIC_SSL_COMMON_SESSION_CACHE_INVALIDATIONS ; VALUE = 260; end
524
+ STATISTIC_SSL_COMMON_SESSION_CACHE_INVALIDATIONS = 260
525
525
  # Total valid certificates.
526
- class STATISTIC_SSL_COMMON_VALID_PEER_CERTIFICATES ; VALUE = 261; end
526
+ STATISTIC_SSL_COMMON_VALID_PEER_CERTIFICATES = 261
527
527
  # Total invalid certificates.
528
- class STATISTIC_SSL_COMMON_INVALID_PEER_CERTIFICATES ; VALUE = 262; end
528
+ STATISTIC_SSL_COMMON_INVALID_PEER_CERTIFICATES = 262
529
529
  # Total connections without certificates.
530
- class STATISTIC_SSL_COMMON_NO_PEER_CERTIFICATES ; VALUE = 263; end
530
+ STATISTIC_SSL_COMMON_NO_PEER_CERTIFICATES = 263
531
531
  # Total handshake failures.
532
- class STATISTIC_SSL_COMMON_HANDSHAKE_FAILURES ; VALUE = 264; end
532
+ STATISTIC_SSL_COMMON_HANDSHAKE_FAILURES = 264
533
533
  # Total bad records.
534
- class STATISTIC_SSL_COMMON_BAD_RECORDS ; VALUE = 265; end
534
+ STATISTIC_SSL_COMMON_BAD_RECORDS = 265
535
535
  # Total fatal alerts.
536
- class STATISTIC_SSL_COMMON_FATAL_ALERTS ; VALUE = 266; end
536
+ STATISTIC_SSL_COMMON_FATAL_ALERTS = 266
537
537
  # Cumulative number of auth sessions.
538
- class STATISTIC_AUTH_TOTAL_SESSIONS ; VALUE = 267; end
538
+ STATISTIC_AUTH_TOTAL_SESSIONS = 267
539
539
  # Current number of auth sessions
540
- class STATISTIC_AUTH_CURRENT_SESSIONS ; VALUE = 268; end
540
+ STATISTIC_AUTH_CURRENT_SESSIONS = 268
541
541
  # Maximum number of concurrent auth sessions
542
- class STATISTIC_AUTH_MAXIMUM_SESSIONS ; VALUE = 269; end
542
+ STATISTIC_AUTH_MAXIMUM_SESSIONS = 269
543
543
  # Number of auth 'success' results
544
- class STATISTIC_AUTH_SUCCESS_RESULTS ; VALUE = 270; end
544
+ STATISTIC_AUTH_SUCCESS_RESULTS = 270
545
545
  # Number of auth 'failure' results
546
- class STATISTIC_AUTH_FAILURE_RESULTS ; VALUE = 271; end
546
+ STATISTIC_AUTH_FAILURE_RESULTS = 271
547
547
  # Number of auth 'wantcredential' results
548
- class STATISTIC_AUTH_WANT_CREDENTIAL_RESULTS ; VALUE = 272; end
548
+ STATISTIC_AUTH_WANT_CREDENTIAL_RESULTS = 272
549
549
  # Number of auth 'error' results
550
- class STATISTIC_AUTH_ERROR_RESULTS ; VALUE = 273; end
550
+ STATISTIC_AUTH_ERROR_RESULTS = 273
551
551
  # Number of XML errors
552
- class STATISTIC_XML_TOTAL_ERRORS ; VALUE = 274; end
552
+ STATISTIC_XML_TOTAL_ERRORS = 274
553
553
  # Total number of client SYN cookies generated.
554
- class STATISTIC_FAST_HTTP_CLIENT_SYN_COOKIES ; VALUE = 275; end
554
+ STATISTIC_FAST_HTTP_CLIENT_SYN_COOKIES = 275
555
555
  # Total number of client TCP accepts.
556
- class STATISTIC_FAST_HTTP_CLIENT_ACCEPTS ; VALUE = 276; end
556
+ STATISTIC_FAST_HTTP_CLIENT_ACCEPTS = 276
557
557
  # Total number of server TCP connects.
558
- class STATISTIC_FAST_HTTP_SERVER_CONNECTS ; VALUE = 277; end
558
+ STATISTIC_FAST_HTTP_SERVER_CONNECTS = 277
559
559
  # Number of available serverside flows in the reuse pool.
560
- class STATISTIC_FAST_HTTP_CONNECTION_POOL_CURRENT_SIZE ; VALUE = 278; end
560
+ STATISTIC_FAST_HTTP_CONNECTION_POOL_CURRENT_SIZE = 278
561
561
  # Maximum number of available serverside flows in the reuse pool.
562
- class STATISTIC_FAST_HTTP_CONNECTION_POOL_MAXIMUM_SIZE ; VALUE = 279; end
562
+ STATISTIC_FAST_HTTP_CONNECTION_POOL_MAXIMUM_SIZE = 279
563
563
  # Number of times a serverside flow was reused from the pool.
564
- class STATISTIC_FAST_HTTP_CONNECTION_POOL_REUSES ; VALUE = 280; end
564
+ STATISTIC_FAST_HTTP_CONNECTION_POOL_REUSES = 280
565
565
  # Number of times the reuse pool was exhausted.
566
- class STATISTIC_FAST_HTTP_CONNECTION_POOL_EXHAUSTED ; VALUE = 281; end
566
+ STATISTIC_FAST_HTTP_CONNECTION_POOL_EXHAUSTED = 281
567
567
  # Total number of HTTP requests.
568
- class STATISTIC_FAST_HTTP_TOTAL_REQUESTS ; VALUE = 282; end
568
+ STATISTIC_FAST_HTTP_TOTAL_REQUESTS = 282
569
569
  # Total number of unbuffered requests.
570
- class STATISTIC_FAST_HTTP_UNBUFFERED_REQUESTS ; VALUE = 283; end
570
+ STATISTIC_FAST_HTTP_UNBUFFERED_REQUESTS = 283
571
571
  # Total number of GET requests.
572
- class STATISTIC_FAST_HTTP_GET_REQUESTS ; VALUE = 284; end
572
+ STATISTIC_FAST_HTTP_GET_REQUESTS = 284
573
573
  # Total number of POST requests.
574
- class STATISTIC_FAST_HTTP_POST_REQUESTS ; VALUE = 285; end
574
+ STATISTIC_FAST_HTTP_POST_REQUESTS = 285
575
575
  # Total number of version 9 requests.
576
- class STATISTIC_FAST_HTTP_V9_REQUESTS ; VALUE = 286; end
576
+ STATISTIC_FAST_HTTP_V9_REQUESTS = 286
577
577
  # Total number of version 10 requests.
578
- class STATISTIC_FAST_HTTP_V10_REQUESTS ; VALUE = 287; end
578
+ STATISTIC_FAST_HTTP_V10_REQUESTS = 287
579
579
  # Total number of version 11 requests.
580
- class STATISTIC_FAST_HTTP_V11_REQUESTS ; VALUE = 288; end
580
+ STATISTIC_FAST_HTTP_V11_REQUESTS = 288
581
581
  # Number of server-side responses in range of 200 to 206 (successful responses)
582
- class STATISTIC_FAST_HTTP_2XX_RESPONSES ; VALUE = 289; end
582
+ STATISTIC_FAST_HTTP_2XX_RESPONSES = 289
583
583
  # Number of server-side responses in range of 300 to 307 (redirection resposes)
584
- class STATISTIC_FAST_HTTP_3XX_RESPONSES ; VALUE = 290; end
584
+ STATISTIC_FAST_HTTP_3XX_RESPONSES = 290
585
585
  # Number of server-side responses in range of 400 to 417 (client errors)
586
- class STATISTIC_FAST_HTTP_4XX_RESPONSES ; VALUE = 291; end
586
+ STATISTIC_FAST_HTTP_4XX_RESPONSES = 291
587
587
  # Number of server-side responses in range of 500 to 505 (server errors)
588
- class STATISTIC_FAST_HTTP_5XX_RESPONSES ; VALUE = 292; end
588
+ STATISTIC_FAST_HTTP_5XX_RESPONSES = 292
589
589
  # Number of request parse errors.
590
- class STATISTIC_FAST_HTTP_REQUEST_PARSE_ERRORS ; VALUE = 293; end
590
+ STATISTIC_FAST_HTTP_REQUEST_PARSE_ERRORS = 293
591
591
  # Number of response parse errors.
592
- class STATISTIC_FAST_HTTP_RESPONSE_PARSE_ERRORS ; VALUE = 294; end
592
+ STATISTIC_FAST_HTTP_RESPONSE_PARSE_ERRORS = 294
593
593
  # Number of bad clientside TCP segments dropped.
594
- class STATISTIC_FAST_HTTP_CLIENTSIDE_BAD_SEGMENTS ; VALUE = 295; end
594
+ STATISTIC_FAST_HTTP_CLIENTSIDE_BAD_SEGMENTS = 295
595
595
  # Number of bad serverside TCP segments dropped.
596
- class STATISTIC_FAST_HTTP_SERVERSIDE_BAD_SEGMENTS ; VALUE = 296; end
596
+ STATISTIC_FAST_HTTP_SERVERSIDE_BAD_SEGMENTS = 296
597
597
  # Number of pipelined HTTP requests detected.
598
- class STATISTIC_FAST_HTTP_PIPELINED_REQUESTS ; VALUE = 297; end
598
+ STATISTIC_FAST_HTTP_PIPELINED_REQUESTS = 297
599
599
  # Total bad client greetings.
600
- class STATISTIC_SSL_COMMON_NOT_SSL_HANDSHAKE_FAILURES ; VALUE = 298; end
600
+ STATISTIC_SSL_COMMON_NOT_SSL_HANDSHAKE_FAILURES = 298
601
601
  # RAM Cache hit count.
602
- class STATISTIC_HTTP_RAM_CACHE_HITS ; VALUE = 299; end
602
+ STATISTIC_HTTP_RAM_CACHE_HITS = 299
603
603
  # RAM Cache miss count, excluding uncacheable data.
604
- class STATISTIC_HTTP_RAM_CACHE_MISSES ; VALUE = 300; end
604
+ STATISTIC_HTTP_RAM_CACHE_MISSES = 300
605
605
  # Total RAM Cache miss count.
606
- class STATISTIC_HTTP_RAM_CACHE_TOTAL_MISSES ; VALUE = 301; end
606
+ STATISTIC_HTTP_RAM_CACHE_TOTAL_MISSES = 301
607
607
  # RAM Cache hit bytes.
608
- class STATISTIC_HTTP_RAM_CACHE_HIT_BYTES ; VALUE = 302; end
608
+ STATISTIC_HTTP_RAM_CACHE_HIT_BYTES = 302
609
609
  # RAM Cache miss bytes, excluding uncacheable data.
610
- class STATISTIC_HTTP_RAM_CACHE_MISS_BYTES ; VALUE = 303; end
610
+ STATISTIC_HTTP_RAM_CACHE_MISS_BYTES = 303
611
611
  # Total RAM Cache miss bytes.
612
- class STATISTIC_HTTP_RAM_CACHE_TOTAL_MISS_BYTES ; VALUE = 304; end
612
+ STATISTIC_HTTP_RAM_CACHE_TOTAL_MISS_BYTES = 304
613
613
  # RAM Cache size.
614
- class STATISTIC_HTTP_RAM_CACHE_SIZE ; VALUE = 305; end
614
+ STATISTIC_HTTP_RAM_CACHE_SIZE = 305
615
615
  # RAM Cache count.
616
- class STATISTIC_HTTP_RAM_CACHE_COUNT ; VALUE = 306; end
616
+ STATISTIC_HTTP_RAM_CACHE_COUNT = 306
617
617
  # RAM Cache evictions.
618
- class STATISTIC_HTTP_RAM_CACHE_EVICTIONS ; VALUE = 307; end
618
+ STATISTIC_HTTP_RAM_CACHE_EVICTIONS = 307
619
619
  # Total bytes waiting for virtual compression (deprecated 9.4.0).
620
- class STATISTIC_VCOMPRESSION_QUEUED_BYTES ; VALUE = 308; end
620
+ STATISTIC_VCOMPRESSION_QUEUED_BYTES = 308
621
621
  # Total bytes pre-compression (deprecated 9.4.0).
622
- class STATISTIC_VCOMPRESSION_PRE_COMPRESSION_BYTES ; VALUE = 309; end
622
+ STATISTIC_VCOMPRESSION_PRE_COMPRESSION_BYTES = 309
623
623
  # Total bytes post-compression (deprecated 9.4.0).
624
- class STATISTIC_VCOMPRESSION_POST_COMPRESSION_BYTES ; VALUE = 310; end
624
+ STATISTIC_VCOMPRESSION_POST_COMPRESSION_BYTES = 310
625
625
  # Total number of streams (deprecated 9.4.0).
626
- class STATISTIC_VCOMPRESSION_TOTAL_STREAMS ; VALUE = 311; end
626
+ STATISTIC_VCOMPRESSION_TOTAL_STREAMS = 311
627
627
  # Current number of streams (deprecated 9.4.0).
628
- class STATISTIC_VCOMPRESSION_CURRENT_STREAMS ; VALUE = 312; end
628
+ STATISTIC_VCOMPRESSION_CURRENT_STREAMS = 312
629
629
  # Total IIOP requests.
630
- class STATISTIC_IIOP_TOTAL_REQUESTS ; VALUE = 313; end
630
+ STATISTIC_IIOP_TOTAL_REQUESTS = 313
631
631
  # Total IIOP responses.
632
- class STATISTIC_IIOP_TOTAL_RESPONSES ; VALUE = 314; end
632
+ STATISTIC_IIOP_TOTAL_RESPONSES = 314
633
633
  # Total IIOP connection cancels.
634
- class STATISTIC_IIOP_TOTAL_CANCELS ; VALUE = 315; end
634
+ STATISTIC_IIOP_TOTAL_CANCELS = 315
635
635
  # Total IIOP errors.
636
- class STATISTIC_IIOP_TOTAL_ERRORS ; VALUE = 316; end
636
+ STATISTIC_IIOP_TOTAL_ERRORS = 316
637
637
  # Total IIOP fragments.
638
- class STATISTIC_IIOP_TOTAL_FRAGMENTS ; VALUE = 317; end
638
+ STATISTIC_IIOP_TOTAL_FRAGMENTS = 317
639
639
  # Total RTSP requests.
640
- class STATISTIC_RTSP_TOTAL_REQUESTS ; VALUE = 318; end
640
+ STATISTIC_RTSP_TOTAL_REQUESTS = 318
641
641
  # Total RTSP responses.
642
- class STATISTIC_RTSP_TOTAL_RESPONSES ; VALUE = 319; end
642
+ STATISTIC_RTSP_TOTAL_RESPONSES = 319
643
643
  # Total RTSP errors.
644
- class STATISTIC_RTSP_TOTAL_ERRORS ; VALUE = 320; end
644
+ STATISTIC_RTSP_TOTAL_ERRORS = 320
645
645
  # Total RTSP interleaved data packets.
646
- class STATISTIC_RTSP_TOTAL_INTERLEAVED_DATA ; VALUE = 321; end
646
+ STATISTIC_RTSP_TOTAL_INTERLEAVED_DATA = 321
647
647
  # CPU usage (in percentage) for the GTM object.
648
- class STATISTIC_GTM_METRICS_CPU_USAGE ; VALUE = 322; end
648
+ STATISTIC_GTM_METRICS_CPU_USAGE = 322
649
649
  # Memory available (in bytes) for the GTM object.
650
- class STATISTIC_GTM_METRICS_MEMORY_AVAILABLE ; VALUE = 323; end
650
+ STATISTIC_GTM_METRICS_MEMORY_AVAILABLE = 323
651
651
  # Inbound bits/sec for the GTM object.
652
- class STATISTIC_GTM_METRICS_BITS_PER_SECOND_IN ; VALUE = 324; end
652
+ STATISTIC_GTM_METRICS_BITS_PER_SECOND_IN = 324
653
653
  # Outbound bits/sec for the GTM object.
654
- class STATISTIC_GTM_METRICS_BITS_PER_SECOND_OUT ; VALUE = 325; end
654
+ STATISTIC_GTM_METRICS_BITS_PER_SECOND_OUT = 325
655
655
  # Inbound packets/sec for the GTM object.
656
- class STATISTIC_GTM_METRICS_PACKETS_PER_SECOND_IN ; VALUE = 326; end
656
+ STATISTIC_GTM_METRICS_PACKETS_PER_SECOND_IN = 326
657
657
  # Outbound packets/sec for the GTM object.
658
- class STATISTIC_GTM_METRICS_PACKETS_PER_SECOND_OUT ; VALUE = 327; end
658
+ STATISTIC_GTM_METRICS_PACKETS_PER_SECOND_OUT = 327
659
659
  # Total connections for the GTM object.
660
- class STATISTIC_GTM_METRICS_TOTAL_CONNECTIONS ; VALUE = 328; end
660
+ STATISTIC_GTM_METRICS_TOTAL_CONNECTIONS = 328
661
661
  # Connection rate for the GTM object.
662
- class STATISTIC_GTM_METRICS_TOTAL_CONNECTION_RATE ; VALUE = 329; end
662
+ STATISTIC_GTM_METRICS_TOTAL_CONNECTION_RATE = 329
663
663
  # Total bit rate through link.
664
- class STATISTIC_GTM_LINK_TOTAL_BIT_RATE ; VALUE = 330; end
664
+ STATISTIC_GTM_LINK_TOTAL_BIT_RATE = 330
665
665
  # Total gateway bit rate.
666
- class STATISTIC_GTM_LINK_TOTAL_GATEWAY_BIT_RATE ; VALUE = 331; end
666
+ STATISTIC_GTM_LINK_TOTAL_GATEWAY_BIT_RATE = 331
667
667
  # Inbound gateway bit rate.
668
- class STATISTIC_GTM_LINK_INBOUND_GATEWAY_BIT_RATE ; VALUE = 332; end
668
+ STATISTIC_GTM_LINK_INBOUND_GATEWAY_BIT_RATE = 332
669
669
  # Outbound gateway bit rate.
670
- class STATISTIC_GTM_LINK_OUTBOUND_GATEWAY_BIT_RATE ; VALUE = 333; end
670
+ STATISTIC_GTM_LINK_OUTBOUND_GATEWAY_BIT_RATE = 333
671
671
  # Sum of link VS bit rates.
672
- class STATISTIC_GTM_LINK_TOTAL_VS_BIT_RATE ; VALUE = 334; end
672
+ STATISTIC_GTM_LINK_TOTAL_VS_BIT_RATE = 334
673
673
  # Sum of inbound link VS bit rates.
674
- class STATISTIC_GTM_LINK_INBOUND_VS_BIT_RATE ; VALUE = 335; end
674
+ STATISTIC_GTM_LINK_INBOUND_VS_BIT_RATE = 335
675
675
  # Sum of outbound link VS bit rates.
676
- class STATISTIC_GTM_LINK_OUTBOUND_VS_BIT_RATE ; VALUE = 336; end
676
+ STATISTIC_GTM_LINK_OUTBOUND_VS_BIT_RATE = 336
677
677
  # Total inbound rate calculation for link.
678
- class STATISTIC_GTM_LINK_TOTAL_INBOUND_BIT_RATE ; VALUE = 337; end
678
+ STATISTIC_GTM_LINK_TOTAL_INBOUND_BIT_RATE = 337
679
679
  # Total outbound rate calculation for link.
680
- class STATISTIC_GTM_LINK_TOTAL_OUTBOUND_BIT_RATE ; VALUE = 338; end
680
+ STATISTIC_GTM_LINK_TOTAL_OUTBOUND_BIT_RATE = 338
681
681
  # This is used to set dynamic ratios on the outbound gateway pool members. This controls the outbound connections.
682
- class STATISTIC_GTM_LINK_LCS_OUT ; VALUE = 339; end
682
+ STATISTIC_GTM_LINK_LCS_OUT = 339
683
683
  # This is used to control inbound connections which are load-balanced through external virtual servers which are controlled by gtmd.
684
- class STATISTIC_GTM_LINK_LCS_IN ; VALUE = 340; end
684
+ STATISTIC_GTM_LINK_LCS_IN = 340
685
685
  # Number of times the preferred LB method was used.
686
- class STATISTIC_GTM_POOL_PREFERRED_LB_METHODS ; VALUE = 341; end
686
+ STATISTIC_GTM_POOL_PREFERRED_LB_METHODS = 341
687
687
  # Number of times the alternate LB method was used.
688
- class STATISTIC_GTM_POOL_ALTERNATE_LB_METHODS ; VALUE = 342; end
688
+ STATISTIC_GTM_POOL_ALTERNATE_LB_METHODS = 342
689
689
  # Number of times the fallback LB method was used.
690
- class STATISTIC_GTM_POOL_FALLBACK_LB_METHODS ; VALUE = 343; end
690
+ STATISTIC_GTM_POOL_FALLBACK_LB_METHODS = 343
691
691
  # Number of dropped connections.
692
- class STATISTIC_GTM_POOL_DROPPED_CONNECTIONS ; VALUE = 344; end
692
+ STATISTIC_GTM_POOL_DROPPED_CONNECTIONS = 344
693
693
  # Number of times this pool defaulted back to an explicit IP address.
694
- class STATISTIC_GTM_POOL_EXPLICIT_IP ; VALUE = 345; end
694
+ STATISTIC_GTM_POOL_EXPLICIT_IP = 345
695
695
  # Number of times the LB method chosen was LB_METHOD_RETURN_TO_DNS, i.e. we don't choose a pool, let DNS resolve the name.
696
- class STATISTIC_GTM_POOL_RETURN_TO_DNS ; VALUE = 346; end
696
+ STATISTIC_GTM_POOL_RETURN_TO_DNS = 346
697
697
  # Number of times the preferred LB method was used.
698
- class STATISTIC_GTM_POOL_MEMBER_PREFERRED_LB_METHODS ; VALUE = 347; end
698
+ STATISTIC_GTM_POOL_MEMBER_PREFERRED_LB_METHODS = 347
699
699
  # Number of times the alternate LB method was used.
700
- class STATISTIC_GTM_POOL_MEMBER_ALTERNATE_LB_METHODS ; VALUE = 348; end
700
+ STATISTIC_GTM_POOL_MEMBER_ALTERNATE_LB_METHODS = 348
701
701
  # Number of times the fallback LB method was used.
702
- class STATISTIC_GTM_POOL_MEMBER_FALLBACK_LB_METHODS ; VALUE = 349; end
702
+ STATISTIC_GTM_POOL_MEMBER_FALLBACK_LB_METHODS = 349
703
703
  # The sum of all the "picked" VSes used by this server.
704
- class STATISTIC_GTM_SERVER_VS_PICKS ; VALUE = 350; end
704
+ STATISTIC_GTM_SERVER_VS_PICKS = 350
705
705
  # Number of times this virtual server was selected by the LB logic.
706
- class STATISTIC_GTM_VIRTUAL_SERVER_PICKS ; VALUE = 351; end
706
+ STATISTIC_GTM_VIRTUAL_SERVER_PICKS = 351
707
707
  # Number of requests for resolution of this wide IP.
708
- class STATISTIC_GTM_WIDEIP_REQUESTS ; VALUE = 352; end
708
+ STATISTIC_GTM_WIDEIP_REQUESTS = 352
709
709
  # Number of times this wide IP was resolved successfully.
710
- class STATISTIC_GTM_WIDEIP_RESOLUTIONS ; VALUE = 353; end
710
+ STATISTIC_GTM_WIDEIP_RESOLUTIONS = 353
711
711
  # Number of times this wide IP was resolved as a persistent connection.
712
- class STATISTIC_GTM_WIDEIP_PERSISTED ; VALUE = 354; end
712
+ STATISTIC_GTM_WIDEIP_PERSISTED = 354
713
713
  # Number of times the preferred LB method was used on this wide IP.
714
- class STATISTIC_GTM_WIDEIP_PREFERRED_LB_METHODS ; VALUE = 355; end
714
+ STATISTIC_GTM_WIDEIP_PREFERRED_LB_METHODS = 355
715
715
  # Number of times the alternate LB method was used on this wide IP.
716
- class STATISTIC_GTM_WIDEIP_ALTERNATE_LB_METHODS ; VALUE = 356; end
716
+ STATISTIC_GTM_WIDEIP_ALTERNATE_LB_METHODS = 356
717
717
  # Number of times the fallback LB method was used on this wide IP.
718
- class STATISTIC_GTM_WIDEIP_FALLBACK_LB_METHODS ; VALUE = 357; end
718
+ STATISTIC_GTM_WIDEIP_FALLBACK_LB_METHODS = 357
719
719
  # Number of times requests for this wide IP were dropped.
720
- class STATISTIC_GTM_WIDEIP_DROPPED_CONNECTIONS ; VALUE = 358; end
720
+ STATISTIC_GTM_WIDEIP_DROPPED_CONNECTIONS = 358
721
721
  # Number of times this wide IP defaulted back to an explicit IP.
722
- class STATISTIC_GTM_WIDEIP_EXPLICIT_IP ; VALUE = 359; end
722
+ STATISTIC_GTM_WIDEIP_EXPLICIT_IP = 359
723
723
  # Number of times the LB method chosen was LB_METHOD_RETURN_TO_DNS, i.e. we don't choose a wide IP, let DNS resolve the name.
724
- class STATISTIC_GTM_WIDEIP_RETURN_TO_DNS ; VALUE = 360; end
724
+ STATISTIC_GTM_WIDEIP_RETURN_TO_DNS = 360
725
725
  # Total memory available to GTM.
726
- class STATISTIC_GTM_MEMORY_TOTAL_BYTES ; VALUE = 361; end
726
+ STATISTIC_GTM_MEMORY_TOTAL_BYTES = 361
727
727
  # Total memory in use by GTM.
728
- class STATISTIC_GTM_MEMORY_USED_BYTES ; VALUE = 362; end
728
+ STATISTIC_GTM_MEMORY_USED_BYTES = 362
729
729
  # Number of times an iQuery connection was closed and reopened.
730
- class STATISTIC_GTM_IQUERY_RECONNECTS ; VALUE = 363; end
730
+ STATISTIC_GTM_IQUERY_RECONNECTS = 363
731
731
  # Number of bytes received on this iQuery connections.
732
- class STATISTIC_GTM_IQUERY_RECEIVED_BYTES ; VALUE = 364; end
732
+ STATISTIC_GTM_IQUERY_RECEIVED_BYTES = 364
733
733
  # Number of bytes sent on this iQuery connections.
734
- class STATISTIC_GTM_IQUERY_SENT_BYTES ; VALUE = 365; end
734
+ STATISTIC_GTM_IQUERY_SENT_BYTES = 365
735
735
  # Number of times a send was backlogged.
736
- class STATISTIC_GTM_BACKLOGGED_SENDS ; VALUE = 366; end
736
+ STATISTIC_GTM_BACKLOGGED_SENDS = 366
737
737
  # Number of bytes dropped due to backlogged or unconnected.
738
- class STATISTIC_GTM_DROPPED_BYTES ; VALUE = 367; end
738
+ STATISTIC_GTM_DROPPED_BYTES = 367
739
739
  # The current (most recent) RTT for this path.
740
- class STATISTIC_GTM_PATH_CURRENT_RTT ; VALUE = 368; end
740
+ STATISTIC_GTM_PATH_CURRENT_RTT = 368
741
741
  # The average RTT for this path
742
- class STATISTIC_GTM_PATH_AVERAGE_RTT ; VALUE = 369; end
742
+ STATISTIC_GTM_PATH_AVERAGE_RTT = 369
743
743
  # Number of hops most recently used for this path.
744
- class STATISTIC_GTM_PATH_CURRENT_HOPS ; VALUE = 370; end
744
+ STATISTIC_GTM_PATH_CURRENT_HOPS = 370
745
745
  # Average number of hops used for this path.
746
- class STATISTIC_GTM_PATH_AVERAGE_HOPS ; VALUE = 371; end
746
+ STATISTIC_GTM_PATH_AVERAGE_HOPS = 371
747
747
  # Current "hit ratio" for this path.
748
- class STATISTIC_GTM_PATH_CURRENT_COMPENSATION_RATE ; VALUE = 372; end
748
+ STATISTIC_GTM_PATH_CURRENT_COMPENSATION_RATE = 372
749
749
  # Average "hit ratio" for this path.
750
- class STATISTIC_GTM_PATH_AVERAGE_COMPENSATION_RATE ; VALUE = 373; end
750
+ STATISTIC_GTM_PATH_AVERAGE_COMPENSATION_RATE = 373
751
751
  # Number of times a request has been received from this LDNS.
752
- class STATISTIC_GTM_LDNS_REQUESTS ; VALUE = 374; end
752
+ STATISTIC_GTM_LDNS_REQUESTS = 374
753
753
  # Number of Set-Cookie header insertions
754
- class STATISTIC_HTTPCLASS_COOKIE_PERSIST_INSERTS ; VALUE = 375; end
754
+ STATISTIC_HTTPCLASS_COOKIE_PERSIST_INSERTS = 375
755
755
  # Number of server-side responses in range of 200 to 206 (successful responses)
756
- class STATISTIC_HTTPCLASS_2XX_RESPONSES ; VALUE = 376; end
756
+ STATISTIC_HTTPCLASS_2XX_RESPONSES = 376
757
757
  # Number of server-side responses in range of 300 to 307 (redirection resposes)
758
- class STATISTIC_HTTPCLASS_3XX_RESPONSES ; VALUE = 377; end
758
+ STATISTIC_HTTPCLASS_3XX_RESPONSES = 377
759
759
  # Number of server-side responses in range of 400 to 417 (client errors)
760
- class STATISTIC_HTTPCLASS_4XX_RESPONSES ; VALUE = 378; end
760
+ STATISTIC_HTTPCLASS_4XX_RESPONSES = 378
761
761
  # Number of server-side responses in range of 500 to 505 (server errors)
762
- class STATISTIC_HTTPCLASS_5XX_RESPONSES ; VALUE = 379; end
763
- # Total number of HTTPCLASS requests
764
- class STATISTIC_HTTPCLASS_TOTAL_REQUESTS ; VALUE = 380; end
762
+ STATISTIC_HTTPCLASS_5XX_RESPONSES = 379
763
+ # number of HTTPCLASS requests
764
+ STATISTIC_HTTPCLASS_TOTAL_REQUESTS = 380
765
765
  # Total number of GET requests
766
- class STATISTIC_HTTPCLASS_GET_REQUESTS ; VALUE = 381; end
766
+ STATISTIC_HTTPCLASS_GET_REQUESTS = 381
767
767
  # Total number of POST requests
768
- class STATISTIC_HTTPCLASS_POST_REQUESTS ; VALUE = 382; end
768
+ STATISTIC_HTTPCLASS_POST_REQUESTS = 382
769
769
  # Total number of version 9 requests
770
- class STATISTIC_HTTPCLASS_V9_REQUESTS ; VALUE = 383; end
770
+ STATISTIC_HTTPCLASS_V9_REQUESTS = 383
771
771
  # Total number of version 10 requests
772
- class STATISTIC_HTTPCLASS_V10_REQUESTS ; VALUE = 384; end
772
+ STATISTIC_HTTPCLASS_V10_REQUESTS = 384
773
773
  # Total number of version 11 requests
774
- class STATISTIC_HTTPCLASS_V11_REQUESTS ; VALUE = 385; end
774
+ STATISTIC_HTTPCLASS_V11_REQUESTS = 385
775
775
  # Total number of version 9 responses
776
- class STATISTIC_HTTPCLASS_V9_RESPONSES ; VALUE = 386; end
776
+ STATISTIC_HTTPCLASS_V9_RESPONSES = 386
777
777
  # Total number of version 10 responses
778
- class STATISTIC_HTTPCLASS_V10_RESPONSES ; VALUE = 387; end
778
+ STATISTIC_HTTPCLASS_V10_RESPONSES = 387
779
779
  # Total number of version 11 responses
780
- class STATISTIC_HTTPCLASS_V11_RESPONSES ; VALUE = 388; end
780
+ STATISTIC_HTTPCLASS_V11_RESPONSES = 388
781
781
  # Maximum number of requests made in a connection
782
- class STATISTIC_HTTPCLASS_MAXIMUM_KEEPALIVE_REQUESTS ; VALUE = 389; end
782
+ STATISTIC_HTTPCLASS_MAXIMUM_KEEPALIVE_REQUESTS = 389
783
783
  # Number of responses under 1k
784
- class STATISTIC_HTTPCLASS_BUCKET_1K_RESPONSES ; VALUE = 390; end
784
+ STATISTIC_HTTPCLASS_BUCKET_1K_RESPONSES = 390
785
785
  # Number of responses from 1 - 4k
786
- class STATISTIC_HTTPCLASS_BUCKET_4K_RESPONSES ; VALUE = 391; end
786
+ STATISTIC_HTTPCLASS_BUCKET_4K_RESPONSES = 391
787
787
  # Number of responses from 4 - 16k
788
- class STATISTIC_HTTPCLASS_BUCKET_16K_RESPONSES ; VALUE = 392; end
788
+ STATISTIC_HTTPCLASS_BUCKET_16K_RESPONSES = 392
789
789
  # Number of responses from 16 - 32k
790
- class STATISTIC_HTTPCLASS_BUCKET_32K_RESPONSES ; VALUE = 393; end
790
+ STATISTIC_HTTPCLASS_BUCKET_32K_RESPONSES = 393
791
791
  # Number of responses from 32 - 64k
792
- class STATISTIC_HTTPCLASS_BUCKET_64K_RESPONSES ; VALUE = 394; end
792
+ STATISTIC_HTTPCLASS_BUCKET_64K_RESPONSES = 394
793
793
  # Total number of response bytes before compression has taken place
794
- class STATISTIC_HTTPCLASS_PRE_COMPRESSION_BYTES ; VALUE = 395; end
794
+ STATISTIC_HTTPCLASS_PRE_COMPRESSION_BYTES = 395
795
795
  # To number of response bytes after compression has taken place
796
- class STATISTIC_HTTPCLASS_POST_COMPRESSION_BYTES ; VALUE = 396; end
796
+ STATISTIC_HTTPCLASS_POST_COMPRESSION_BYTES = 396
797
797
  # Number of bytes subjected to NULL compression (for license enforcement).
798
- class STATISTIC_HTTPCLASS_NULL_COMPRESSION_BYTES ; VALUE = 397; end
798
+ STATISTIC_HTTPCLASS_NULL_COMPRESSION_BYTES = 397
799
799
  # Number of response bytes before compression has taken place for MIME type HTML.
800
- class STATISTIC_HTTPCLASS_HTML_PRE_COMPRESSION_BYTES ; VALUE = 398; end
800
+ STATISTIC_HTTPCLASS_HTML_PRE_COMPRESSION_BYTES = 398
801
801
  # Number of response bytes after compression has taken place for MIME type HTML.
802
- class STATISTIC_HTTPCLASS_HTML_POST_COMPRESSION_BYTES ; VALUE = 399; end
802
+ STATISTIC_HTTPCLASS_HTML_POST_COMPRESSION_BYTES = 399
803
803
  # Number of response bytes before compression has taken place for MIME type CSS.
804
- class STATISTIC_HTTPCLASS_CSS_PRE_COMPRESSION_BYTES ; VALUE = 400; end
804
+ STATISTIC_HTTPCLASS_CSS_PRE_COMPRESSION_BYTES = 400
805
805
  # Number of response bytes after compression has taken place for MIME type CSS.
806
- class STATISTIC_HTTPCLASS_CSS_POST_COMPRESSION_BYTES ; VALUE = 401; end
806
+ STATISTIC_HTTPCLASS_CSS_POST_COMPRESSION_BYTES = 401
807
807
  # Number of response bytes before compression has taken place for MIME type Javascript.
808
- class STATISTIC_HTTPCLASS_JS_PRE_COMPRESSION_BYTES ; VALUE = 402; end
808
+ STATISTIC_HTTPCLASS_JS_PRE_COMPRESSION_BYTES = 402
809
809
  # Number of response bytes after compression has taken place for MIME type Javascript.
810
- class STATISTIC_HTTPCLASS_JS_POST_COMPRESSION_BYTES ; VALUE = 403; end
810
+ STATISTIC_HTTPCLASS_JS_POST_COMPRESSION_BYTES = 403
811
811
  # Number of response bytes before compression has taken place for MIME type XML.
812
- class STATISTIC_HTTPCLASS_XML_PRE_COMPRESSION_BYTES ; VALUE = 404; end
812
+ STATISTIC_HTTPCLASS_XML_PRE_COMPRESSION_BYTES = 404
813
813
  # Number of response bytes after compression has taken place for MIME type XML.
814
- class STATISTIC_HTTPCLASS_XML_POST_COMPRESSION_BYTES ; VALUE = 405; end
814
+ STATISTIC_HTTPCLASS_XML_POST_COMPRESSION_BYTES = 405
815
815
  # Number of response bytes before compression has taken place for MIME type SGML.
816
- class STATISTIC_HTTPCLASS_SGML_PRE_COMPRESSION_BYTES ; VALUE = 406; end
816
+ STATISTIC_HTTPCLASS_SGML_PRE_COMPRESSION_BYTES = 406
817
817
  # Number of response bytes after compression has taken place for MIME type SGML.
818
- class STATISTIC_HTTPCLASS_SGML_POST_COMPRESSION_BYTES ; VALUE = 407; end
818
+ STATISTIC_HTTPCLASS_SGML_POST_COMPRESSION_BYTES = 407
819
819
  # Number of response bytes before compression has taken place for MIME type Plain text.
820
- class STATISTIC_HTTPCLASS_PLAIN_PRE_COMPRESSION_BYTES ; VALUE = 408; end
820
+ STATISTIC_HTTPCLASS_PLAIN_PRE_COMPRESSION_BYTES = 408
821
821
  # Number of response bytes after compression has taken place for MIME type Plain text.
822
- class STATISTIC_HTTPCLASS_PLAIN_POST_COMPRESSION_BYTES ; VALUE = 409; end
822
+ STATISTIC_HTTPCLASS_PLAIN_POST_COMPRESSION_BYTES = 409
823
823
  # Number of response bytes before compression has taken place for MIME type Octet.
824
- class STATISTIC_HTTPCLASS_OCTET_PRE_COMPRESSION_BYTES ; VALUE = 410; end
824
+ STATISTIC_HTTPCLASS_OCTET_PRE_COMPRESSION_BYTES = 410
825
825
  # Number of response bytes after compression has taken place for MIME type Octet.
826
- class STATISTIC_HTTPCLASS_OCTET_POST_COMPRESSION_BYTES ; VALUE = 411; end
826
+ STATISTIC_HTTPCLASS_OCTET_POST_COMPRESSION_BYTES = 411
827
827
  # Number of response bytes before compression has taken place for MIME type Image.
828
- class STATISTIC_HTTPCLASS_IMAGE_PRE_COMPRESSION_BYTES ; VALUE = 412; end
828
+ STATISTIC_HTTPCLASS_IMAGE_PRE_COMPRESSION_BYTES = 412
829
829
  # Number of response bytes after compression has taken place for MIME type Image.
830
- class STATISTIC_HTTPCLASS_IMAGE_POST_COMPRESSION_BYTES ; VALUE = 413; end
830
+ STATISTIC_HTTPCLASS_IMAGE_POST_COMPRESSION_BYTES = 413
831
831
  # Number of response bytes before compression has taken place for MIME type Video.
832
- class STATISTIC_HTTPCLASS_VIDEO_PRE_COMPRESSION_BYTES ; VALUE = 414; end
832
+ STATISTIC_HTTPCLASS_VIDEO_PRE_COMPRESSION_BYTES = 414
833
833
  # Number of response bytes after compression has taken place for MIME type Video.
834
- class STATISTIC_HTTPCLASS_VIDEO_POST_COMPRESSION_BYTES ; VALUE = 415; end
834
+ STATISTIC_HTTPCLASS_VIDEO_POST_COMPRESSION_BYTES = 415
835
835
  # Number of response bytes before compression has taken place for MIME type Audio.
836
- class STATISTIC_HTTPCLASS_AUDIO_PRE_COMPRESSION_BYTES ; VALUE = 416; end
836
+ STATISTIC_HTTPCLASS_AUDIO_PRE_COMPRESSION_BYTES = 416
837
837
  # Number of response bytes after compression has taken place for MIME type Audio.
838
- class STATISTIC_HTTPCLASS_AUDIO_POST_COMPRESSION_BYTES ; VALUE = 417; end
838
+ STATISTIC_HTTPCLASS_AUDIO_POST_COMPRESSION_BYTES = 417
839
839
  # Number of response bytes before compression has taken place for all other MIME types.
840
- class STATISTIC_HTTPCLASS_OTHER_PRE_COMPRESSION_BYTES ; VALUE = 418; end
840
+ STATISTIC_HTTPCLASS_OTHER_PRE_COMPRESSION_BYTES = 418
841
841
  # Number of response bytes after compression has taken place for all other MIME types.
842
- class STATISTIC_HTTPCLASS_OTHER_POST_COMPRESSION_BYTES ; VALUE = 419; end
842
+ STATISTIC_HTTPCLASS_OTHER_POST_COMPRESSION_BYTES = 419
843
843
  # RAM Cache hit count.
844
- class STATISTIC_HTTPCLASS_RAM_CACHE_HITS ; VALUE = 420; end
844
+ STATISTIC_HTTPCLASS_RAM_CACHE_HITS = 420
845
845
  # RAM Cache miss count, excluding uncacheable data.
846
- class STATISTIC_HTTPCLASS_RAM_CACHE_MISSES ; VALUE = 421; end
846
+ STATISTIC_HTTPCLASS_RAM_CACHE_MISSES = 421
847
847
  # Total RAM Cache miss count.
848
- class STATISTIC_HTTPCLASS_RAM_CACHE_TOTAL_MISSES ; VALUE = 422; end
848
+ STATISTIC_HTTPCLASS_RAM_CACHE_TOTAL_MISSES = 422
849
849
  # RAM Cache hit bytes.
850
- class STATISTIC_HTTPCLASS_RAM_CACHE_HIT_BYTES ; VALUE = 423; end
850
+ STATISTIC_HTTPCLASS_RAM_CACHE_HIT_BYTES = 423
851
851
  # RAM Cache miss bytes, excluding uncacheable data.
852
- class STATISTIC_HTTPCLASS_RAM_CACHE_MISS_BYTES ; VALUE = 424; end
852
+ STATISTIC_HTTPCLASS_RAM_CACHE_MISS_BYTES = 424
853
853
  # Total RAM Cache miss bytes.
854
- class STATISTIC_HTTPCLASS_RAM_CACHE_TOTAL_MISS_BYTES ; VALUE = 425; end
854
+ STATISTIC_HTTPCLASS_RAM_CACHE_TOTAL_MISS_BYTES = 425
855
855
  # Number of connections accepted.
856
- class STATISTIC_SCTP_ACCEPTS ; VALUE = 426; end
856
+ STATISTIC_SCTP_ACCEPTS = 426
857
857
  # Number of connections not accepted.
858
- class STATISTIC_SCTP_FAILED_ACCEPT ; VALUE = 427; end
858
+ STATISTIC_SCTP_FAILED_ACCEPT = 427
859
859
  # Number of connections completely established.
860
- class STATISTIC_SCTP_CONNECTIONS ; VALUE = 428; end
860
+ STATISTIC_SCTP_CONNECTIONS = 428
861
861
  # Number of connection failures.
862
- class STATISTIC_SCTP_FAILED_CONNECTION ; VALUE = 429; end
862
+ STATISTIC_SCTP_FAILED_CONNECTION = 429
863
863
  # Number of expired connections due to idle timeout.
864
- class STATISTIC_SCTP_EXPIRED_CONNECTIONS ; VALUE = 430; end
864
+ STATISTIC_SCTP_EXPIRED_CONNECTIONS = 430
865
865
  # Number of abandoned connections due to retries/keep-alives.
866
- class STATISTIC_SCTP_ABANDONED_CONNECTIONS ; VALUE = 431; end
866
+ STATISTIC_SCTP_ABANDONED_CONNECTIONS = 431
867
867
  # Number of resets received.
868
- class STATISTIC_SCTP_RESETS ; VALUE = 432; end
868
+ STATISTIC_SCTP_RESETS = 432
869
869
  # Number of times a bad checksum is encountered.
870
- class STATISTIC_SCTP_BAD_CHECKSUMS ; VALUE = 433; end
870
+ STATISTIC_SCTP_BAD_CHECKSUMS = 433
871
871
  # Number of SCTP cookies received.
872
- class STATISTIC_SCTP_COOKIES ; VALUE = 434; end
872
+ STATISTIC_SCTP_COOKIES = 434
873
873
  # Number of bad SCTP cookies received.
874
- class STATISTIC_SCTP_BAD_COOKIES ; VALUE = 435; end
874
+ STATISTIC_SCTP_BAD_COOKIES = 435
875
875
  # Total paths through link.
876
- class STATISTIC_GTM_LINK_PATHS ; VALUE = 436; end
876
+ STATISTIC_GTM_LINK_PATHS = 436
877
877
  # Total number of LDNSes.
878
- class STATISTIC_GTM_TOTAL_LDNSES ; VALUE = 437; end
878
+ STATISTIC_GTM_TOTAL_LDNSES = 437
879
879
  # Total number of paths.
880
- class STATISTIC_GTM_TOTAL_PATHS ; VALUE = 438; end
880
+ STATISTIC_GTM_TOTAL_PATHS = 438
881
881
  # Total number of SYN cookies generated by PVA ASIC.
882
- class STATISTIC_HARDWARE_SYN_COOKIES_GENERATED ; VALUE = 439; end
882
+ STATISTIC_HARDWARE_SYN_COOKIES_GENERATED = 439
883
883
  # Total number of SYN cookies detected by PVA ASIC.
884
- class STATISTIC_HARDWARE_SYN_COOKIES_DETECTED ; VALUE = 440; end
884
+ STATISTIC_HARDWARE_SYN_COOKIES_DETECTED = 440
885
885
  # Current open connections.
886
- class STATISTIC_FASTL4_OPEN_CONNECTIONS ; VALUE = 441; end
886
+ STATISTIC_FASTL4_OPEN_CONNECTIONS = 441
887
887
  # Current connections that have been accepted.
888
- class STATISTIC_FASTL4_ACCEPTED_CONNECTIONS ; VALUE = 442; end
888
+ STATISTIC_FASTL4_ACCEPTED_CONNECTIONS = 442
889
889
  # Number of accept failures.
890
- class STATISTIC_FASTL4_ACCEPT_FAILURES ; VALUE = 443; end
890
+ STATISTIC_FASTL4_ACCEPT_FAILURES = 443
891
891
  # Expired connections due to idle timeout.
892
- class STATISTIC_FASTL4_EXPIRED_CONNECTIONS ; VALUE = 444; end
892
+ STATISTIC_FASTL4_EXPIRED_CONNECTIONS = 444
893
893
  # Number of malformed packets received.
894
- class STATISTIC_FASTL4_RECEIVED_BAD_PACKET ; VALUE = 445; end
894
+ STATISTIC_FASTL4_RECEIVED_BAD_PACKET = 445
895
895
  # Number of ICMP unreachable or TCP RSTs received.
896
- class STATISTIC_FASTL4_ACCEPTED_ICMP_UNREACH_OR_TCP_RST ; VALUE = 446; end
896
+ STATISTIC_FASTL4_ACCEPTED_ICMP_UNREACH_OR_TCP_RST = 446
897
897
  # Number of TCP RSTs received out of window.
898
- class STATISTIC_FASTL4_ACCEPTED_TCP_RST_OUT_OF_WIN ; VALUE = 447; end
898
+ STATISTIC_FASTL4_ACCEPTED_TCP_RST_OUT_OF_WIN = 447
899
899
  # Number of times a bad checksum is encountered.
900
- class STATISTIC_FASTL4_RECEIVED_BAD_CHECKSUMS ; VALUE = 448; end
900
+ STATISTIC_FASTL4_RECEIVED_BAD_CHECKSUMS = 448
901
901
  # Number of transmit errors.
902
- class STATISTIC_FASTL4_RECEIVED_BAD_TXERR ; VALUE = 449; end
902
+ STATISTIC_FASTL4_RECEIVED_BAD_TXERR = 449
903
903
  # Number of syncookies issued.
904
- class STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_ISSUED ; VALUE = 450; end
904
+ STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_ISSUED = 450
905
905
  # Number of syncookies accepted.
906
- class STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_ACCEPTED ; VALUE = 451; end
906
+ STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_ACCEPTED = 451
907
907
  # Number of syncookies rejected.
908
- class STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_REJECTED ; VALUE = 452; end
908
+ STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_REJECTED = 452
909
909
  #
910
- class STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_SYN_TO_SERVER_RETRANS ; VALUE = 453; end
910
+ STATISTIC_FASTL4_RECEIVED_SYN_COOKIES_SYN_TO_SERVER_RETRANS = 453
911
911
  # Process ID of TMOS processing agent.
912
- class STATISTIC_TM_PID ; VALUE = 454; end
912
+ STATISTIC_TM_PID = 454
913
913
  # TMOS processing agent CPU number.
914
- class STATISTIC_TM_CPU ; VALUE = 455; end
914
+ STATISTIC_TM_CPU = 455
915
915
  # TMOS processing agent instance.
916
- class STATISTIC_TM_TMID ; VALUE = 456; end
916
+ STATISTIC_TM_TMID = 456
917
917
  # Number of TMOS processing agents.
918
- class STATISTIC_TM_NPUS ; VALUE = 457; end
918
+ STATISTIC_TM_NPUS = 457
919
919
  # Number of connections that were redirected to a different TMOS processing agent in the cluster.
920
- class STATISTIC_TM_CMP_CONN_REDIRECTED ; VALUE = 458; end
920
+ STATISTIC_TM_CMP_CONN_REDIRECTED = 458
921
921
  # Number of CPUs on the system.
922
- class STATISTIC_CPU_COUNT ; VALUE = 459; end
922
+ STATISTIC_CPU_COUNT = 459
923
923
  # The numeric ID of the processor, i.e. 1, 2, 3, 4 ....
924
- class STATISTIC_CPU_INFO_CPU_ID ; VALUE = 460; end
924
+ STATISTIC_CPU_INFO_CPU_ID = 460
925
925
  # The time spent by the processor in user context.
926
- class STATISTIC_CPU_INFO_USER ; VALUE = 461; end
926
+ STATISTIC_CPU_INFO_USER = 461
927
927
  # The time spent by the processor running niced processes.
928
- class STATISTIC_CPU_INFO_NICED ; VALUE = 462; end
928
+ STATISTIC_CPU_INFO_NICED = 462
929
929
  # The time spent by the processor servicing system calls.
930
- class STATISTIC_CPU_INFO_SYSTEM ; VALUE = 463; end
930
+ STATISTIC_CPU_INFO_SYSTEM = 463
931
931
  # The time spent by the processor doing nothing.
932
- class STATISTIC_CPU_INFO_IDLE ; VALUE = 464; end
932
+ STATISTIC_CPU_INFO_IDLE = 464
933
933
  # The time spent by the processor servicing hardware interrupts.
934
- class STATISTIC_CPU_INFO_IRQ ; VALUE = 465; end
934
+ STATISTIC_CPU_INFO_IRQ = 465
935
935
  # The time spent by the processor servicing soft interrupts.
936
- class STATISTIC_CPU_INFO_SOFTIRQ ; VALUE = 466; end
936
+ STATISTIC_CPU_INFO_SOFTIRQ = 466
937
937
  # The time spent by the processor waiting for external I/O to complete.
938
- class STATISTIC_CPU_INFO_IOWAIT ; VALUE = 467; end
938
+ STATISTIC_CPU_INFO_IOWAIT = 467
939
939
  # The ratio of time spent in user,niced,system to total time spent by the processor for a recent 10 second period.
940
- class STATISTIC_CPU_INFO_USAGE_RATIO ; VALUE = 468; end
940
+ STATISTIC_CPU_INFO_USAGE_RATIO = 468
941
941
  # Number of request messages.
942
- class STATISTIC_SIP_REQUESTS ; VALUE = 469; end
942
+ STATISTIC_SIP_REQUESTS = 469
943
943
  # Number of response messages.
944
- class STATISTIC_SIP_RESPONSES ; VALUE = 470; end
944
+ STATISTIC_SIP_RESPONSES = 470
945
945
  # Number of messages which failed to parse correctly (connection is aborted).
946
- class STATISTIC_SIP_BAD_MESSAGES ; VALUE = 471; end
946
+ STATISTIC_SIP_BAD_MESSAGES = 471
947
947
  # Number of datagrams dropped (connection aborted).
948
- class STATISTIC_SIP_DROPS ; VALUE = 472; end
948
+ STATISTIC_SIP_DROPS = 472
949
949
  end
950
950
  end