-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathreference_data_collector_support_matrix.adoc
12778 lines (12212 loc) · 471 KB
/
reference_data_collector_support_matrix.adoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
sidebar: sidebar
permalink: reference_data_collector_support_matrix.html
summary: The Data Collector Support Matrix contains detailed information on supported data collectors.
keywords: support matrix, vendor, NetApp, IBM, EMC, Dell, HP, Hitachi, VMware, Huawei, OpenStack
---
= Data Infrastructure Insights Data Collector Support Matrix
:hardbreaks:
:nofooter:
:icons: font
:linkattrs:
:imagesdir: ./media/
[.lead]
The Data Collector Support Matrix provides reference for Data Collectors supported by Data Infrastructure Insights , including vendor and model information.
== HP Enterprise 3PAR / Alletra 9000 / Primera StoreServ Storage
Models and versions supported by this data collector:
|===
<.<|Models <.<|Firmware versions
|HPE Alletra 9080
HPE_3PAR 20450
HPE_3PAR 20800
HPE_3PAR 20850
HPE_3PAR 7200
HPE_3PAR 7200c
HPE_3PAR 7400
HPE_3PAR 7400c
HPE_3PAR 7440c
HPE_3PAR 7450c
HPE_3PAR 8200
HPE_3PAR 8400
HPE_3PAR 8440
HPE_3PAR 8450
HPE_3PAR 9450
HPE_3PAR A630
HPE_3PAR A650
HPE_3PAR A670
HP_3PAR 20800
HP_3PAR 7200
HP_3PAR 7200c
HP_3PAR 7400
HP_3PAR 7400c
HP_3PAR 7440c
HP_3PAR 7450c
HP_3PAR 8200
HP_3PAR 8400
HP_3PAR 8440
InServ F200
InServ F400
InServ T400
InServ T800
InServ V400
InServ V800
|3.1.1 (MU1)
3.1.2 (MU3)
3.1.3 (MU1)
3.1.3 (MU2)
3.2.1 (MU2)
3.2.1 (MU3)
3.2.1 (MU5)
3.2.2 (MU4)
3.2.2 (MU6)
3.3.1
3.3.1 (MU1)
3.3.1 (MU2)
3.3.1 (MU3)
3.3.1 (MU5)
3.3.2 (MU1)
4.3.1
4.3.3
4.4.1 Release Type: Standard Support Release
4.5.15 Release Type: Extended Support Release
4.5.18 Release Type: Extended Support Release
4.5.21 Release Type: Extended Support Release
4.5.24 Release Type: Extended Support Release
4.5.7 Release Type: Extended Support Release
4.6.1 Release Type: Extended Support Release
9.5.15 Release Type: Extended Support Release
9.5.8 Release Type: Extended Support Release
9.6.1 Release Type: Extended Support Release
|===
Products supported by this data collector:
|===
^|Product ^|Category ^|Feature/Attribute ^|Status ^|Protocol Used ^|Additional Information
.119+|foundation .3+|Device Group|Name|Implemented|SSH|
|Storage Management Id|Implemented|SSH|
|Type|Gap|SSH|
.14+|Disk|Capacity (GB)|Implemented|SSH|Used capacity
|Disk Id|Implemented|SSH|Uniquely identifies this disk in the array
|Location|Gap|SSH|Where this disk is physically located in the array
|Model|Implemented|SSH|
|Name|Implemented|SSH|
|Role|Implemented|SSH|
|Role Enum|Implemented|SSH|enum for disk role
|Serial Number|Implemented|SSH|
|Status|Implemented|SSH|
|Status Enum|Implemented|SSH|enum for disk status
|Type|Gap|SSH|
|Type Enum|Implemented|SSH|enum for disk type
|Vendor|Implemented|SSH|
|Vendor Id|Implemented|SSH|
.4+|ISCSI Network Portal|IP|Implemented|SSH|
|Listening Port|Implemented|SSH|
|Nic|Implemented|SSH|
|OID|Implemented|SSH|
.3+|ISCSI Network Portal Group|OID|Implemented|SSH|
|Portal Group Name|Implemented|SSH|
|Portal Group Tag|Implemented|SSH|
.3+|ISCSI Node|Node Name|Implemented|SSH|
|OID|Implemented|SSH|
|Type|Gap|SSH|
.8+|ISCSI Session|OID|Implemented|SSH|
|Initiator OID|Implemented|SSH|
|Portal Group OID|Implemented|SSH|
|Target Session Id|Implemented|SSH|
|Number Of Connections|Implemented|SSH|
|Max Connections|Implemented|SSH|
|Initiator Ips|Implemented|SSH|
|Security|Implemented|SSH|
.5+|Info|Api Name|Implemented|SSH|
|Api Version|Implemented|SSH|
|DataSource Name|Implemented|SSH|Info
|Date|Implemented|SSH|
|Originator ID|Implemented|SSH|
.13+|Storage|Display IP|Implemented|SSH|
|Failed Raw Capacity|Implemented|SSH|Raw capacity of failed disks (sum of all disks that are failed)
|Family|Implemented|SSH|The storage Family could be Clariion, Symmetrix, et al
|IP|Implemented|SSH|
|Manage URL|Implemented|SSH|
|Manufacturer|Implemented|SSH|
|Microcode Version|Implemented|SSH|
|Model|Implemented|SSH|
|Name|Implemented|SSH|
|Total Raw Capacity|Implemented|SSH|Total raw capacity (sum of all disks on the array)
|Serial Number|Implemented|SSH|
|Spare Raw Capacity|Implemented|SSH|Raw capacity of spare disks (sum of all disks that are spare)
|Virtual|Implemented|SSH|Is this a storage virtualization device?
.8+|Storage Node|Memory Size|Gap|SSH|device memory in MB
|Model|Implemented|SSH|
|Name|Implemented|SSH|
|Processors Count|Implemented|SSH|device CPU
|State|Implemented|SSH|free text describing the device state
|UUID|Implemented|SSH|
|Up Time|Implemented|SSH|time in milliseconds
|Version|Implemented|SSH|software version
.24+|Storage Pool|Auto Tiering|Implemented|SSH|indicates if this storagepool is participating in auto tiering with other pools
|Compression Enabled|Implemented|SSH|Is compression enabled on the storage pool
|Compression Savings|Implemented|SSH|ratio of compression savings in percentage
|Data Allocated Capacity|Gap|SSH|capacity allocated for data
|Data Used Capacity|Implemented|SSH|
|Dedupe Enabled|Implemented|SSH|Is dedupe enabled on the storage pool
|Dedupe Savings|Implemented|SSH|ratio of dedupe savings in percentage
|Include In Dwh Capacity|Implemented|SSH|A way from ACQ to control which storage pools are interesting in DWH Capacity
|Name|Implemented|SSH|
|Other Allocated Capacity|Gap|SSH|Capacity allocated for other (not data and not snapshot)
|Other UsedCapacity (MB)|Implemented|SSH|Any capacity other than data and snapshot
|Physical Disk Capacity (MB)|Implemented|SSH|used as raw capacity for storage pool
|Raid Group|Implemented|SSH|indicates whether this storagePool is a raid group
|Raw to Usable Ratio|Implemented|SSH|ratio to convert from usable capacity to raw capacity
|Redundancy|Implemented|SSH|Redundancy level
|Snapshot Allocated Capacity|Gap|SSH|Allocated capacity of snapshots in MB
|Snapshot Used Capacity|Implemented|SSH|
|Storage Pool Id|Implemented|SSH|
|Thin Provisioning Supported|Implemented|SSH|Whether this internal volume supports thin provisioning for the volume layer on top of it
|Total Allocated Capacity|Implemented|SSH|
|Total Used Capacity|Implemented|SSH|Total capacity in MB
|Type|Gap|SSH|
|Vendor Tier|Implemented|SSH|Vendor Specific Tier Name
|Virtual|Implemented|SSH|Is this a storage virtualization device?
.7+|Storage Synchronization|Mode|Implemented|SSH|
|Mode Enum|Implemented|SSH|
|Source Volume|Implemented|SSH|
|State|Implemented|SSH|free text describing the device state
|State Enum|Implemented|SSH|
|Target Volume|Implemented|SSH|
|Technology|Implemented|SSH|technology which causes storage efficiency changed
.13+|Volume|AutoTier Policy Identifier|Implemented|SSH|Dynamic Tier Policy identifier
|Auto Tiering|Implemented|SSH|indicates if this storagepool is participating in auto tiering with other pools
|Capacity|Implemented|SSH|Snapshot Used capacity in MB
|Name|Implemented|SSH|
|Total Raw Capacity|Implemented|SSH|Total raw capacity (sum of all disks on the array)
|Redundancy|Implemented|SSH|Redundancy level
|Storage Pool Id|Implemented|SSH|
|Thin Provisioned|Implemented|SSH|
|Type|Gap|SSH|
|UUID|Implemented|SSH|
|Used Capacity|Implemented|SSH|
|Virtual|Implemented|SSH|Is this a storage virtualization device?
|Written Capacity|Implemented|SSH|Total capacity written to this volume by a Host in MB
.4+|Volume Map|LUN|Implemented|SSH|Name of the backend lun
|Protocol Controller|Implemented|SSH|
|Storage Port|Implemented|SSH|
|Type|Gap|SSH|
.4+|Volume Mask|Initiator|Implemented|SSH|
|Protocol Controller|Implemented|SSH|
|Storage Port|Implemented|SSH|
|Type|Gap|SSH|
.2+|Volume Ref|Name|Implemented|SSH|
|Storage Ip|Implemented|SSH|
.4+|WWN Alias|Host Aliases|Implemented|SSH|
|Object Type|Implemented|SSH|
|Source|Implemented|SSH|
|WWN|Implemented|SSH|
.120+|performance .6+|Disk|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
.8+|Disk|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Key|Implemented|SMI-S|
|Server ID|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
.19+|Storage|Cache Hit Ratio Read|Implemented|SMI-S|
|Cache Hit Ratio Total|Implemented|SMI-S|
|Cache Hit Ratio Write|Implemented|SMI-S|
|Failed Raw Capacity|Implemented|SMI-S|
|Raw Capacity|Implemented|SMI-S|
|Spare Raw Capacity|Implemented|SMI-S|Raw capacity of spare disks (sum of all disks that are spare)
|StoragePools Capacity|Implemented|SMI-S|
|IOPs other|Implemented|SMI-S|
|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Latency Read|Implemented|SMI-S|
|Latency Total|Implemented|SMI-S|
|Latency Write|Implemented|SMI-S|
|Partial Blocked Ratio|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
|Write Pending|Implemented|SMI-S|total write pending
.11+|Storage Node|Cache Hit Ratio Total|Implemented|SMI-S|
|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Latency Read|Implemented|SMI-S|
|Latency Total|Implemented|SMI-S|
|Latency Write|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
|Utilization Total|Implemented|SMI-S|
.15+|Storage Pool|Capacity Provisioned|Implemented|SMI-S|
|Raw Capacity|Implemented|SMI-S|
|Total Capacity|Implemented|SMI-S|
|Used Capacity|Implemented|SMI-S|
|Over Commit Capacity Ratio|Implemented|SMI-S|Reported as a time series
|Capacity Used Ratio|Implemented|SMI-S|
|Total Data Capacity|Implemented|SMI-S|
|Data Used Capacity|Implemented|SMI-S|
|Key|Implemented|SMI-S|
|Other Total Capacity|Implemented|SMI-S|
|Other Used Capacity|Implemented|SMI-S|
|Server ID|Implemented|SMI-S|
|Snapshot Reserved Capacity|Implemented|SMI-S|
|Snapshot Used Capacity|Implemented|SMI-S|
|Snapshot Used Capacity Ratio|Implemented|SMI-S| Reported as a time series
.19+|StoragePool Disk|Capacity Provisioned|Implemented|SMI-S|
|Raw Capacity|Implemented|SMI-S|
|Total Capacity|Implemented|SMI-S|
|Used Capacity|Implemented|SMI-S|
|Over Commit Capacity Ratio|Implemented|SMI-S|Reported as a time series
|Capacity Used Ratio|Implemented|SMI-S|
|Total Data Capacity|Implemented|SMI-S|
|Data Used Capacity|Implemented|SMI-S|
|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Other Total Capacity|Implemented|SMI-S|
|Other Used Capacity|Implemented|SMI-S|
|Snapshot Reserved Capacity|Implemented|SMI-S|
|Snapshot Used Capacity|Implemented|SMI-S|
|Snapshot Used Capacity Ratio|Implemented|SMI-S| Reported as a time series
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
.19+|Volume|Cache Hit Ratio Read|Implemented|SMI-S|
|Cache Hit Ratio Total|Implemented|SMI-S|
|Cache Hit Ratio Write|Implemented|SMI-S|
|Raw Capacity|Implemented|SMI-S|
|Total Capacity|Implemented|SMI-S|
|Used Capacity|Implemented|SMI-S|
|Capacity Used Ratio|Implemented|SMI-S|
|CapacityRatio Written|Implemented|SMI-S|
|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Latency Read|Implemented|SMI-S|
|Latency Total|Implemented|SMI-S|
|Latency Write|Implemented|SMI-S|
|Partial Blocked Ratio|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
|Write Pending|Implemented|SMI-S|total write pending
.23+|Volume|Cache Hit Ratio Read|Implemented|SMI-S|
|Cache Hit Ratio Total|Implemented|SMI-S|
|Cache Hit Ratio Write|Implemented|SMI-S|
|Raw Capacity|Implemented|SMI-S|
|Total Capacity|Implemented|SMI-S|
|Used Capacity|Implemented|SMI-S|
|Written Capacity|Implemented|SMI-S|
|Capacity Used Ratio|Implemented|SMI-S|
|CapacityRatio Written|Implemented|SMI-S|
|Total Compression Savings|Implemented|SMI-S|
|IOPs Read|Implemented|SMI-S|Number of read IOPs on the disk
|IOPs Total|Implemented|SMI-S|
|IOPs Write|Implemented|SMI-S|
|Key|Implemented|SMI-S|
|Latency Read|Implemented|SMI-S|
|Latency Total|Implemented|SMI-S|
|Latency Write|Implemented|SMI-S|
|Partial Blocked Ratio|Implemented|SMI-S|
|Server ID|Implemented|SMI-S|
|Throughput Read|Implemented|SMI-S|
|Throughput Total|Implemented|SMI-S|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|SMI-S|
|Write Pending|Implemented|SMI-S|total write pending
|===
Management APIs used by this data collector:
|===
^|API ^|Protocol Used ^|Transport layer protocol used ^|Incoming ports used ^|Outgoing ports used ^|Supports authentication ^|Requires only 'Read-only' credentials ^|Supports Encryption ^|Firewall friendly (static ports)
|3Par SMI-S
|SMI-S
|HTTP/HTTPS
|5988/5989
|
|true
|true
|true
|true
|3Par CLI
|SSH
|SSH
|22
|
|true
|false
|true
|true
|===
== Amazon AWS EC2
Models and versions supported by this data collector:
API versions:
* 2014-10-01
Products supported by this data collector:
|===
^|Product ^|Category ^|Feature/Attribute ^|Status ^|Protocol Used ^|Additional Information
.56+|foundation .7+|Data Store|Capacity|Implemented|HTTPS|Snapshot Used capacity in MB
|MOID|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|OID|Implemented|HTTPS|
|Provisioned Capacity|Implemented|HTTPS|
|Virtual Center Ip|Implemented|HTTPS|
|subscription Id|Implemented|HTTPS|
.6+|Server|Cluster|Implemented|HTTPS|Cluster name
|DataCenter Name|Implemented|HTTPS|
|Host OID|Implemented|HTTPS|
|MOID|Implemented|HTTPS|
|OID|Implemented|HTTPS|
|Virtual Center Ip|Implemented|HTTPS|
.8+|Virtual Disk|Capacity|Implemented|HTTPS|Snapshot Used capacity in MB
|DataStore OID|Implemented|HTTPS|
|Is Chargeable|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|OID|Implemented|HTTPS|
|Type|Gap|HTTPS|
|Is Snapshot|Implemented|HTTPS|
|subscription Id|Implemented|HTTPS|
.20+|VirtualMachine|Dns Name|Implemented|HTTPS|
|Guest State|Implemented|HTTPS|
|DataStore OID|Implemented|HTTPS|
|Host OID|Implemented|HTTPS|
|IPs|Implemented|HTTPS|
|MOID|Implemented|HTTPS|
|Memory|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|OID|Implemented|HTTPS|
|OS|Implemented|HTTPS|
|Power State|Implemented|HTTPS|
|State Change Time|Implemented|HTTPS|
|Processors|Implemented|HTTPS|
|Provisioned Capacity|Implemented|HTTPS|
|Instance Type|Implemented|HTTPS|
|Launch Time|Implemented|HTTPS|
|LifeCycle|Implemented|HTTPS|
|public Ips|Implemented|HTTPS|
|Security Groups|Implemented|HTTPS|
|subscription Id|Implemented|HTTPS|
.3+|VirtualMachine Disk|OID|Implemented|HTTPS|
|VirtualDisk OID|Implemented|HTTPS|
|VirtualMachine OID|Implemented|HTTPS|
.5+|Host|Host OS|Implemented|HTTPS|
|IPs|Implemented|HTTPS|
|Manufacturer|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|OID|Implemented|HTTPS|
.7+|Info|Api Description|Implemented|HTTPS|
|Api Name|Implemented|HTTPS|
|Api Version|Implemented|HTTPS|
|DataSource Name|Implemented|HTTPS|Info
|Date|Implemented|HTTPS|
|Originator ID|Implemented|HTTPS|
|Originator Key|Implemented|HTTPS|
.28+|performance .3+|Data Store|Capacity Provisioned|Implemented|HTTPS|
|Total Capacity|Implemented|HTTPS|
|Over Commit Capacity Ratio|Implemented|HTTPS|Reported as a time series
.9+|Virtual Disk|IOPs Read|Implemented|HTTPS|Number of read IOPs on the disk
|IOPs Total|Implemented|HTTPS|
|IOPs Write|Implemented|HTTPS|
|Latency Read|Implemented|HTTPS|
|Latency Total|Implemented|HTTPS|
|Latency Write|Implemented|HTTPS|
|Throughput Read|Implemented|HTTPS|
|Throughput Total|Implemented|HTTPS|Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented|HTTPS|
.13+|vm|Total CPU Utilization|Implemented|HTTPS|
|IOPs Read|Implemented|HTTPS|Number of read IOPs on the disk
|diskIops.total|Implemented|HTTPS|
|Disk IOPs write|Implemented|HTTPS|
|Latency Read|Implemented|HTTPS|
|Latency Total|Implemented|HTTPS|
|Latency Write|Implemented|HTTPS|
|Disk Throughput Read|Implemented|HTTPS|
|Throughput Read|Implemented|HTTPS|total disk throughput read
|Disk Throughput Write|Implemented|HTTPS|
|IP Throughput Read|Implemented|HTTPS|
|Throughput total|Implemented|HTTPS|IP throughput total
|ipThroughput.write|Implemented|HTTPS|
.3+|VM|Total Capacity|Implemented|HTTPS|
|Key|Implemented|HTTPS|
|Server ID|Implemented|HTTPS|
|===
Management APIs used by this data collector:
|===
^|API ^|Protocol Used ^|Transport layer protocol used ^|Incoming ports used ^|Outgoing ports used ^|Supports authentication ^|Requires only 'Read-only' credentials ^|Supports Encryption ^|Firewall friendly (static ports)
|EC2 API
|HTTPS
|HTTPS
|443
|
|true
|true
|true
|true
|===
== Amazon AWS S3
Models and versions supported by this data collector:
|===
<.<|Models <.<|Firmware versions
|S3
|2010-08-01
|===
Products supported by this data collector:
|===
^|Product ^|Category ^|Feature/Attribute ^|Status ^|Protocol Used ^|Additional Information
.40+|foundation .7+|Info|Api Description|Implemented|HTTPS|
|Api Name|Implemented|HTTPS|
|Api Version|Implemented|HTTPS|
|DataSource Name|Implemented|HTTPS|Info
|Date|Implemented|HTTPS|
|Originator ID|Implemented|HTTPS|
|Originator Key|Implemented|HTTPS|
.10+|Internal Volume|Dedupe Enabled|Implemented|HTTPS|Is dedupe enabled on the storage pool
|Internal Volume Id|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|Raw to Usable Ratio|Implemented|HTTPS|ratio to convert from usable capacity to raw capacity
|Storage Pool Id|Implemented|HTTPS|
|Thin Provisioned|Implemented|HTTPS|
|Thin Provisioning Supported|Implemented|HTTPS|Whether this internal volume supports thin provisioning for the volume layer on top of it
|Total Allocated Capacity|Implemented|HTTPS|
|Total Used Capacity|Implemented|HTTPS|Total capacity in MB
|Type|Gap|HTTPS|
.3+|QTree|Name|Implemented|HTTPS|
|Qtree Id|Implemented|HTTPS|unique id of the qtree
|Type|Gap|HTTPS|
.10+|Storage|Display IP|Implemented|HTTPS|
|Failed Raw Capacity|Implemented|HTTPS|Raw capacity of failed disks (sum of all disks that are failed)
|Family|Implemented|HTTPS|The storage Family could be Clariion, Symmetrix, et al
|IP|Implemented|HTTPS|
|Manufacturer|Implemented|HTTPS|
|Microcode Version|Implemented|HTTPS|
|Model|Implemented|HTTPS|
|Total Raw Capacity|Implemented|HTTPS|Total raw capacity (sum of all disks on the array)
|Spare Raw Capacity|Implemented|HTTPS|Raw capacity of spare disks (sum of all disks that are spare)
|Virtual|Implemented|HTTPS|Is this a storage virtualization device?
.10+|Storage Pool|Include In Dwh Capacity|Implemented|HTTPS|A way from ACQ to control which storage pools are interesting in DWH Capacity
|Name|Implemented|HTTPS|
|Physical Disk Capacity (MB)|Implemented|HTTPS|used as raw capacity for storage pool
|Raid Group|Implemented|HTTPS|indicates whether this storagePool is a raid group
|Raw to Usable Ratio|Implemented|HTTPS|ratio to convert from usable capacity to raw capacity
|Storage Pool Id|Implemented|HTTPS|
|Thin Provisioning Supported|Implemented|HTTPS|Whether this internal volume supports thin provisioning for the volume layer on top of it
|Total Allocated Capacity|Implemented|HTTPS|
|Type|Gap|HTTPS|
|Virtual|Implemented|HTTPS|Is this a storage virtualization device?
.6+|performance .6+|Internal Volume|Total Capacity|Implemented|HTTPS|
|Used Capacity|Implemented|HTTPS|
|Capacity Used Ratio|Implemented|HTTPS|
|Key|Implemented|HTTPS|
|Total Objects|Implemented|HTTPS|
|Server ID|Implemented|HTTPS|
|===
Management APIs used by this data collector:
|===
^|API ^|Protocol Used ^|Transport layer protocol used ^|Incoming ports used ^|Outgoing ports used ^|Supports authentication ^|Requires only 'Read-only' credentials ^|Supports Encryption ^|Firewall friendly (static ports)
|S3 API
|HTTPS
|HTTPS
|443
|
|true
|true
|true
|true
|===
== Microsoft Azure NetApp Files
Models and versions supported by this data collector:
|===
<.<|API versions <.<|Models
|2019-06-01
2024-07-01
|Azure NetApp Files
|===
Products supported by this data collector:
|===
^|Product ^|Category ^|Feature/Attribute ^|Status ^|Protocol Used ^|Additional Information
.76+|foundation .5+|File Share|Is InternalVolume|Implemented|HTTPS|whether the file share represents an internal volume (netapp volume) or is it a qtree/folder within the internal volume
|Is Shared|Implemented|HTTPS|whether this fileShare has any shares associated with it
|Name|Implemented|HTTPS|
|Path|Implemented|HTTPS|Path of the fileShare
|Qtree Id|Implemented|HTTPS|unique id of the qtree
.4+|Info|Api Version|Implemented|HTTPS|
|DataSource Name|Implemented|HTTPS|Info
|Date|Implemented|HTTPS|
|Originator ID|Implemented|HTTPS|
.21+|Internal Volume|Data Allocated Capacity|Gap|HTTPS|capacity allocated for data
|Data Used Capacity|Implemented|HTTPS|
|Dedupe Enabled|Implemented|HTTPS|Is dedupe enabled on the storage pool
|Internal Volume Id|Implemented|HTTPS|
|Last Snapshot Time|Implemented|HTTPS|time of last snapshot
|Name|Implemented|HTTPS|
|Raw to Usable Ratio|Implemented|HTTPS|ratio to convert from usable capacity to raw capacity
|Snapshot Count|Implemented|HTTPS|Number of snapshots on the internal volumes
|Snapshot Used Capacity|Implemented|HTTPS|
|Status|Implemented|HTTPS|
|Storage Pool Id|Implemented|HTTPS|
|Thin Provisioned|Implemented|HTTPS|
|Thin Provisioning Supported|Implemented|HTTPS|Whether this internal volume supports thin provisioning for the volume layer on top of it
|Total Allocated Capacity|Implemented|HTTPS|
|Total Used Capacity|Implemented|HTTPS|Total capacity in MB
|Total Used Capacity (MB)|Implemented|HTTPS|place holder for the used capacity as read from the device
|Type|Gap|HTTPS|
|UUID|Implemented|HTTPS|
|Comment|Gap|HTTPS|state: free text comment describing the svm
||Implemented|HTTPS|
|QoS - Policy|Implemented|HTTPS|
.3+|Storage Synchronization|Source Internal Volume|Implemented|HTTPS|
|Target Internal Volume|Implemented|HTTPS|
|Technology|Implemented|HTTPS|technology which causes storage efficiency changed
.6+|QTree|Name|Implemented|HTTPS|
|Qtree Id|Implemented|HTTPS|unique id of the qtree
|Quota HardCapacity Limit (MB)|Implemented|HTTPS|Maximum amount of disk space, allowed for the quota target
|Security Style|Implemented|HTTPS|Security style of the directory: unix, ntfs, or mixed
|Status|Implemented|HTTPS|
|Type|Gap|HTTPS|
.6+|Quota|Hard Capacity Limit (MB)|Implemented|HTTPS|max amount of disk space, allowed for the quota target (Hard limit)
|Internal Volume Id|Implemented|HTTPS|
|Qtree Id|Implemented|HTTPS|unique id of the qtree
|Quota Id|Implemented|HTTPS|unique id of the quota
|Type|Gap|HTTPS|
|Used Capacity|Implemented|HTTPS|
.3+|Share|IP Interfaces|Implemented|HTTPS|comma separated list of IP addresses on which this share is exposed
|Name|Implemented|HTTPS|
|Protocol|Implemented|HTTPS|enum for share protocol
.2+|Share Initiator|Initiator|Implemented|HTTPS|
|Permission|Implemented|HTTPS|Permissions for this particular share
.11+|Storage|Display IP|Implemented|HTTPS|
|Failed Raw Capacity|Implemented|HTTPS|Raw capacity of failed disks (sum of all disks that are failed)
|Family|Implemented|HTTPS|The storage Family could be Clariion, Symmetrix, et al
|IP|Implemented|HTTPS|
|Manufacturer|Implemented|HTTPS|
|Model|Implemented|HTTPS|
|Name|Implemented|HTTPS|
|Total Raw Capacity|Implemented|HTTPS|Total raw capacity (sum of all disks on the array)
|Serial Number|Implemented|HTTPS|
|Spare Raw Capacity|Implemented|HTTPS|Raw capacity of spare disks (sum of all disks that are spare)
|Virtual|Implemented|HTTPS|Is this a storage virtualization device?
.15+|Storage Pool|Data Allocated Capacity|Gap|HTTPS|capacity allocated for data
|Data Used Capacity|Implemented|HTTPS|
|Include In Dwh Capacity|Implemented|HTTPS|A way from ACQ to control which storage pools are interesting in DWH Capacity
|Name|Implemented|HTTPS|
|Physical Disk Capacity (MB)|Implemented|HTTPS|used as raw capacity for storage pool
|Raid Group|Implemented|HTTPS|indicates whether this storagePool is a raid group
|Raw to Usable Ratio|Implemented|HTTPS|ratio to convert from usable capacity to raw capacity
|Status|Implemented|HTTPS|
|Storage Pool Id|Implemented|HTTPS|
|Thin Provisioning Supported|Implemented|HTTPS|Whether this internal volume supports thin provisioning for the volume layer on top of it
|Total Allocated Capacity|Implemented|HTTPS|
|Total Used Capacity|Implemented|HTTPS|Total capacity in MB
|Type|Gap|HTTPS|
|Virtual|Implemented|HTTPS|Is this a storage virtualization device?
|Comment|Gap|HTTPS|state: free text comment describing the svm
.23+|performance .17+|Internal Volume|Total Capacity|Implemented||
|Used Capacity|Implemented||
|Capacity Used Ratio|Implemented||
|Total Data Capacity|Implemented||
|Data Used Capacity|Implemented||
|IOPs other|Implemented||
|IOPs Read|Implemented||Number of read IOPs on the disk
|IOPs Total|Implemented||
|IOPs Write|Implemented||
|Latency Read|Implemented||
|Latency Total|Implemented||
|Latency Write|Implemented||
|Snapshot Used Capacity|Implemented||
|Snapshot Used Capacity Ratio|Implemented|| Reported as a time series
|Throughput Read|Implemented||
|Throughput Total|Implemented||Average disk total rate (read and write across all disks) in MB/s
|Throughput Write|Implemented||
.6+|StoragePool Disk|IOPs Read|Implemented||Number of read IOPs on the disk
|IOPs Write|Implemented||
|Throughput Read|Implemented||
|Throughput Write|Implemented||
|Throughput Total|Implemented||Average disk total rate (read and write across all disks) in MB/s
|IOPs Total|Implemented||
|===
Management APIs used by this data collector:
|===
^|API ^|Protocol Used ^|Transport layer protocol used ^|Incoming ports used ^|Outgoing ports used ^|Supports authentication ^|Requires only 'Read-only' credentials ^|Supports Encryption ^|Firewall friendly (static ports)
|Azure Netapp Files REST API
|HTTPS
|HTTPS
|443
|
|true
|true
|true
|true
|===
== Brocade Fibre Channel Switches
Models and versions supported by this data collector:
|===
<.<|Models <.<|Firmware versions
|176.51
183.0
Brocade 200E
Brocade 300E
Brocade 4024 Embedded
Brocade 5000
Brocade 5100
Brocade 5300
Brocade 5480 Embedded
Brocade 6505
Brocade 6510
Brocade 6520
Brocade 6546
Brocade 6547 Embedded
Brocade 6548
Brocade 6558
Brocade 7800
Brocade 7810 Extension Switch
Brocade 7840
Brocade DCX
Brocade DCX-4S Backbone
Brocade DCX8510-4
Brocade DCX8510-8
Brocade G610
Brocade G620
Brocade G630
Brocade G720
Brocade G730
Brocade M5424 Embedded
Brocade VA-40FC
Brocade X6-4
Brocade X6-8
Brocade X7-4
Brocade X7-8
|v6.2.2b
v6.2.2f
v6.2.2g
v6.4.1b
v6.4.2a
v6.4.3
v6.4.3d
v6.4.3f3
v7.0.1
v7.0.1b
v7.0.2
v7.0.2b1
v7.0.2c
v7.0.2e
v7.0.2e1
v7.1.0a
v7.1.0b
v7.2.0a
v7.2.0d
v7.2.1
v7.2.1c
v7.2.1c1
v7.2.1d
v7.3.0a
v7.3.0c
v7.3.1
v7.3.1c
v7.3.1d
v7.3.2a
v7.4.0a
v7.4.1
v7.4.1d
v7.4.1e
v7.4.2
v7.4.2a
v7.4.2a4
v7.4.2c
v7.4.2d
v7.4.2e
v7.4.2f
v7.4.2g
v7.4.2g_cvr_824494_01
v7.4.2h
v7.4.2j1
v8.0.2c
v8.0.2d
v8.0.2f
v8.1.0b
v8.1.1a
v8.1.2a
v8.1.2d
v8.1.2f
v8.1.2g
v8.1.2h
v8.1.2j
v8.1.2k
v8.2.0
v8.2.0a
v8.2.0a1
v8.2.0b
v8.2.1
v8.2.1a
v8.2.1c
v8.2.1d
v8.2.2a
v8.2.2b
v8.2.2c
v8.2.2d
v8.2.2d4
v8.2.3
v8.2.3a
v8.2.3a1
v8.2.3a_cvr_855776_01
v8.2.3b
v8.2.3c
v8.2.3c1
v8.2.3d
v8.2.3e
v8.2.3e1
v8.2.3e2
v9.0.0a
v9.0.1a
v9.0.1b
v9.0.1b4
v9.0.1c
v9.0.1d
v9.0.1e
v9.0.1e1
v9.1.0b
v9.1.1
v9.1.1a
v9.1.1b
v9.1.1b_lw
v9.1.1c
v9.1.1d
v9.1.1d1
v9.1.1d2
v9.1.1d2_lw
v9.1.1d5
v9.2.0a
v9.2.0b
v9.2.0b1_lw
v9.2.0c
v9.2.0c1
v9.2.1a
v9.2.1a1
v9.2.2
|===
Products supported by this data collector:
|===
^|Product ^|Category ^|Feature/Attribute ^|Status ^|Protocol Used ^|Additional Information
.75+|foundation .4+|FC Name Server Entry|FC ID|Implemented|SSH|
|Nx Port WWN|Implemented|SSH|
|Physical Port WWN|Implemented|SSH|
|Switch Port WWN|Implemented|SSH|
.4+|Fabric|Name|Implemented|Manual Entry|
|VSAN Enabled|Implemented|SSH|
|VSANId|Implemented|SSH|
|WWN|Implemented|SSH|
.2+|IVR Physical Fabric|IVR Chassis WWNs|Implemented|SSH|Comma seperated list of IVR enabled chassis WWNs
|Lowest IVR Chassis WWN|Implemented|SSH|identifier of the IVR fabric
.4+|Info|DataSource Name|Implemented|SSH|Info
|Date|Implemented|SSH|
|Originator ID|Implemented|SSH|
|Originator Key|Implemented|SSH|
.13+|Logical Switch|Chassis WWN|Implemented|SSH|
|Domain Id|Implemented|SSH|
|Firmware Version|Implemented|SSH|
|IP|Implemented|SSH|
|Manufacturer|Implemented|SSH|
|Model|Implemented|SSH|
|Name|Implemented|Manual Entry|
|Serial Number|Implemented|SSH|
|Switch Role|Implemented|SSH|
|Switch State|Implemented|SSH|
|Switch Status|Implemented|SSH|
|Type|Gap|SSH|
|WWN|Implemented|SSH|
.16+|Port|Blade|Implemented|SSH|
|FC4 Protocol|Implemented|SSH|
|GBIC Type|Implemented|SSH|
|Generated|Implemented|SSH|
|Name|Implemented|Manual Entry|
|Node WWN|Implemented|SSH|Mandatory to report with PortId if WWN is not present
|Port ID|Implemented|SSH|
|Port Number|Implemented|SSH|
|Port Speed|Implemented|SSH|
|Port State|Implemented|SSH|
|Port Status|Implemented|SSH|
|Port Type|Implemented|SSH|
|Raw Port Status|Implemented|SSH|
|Raw Speed GigaBits|Implemented|SSH|
|Unknown Connectivity|Implemented|SSH|
|WWN|Implemented|SSH|
.14+|Switch|Domain Id|Implemented|SSH|
|Firmware Version|Implemented|SSH|
|IP|Implemented|SSH|
|Manage URL|Implemented|SSH|
|Manufacturer|Implemented|SSH|
|Model|Implemented|SSH|
|Name|Implemented|Manual Entry|
|Serial Number|Implemented|SSH|
|Switch Role|Implemented|SSH|
|Switch State|Implemented|SSH|
|Switch Status|Implemented|SSH|
|Type|Gap|SSH|
|VSAN Enabled|Implemented|SSH|
|WWN|Implemented|SSH|
.7+|Unknown|Driver|Implemented|SSH|
|Firmware|Implemented|SSH|
|Generated|Implemented|SSH|
|Manufacturer|Implemented|SSH|
|Model|Implemented|SSH|
|Name|Implemented|Manual Entry|
|WWN|Implemented|SSH|
.4+|WWN Alias|Host Aliases|Implemented|SSH|
|Object Type|Implemented|SSH|
|Source|Implemented|SSH|
|WWN|Implemented|SSH|
.1+|Zone|Zone Name|Implemented|SSH|
.2+|Zone Member|Type|Gap|SSH|
|WWN|Implemented|SSH|
.4+|Zoning Capabilities|Active Configuration|Implemented|SSH|
|Configuration Name|Implemented|SSH|
|Default Zoning Behavior|Implemented|SSH|
|WWN|Implemented|SSH|
.58+|performance .28+|port|BB Credit Zero Received|Implemented|SNMP|BB Credit Zero Received
|BB Credit Zero Total|Implemented|SNMP|BB Credit Zero Total
|BB Credit Zero Transmitted|Implemented|SNMP|BB Credit Zero Transmitted
|BB Credit Zero Ms Transmitted|Implemented|SNMP|BB Credit Zero Ms Transmitted
|Port Errors Class3 Discard|Implemented|SNMP|
|Port Errors Crc|Implemented|SNMP|Port Errors Crc
|Port Errors Enc In|Implemented|SNMP|Port Errors Enc In
|portErrors.encOut|Implemented|SNMP|
|Port Error Long Frame|Implemented|SNMP|Port errors due to long frame
|Port Error Short Frame|Implemented|SNMP|Port errors due to short frame
|Port Errors Link Failure|Implemented|SNMP|Port Errors link failure
|Port Errors Link Reset Rx|Implemented|SNMP|Port Errors Link Reset Rx
|Port Error Transmit Link Reset |Implemented|SNMP|Port Error due to link reset
|Port Error Signal Loss|Implemented|SNMP|Port errors signal loss
|Port Error Sync Loss|Implemented|SNMP|Port error sync loss
|Port Error Transmit Discard Timeout|Implemented|SNMP|Port errors timeout discard
|Total Port Errors|Implemented|SNMP|Total port errors
|Traffic Frame Rate|Implemented|SNMP|
|Total Traffic Frame Rate|Implemented|SNMP|
|Traffic Frame Rate|Implemented|SNMP|
|Average Frame Size|Implemented|SNMP|Average Frame size of traffic
|TX Frames|Implemented|SNMP|traffic average frame size
|Traffic Recieved Rate|Implemented|SNMP|
|Total Traffic Rate|Implemented|SNMP|
|Traffic Transmit Rate|Implemented|SNMP|
|Traffic Recieved Utilization|Implemented|SNMP|
|Total Traffic Utilization|Implemented|SNMP|Total traffic utilization
|Traffic Transmit Utilization|Implemented|SNMP|
.30+|Port Data|BB Credit Zero Received|Implemented|SNMP|BB Credit Zero Received
|BB Credit Zero Total|Implemented|SNMP|BB Credit Zero Total
|BB Credit Zero Transmitted|Implemented|SNMP|BB Credit Zero Transmitted
|BB Credit Zero Ms Transmitted|Implemented|SNMP|BB Credit Zero Ms Transmitted
|Key|Implemented|SNMP|
|Port Errors Class3 Discard|Implemented|SNMP|
|Port Errors Crc|Implemented|SNMP|Port Errors Crc
|Port Errors Enc In|Implemented|SNMP|Port Errors Enc In
|portErrors.encOut|Implemented|SNMP|
|Port Error Long Frame|Implemented|SNMP|Port errors due to long frame
|Port Error Short Frame|Implemented|SNMP|Port errors due to short frame
|Port Errors Link Failure|Implemented|SNMP|Port Errors link failure
|Port Errors Link Reset Rx|Implemented|SNMP|Port Errors Link Reset Rx
|Port Error Transmit Link Reset |Implemented|SNMP|Port Error due to link reset
|Port Error Signal Loss|Implemented|SNMP|Port errors signal loss
|Port Error Sync Loss|Implemented|SNMP|Port error sync loss
|Port Error Transmit Discard Timeout|Implemented|SNMP|Port errors timeout discard
|Total Port Errors|Implemented|SNMP|Total port errors
|Server ID|Implemented|SNMP|
|Traffic Frame Rate|Implemented|SNMP|
|Total Traffic Frame Rate|Implemented|SNMP|
|Traffic Frame Rate|Implemented|SNMP|
|Average Frame Size|Implemented|SNMP|Average Frame size of traffic
|TX Frames|Implemented|SNMP|traffic average frame size
|Traffic Recieved Rate|Implemented|SNMP|
|Total Traffic Rate|Implemented|SNMP|
|Traffic Transmit Rate|Implemented|SNMP|
|Traffic Recieved Utilization|Implemented|SNMP|
|Total Traffic Utilization|Implemented|SNMP|Total traffic utilization
|Traffic Transmit Utilization|Implemented|SNMP|
|===
Management APIs used by this data collector:
|===
^|API ^|Protocol Used ^|Transport layer protocol used ^|Incoming ports used ^|Outgoing ports used ^|Supports authentication ^|Requires only 'Read-only' credentials ^|Supports Encryption ^|Firewall friendly (static ports)
|Brocade SNMP
|SNMP
|SNMPv1, SNMPv2, SNMPv3
|161
|
|true
|true
|true
|true
|Brocade SSH
|SSH
|SSH
|22
|
|false
|false
|true
|true
|Data source wizard configuration
|Manual Entry