logstash-codec-netflow 2.1.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,77 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'open-uri'
4
- require 'csv'
5
- require 'yaml'
6
-
7
- # Convert IANA types to those used by BinData or created by ourselves
8
- def iana2bindata(type)
9
- case type
10
- when /^unsigned(\d+)$/
11
- return 'uint' + $1
12
- when /^signed(\d+)$/
13
- return 'int' + $1
14
- when 'float32'
15
- return 'float'
16
- when 'float64'
17
- return 'double'
18
- when 'ipv4Address'
19
- return 'ip4_addr'
20
- when 'ipv6Address'
21
- return 'ip6_addr'
22
- when 'macAddress'
23
- return 'mac_addr'
24
- when 'octetArray', 'string'
25
- return 'string'
26
- when 'dateTimeSeconds'
27
- return 'uint32'
28
- when 'dateTimeMilliseconds', 'dateTimeMicroseconds', 'dateTimeNanoseconds'
29
- return 'uint64'
30
- when 'boolean'
31
- return 'uint8'
32
- when 'basicList', 'subTemplateList', 'subTemplateMultiList'
33
- return 'skip'
34
- else
35
- raise "Unknown type #{type}"
36
- end
37
- end
38
-
39
- def iana2hash(url)
40
- fields = { 0 => {} }
41
-
42
- # Read in IANA-registered Information Elements (PEN 0)
43
- CSV.new(open(url), :headers => :first_row, :converters => :numeric).each do |line|
44
- # If it's not a Fixnum it's something like 'x-y' used to mark reserved blocks
45
- next if line['ElementID'].class != Fixnum
46
-
47
- # Blacklisted ID's
48
- next if [0].include?(line['ElementID'])
49
-
50
- # Skip any elements with no name
51
- next unless line['Name'] and line['Data Type']
52
-
53
- fields[0][line['ElementID']] = [iana2bindata(line['Data Type']).to_sym]
54
- if fields[0][line['ElementID']][0] != :skip
55
- fields[0][line['ElementID']] << line['Name'].to_sym
56
- end
57
- end
58
-
59
- # Overrides
60
- fields[0][210][0] = :skip # 210 is PaddingOctets so skip them properly
61
- fields[0][210].delete_at(1)
62
-
63
- # Generate the reverse PEN (PEN 29305)
64
- reversed = fields[0].reject { |k|
65
- # Excluded according to RFC 5103
66
- [40,41,42,130,131,137,145,148,149,163,164,165,166,167,168,173,210,211,212,213,214,215,216,217,239].include?(k)
67
- }.map { |k,v|
68
- [k, v.size > 1 ? [v[0], ('reverse' + v[1].to_s.slice(0,1).capitalize + v[1].to_s.slice(1..-1)).to_sym] : [v[0]]]
69
- }
70
- fields[29305] = Hash[reversed]
71
-
72
- return fields
73
- end
74
-
75
- ipfix_fields = iana2hash('http://www.iana.org/assignments/ipfix/ipfix-information-elements.csv')
76
-
77
- puts YAML.dump(ipfix_fields)
@@ -1,2333 +0,0 @@
1
- ---
2
- 0:
3
- 1:
4
- - :uint64
5
- - :octetDeltaCount
6
- 2:
7
- - :uint64
8
- - :packetDeltaCount
9
- 3:
10
- - :uint64
11
- - :deltaFlowCount
12
- 4:
13
- - :uint8
14
- - :protocolIdentifier
15
- 5:
16
- - :uint8
17
- - :ipClassOfService
18
- 6:
19
- - :uint16
20
- - :tcpControlBits
21
- 7:
22
- - :uint16
23
- - :sourceTransportPort
24
- 8:
25
- - :ip4_addr
26
- - :sourceIPv4Address
27
- 9:
28
- - :uint8
29
- - :sourceIPv4PrefixLength
30
- 10:
31
- - :uint32
32
- - :ingressInterface
33
- 11:
34
- - :uint16
35
- - :destinationTransportPort
36
- 12:
37
- - :ip4_addr
38
- - :destinationIPv4Address
39
- 13:
40
- - :uint8
41
- - :destinationIPv4PrefixLength
42
- 14:
43
- - :uint32
44
- - :egressInterface
45
- 15:
46
- - :ip4_addr
47
- - :ipNextHopIPv4Address
48
- 16:
49
- - :uint32
50
- - :bgpSourceAsNumber
51
- 17:
52
- - :uint32
53
- - :bgpDestinationAsNumber
54
- 18:
55
- - :ip4_addr
56
- - :bgpNextHopIPv4Address
57
- 19:
58
- - :uint64
59
- - :postMCastPacketDeltaCount
60
- 20:
61
- - :uint64
62
- - :postMCastOctetDeltaCount
63
- 21:
64
- - :uint32
65
- - :flowEndSysUpTime
66
- 22:
67
- - :uint32
68
- - :flowStartSysUpTime
69
- 23:
70
- - :uint64
71
- - :postOctetDeltaCount
72
- 24:
73
- - :uint64
74
- - :postPacketDeltaCount
75
- 25:
76
- - :uint64
77
- - :minimumIpTotalLength
78
- 26:
79
- - :uint64
80
- - :maximumIpTotalLength
81
- 27:
82
- - :ip6_addr
83
- - :sourceIPv6Address
84
- 28:
85
- - :ip6_addr
86
- - :destinationIPv6Address
87
- 29:
88
- - :uint8
89
- - :sourceIPv6PrefixLength
90
- 30:
91
- - :uint8
92
- - :destinationIPv6PrefixLength
93
- 31:
94
- - :uint32
95
- - :flowLabelIPv6
96
- 32:
97
- - :uint16
98
- - :icmpTypeCodeIPv4
99
- 33:
100
- - :uint8
101
- - :igmpType
102
- 34:
103
- - :uint32
104
- - :samplingInterval
105
- 35:
106
- - :uint8
107
- - :samplingAlgorithm
108
- 36:
109
- - :uint16
110
- - :flowActiveTimeout
111
- 37:
112
- - :uint16
113
- - :flowIdleTimeout
114
- 38:
115
- - :uint8
116
- - :engineType
117
- 39:
118
- - :uint8
119
- - :engineId
120
- 40:
121
- - :uint64
122
- - :exportedOctetTotalCount
123
- 41:
124
- - :uint64
125
- - :exportedMessageTotalCount
126
- 42:
127
- - :uint64
128
- - :exportedFlowRecordTotalCount
129
- 43:
130
- - :ip4_addr
131
- - :ipv4RouterSc
132
- 44:
133
- - :ip4_addr
134
- - :sourceIPv4Prefix
135
- 45:
136
- - :ip4_addr
137
- - :destinationIPv4Prefix
138
- 46:
139
- - :uint8
140
- - :mplsTopLabelType
141
- 47:
142
- - :ip4_addr
143
- - :mplsTopLabelIPv4Address
144
- 48:
145
- - :uint8
146
- - :samplerId
147
- 49:
148
- - :uint8
149
- - :samplerMode
150
- 50:
151
- - :uint32
152
- - :samplerRandomInterval
153
- 51:
154
- - :uint8
155
- - :classId
156
- 52:
157
- - :uint8
158
- - :minimumTTL
159
- 53:
160
- - :uint8
161
- - :maximumTTL
162
- 54:
163
- - :uint32
164
- - :fragmentIdentification
165
- 55:
166
- - :uint8
167
- - :postIpClassOfService
168
- 56:
169
- - :mac_addr
170
- - :sourceMacAddress
171
- 57:
172
- - :mac_addr
173
- - :postDestinationMacAddress
174
- 58:
175
- - :uint16
176
- - :vlanId
177
- 59:
178
- - :uint16
179
- - :postVlanId
180
- 60:
181
- - :uint8
182
- - :ipVersion
183
- 61:
184
- - :uint8
185
- - :flowDirection
186
- 62:
187
- - :ip6_addr
188
- - :ipNextHopIPv6Address
189
- 63:
190
- - :ip6_addr
191
- - :bgpNextHopIPv6Address
192
- 64:
193
- - :uint32
194
- - :ipv6ExtensionHeaders
195
- 70:
196
- - :string
197
- - :mplsTopLabelStackSection
198
- 71:
199
- - :string
200
- - :mplsLabelStackSection2
201
- 72:
202
- - :string
203
- - :mplsLabelStackSection3
204
- 73:
205
- - :string
206
- - :mplsLabelStackSection4
207
- 74:
208
- - :string
209
- - :mplsLabelStackSection5
210
- 75:
211
- - :string
212
- - :mplsLabelStackSection6
213
- 76:
214
- - :string
215
- - :mplsLabelStackSection7
216
- 77:
217
- - :string
218
- - :mplsLabelStackSection8
219
- 78:
220
- - :string
221
- - :mplsLabelStackSection9
222
- 79:
223
- - :string
224
- - :mplsLabelStackSection10
225
- 80:
226
- - :mac_addr
227
- - :destinationMacAddress
228
- 81:
229
- - :mac_addr
230
- - :postSourceMacAddress
231
- 82:
232
- - :string
233
- - :interfaceName
234
- 83:
235
- - :string
236
- - :interfaceDescription
237
- 84:
238
- - :string
239
- - :samplerName
240
- 85:
241
- - :uint64
242
- - :octetTotalCount
243
- 86:
244
- - :uint64
245
- - :packetTotalCount
246
- 87:
247
- - :uint32
248
- - :flagsAndSamplerId
249
- 88:
250
- - :uint16
251
- - :fragmentOffset
252
- 89:
253
- - :uint32
254
- - :forwardingStatus
255
- 90:
256
- - :string
257
- - :mplsVpnRouteDistinguisher
258
- 91:
259
- - :uint8
260
- - :mplsTopLabelPrefixLength
261
- 92:
262
- - :uint32
263
- - :srcTrafficIndex
264
- 93:
265
- - :uint32
266
- - :dstTrafficIndex
267
- 94:
268
- - :string
269
- - :applicationDescription
270
- 95:
271
- - :string
272
- - :applicationId
273
- 96:
274
- - :string
275
- - :applicationName
276
- 98:
277
- - :uint8
278
- - :postIpDiffServCodePoint
279
- 99:
280
- - :uint32
281
- - :multicastReplicationFactor
282
- 100:
283
- - :string
284
- - :className
285
- 101:
286
- - :uint8
287
- - :classificationEngineId
288
- 102:
289
- - :uint16
290
- - :layer2packetSectionOffset
291
- 103:
292
- - :uint16
293
- - :layer2packetSectionSize
294
- 104:
295
- - :string
296
- - :layer2packetSectionData
297
- 128:
298
- - :uint32
299
- - :bgpNextAdjacentAsNumber
300
- 129:
301
- - :uint32
302
- - :bgpPrevAdjacentAsNumber
303
- 130:
304
- - :ip4_addr
305
- - :exporterIPv4Address
306
- 131:
307
- - :ip6_addr
308
- - :exporterIPv6Address
309
- 132:
310
- - :uint64
311
- - :droppedOctetDeltaCount
312
- 133:
313
- - :uint64
314
- - :droppedPacketDeltaCount
315
- 134:
316
- - :uint64
317
- - :droppedOctetTotalCount
318
- 135:
319
- - :uint64
320
- - :droppedPacketTotalCount
321
- 136:
322
- - :uint8
323
- - :flowEndReason
324
- 137:
325
- - :uint64
326
- - :commonPropertiesId
327
- 138:
328
- - :uint64
329
- - :observationPointId
330
- 139:
331
- - :uint16
332
- - :icmpTypeCodeIPv6
333
- 140:
334
- - :ip6_addr
335
- - :mplsTopLabelIPv6Address
336
- 141:
337
- - :uint32
338
- - :lineCardId
339
- 142:
340
- - :uint32
341
- - :portId
342
- 143:
343
- - :uint32
344
- - :meteringProcessId
345
- 144:
346
- - :uint32
347
- - :exportingProcessId
348
- 145:
349
- - :uint16
350
- - :templateId
351
- 146:
352
- - :uint8
353
- - :wlanChannelId
354
- 147:
355
- - :string
356
- - :wlanSSID
357
- 148:
358
- - :uint64
359
- - :flowId
360
- 149:
361
- - :uint32
362
- - :observationDomainId
363
- 150:
364
- - :uint32
365
- - :flowStartSeconds
366
- 151:
367
- - :uint32
368
- - :flowEndSeconds
369
- 152:
370
- - :uint64
371
- - :flowStartMilliseconds
372
- 153:
373
- - :uint64
374
- - :flowEndMilliseconds
375
- 154:
376
- - :uint64
377
- - :flowStartMicroseconds
378
- 155:
379
- - :uint64
380
- - :flowEndMicroseconds
381
- 156:
382
- - :uint64
383
- - :flowStartNanoseconds
384
- 157:
385
- - :uint64
386
- - :flowEndNanoseconds
387
- 158:
388
- - :uint32
389
- - :flowStartDeltaMicroseconds
390
- 159:
391
- - :uint32
392
- - :flowEndDeltaMicroseconds
393
- 160:
394
- - :uint64
395
- - :systemInitTimeMilliseconds
396
- 161:
397
- - :uint32
398
- - :flowDurationMilliseconds
399
- 162:
400
- - :uint32
401
- - :flowDurationMicroseconds
402
- 163:
403
- - :uint64
404
- - :observedFlowTotalCount
405
- 164:
406
- - :uint64
407
- - :ignoredPacketTotalCount
408
- 165:
409
- - :uint64
410
- - :ignoredOctetTotalCount
411
- 166:
412
- - :uint64
413
- - :notSentFlowTotalCount
414
- 167:
415
- - :uint64
416
- - :notSentPacketTotalCount
417
- 168:
418
- - :uint64
419
- - :notSentOctetTotalCount
420
- 169:
421
- - :ip6_addr
422
- - :destinationIPv6Prefix
423
- 170:
424
- - :ip6_addr
425
- - :sourceIPv6Prefix
426
- 171:
427
- - :uint64
428
- - :postOctetTotalCount
429
- 172:
430
- - :uint64
431
- - :postPacketTotalCount
432
- 173:
433
- - :uint64
434
- - :flowKeyIndicator
435
- 174:
436
- - :uint64
437
- - :postMCastPacketTotalCount
438
- 175:
439
- - :uint64
440
- - :postMCastOctetTotalCount
441
- 176:
442
- - :uint8
443
- - :icmpTypeIPv4
444
- 177:
445
- - :uint8
446
- - :icmpCodeIPv4
447
- 178:
448
- - :uint8
449
- - :icmpTypeIPv6
450
- 179:
451
- - :uint8
452
- - :icmpCodeIPv6
453
- 180:
454
- - :uint16
455
- - :udpSourcePort
456
- 181:
457
- - :uint16
458
- - :udpDestinationPort
459
- 182:
460
- - :uint16
461
- - :tcpSourcePort
462
- 183:
463
- - :uint16
464
- - :tcpDestinationPort
465
- 184:
466
- - :uint32
467
- - :tcpSequenceNumber
468
- 185:
469
- - :uint32
470
- - :tcpAcknowledgementNumber
471
- 186:
472
- - :uint16
473
- - :tcpWindowSize
474
- 187:
475
- - :uint16
476
- - :tcpUrgentPointer
477
- 188:
478
- - :uint8
479
- - :tcpHeaderLength
480
- 189:
481
- - :uint8
482
- - :ipHeaderLength
483
- 190:
484
- - :uint16
485
- - :totalLengthIPv4
486
- 191:
487
- - :uint16
488
- - :payloadLengthIPv6
489
- 192:
490
- - :uint8
491
- - :ipTTL
492
- 193:
493
- - :uint8
494
- - :nextHeaderIPv6
495
- 194:
496
- - :uint32
497
- - :mplsPayloadLength
498
- 195:
499
- - :uint8
500
- - :ipDiffServCodePoint
501
- 196:
502
- - :uint8
503
- - :ipPrecedence
504
- 197:
505
- - :uint8
506
- - :fragmentFlags
507
- 198:
508
- - :uint64
509
- - :octetDeltaSumOfSquares
510
- 199:
511
- - :uint64
512
- - :octetTotalSumOfSquares
513
- 200:
514
- - :uint8
515
- - :mplsTopLabelTTL
516
- 201:
517
- - :uint32
518
- - :mplsLabelStackLength
519
- 202:
520
- - :uint32
521
- - :mplsLabelStackDepth
522
- 203:
523
- - :uint8
524
- - :mplsTopLabelExp
525
- 204:
526
- - :uint32
527
- - :ipPayloadLength
528
- 205:
529
- - :uint16
530
- - :udpMessageLength
531
- 206:
532
- - :uint8
533
- - :isMulticast
534
- 207:
535
- - :uint8
536
- - :ipv4IHL
537
- 208:
538
- - :uint32
539
- - :ipv4Options
540
- 209:
541
- - :uint64
542
- - :tcpOptions
543
- 210:
544
- - :skip
545
- 211:
546
- - :ip4_addr
547
- - :collectorIPv4Address
548
- 212:
549
- - :ip6_addr
550
- - :collectorIPv6Address
551
- 213:
552
- - :uint32
553
- - :exportInterface
554
- 214:
555
- - :uint8
556
- - :exportProtocolVersion
557
- 215:
558
- - :uint8
559
- - :exportTransportProtocol
560
- 216:
561
- - :uint16
562
- - :collectorTransportPort
563
- 217:
564
- - :uint16
565
- - :exporterTransportPort
566
- 218:
567
- - :uint64
568
- - :tcpSynTotalCount
569
- 219:
570
- - :uint64
571
- - :tcpFinTotalCount
572
- 220:
573
- - :uint64
574
- - :tcpRstTotalCount
575
- 221:
576
- - :uint64
577
- - :tcpPshTotalCount
578
- 222:
579
- - :uint64
580
- - :tcpAckTotalCount
581
- 223:
582
- - :uint64
583
- - :tcpUrgTotalCount
584
- 224:
585
- - :uint64
586
- - :ipTotalLength
587
- 225:
588
- - :ip4_addr
589
- - :postNATSourceIPv4Address
590
- 226:
591
- - :ip4_addr
592
- - :postNATDestinationIPv4Address
593
- 227:
594
- - :uint16
595
- - :postNAPTSourceTransportPort
596
- 228:
597
- - :uint16
598
- - :postNAPTDestinationTransportPort
599
- 229:
600
- - :uint8
601
- - :natOriginatingAddressRealm
602
- 230:
603
- - :uint8
604
- - :natEvent
605
- 231:
606
- - :uint64
607
- - :initiatorOctets
608
- 232:
609
- - :uint64
610
- - :responderOctets
611
- 233:
612
- - :uint8
613
- - :firewallEvent
614
- 234:
615
- - :uint32
616
- - :ingressVRFID
617
- 235:
618
- - :uint32
619
- - :egressVRFID
620
- 236:
621
- - :string
622
- - :VRFname
623
- 237:
624
- - :uint8
625
- - :postMplsTopLabelExp
626
- 238:
627
- - :uint16
628
- - :tcpWindowScale
629
- 239:
630
- - :uint8
631
- - :biflowDirection
632
- 240:
633
- - :uint8
634
- - :ethernetHeaderLength
635
- 241:
636
- - :uint16
637
- - :ethernetPayloadLength
638
- 242:
639
- - :uint16
640
- - :ethernetTotalLength
641
- 243:
642
- - :uint16
643
- - :dot1qVlanId
644
- 244:
645
- - :uint8
646
- - :dot1qPriority
647
- 245:
648
- - :uint16
649
- - :dot1qCustomerVlanId
650
- 246:
651
- - :uint8
652
- - :dot1qCustomerPriority
653
- 247:
654
- - :string
655
- - :metroEvcId
656
- 248:
657
- - :uint8
658
- - :metroEvcType
659
- 249:
660
- - :uint32
661
- - :pseudoWireId
662
- 250:
663
- - :uint16
664
- - :pseudoWireType
665
- 251:
666
- - :uint32
667
- - :pseudoWireControlWord
668
- 252:
669
- - :uint32
670
- - :ingressPhysicalInterface
671
- 253:
672
- - :uint32
673
- - :egressPhysicalInterface
674
- 254:
675
- - :uint16
676
- - :postDot1qVlanId
677
- 255:
678
- - :uint16
679
- - :postDot1qCustomerVlanId
680
- 256:
681
- - :uint16
682
- - :ethernetType
683
- 257:
684
- - :uint8
685
- - :postIpPrecedence
686
- 258:
687
- - :uint64
688
- - :collectionTimeMilliseconds
689
- 259:
690
- - :uint16
691
- - :exportSctpStreamId
692
- 260:
693
- - :uint32
694
- - :maxExportSeconds
695
- 261:
696
- - :uint32
697
- - :maxFlowEndSeconds
698
- 262:
699
- - :string
700
- - :messageMD5Checksum
701
- 263:
702
- - :uint8
703
- - :messageScope
704
- 264:
705
- - :uint32
706
- - :minExportSeconds
707
- 265:
708
- - :uint32
709
- - :minFlowStartSeconds
710
- 266:
711
- - :string
712
- - :opaqueOctets
713
- 267:
714
- - :uint8
715
- - :sessionScope
716
- 268:
717
- - :uint64
718
- - :maxFlowEndMicroseconds
719
- 269:
720
- - :uint64
721
- - :maxFlowEndMilliseconds
722
- 270:
723
- - :uint64
724
- - :maxFlowEndNanoseconds
725
- 271:
726
- - :uint64
727
- - :minFlowStartMicroseconds
728
- 272:
729
- - :uint64
730
- - :minFlowStartMilliseconds
731
- 273:
732
- - :uint64
733
- - :minFlowStartNanoseconds
734
- 274:
735
- - :string
736
- - :collectorCertificate
737
- 275:
738
- - :string
739
- - :exporterCertificate
740
- 276:
741
- - :uint8
742
- - :dataRecordsReliability
743
- 277:
744
- - :uint8
745
- - :observationPointType
746
- 278:
747
- - :uint32
748
- - :newConnectionDeltaCount
749
- 279:
750
- - :uint64
751
- - :connectionSumDurationSeconds
752
- 280:
753
- - :uint64
754
- - :connectionTransactionId
755
- 281:
756
- - :ip6_addr
757
- - :postNATSourceIPv6Address
758
- 282:
759
- - :ip6_addr
760
- - :postNATDestinationIPv6Address
761
- 283:
762
- - :uint32
763
- - :natPoolId
764
- 284:
765
- - :string
766
- - :natPoolName
767
- 285:
768
- - :uint16
769
- - :anonymizationFlags
770
- 286:
771
- - :uint16
772
- - :anonymizationTechnique
773
- 287:
774
- - :uint16
775
- - :informationElementIndex
776
- 288:
777
- - :string
778
- - :p2pTechnology
779
- 289:
780
- - :string
781
- - :tunnelTechnology
782
- 290:
783
- - :string
784
- - :encryptedTechnology
785
- 291:
786
- - :skip
787
- 292:
788
- - :skip
789
- 293:
790
- - :skip
791
- 294:
792
- - :uint8
793
- - :bgpValidityState
794
- 295:
795
- - :uint32
796
- - :IPSecSPI
797
- 296:
798
- - :uint32
799
- - :greKey
800
- 297:
801
- - :uint8
802
- - :natType
803
- 298:
804
- - :uint64
805
- - :initiatorPackets
806
- 299:
807
- - :uint64
808
- - :responderPackets
809
- 300:
810
- - :string
811
- - :observationDomainName
812
- 301:
813
- - :uint64
814
- - :selectionSequenceId
815
- 302:
816
- - :uint64
817
- - :selectorId
818
- 303:
819
- - :uint16
820
- - :informationElementId
821
- 304:
822
- - :uint16
823
- - :selectorAlgorithm
824
- 305:
825
- - :uint32
826
- - :samplingPacketInterval
827
- 306:
828
- - :uint32
829
- - :samplingPacketSpace
830
- 307:
831
- - :uint32
832
- - :samplingTimeInterval
833
- 308:
834
- - :uint32
835
- - :samplingTimeSpace
836
- 309:
837
- - :uint32
838
- - :samplingSize
839
- 310:
840
- - :uint32
841
- - :samplingPopulation
842
- 311:
843
- - :double
844
- - :samplingProbability
845
- 312:
846
- - :uint16
847
- - :dataLinkFrameSize
848
- 313:
849
- - :string
850
- - :ipHeaderPacketSection
851
- 314:
852
- - :string
853
- - :ipPayloadPacketSection
854
- 315:
855
- - :string
856
- - :dataLinkFrameSection
857
- 316:
858
- - :string
859
- - :mplsLabelStackSection
860
- 317:
861
- - :string
862
- - :mplsPayloadPacketSection
863
- 318:
864
- - :uint64
865
- - :selectorIdTotalPktsObserved
866
- 319:
867
- - :uint64
868
- - :selectorIdTotalPktsSelected
869
- 320:
870
- - :double
871
- - :absoluteError
872
- 321:
873
- - :double
874
- - :relativeError
875
- 322:
876
- - :uint32
877
- - :observationTimeSeconds
878
- 323:
879
- - :uint64
880
- - :observationTimeMilliseconds
881
- 324:
882
- - :uint64
883
- - :observationTimeMicroseconds
884
- 325:
885
- - :uint64
886
- - :observationTimeNanoseconds
887
- 326:
888
- - :uint64
889
- - :digestHashValue
890
- 327:
891
- - :uint64
892
- - :hashIPPayloadOffset
893
- 328:
894
- - :uint64
895
- - :hashIPPayloadSize
896
- 329:
897
- - :uint64
898
- - :hashOutputRangeMin
899
- 330:
900
- - :uint64
901
- - :hashOutputRangeMax
902
- 331:
903
- - :uint64
904
- - :hashSelectedRangeMin
905
- 332:
906
- - :uint64
907
- - :hashSelectedRangeMax
908
- 333:
909
- - :uint8
910
- - :hashDigestOutput
911
- 334:
912
- - :uint64
913
- - :hashInitialiserValue
914
- 335:
915
- - :string
916
- - :selectorName
917
- 336:
918
- - :double
919
- - :upperCILimit
920
- 337:
921
- - :double
922
- - :lowerCILimit
923
- 338:
924
- - :double
925
- - :confidenceLevel
926
- 339:
927
- - :uint8
928
- - :informationElementDataType
929
- 340:
930
- - :string
931
- - :informationElementDescription
932
- 341:
933
- - :string
934
- - :informationElementName
935
- 342:
936
- - :uint64
937
- - :informationElementRangeBegin
938
- 343:
939
- - :uint64
940
- - :informationElementRangeEnd
941
- 344:
942
- - :uint8
943
- - :informationElementSemantics
944
- 345:
945
- - :uint16
946
- - :informationElementUnits
947
- 346:
948
- - :uint32
949
- - :privateEnterpriseNumber
950
- 347:
951
- - :string
952
- - :virtualStationInterfaceId
953
- 348:
954
- - :string
955
- - :virtualStationInterfaceName
956
- 349:
957
- - :string
958
- - :virtualStationUUID
959
- 350:
960
- - :string
961
- - :virtualStationName
962
- 351:
963
- - :uint64
964
- - :layer2SegmentId
965
- 352:
966
- - :uint64
967
- - :layer2OctetDeltaCount
968
- 353:
969
- - :uint64
970
- - :layer2OctetTotalCount
971
- 354:
972
- - :uint64
973
- - :ingressUnicastPacketTotalCount
974
- 355:
975
- - :uint64
976
- - :ingressMulticastPacketTotalCount
977
- 356:
978
- - :uint64
979
- - :ingressBroadcastPacketTotalCount
980
- 357:
981
- - :uint64
982
- - :egressUnicastPacketTotalCount
983
- 358:
984
- - :uint64
985
- - :egressBroadcastPacketTotalCount
986
- 359:
987
- - :uint64
988
- - :monitoringIntervalStartMilliSeconds
989
- 360:
990
- - :uint64
991
- - :monitoringIntervalEndMilliSeconds
992
- 361:
993
- - :uint16
994
- - :portRangeStart
995
- 362:
996
- - :uint16
997
- - :portRangeEnd
998
- 363:
999
- - :uint16
1000
- - :portRangeStepSize
1001
- 364:
1002
- - :uint16
1003
- - :portRangeNumPorts
1004
- 365:
1005
- - :mac_addr
1006
- - :staMacAddress
1007
- 366:
1008
- - :ip4_addr
1009
- - :staIPv4Address
1010
- 367:
1011
- - :mac_addr
1012
- - :wtpMacAddress
1013
- 368:
1014
- - :uint32
1015
- - :ingressInterfaceType
1016
- 369:
1017
- - :uint32
1018
- - :egressInterfaceType
1019
- 370:
1020
- - :uint16
1021
- - :rtpSequenceNumber
1022
- 371:
1023
- - :string
1024
- - :userName
1025
- 372:
1026
- - :string
1027
- - :applicationCategoryName
1028
- 373:
1029
- - :string
1030
- - :applicationSubCategoryName
1031
- 374:
1032
- - :string
1033
- - :applicationGroupName
1034
- 375:
1035
- - :uint64
1036
- - :originalFlowsPresent
1037
- 376:
1038
- - :uint64
1039
- - :originalFlowsInitiated
1040
- 377:
1041
- - :uint64
1042
- - :originalFlowsCompleted
1043
- 378:
1044
- - :uint64
1045
- - :distinctCountOfSourceIPAddress
1046
- 379:
1047
- - :uint64
1048
- - :distinctCountOfDestinationIPAddress
1049
- 380:
1050
- - :uint32
1051
- - :distinctCountOfSourceIPv4Address
1052
- 381:
1053
- - :uint32
1054
- - :distinctCountOfDestinationIPv4Address
1055
- 382:
1056
- - :uint64
1057
- - :distinctCountOfSourceIPv6Address
1058
- 383:
1059
- - :uint64
1060
- - :distinctCountOfDestinationIPv6Address
1061
- 384:
1062
- - :uint8
1063
- - :valueDistributionMethod
1064
- 385:
1065
- - :uint32
1066
- - :rfc3550JitterMilliseconds
1067
- 386:
1068
- - :uint32
1069
- - :rfc3550JitterMicroseconds
1070
- 387:
1071
- - :uint32
1072
- - :rfc3550JitterNanoseconds
1073
- 388:
1074
- - :uint8
1075
- - :dot1qDEI
1076
- 389:
1077
- - :uint8
1078
- - :dot1qCustomerDEI
1079
- 390:
1080
- - :uint16
1081
- - :flowSelectorAlgorithm
1082
- 391:
1083
- - :uint64
1084
- - :flowSelectedOctetDeltaCount
1085
- 392:
1086
- - :uint64
1087
- - :flowSelectedPacketDeltaCount
1088
- 393:
1089
- - :uint64
1090
- - :flowSelectedFlowDeltaCount
1091
- 394:
1092
- - :uint64
1093
- - :selectorIDTotalFlowsObserved
1094
- 395:
1095
- - :uint64
1096
- - :selectorIDTotalFlowsSelected
1097
- 396:
1098
- - :uint64
1099
- - :samplingFlowInterval
1100
- 397:
1101
- - :uint64
1102
- - :samplingFlowSpacing
1103
- 398:
1104
- - :uint64
1105
- - :flowSamplingTimeInterval
1106
- 399:
1107
- - :uint64
1108
- - :flowSamplingTimeSpacing
1109
- 400:
1110
- - :uint16
1111
- - :hashFlowDomain
1112
- 401:
1113
- - :uint64
1114
- - :transportOctetDeltaCount
1115
- 402:
1116
- - :uint64
1117
- - :transportPacketDeltaCount
1118
- 403:
1119
- - :ip4_addr
1120
- - :originalExporterIPv4Address
1121
- 404:
1122
- - :ip6_addr
1123
- - :originalExporterIPv6Address
1124
- 405:
1125
- - :uint32
1126
- - :originalObservationDomainId
1127
- 406:
1128
- - :uint32
1129
- - :intermediateProcessId
1130
- 407:
1131
- - :uint64
1132
- - :ignoredDataRecordTotalCount
1133
- 408:
1134
- - :uint16
1135
- - :dataLinkFrameType
1136
- 409:
1137
- - :uint16
1138
- - :sectionOffset
1139
- 410:
1140
- - :uint16
1141
- - :sectionExportedOctets
1142
- 411:
1143
- - :string
1144
- - :dot1qServiceInstanceTag
1145
- 412:
1146
- - :uint32
1147
- - :dot1qServiceInstanceId
1148
- 413:
1149
- - :uint8
1150
- - :dot1qServiceInstancePriority
1151
- 414:
1152
- - :mac_addr
1153
- - :dot1qCustomerSourceMacAddress
1154
- 415:
1155
- - :mac_addr
1156
- - :dot1qCustomerDestinationMacAddress
1157
- 417:
1158
- - :uint64
1159
- - :postLayer2OctetDeltaCount
1160
- 418:
1161
- - :uint64
1162
- - :postMCastLayer2OctetDeltaCount
1163
- 420:
1164
- - :uint64
1165
- - :postLayer2OctetTotalCount
1166
- 421:
1167
- - :uint64
1168
- - :postMCastLayer2OctetTotalCount
1169
- 422:
1170
- - :uint64
1171
- - :minimumLayer2TotalLength
1172
- 423:
1173
- - :uint64
1174
- - :maximumLayer2TotalLength
1175
- 424:
1176
- - :uint64
1177
- - :droppedLayer2OctetDeltaCount
1178
- 425:
1179
- - :uint64
1180
- - :droppedLayer2OctetTotalCount
1181
- 426:
1182
- - :uint64
1183
- - :ignoredLayer2OctetTotalCount
1184
- 427:
1185
- - :uint64
1186
- - :notSentLayer2OctetTotalCount
1187
- 428:
1188
- - :uint64
1189
- - :layer2OctetDeltaSumOfSquares
1190
- 429:
1191
- - :uint64
1192
- - :layer2OctetTotalSumOfSquares
1193
- 430:
1194
- - :uint64
1195
- - :layer2FrameDeltaCount
1196
- 431:
1197
- - :uint64
1198
- - :layer2FrameTotalCount
1199
- 432:
1200
- - :ip4_addr
1201
- - :pseudoWireDestinationIPv4Address
1202
- 433:
1203
- - :uint64
1204
- - :ignoredLayer2FrameTotalCount
1205
- 29305:
1206
- 1:
1207
- - :uint64
1208
- - :reverseOctetDeltaCount
1209
- 2:
1210
- - :uint64
1211
- - :reversePacketDeltaCount
1212
- 3:
1213
- - :uint64
1214
- - :reverseDeltaFlowCount
1215
- 4:
1216
- - :uint8
1217
- - :reverseProtocolIdentifier
1218
- 5:
1219
- - :uint8
1220
- - :reverseIpClassOfService
1221
- 6:
1222
- - :uint16
1223
- - :reverseTcpControlBits
1224
- 7:
1225
- - :uint16
1226
- - :reverseSourceTransportPort
1227
- 8:
1228
- - :ip4_addr
1229
- - :reverseSourceIPv4Address
1230
- 9:
1231
- - :uint8
1232
- - :reverseSourceIPv4PrefixLength
1233
- 10:
1234
- - :uint32
1235
- - :reverseIngressInterface
1236
- 11:
1237
- - :uint16
1238
- - :reverseDestinationTransportPort
1239
- 12:
1240
- - :ip4_addr
1241
- - :reverseDestinationIPv4Address
1242
- 13:
1243
- - :uint8
1244
- - :reverseDestinationIPv4PrefixLength
1245
- 14:
1246
- - :uint32
1247
- - :reverseEgressInterface
1248
- 15:
1249
- - :ip4_addr
1250
- - :reverseIpNextHopIPv4Address
1251
- 16:
1252
- - :uint32
1253
- - :reverseBgpSourceAsNumber
1254
- 17:
1255
- - :uint32
1256
- - :reverseBgpDestinationAsNumber
1257
- 18:
1258
- - :ip4_addr
1259
- - :reverseBgpNextHopIPv4Address
1260
- 19:
1261
- - :uint64
1262
- - :reversePostMCastPacketDeltaCount
1263
- 20:
1264
- - :uint64
1265
- - :reversePostMCastOctetDeltaCount
1266
- 21:
1267
- - :uint32
1268
- - :reverseFlowEndSysUpTime
1269
- 22:
1270
- - :uint32
1271
- - :reverseFlowStartSysUpTime
1272
- 23:
1273
- - :uint64
1274
- - :reversePostOctetDeltaCount
1275
- 24:
1276
- - :uint64
1277
- - :reversePostPacketDeltaCount
1278
- 25:
1279
- - :uint64
1280
- - :reverseMinimumIpTotalLength
1281
- 26:
1282
- - :uint64
1283
- - :reverseMaximumIpTotalLength
1284
- 27:
1285
- - :ip6_addr
1286
- - :reverseSourceIPv6Address
1287
- 28:
1288
- - :ip6_addr
1289
- - :reverseDestinationIPv6Address
1290
- 29:
1291
- - :uint8
1292
- - :reverseSourceIPv6PrefixLength
1293
- 30:
1294
- - :uint8
1295
- - :reverseDestinationIPv6PrefixLength
1296
- 31:
1297
- - :uint32
1298
- - :reverseFlowLabelIPv6
1299
- 32:
1300
- - :uint16
1301
- - :reverseIcmpTypeCodeIPv4
1302
- 33:
1303
- - :uint8
1304
- - :reverseIgmpType
1305
- 34:
1306
- - :uint32
1307
- - :reverseSamplingInterval
1308
- 35:
1309
- - :uint8
1310
- - :reverseSamplingAlgorithm
1311
- 36:
1312
- - :uint16
1313
- - :reverseFlowActiveTimeout
1314
- 37:
1315
- - :uint16
1316
- - :reverseFlowIdleTimeout
1317
- 38:
1318
- - :uint8
1319
- - :reverseEngineType
1320
- 39:
1321
- - :uint8
1322
- - :reverseEngineId
1323
- 43:
1324
- - :ip4_addr
1325
- - :reverseIpv4RouterSc
1326
- 44:
1327
- - :ip4_addr
1328
- - :reverseSourceIPv4Prefix
1329
- 45:
1330
- - :ip4_addr
1331
- - :reverseDestinationIPv4Prefix
1332
- 46:
1333
- - :uint8
1334
- - :reverseMplsTopLabelType
1335
- 47:
1336
- - :ip4_addr
1337
- - :reverseMplsTopLabelIPv4Address
1338
- 48:
1339
- - :uint8
1340
- - :reverseSamplerId
1341
- 49:
1342
- - :uint8
1343
- - :reverseSamplerMode
1344
- 50:
1345
- - :uint32
1346
- - :reverseSamplerRandomInterval
1347
- 51:
1348
- - :uint8
1349
- - :reverseClassId
1350
- 52:
1351
- - :uint8
1352
- - :reverseMinimumTTL
1353
- 53:
1354
- - :uint8
1355
- - :reverseMaximumTTL
1356
- 54:
1357
- - :uint32
1358
- - :reverseFragmentIdentification
1359
- 55:
1360
- - :uint8
1361
- - :reversePostIpClassOfService
1362
- 56:
1363
- - :mac_addr
1364
- - :reverseSourceMacAddress
1365
- 57:
1366
- - :mac_addr
1367
- - :reversePostDestinationMacAddress
1368
- 58:
1369
- - :uint16
1370
- - :reverseVlanId
1371
- 59:
1372
- - :uint16
1373
- - :reversePostVlanId
1374
- 60:
1375
- - :uint8
1376
- - :reverseIpVersion
1377
- 61:
1378
- - :uint8
1379
- - :reverseFlowDirection
1380
- 62:
1381
- - :ip6_addr
1382
- - :reverseIpNextHopIPv6Address
1383
- 63:
1384
- - :ip6_addr
1385
- - :reverseBgpNextHopIPv6Address
1386
- 64:
1387
- - :uint32
1388
- - :reverseIpv6ExtensionHeaders
1389
- 70:
1390
- - :string
1391
- - :reverseMplsTopLabelStackSection
1392
- 71:
1393
- - :string
1394
- - :reverseMplsLabelStackSection2
1395
- 72:
1396
- - :string
1397
- - :reverseMplsLabelStackSection3
1398
- 73:
1399
- - :string
1400
- - :reverseMplsLabelStackSection4
1401
- 74:
1402
- - :string
1403
- - :reverseMplsLabelStackSection5
1404
- 75:
1405
- - :string
1406
- - :reverseMplsLabelStackSection6
1407
- 76:
1408
- - :string
1409
- - :reverseMplsLabelStackSection7
1410
- 77:
1411
- - :string
1412
- - :reverseMplsLabelStackSection8
1413
- 78:
1414
- - :string
1415
- - :reverseMplsLabelStackSection9
1416
- 79:
1417
- - :string
1418
- - :reverseMplsLabelStackSection10
1419
- 80:
1420
- - :mac_addr
1421
- - :reverseDestinationMacAddress
1422
- 81:
1423
- - :mac_addr
1424
- - :reversePostSourceMacAddress
1425
- 82:
1426
- - :string
1427
- - :reverseInterfaceName
1428
- 83:
1429
- - :string
1430
- - :reverseInterfaceDescription
1431
- 84:
1432
- - :string
1433
- - :reverseSamplerName
1434
- 85:
1435
- - :uint64
1436
- - :reverseOctetTotalCount
1437
- 86:
1438
- - :uint64
1439
- - :reversePacketTotalCount
1440
- 87:
1441
- - :uint32
1442
- - :reverseFlagsAndSamplerId
1443
- 88:
1444
- - :uint16
1445
- - :reverseFragmentOffset
1446
- 89:
1447
- - :uint32
1448
- - :reverseForwardingStatus
1449
- 90:
1450
- - :string
1451
- - :reverseMplsVpnRouteDistinguisher
1452
- 91:
1453
- - :uint8
1454
- - :reverseMplsTopLabelPrefixLength
1455
- 92:
1456
- - :uint32
1457
- - :reverseSrcTrafficIndex
1458
- 93:
1459
- - :uint32
1460
- - :reverseDstTrafficIndex
1461
- 94:
1462
- - :string
1463
- - :reverseApplicationDescription
1464
- 95:
1465
- - :string
1466
- - :reverseApplicationId
1467
- 96:
1468
- - :string
1469
- - :reverseApplicationName
1470
- 98:
1471
- - :uint8
1472
- - :reversePostIpDiffServCodePoint
1473
- 99:
1474
- - :uint32
1475
- - :reverseMulticastReplicationFactor
1476
- 100:
1477
- - :string
1478
- - :reverseClassName
1479
- 101:
1480
- - :uint8
1481
- - :reverseClassificationEngineId
1482
- 102:
1483
- - :uint16
1484
- - :reverseLayer2packetSectionOffset
1485
- 103:
1486
- - :uint16
1487
- - :reverseLayer2packetSectionSize
1488
- 104:
1489
- - :string
1490
- - :reverseLayer2packetSectionData
1491
- 128:
1492
- - :uint32
1493
- - :reverseBgpNextAdjacentAsNumber
1494
- 129:
1495
- - :uint32
1496
- - :reverseBgpPrevAdjacentAsNumber
1497
- 132:
1498
- - :uint64
1499
- - :reverseDroppedOctetDeltaCount
1500
- 133:
1501
- - :uint64
1502
- - :reverseDroppedPacketDeltaCount
1503
- 134:
1504
- - :uint64
1505
- - :reverseDroppedOctetTotalCount
1506
- 135:
1507
- - :uint64
1508
- - :reverseDroppedPacketTotalCount
1509
- 136:
1510
- - :uint8
1511
- - :reverseFlowEndReason
1512
- 138:
1513
- - :uint64
1514
- - :reverseObservationPointId
1515
- 139:
1516
- - :uint16
1517
- - :reverseIcmpTypeCodeIPv6
1518
- 140:
1519
- - :ip6_addr
1520
- - :reverseMplsTopLabelIPv6Address
1521
- 141:
1522
- - :uint32
1523
- - :reverseLineCardId
1524
- 142:
1525
- - :uint32
1526
- - :reversePortId
1527
- 143:
1528
- - :uint32
1529
- - :reverseMeteringProcessId
1530
- 144:
1531
- - :uint32
1532
- - :reverseExportingProcessId
1533
- 146:
1534
- - :uint8
1535
- - :reverseWlanChannelId
1536
- 147:
1537
- - :string
1538
- - :reverseWlanSSID
1539
- 150:
1540
- - :uint32
1541
- - :reverseFlowStartSeconds
1542
- 151:
1543
- - :uint32
1544
- - :reverseFlowEndSeconds
1545
- 152:
1546
- - :uint64
1547
- - :reverseFlowStartMilliseconds
1548
- 153:
1549
- - :uint64
1550
- - :reverseFlowEndMilliseconds
1551
- 154:
1552
- - :uint64
1553
- - :reverseFlowStartMicroseconds
1554
- 155:
1555
- - :uint64
1556
- - :reverseFlowEndMicroseconds
1557
- 156:
1558
- - :uint64
1559
- - :reverseFlowStartNanoseconds
1560
- 157:
1561
- - :uint64
1562
- - :reverseFlowEndNanoseconds
1563
- 158:
1564
- - :uint32
1565
- - :reverseFlowStartDeltaMicroseconds
1566
- 159:
1567
- - :uint32
1568
- - :reverseFlowEndDeltaMicroseconds
1569
- 160:
1570
- - :uint64
1571
- - :reverseSystemInitTimeMilliseconds
1572
- 161:
1573
- - :uint32
1574
- - :reverseFlowDurationMilliseconds
1575
- 162:
1576
- - :uint32
1577
- - :reverseFlowDurationMicroseconds
1578
- 169:
1579
- - :ip6_addr
1580
- - :reverseDestinationIPv6Prefix
1581
- 170:
1582
- - :ip6_addr
1583
- - :reverseSourceIPv6Prefix
1584
- 171:
1585
- - :uint64
1586
- - :reversePostOctetTotalCount
1587
- 172:
1588
- - :uint64
1589
- - :reversePostPacketTotalCount
1590
- 174:
1591
- - :uint64
1592
- - :reversePostMCastPacketTotalCount
1593
- 175:
1594
- - :uint64
1595
- - :reversePostMCastOctetTotalCount
1596
- 176:
1597
- - :uint8
1598
- - :reverseIcmpTypeIPv4
1599
- 177:
1600
- - :uint8
1601
- - :reverseIcmpCodeIPv4
1602
- 178:
1603
- - :uint8
1604
- - :reverseIcmpTypeIPv6
1605
- 179:
1606
- - :uint8
1607
- - :reverseIcmpCodeIPv6
1608
- 180:
1609
- - :uint16
1610
- - :reverseUdpSourcePort
1611
- 181:
1612
- - :uint16
1613
- - :reverseUdpDestinationPort
1614
- 182:
1615
- - :uint16
1616
- - :reverseTcpSourcePort
1617
- 183:
1618
- - :uint16
1619
- - :reverseTcpDestinationPort
1620
- 184:
1621
- - :uint32
1622
- - :reverseTcpSequenceNumber
1623
- 185:
1624
- - :uint32
1625
- - :reverseTcpAcknowledgementNumber
1626
- 186:
1627
- - :uint16
1628
- - :reverseTcpWindowSize
1629
- 187:
1630
- - :uint16
1631
- - :reverseTcpUrgentPointer
1632
- 188:
1633
- - :uint8
1634
- - :reverseTcpHeaderLength
1635
- 189:
1636
- - :uint8
1637
- - :reverseIpHeaderLength
1638
- 190:
1639
- - :uint16
1640
- - :reverseTotalLengthIPv4
1641
- 191:
1642
- - :uint16
1643
- - :reversePayloadLengthIPv6
1644
- 192:
1645
- - :uint8
1646
- - :reverseIpTTL
1647
- 193:
1648
- - :uint8
1649
- - :reverseNextHeaderIPv6
1650
- 194:
1651
- - :uint32
1652
- - :reverseMplsPayloadLength
1653
- 195:
1654
- - :uint8
1655
- - :reverseIpDiffServCodePoint
1656
- 196:
1657
- - :uint8
1658
- - :reverseIpPrecedence
1659
- 197:
1660
- - :uint8
1661
- - :reverseFragmentFlags
1662
- 198:
1663
- - :uint64
1664
- - :reverseOctetDeltaSumOfSquares
1665
- 199:
1666
- - :uint64
1667
- - :reverseOctetTotalSumOfSquares
1668
- 200:
1669
- - :uint8
1670
- - :reverseMplsTopLabelTTL
1671
- 201:
1672
- - :uint32
1673
- - :reverseMplsLabelStackLength
1674
- 202:
1675
- - :uint32
1676
- - :reverseMplsLabelStackDepth
1677
- 203:
1678
- - :uint8
1679
- - :reverseMplsTopLabelExp
1680
- 204:
1681
- - :uint32
1682
- - :reverseIpPayloadLength
1683
- 205:
1684
- - :uint16
1685
- - :reverseUdpMessageLength
1686
- 206:
1687
- - :uint8
1688
- - :reverseIsMulticast
1689
- 207:
1690
- - :uint8
1691
- - :reverseIpv4IHL
1692
- 208:
1693
- - :uint32
1694
- - :reverseIpv4Options
1695
- 209:
1696
- - :uint64
1697
- - :reverseTcpOptions
1698
- 218:
1699
- - :uint64
1700
- - :reverseTcpSynTotalCount
1701
- 219:
1702
- - :uint64
1703
- - :reverseTcpFinTotalCount
1704
- 220:
1705
- - :uint64
1706
- - :reverseTcpRstTotalCount
1707
- 221:
1708
- - :uint64
1709
- - :reverseTcpPshTotalCount
1710
- 222:
1711
- - :uint64
1712
- - :reverseTcpAckTotalCount
1713
- 223:
1714
- - :uint64
1715
- - :reverseTcpUrgTotalCount
1716
- 224:
1717
- - :uint64
1718
- - :reverseIpTotalLength
1719
- 225:
1720
- - :ip4_addr
1721
- - :reversePostNATSourceIPv4Address
1722
- 226:
1723
- - :ip4_addr
1724
- - :reversePostNATDestinationIPv4Address
1725
- 227:
1726
- - :uint16
1727
- - :reversePostNAPTSourceTransportPort
1728
- 228:
1729
- - :uint16
1730
- - :reversePostNAPTDestinationTransportPort
1731
- 229:
1732
- - :uint8
1733
- - :reverseNatOriginatingAddressRealm
1734
- 230:
1735
- - :uint8
1736
- - :reverseNatEvent
1737
- 231:
1738
- - :uint64
1739
- - :reverseInitiatorOctets
1740
- 232:
1741
- - :uint64
1742
- - :reverseResponderOctets
1743
- 233:
1744
- - :uint8
1745
- - :reverseFirewallEvent
1746
- 234:
1747
- - :uint32
1748
- - :reverseIngressVRFID
1749
- 235:
1750
- - :uint32
1751
- - :reverseEgressVRFID
1752
- 236:
1753
- - :string
1754
- - :reverseVRFname
1755
- 237:
1756
- - :uint8
1757
- - :reversePostMplsTopLabelExp
1758
- 238:
1759
- - :uint16
1760
- - :reverseTcpWindowScale
1761
- 240:
1762
- - :uint8
1763
- - :reverseEthernetHeaderLength
1764
- 241:
1765
- - :uint16
1766
- - :reverseEthernetPayloadLength
1767
- 242:
1768
- - :uint16
1769
- - :reverseEthernetTotalLength
1770
- 243:
1771
- - :uint16
1772
- - :reverseDot1qVlanId
1773
- 244:
1774
- - :uint8
1775
- - :reverseDot1qPriority
1776
- 245:
1777
- - :uint16
1778
- - :reverseDot1qCustomerVlanId
1779
- 246:
1780
- - :uint8
1781
- - :reverseDot1qCustomerPriority
1782
- 247:
1783
- - :string
1784
- - :reverseMetroEvcId
1785
- 248:
1786
- - :uint8
1787
- - :reverseMetroEvcType
1788
- 249:
1789
- - :uint32
1790
- - :reversePseudoWireId
1791
- 250:
1792
- - :uint16
1793
- - :reversePseudoWireType
1794
- 251:
1795
- - :uint32
1796
- - :reversePseudoWireControlWord
1797
- 252:
1798
- - :uint32
1799
- - :reverseIngressPhysicalInterface
1800
- 253:
1801
- - :uint32
1802
- - :reverseEgressPhysicalInterface
1803
- 254:
1804
- - :uint16
1805
- - :reversePostDot1qVlanId
1806
- 255:
1807
- - :uint16
1808
- - :reversePostDot1qCustomerVlanId
1809
- 256:
1810
- - :uint16
1811
- - :reverseEthernetType
1812
- 257:
1813
- - :uint8
1814
- - :reversePostIpPrecedence
1815
- 258:
1816
- - :uint64
1817
- - :reverseCollectionTimeMilliseconds
1818
- 259:
1819
- - :uint16
1820
- - :reverseExportSctpStreamId
1821
- 260:
1822
- - :uint32
1823
- - :reverseMaxExportSeconds
1824
- 261:
1825
- - :uint32
1826
- - :reverseMaxFlowEndSeconds
1827
- 262:
1828
- - :string
1829
- - :reverseMessageMD5Checksum
1830
- 263:
1831
- - :uint8
1832
- - :reverseMessageScope
1833
- 264:
1834
- - :uint32
1835
- - :reverseMinExportSeconds
1836
- 265:
1837
- - :uint32
1838
- - :reverseMinFlowStartSeconds
1839
- 266:
1840
- - :string
1841
- - :reverseOpaqueOctets
1842
- 267:
1843
- - :uint8
1844
- - :reverseSessionScope
1845
- 268:
1846
- - :uint64
1847
- - :reverseMaxFlowEndMicroseconds
1848
- 269:
1849
- - :uint64
1850
- - :reverseMaxFlowEndMilliseconds
1851
- 270:
1852
- - :uint64
1853
- - :reverseMaxFlowEndNanoseconds
1854
- 271:
1855
- - :uint64
1856
- - :reverseMinFlowStartMicroseconds
1857
- 272:
1858
- - :uint64
1859
- - :reverseMinFlowStartMilliseconds
1860
- 273:
1861
- - :uint64
1862
- - :reverseMinFlowStartNanoseconds
1863
- 274:
1864
- - :string
1865
- - :reverseCollectorCertificate
1866
- 275:
1867
- - :string
1868
- - :reverseExporterCertificate
1869
- 276:
1870
- - :uint8
1871
- - :reverseDataRecordsReliability
1872
- 277:
1873
- - :uint8
1874
- - :reverseObservationPointType
1875
- 278:
1876
- - :uint32
1877
- - :reverseNewConnectionDeltaCount
1878
- 279:
1879
- - :uint64
1880
- - :reverseConnectionSumDurationSeconds
1881
- 280:
1882
- - :uint64
1883
- - :reverseConnectionTransactionId
1884
- 281:
1885
- - :ip6_addr
1886
- - :reversePostNATSourceIPv6Address
1887
- 282:
1888
- - :ip6_addr
1889
- - :reversePostNATDestinationIPv6Address
1890
- 283:
1891
- - :uint32
1892
- - :reverseNatPoolId
1893
- 284:
1894
- - :string
1895
- - :reverseNatPoolName
1896
- 285:
1897
- - :uint16
1898
- - :reverseAnonymizationFlags
1899
- 286:
1900
- - :uint16
1901
- - :reverseAnonymizationTechnique
1902
- 287:
1903
- - :uint16
1904
- - :reverseInformationElementIndex
1905
- 288:
1906
- - :string
1907
- - :reverseP2pTechnology
1908
- 289:
1909
- - :string
1910
- - :reverseTunnelTechnology
1911
- 290:
1912
- - :string
1913
- - :reverseEncryptedTechnology
1914
- 291:
1915
- - :skip
1916
- 292:
1917
- - :skip
1918
- 293:
1919
- - :skip
1920
- 294:
1921
- - :uint8
1922
- - :reverseBgpValidityState
1923
- 295:
1924
- - :uint32
1925
- - :reverseIPSecSPI
1926
- 296:
1927
- - :uint32
1928
- - :reverseGreKey
1929
- 297:
1930
- - :uint8
1931
- - :reverseNatType
1932
- 298:
1933
- - :uint64
1934
- - :reverseInitiatorPackets
1935
- 299:
1936
- - :uint64
1937
- - :reverseResponderPackets
1938
- 300:
1939
- - :string
1940
- - :reverseObservationDomainName
1941
- 301:
1942
- - :uint64
1943
- - :reverseSelectionSequenceId
1944
- 302:
1945
- - :uint64
1946
- - :reverseSelectorId
1947
- 303:
1948
- - :uint16
1949
- - :reverseInformationElementId
1950
- 304:
1951
- - :uint16
1952
- - :reverseSelectorAlgorithm
1953
- 305:
1954
- - :uint32
1955
- - :reverseSamplingPacketInterval
1956
- 306:
1957
- - :uint32
1958
- - :reverseSamplingPacketSpace
1959
- 307:
1960
- - :uint32
1961
- - :reverseSamplingTimeInterval
1962
- 308:
1963
- - :uint32
1964
- - :reverseSamplingTimeSpace
1965
- 309:
1966
- - :uint32
1967
- - :reverseSamplingSize
1968
- 310:
1969
- - :uint32
1970
- - :reverseSamplingPopulation
1971
- 311:
1972
- - :double
1973
- - :reverseSamplingProbability
1974
- 312:
1975
- - :uint16
1976
- - :reverseDataLinkFrameSize
1977
- 313:
1978
- - :string
1979
- - :reverseIpHeaderPacketSection
1980
- 314:
1981
- - :string
1982
- - :reverseIpPayloadPacketSection
1983
- 315:
1984
- - :string
1985
- - :reverseDataLinkFrameSection
1986
- 316:
1987
- - :string
1988
- - :reverseMplsLabelStackSection
1989
- 317:
1990
- - :string
1991
- - :reverseMplsPayloadPacketSection
1992
- 318:
1993
- - :uint64
1994
- - :reverseSelectorIdTotalPktsObserved
1995
- 319:
1996
- - :uint64
1997
- - :reverseSelectorIdTotalPktsSelected
1998
- 320:
1999
- - :double
2000
- - :reverseAbsoluteError
2001
- 321:
2002
- - :double
2003
- - :reverseRelativeError
2004
- 322:
2005
- - :uint32
2006
- - :reverseObservationTimeSeconds
2007
- 323:
2008
- - :uint64
2009
- - :reverseObservationTimeMilliseconds
2010
- 324:
2011
- - :uint64
2012
- - :reverseObservationTimeMicroseconds
2013
- 325:
2014
- - :uint64
2015
- - :reverseObservationTimeNanoseconds
2016
- 326:
2017
- - :uint64
2018
- - :reverseDigestHashValue
2019
- 327:
2020
- - :uint64
2021
- - :reverseHashIPPayloadOffset
2022
- 328:
2023
- - :uint64
2024
- - :reverseHashIPPayloadSize
2025
- 329:
2026
- - :uint64
2027
- - :reverseHashOutputRangeMin
2028
- 330:
2029
- - :uint64
2030
- - :reverseHashOutputRangeMax
2031
- 331:
2032
- - :uint64
2033
- - :reverseHashSelectedRangeMin
2034
- 332:
2035
- - :uint64
2036
- - :reverseHashSelectedRangeMax
2037
- 333:
2038
- - :uint8
2039
- - :reverseHashDigestOutput
2040
- 334:
2041
- - :uint64
2042
- - :reverseHashInitialiserValue
2043
- 335:
2044
- - :string
2045
- - :reverseSelectorName
2046
- 336:
2047
- - :double
2048
- - :reverseUpperCILimit
2049
- 337:
2050
- - :double
2051
- - :reverseLowerCILimit
2052
- 338:
2053
- - :double
2054
- - :reverseConfidenceLevel
2055
- 339:
2056
- - :uint8
2057
- - :reverseInformationElementDataType
2058
- 340:
2059
- - :string
2060
- - :reverseInformationElementDescription
2061
- 341:
2062
- - :string
2063
- - :reverseInformationElementName
2064
- 342:
2065
- - :uint64
2066
- - :reverseInformationElementRangeBegin
2067
- 343:
2068
- - :uint64
2069
- - :reverseInformationElementRangeEnd
2070
- 344:
2071
- - :uint8
2072
- - :reverseInformationElementSemantics
2073
- 345:
2074
- - :uint16
2075
- - :reverseInformationElementUnits
2076
- 346:
2077
- - :uint32
2078
- - :reversePrivateEnterpriseNumber
2079
- 347:
2080
- - :string
2081
- - :reverseVirtualStationInterfaceId
2082
- 348:
2083
- - :string
2084
- - :reverseVirtualStationInterfaceName
2085
- 349:
2086
- - :string
2087
- - :reverseVirtualStationUUID
2088
- 350:
2089
- - :string
2090
- - :reverseVirtualStationName
2091
- 351:
2092
- - :uint64
2093
- - :reverseLayer2SegmentId
2094
- 352:
2095
- - :uint64
2096
- - :reverseLayer2OctetDeltaCount
2097
- 353:
2098
- - :uint64
2099
- - :reverseLayer2OctetTotalCount
2100
- 354:
2101
- - :uint64
2102
- - :reverseIngressUnicastPacketTotalCount
2103
- 355:
2104
- - :uint64
2105
- - :reverseIngressMulticastPacketTotalCount
2106
- 356:
2107
- - :uint64
2108
- - :reverseIngressBroadcastPacketTotalCount
2109
- 357:
2110
- - :uint64
2111
- - :reverseEgressUnicastPacketTotalCount
2112
- 358:
2113
- - :uint64
2114
- - :reverseEgressBroadcastPacketTotalCount
2115
- 359:
2116
- - :uint64
2117
- - :reverseMonitoringIntervalStartMilliSeconds
2118
- 360:
2119
- - :uint64
2120
- - :reverseMonitoringIntervalEndMilliSeconds
2121
- 361:
2122
- - :uint16
2123
- - :reversePortRangeStart
2124
- 362:
2125
- - :uint16
2126
- - :reversePortRangeEnd
2127
- 363:
2128
- - :uint16
2129
- - :reversePortRangeStepSize
2130
- 364:
2131
- - :uint16
2132
- - :reversePortRangeNumPorts
2133
- 365:
2134
- - :mac_addr
2135
- - :reverseStaMacAddress
2136
- 366:
2137
- - :ip4_addr
2138
- - :reverseStaIPv4Address
2139
- 367:
2140
- - :mac_addr
2141
- - :reverseWtpMacAddress
2142
- 368:
2143
- - :uint32
2144
- - :reverseIngressInterfaceType
2145
- 369:
2146
- - :uint32
2147
- - :reverseEgressInterfaceType
2148
- 370:
2149
- - :uint16
2150
- - :reverseRtpSequenceNumber
2151
- 371:
2152
- - :string
2153
- - :reverseUserName
2154
- 372:
2155
- - :string
2156
- - :reverseApplicationCategoryName
2157
- 373:
2158
- - :string
2159
- - :reverseApplicationSubCategoryName
2160
- 374:
2161
- - :string
2162
- - :reverseApplicationGroupName
2163
- 375:
2164
- - :uint64
2165
- - :reverseOriginalFlowsPresent
2166
- 376:
2167
- - :uint64
2168
- - :reverseOriginalFlowsInitiated
2169
- 377:
2170
- - :uint64
2171
- - :reverseOriginalFlowsCompleted
2172
- 378:
2173
- - :uint64
2174
- - :reverseDistinctCountOfSourceIPAddress
2175
- 379:
2176
- - :uint64
2177
- - :reverseDistinctCountOfDestinationIPAddress
2178
- 380:
2179
- - :uint32
2180
- - :reverseDistinctCountOfSourceIPv4Address
2181
- 381:
2182
- - :uint32
2183
- - :reverseDistinctCountOfDestinationIPv4Address
2184
- 382:
2185
- - :uint64
2186
- - :reverseDistinctCountOfSourceIPv6Address
2187
- 383:
2188
- - :uint64
2189
- - :reverseDistinctCountOfDestinationIPv6Address
2190
- 384:
2191
- - :uint8
2192
- - :reverseValueDistributionMethod
2193
- 385:
2194
- - :uint32
2195
- - :reverseRfc3550JitterMilliseconds
2196
- 386:
2197
- - :uint32
2198
- - :reverseRfc3550JitterMicroseconds
2199
- 387:
2200
- - :uint32
2201
- - :reverseRfc3550JitterNanoseconds
2202
- 388:
2203
- - :uint8
2204
- - :reverseDot1qDEI
2205
- 389:
2206
- - :uint8
2207
- - :reverseDot1qCustomerDEI
2208
- 390:
2209
- - :uint16
2210
- - :reverseFlowSelectorAlgorithm
2211
- 391:
2212
- - :uint64
2213
- - :reverseFlowSelectedOctetDeltaCount
2214
- 392:
2215
- - :uint64
2216
- - :reverseFlowSelectedPacketDeltaCount
2217
- 393:
2218
- - :uint64
2219
- - :reverseFlowSelectedFlowDeltaCount
2220
- 394:
2221
- - :uint64
2222
- - :reverseSelectorIDTotalFlowsObserved
2223
- 395:
2224
- - :uint64
2225
- - :reverseSelectorIDTotalFlowsSelected
2226
- 396:
2227
- - :uint64
2228
- - :reverseSamplingFlowInterval
2229
- 397:
2230
- - :uint64
2231
- - :reverseSamplingFlowSpacing
2232
- 398:
2233
- - :uint64
2234
- - :reverseFlowSamplingTimeInterval
2235
- 399:
2236
- - :uint64
2237
- - :reverseFlowSamplingTimeSpacing
2238
- 400:
2239
- - :uint16
2240
- - :reverseHashFlowDomain
2241
- 401:
2242
- - :uint64
2243
- - :reverseTransportOctetDeltaCount
2244
- 402:
2245
- - :uint64
2246
- - :reverseTransportPacketDeltaCount
2247
- 403:
2248
- - :ip4_addr
2249
- - :reverseOriginalExporterIPv4Address
2250
- 404:
2251
- - :ip6_addr
2252
- - :reverseOriginalExporterIPv6Address
2253
- 405:
2254
- - :uint32
2255
- - :reverseOriginalObservationDomainId
2256
- 406:
2257
- - :uint32
2258
- - :reverseIntermediateProcessId
2259
- 407:
2260
- - :uint64
2261
- - :reverseIgnoredDataRecordTotalCount
2262
- 408:
2263
- - :uint16
2264
- - :reverseDataLinkFrameType
2265
- 409:
2266
- - :uint16
2267
- - :reverseSectionOffset
2268
- 410:
2269
- - :uint16
2270
- - :reverseSectionExportedOctets
2271
- 411:
2272
- - :string
2273
- - :reverseDot1qServiceInstanceTag
2274
- 412:
2275
- - :uint32
2276
- - :reverseDot1qServiceInstanceId
2277
- 413:
2278
- - :uint8
2279
- - :reverseDot1qServiceInstancePriority
2280
- 414:
2281
- - :mac_addr
2282
- - :reverseDot1qCustomerSourceMacAddress
2283
- 415:
2284
- - :mac_addr
2285
- - :reverseDot1qCustomerDestinationMacAddress
2286
- 417:
2287
- - :uint64
2288
- - :reversePostLayer2OctetDeltaCount
2289
- 418:
2290
- - :uint64
2291
- - :reversePostMCastLayer2OctetDeltaCount
2292
- 420:
2293
- - :uint64
2294
- - :reversePostLayer2OctetTotalCount
2295
- 421:
2296
- - :uint64
2297
- - :reversePostMCastLayer2OctetTotalCount
2298
- 422:
2299
- - :uint64
2300
- - :reverseMinimumLayer2TotalLength
2301
- 423:
2302
- - :uint64
2303
- - :reverseMaximumLayer2TotalLength
2304
- 424:
2305
- - :uint64
2306
- - :reverseDroppedLayer2OctetDeltaCount
2307
- 425:
2308
- - :uint64
2309
- - :reverseDroppedLayer2OctetTotalCount
2310
- 426:
2311
- - :uint64
2312
- - :reverseIgnoredLayer2OctetTotalCount
2313
- 427:
2314
- - :uint64
2315
- - :reverseNotSentLayer2OctetTotalCount
2316
- 428:
2317
- - :uint64
2318
- - :reverseLayer2OctetDeltaSumOfSquares
2319
- 429:
2320
- - :uint64
2321
- - :reverseLayer2OctetTotalSumOfSquares
2322
- 430:
2323
- - :uint64
2324
- - :reverseLayer2FrameDeltaCount
2325
- 431:
2326
- - :uint64
2327
- - :reverseLayer2FrameTotalCount
2328
- 432:
2329
- - :ip4_addr
2330
- - :reversePseudoWireDestinationIPv4Address
2331
- 433:
2332
- - :uint64
2333
- - :reverseIgnoredLayer2FrameTotalCount