-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcounter.yaml
2025 lines (1777 loc) · 72.1 KB
/
counter.yaml
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
counters:
- Name: aggr_object_store_logical_used
Description: Logical space usage of aggregates in the attached object store.
APIs:
- API: REST
Endpoint: api/private/cli/aggr/show-space
ONTAPCounter: object_store_logical_used
Template: conf/rest/9.12.0/aggr.yaml
- Name: aggr_object_store_physical_used
Description: Physical space usage of aggregates in the attached object store.
APIs:
- API: REST
Endpoint: api/private/cli/aggr/show-space
ONTAPCounter: object_store_physical_used
Template: conf/rest/9.12.0/aggr.yaml
- Name: aggr_physical_used_wo_snapshots
Description: Total Data Reduction Physical Used Without Snapshots
- Name: aggr_physical_used_wo_snapshots_flexclones
Description: Total Data Reduction Physical Used without snapshots and flexclones
- Name: aggr_power
Description: Power consumed by aggregate in Watts.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: aggr_raid_disk_count
Description: Number of disks in the aggregate.
- Name: aggr_raid_plex_count
Description: Number of plexes in the aggregate
- Name: aggr_snapshot_inode_used_percent
Description: The percentage of disk space currently in use based on user-visible
file (inode) count on the referenced file system.
- Name: aggr_snapshot_maxfiles_possible
Description: The largest value to which the maxfiles-available parameter can be
increased by reconfiguration, on the referenced file system.
- Name: aggr_space_reserved
Description: The total disk space in bytes that is reserved on the referenced file
system. The reserved space is already counted in the used space, so this element
can be used to see what portion of the used space represents space reserved for
future use.
- Name: aggr_space_used_percent
Description: The percentage of disk space currently in use on the referenced file
system
- Name: aggr_total_physical_used
Description: Total Physical Used
- Name: aggr_volume_count
Description: The aggregate's volume count, which includes both FlexVols and FlexGroup constituents.
- Name: cluster_new_status
Description: It is an indicator of the overall health status of the cluster, with
a value of 1 indicating a healthy status and a value of 0 indicating an unhealthy
status.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/status.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/status.yaml
- Name: cluster_subsystem_outstanding_alerts
Description: Number of outstanding alerts
- Name: cluster_subsystem_suppressed_alerts
Description: Number of suppressed alerts
- Name: disk_stats_io_kbps
Description: Total Disk Throughput in KBPS Across All Active Paths
- Name: disk_stats_sectors_read
Description: Number of Sectors Read
- Name: disk_stats_sectors_written
Description: Number of Sectors Written
- Name: disk_uptime
Description: Number of seconds the drive has been powered on
- Name: disk_usable_size
Description: Usable size of each disk, in bytes.
- Name: environment_sensor_average_ambient_temperature
Description: Average temperature of all ambient sensors for node in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_average_fan_speed
Description: Average fan speed for node in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_average_temperature
Description: Average temperature of all non-ambient sensors for node in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_max_fan_speed
Description: Maximum fan speed for node in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_max_temperature
Description: Maximum temperature of all non-ambient sensors for node in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_min_ambient_temperature
Description: Minimum temperature of all ambient sensors for node in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_min_fan_speed
Description: Minimum fan speed for node in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_min_temperature
Description: Minimum temperature of all non-ambient sensors for node in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: environment_sensor_power
Description: Power consumed by a node in Watts.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/sensor.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapi/cdot/9.8.0/sensor.yaml
- Name: fabricpool_average_latency
Description: This counter is deprecated.Average latencies executed during various phases of command execution. The execution-start latency represents the average time taken to start executing an operation. The request-prepare latency represent the average time taken to prepare the commplete request that needs to be sent to the server. The send latency represents the average time taken to send requests to the server. The execution-start-to-send-complete represents the average time taken to send an operation out since its execution started. The execution-start-to-first-byte-received represent the average time taken to receive the first byte of a response since the command's request execution started. These counters can be used to identify performance bottlenecks within the object store client module.
- Name: fabricpool_get_throughput_bytes
Description: This counter is deprecated. Counter that indicates the throughput for GET command in bytes per second.
- Name: fabricpool_put_throughput_bytes
Description: This counter is deprecated. Counter that indicates the throughput for PUT command in bytes per second.
- Name: fabricpool_stats
Description: This counter is deprecated. Counter that indicates the number of object store operations sent, and their success and failure counts. The objstore_client_op_name array indicate the operation name such as PUT, GET, etc. The objstore_client_op_stats_name array contain the total number of operations, their success and failure counter for each operation.
- Name: metadata_collector_bytesRx
Description: The amount of data received by the collector from the monitored cluster.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: bytes
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: bytes
- Name: metadata_collector_numCalls
Description: The number of API calls made by the collector to the monitored cluster.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_collector_numPartials
Description: The number of partial responses received by the collector from the monitored cluster.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_collector_pluginInstances
Description: The number of plugin instances generated by the collector.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_target_ping
Description: The response time (in milliseconds) of the ping to the target system. If the ping is successful, the metric records the time it took for the ping to complete.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: milliseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: milliseconds
- Name: metadata_collector_api_time
Description: amount of time to collect data from monitored cluster object
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_collector_calc_time
Description: amount of time it took to compute metrics between two successive polls, specifically using properties like raw, delta, rate, average, and percent. This metric is available for ZapiPerf/RestPerf collectors.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_collector_instances
Description: number of objects collected from monitored cluster
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_collector_metrics
Description: number of counters collected from monitored cluster
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_collector_parse_time
Description: amount of time to parse XML, JSON, etc. for cluster object
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_collector_plugin_time
Description: amount of time for all plugins to post-process metrics
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_collector_poll_time
Description: amount of time it took for the poll to finish
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_collector_skips
Description: number of metrics that were not calculated between two successive polls. This metric is available for ZapiPerf/RestPerf collectors.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_collector_task_time
Description: amount of time it took for each collector's subtasks to complete
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_component_count
Description: number of metrics collected for each object
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_component_status
Description: status of the collector - 0 means running, 1 means standby, 2 means
failed
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: enum
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: enum
- Name: metadata_exporter_count
Description: number of metrics and labels exported
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_exporter_time
Description: amount of time it took to render, export, and serve exported data
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: microseconds
- Name: metadata_target_goroutines
Description: number of goroutines that exist within the poller
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: scalar
- Name: metadata_target_status
Description: status of the system being monitored. 0 means reachable, 1 means unreachable
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: enum
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: NA
Unit: enum
- Name: node_cpu_busytime
Description: The time (in hundredths of a second) that the CPU has been doing useful
work since the last boot
APIs:
- API: REST
Endpoint: api/private/cli/node
ONTAPCounter: cpu_busy_time
Template: conf/rest/9.12.0/node.yaml
- Name: node_nfs_read_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: node_nfs_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: node_nfs_write_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: quota_disk_limit
Description: Maximum amount of disk space, in kilobytes, allowed for the quota target
(hard disk space limit). The value is -1 if the limit is unlimited.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: space.hard_limit
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: disk-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_disk_used
Description: Current amount of disk space, in kilobytes, used by the quota target.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: space.used.total
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: disk-used
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_disk_used_pct_disk_limit
Description: Current disk space used expressed as a percentage of hard disk limit.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: space.used.hard_limit_percent
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: disk-used-pct-disk-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_disk_used_pct_soft_disk_limit
Description: Current disk space used expressed as a percentage of soft disk limit.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: space.used.soft_limit_percent
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: disk-used-pct-soft-disk-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_disk_used_pct_threshold
Description: Current disk space used expressed as a percentage of threshold.
APIs:
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: disk-used-pct-threshold
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_file_limit
Description: Maximum number of files allowed for the quota target (hard files limit).
The value is -1 if the limit is unlimited.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: files.hard_limit
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: file-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_files_used
Description: Current number of files used by the quota target.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: files.used.total
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: files-used
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_files_used_pct_file_limit
Description: Current number of files used expressed as a percentage of hard file
limit.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: files.used.hard_limit_percent
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: files-used-pct-file-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_files_used_pct_soft_file_limit
Description: Current number of files used expressed as a percentage of soft file
limit.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: files.used.soft_limit_percent
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: files-used-pct-soft-file-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_soft_disk_limit
Description: soft disk space limit, in kilobytes, for the quota target. The value
is -1 if the limit is unlimited.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: space.soft_limit
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: soft-disk-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_soft_file_limit
Description: Soft file limit, in number of files, for the quota target. The value
is -1 if the limit is unlimited.
APIs:
- API: REST
Endpoint: api/storage/quota/reports
ONTAPCounter: files.soft_limit
Template: conf/rest/9.12.0/quota.yaml
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: soft-file-limit
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: quota_threshold
Description: Disk space threshold, in kilobytes, for the quota target. The value
is -1 if the limit is unlimited.
APIs:
- API: ZAPI
Endpoint: quota-report-iter
ONTAPCounter: threshold
Template: conf/zapi/cdot/9.8.0/qtree.yaml
- Name: security_audit_destination_port
Description: The destination port used to forward the message.
- Name: shelf_average_ambient_temperature
Description: Average temperature of all ambient sensors for shelf in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_average_fan_speed
Description: Average fan speed for shelf in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_average_temperature
Description: Average temperature of all non-ambient sensors for shelf in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_disk_count
Description: Disk count in a shelf.
- Name: shelf_max_fan_speed
Description: Maximum fan speed for shelf in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_max_temperature
Description: Maximum temperature of all non-ambient sensors for shelf in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_min_ambient_temperature
Description: Minimum temperature of all ambient sensors for shelf in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_min_fan_speed
Description: Minimum fan speed for shelf in rpm.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_min_temperature
Description: Minimum temperature of all non-ambient sensors for shelf in Celsius.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: shelf_power
Description: Power consumed by shelf in Watts.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/restperf/9.12.0/disk.yaml
- API: ZAPI
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/zapiperf/cdot/9.8.0/disk.yaml
- Name: snapmirror_break_failed_count
Description: The number of failed SnapMirror break operations for the relationship
- Name: snapmirror_break_successful_count
Description: The number of successful SnapMirror break operations for the relationship
- Name: snapmirror_lag_time
Description: Amount of time since the last snapmirror transfer in seconds
- Name: snapmirror_last_transfer_duration
Description: Duration of the last SnapMirror transfer in seconds
- Name: snapmirror_last_transfer_end_timestamp
Description: The Timestamp of the end of the last transfer
- Name: snapmirror_last_transfer_size
Description: Size in kilobytes (1024 bytes) of the last transfer
- Name: snapmirror_newest_snapshot_timestamp
Description: The timestamp of the newest Snapshot copy on the destination volume
- Name: snapmirror_resync_failed_count
Description: The number of failed SnapMirror resync operations for the relationship
- Name: snapmirror_resync_successful_count
Description: The number of successful SnapMirror resync operations for the relationship
- Name: snapmirror_total_transfer_bytes
Description: Cumulative bytes transferred for the relationship
- Name: snapmirror_total_transfer_time_secs
Description: Cumulative total transfer time in seconds for the relationship
- Name: snapmirror_update_failed_count
Description: The number of successful SnapMirror update operations for the relationship
- Name: snapmirror_update_successful_count
Description: Number of Successful Updates
- Name: svm_nfs_read_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: svm_nfs_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: svm_nfs_write_throughput
APIs:
- API: REST
Unit: b_per_sec
- API: ZAPI
Unit: b_per_sec
- Name: volume_inode_files_total
Description: Total user-visible file (inode) count, i.e., current maximum number
of user-visible files (inodes) that this volume can currently hold.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: files
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_inode_files_used
Description: Number of user-visible files (inodes) used. This field is valid only
when the volume is online.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: files_used
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_inode_used_percent
Description: volume_inode_files_used / volume_inode_total
- Name: volume_overwrite_reserve_available
Description: amount of storage space that is currently available for overwrites,
calculated by subtracting the total amount of overwrite reserve space from the
amount that has already been used.
- Name: volume_sis_compress_saved
Description: The total disk space (in bytes) that is saved by compressing blocks
on the referenced file system.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: compression_space_saved
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_sis_compress_saved_percent
Description: Percentage of the total disk space that is saved by compressing blocks
on the referenced file system
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: compression_space_saved_percent
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_sis_dedup_saved
Description: The total disk space (in bytes) that is saved by deduplication and
file cloning.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: dedupe_space_saved
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_sis_dedup_saved_percent
Description: Percentage of the total disk space that is saved by deduplication and
file cloning.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: dedupe_space_saved_percent
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_sis_total_saved
Description: Total space saved (in bytes) in the volume due to deduplication, compression,
and file cloning.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: sis_space_saved
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_sis_total_saved_percent
Description: Percentage of total disk space that is saved by compressing blocks,
deduplication and file cloning.
APIs:
- API: REST
Endpoint: api/private/cli/volume
ONTAPCounter: sis_space_saved_percent
Template: conf/rest/9.12.0/volume.yaml
- Name: volume_size_used_percent
Description: percentage of utilized storage space in a volume relative to its total
capacity
- Name: volume_snapshot_reserve_used
Description: amount of storage space currently used by a volume's snapshot reserve,
which is calculated by subtracting the snapshot reserve available space from the
snapshot reserve size.
- Name: metrocluster_check_cluster_status
Description: Detail of the type of diagnostic operation run for the Cluster with diagnostic operation result.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/metrocluster_check.yaml
- Name: metrocluster_check_node_status
Description: Detail of the type of diagnostic operation run for the Node with diagnostic operation result.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/metrocluster_check.yaml
- Name: metrocluster_check_aggr_status
Description: Detail of the type of diagnostic operation run for the Aggregate with diagnostic operation result.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/metrocluster_check.yaml
- Name: metrocluster_check_volume_status
Description: Detail of the type of diagnostic operation run for the Volume with diagnostic operation result.
APIs:
- API: REST
Endpoint: NA
ONTAPCounter: Harvest generated
Template: conf/rest/9.12.0/metrocluster_check.yaml
- Name: flashpool_hya_read_hit_latency_average
APIs:
- API: REST
Unit: millisec
- API: ZAPI
Unit: millisec
- Name: flashpool_hya_read_miss_latency_average
APIs:
- API: REST
Unit: millisec
- API: ZAPI
Unit: millisec
- Name: flashpool_hya_write_hdd_latency_average
APIs:
- API: REST
Unit: millisec
- API: ZAPI
Unit: millisec
- Name: flashpool_hya_write_ssd_latency_average
APIs:
- API: REST
Unit: millisec
- API: ZAPI
Unit: millisec
- Name: fabricpool_cloud_bin_op_latency_average
APIs: