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