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.
- data/README.rdoc +45 -1
- data/lib/icontrol/attributable.rb +13 -1
- data/lib/icontrol/base.rb +3 -2
- data/lib/icontrol/common.rb +43 -43
- data/lib/icontrol/local_lb/common.rb +57 -28
- data/lib/icontrol/local_lb/virtual_server.rb +92 -28
- data/lib/icontrol/mappings.rb +7 -7
- data/lib/icontrol/statistic_type.rb +946 -504
- data/spec/fixtures/endpoint_helper.rb +1 -1
- data/spec/icontrol_local_lb_virtual_server_spec.rb +55 -13
- data/spec/spec_helper.rb +1 -1
- metadata +4 -6
- data/README.markdown +0 -9
data/lib/icontrol/mappings.rb
CHANGED
@@ -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.
|
24
|
-
when /iControl:LocalLB.VirtualServer.VirtualServerCMPEnableMode\[/ then IControl::LocalLB::VirtualServer::CMPEnableMode.
|
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.
|
27
|
-
when /iControl:Common.EnabledState\[/ then IControl::Common::EnabledState.
|
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.
|
30
|
-
when /iControl:LocalLB.HardwareAccelerationMode\[/ then IControl::LocalLB::HardwareAccelerationMode.
|
31
|
-
when /iControl:LocalLB.SnatType\[/ then IControl::LocalLB::SnatType.
|
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
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
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
|