icontrol 0.0.2 → 0.0.3

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