-
Notifications
You must be signed in to change notification settings - Fork 900
/
Copy pathen.yml
1876 lines (1860 loc) · 108 KB
/
en.yml
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
en:
product:
name: ManageIQ
name_full: ManageIQ
copyright: "Copyright (c) 2014-present ManageIQ Authors."
activerecord:
attributes:
ems_cloud:
provider_region: "Region"
ext_management_system:
hostname: "Host Name"
ipaddress: "IP Address"
custom_button:
description: "Button Hover Text"
errors:
template:
header:
one: "1 error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
# The variable :count is also available
body: "There were problems with the following fields:"
dictionary:
column:
# "." character not allowed in column key
User:
name: Full Name
userid: Username
availability_zone:
total_vms: Total Instances
host_aggregate:
total_vms: Total Instances
ems_cloud:
total_miq_templates: Total Images
total_vms: Total Instances
EmsClusterPerformance:
cpu_usage_rate_average: CPU - Aggregate Usage Rate for Child Hosts for Collected Intervals (%)
derived_cpu_available: CPU - Total Installed - Sum of Child Hosts (MHz)
disk_usage_rate_average: Disk I/O - Aggregate of Avg for Child Hosts (KBps)
max_cpu_usage_rate_average: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals (%)
max_cpu_usage_rate_average_avg_over_time_period: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals 30 Day Avg (%)
max_cpu_usage_rate_average_avg_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals Without Host Overhead 30 Day Avg (%)
max_cpu_usage_rate_average_high_over_time_period: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals 30 Day High Avg (%)
max_cpu_usage_rate_average_high_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals Without Host Overhead 30 Day High Avg (%)
max_cpu_usage_rate_average_low_over_time_period: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals 30 Day Low Avg (%)
max_cpu_usage_rate_average_low_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Child Hosts for Collected Intervals Without Host Overhead 30 Day Low Avg (%)
max_cpu_usagemhz_rate_average: CPU - Peak Usage Rate Avg for Child Hosts for Collected intervals (MHz)
max_disk_usage_rate_average: Disk I/O - Peak Avg for Child Hosts for Collected Intervals (KBps)
max_mem_usage_absolute_average: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals (%)
max_mem_usage_absolute_average_avg_over_time_period: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals 30 Day Avg (%)
max_mem_usage_absolute_average_avg_over_time_period_without_overhead: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals Without Host Overhead 30 Day Avg (%)
max_mem_usage_absolute_average_high_over_time_period: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals 30 Day High Avg (%)
max_mem_usage_absolute_average_high_over_time_period_without_overhead: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals Without Host Overhead 30 Day High Avg (%)
max_mem_usage_absolute_average_low_over_time_period: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals 30 Day Low Avg (%)
max_mem_usage_absolute_average_low_over_time_period_without_overhead: Memory - Peak Aggregate Usage of Allocated for Child Hosts for Collected Intervals Without Host Overhead 30 Day Low Avg (%)
max_net_usage_rate_average: Network I/O - Peak Avg for Child Hosts for Collected Intervals (KBps)
mem_usage_absolute_average: Memory - Avg Usage of Total Allocated for Collected Intervals (%)
min_cpu_usage_rate_average: CPU - Min Usage Rate Avg for Child Hosts for Collected Intervals (%)
min_cpu_usagemhz_rate_average: CPU - Min Usage Rate Avg for Child Hosts for Collected Intervals (MHz)
min_disk_usage_rate_average: Disk I/O - Min Avg for Child Hosts for Collected Intervals (KBps)
min_mem_usage_absolute_average: Memory - Min Aggregate Usage of Allocated for Child Hosts for Collected Intervals (%)
min_net_usage_rate_average: Network I/O - Min Avg for Child Hosts for Collected Intervals (KBps)
net_usage_rate_average: Network I/O - Aggregate of Avg for Child Hosts (KBps)
flavor:
total_vms: Total Instances
HostPerformance:
derived_cpu_available: CPU - Total Installed - from Host Analysis (MHz)
StoragePerformance:
max_derived_storage_total: Disk Space Max Total
Vm:
cpu_usagemhz_rate_average_avg_over_time_period: CPU - Usage Rate for Collected Intervals 30 Day Avg (MHz)
cpu_usagemhz_rate_average_high_over_time_period: CPU - Usage Rate for Collected Intervals 30 Day High Avg (MHz)
cpu_usagemhz_rate_average_low_over_time_period: CPU - Usage Rate for Collected Intervals 30 Day Low Avg (MHz)
derived_memory_used_avg_over_time_period: Memory - Avg Used for Collected Intervals 30 Day Avg (MB)
derived_memory_used_high_over_time_period: Memory - Avg Used for Collected Intervals 30 Day High Avg (MB)
derived_memory_used_low_over_time_period: Memory - Avg Used for Collected Intervals 30 Day Low Avg (MB)
VmPerformance:
cpu_ready_delta_summation: CPU - Time Spent In Ready State (ms)
cpu_system_delta_summation: CPU - Time Spent in System State (ms)
cpu_usagemhz_rate_average: CPU - Usage Rate for Collected Intervals (MHz)
cpu_used_delta_summation: CPU - Total time usage (VMware) (ms)
cpu_wait_delta_summation: CPU - Time Spent in Wait State (ms)
derived_cpu_available: CPU - Total - from VM Analysis (MHz)
derived_cpu_reserved: CPU - Reserved (MHz)
derived_memory_available: Memory - Total Allocated (MB)
derived_memory_reserved: Memory - Reserved (MB)
derived_memory_used: Memory - Avg Used for Collected Intervals (MB)
max_derived_cpu_reserved: CPU Max Reserved MHz
max_derived_memory_available: Memory Max Allocated
max_derived_memory_reserved: Memory Max Reserved
max_derived_memory_used: Memory - Peak Avg Used for Collected Intervals (MB)
min_derived_memory_used: Memory - Minimum Avg Used for Collected Intervals (MB)
v_derived_cpu_reserved_pct: CPU - Reserved (%)
v_derived_memory_reserved_pct: Memory - Reserved (%)
abs_max_cpu_usagemhz_rate_average_timestamp: Absolute Max CPU Usage MHz Rate Average Timestamp
abs_max_cpu_usagemhz_rate_average_value: Absolute Max CPU Usage MHz Rate Average Value
abs_max_cpu_usage_rate_average_timestamp: CPU - Absolute Max Usage Rate (Timestamp)
abs_max_cpu_usage_rate_average_value: CPU - Absolute Max Usage Rate (%)
abs_max_derived_memory_used_timestamp: Absolute Max Derived Memory Used Timestamp
abs_max_derived_memory_used_value: Absolute Max Derived Memory Used Value
abs_max_disk_usage_rate_average_timestamp: Disk I/O - Absolute Max Usage Rate (Timestamp)
abs_max_disk_usage_rate_average_value: Disk I/O - Absolute Max Usage Rate (KBps)
abs_max_mem_usage_absolute_average_timestamp: Memory - Absolute Max Usage Rate (Timestamp)
abs_max_mem_usage_absolute_average_value: Memory - Absolute Max Usage Rate (%)
abs_max_net_usage_rate_average_timestamp: Network I/O - Absolute Max Usage Rate (Timestamp)
abs_max_net_usage_rate_average_value: Network I/O - Absolute Max Usage Rate (KBps)
abs_min_cpu_usagemhz_rate_average_timestamp: Absolute Min CPU Usage MHz Rate Average Timestamp
abs_min_cpu_usagemhz_rate_average_value: Absolute Min CPU Usage MHz Rate Average Value
abs_min_cpu_usage_rate_average_timestamp: CPU - Absolute Min Usage Rate (Timestamp)
abs_min_cpu_usage_rate_average_value: CPU - Absolute Min Usage Rate (%)
abs_min_derived_memory_used_timestamp: Absolute Min Derived Memory Used Timestamp
abs_min_derived_memory_used_value: Absolute Min Derived Memory Used Value
abs_min_disk_usage_rate_average_timestamp: Disk I/O - Absolute Min Usage Rate (Timestamp)
abs_min_disk_usage_rate_average_value: Disk I/O - Absolute Min Usage Rate (KBps)
abs_min_mem_usage_absolute_average_timestamp: Memory - Absolute Min Usage Rate (Timestamp)
abs_min_mem_usage_absolute_average_value: Memory - Absolute Min Usage Rate (%)
abs_min_net_usage_rate_average_timestamp: Network I/O - Absolute Min Usage Rate (Timestamp)
abs_min_net_usage_rate_average_value: Network I/O - Absolute Min Usage Rate (KBps)
access_modes: Access Modes
acctid: Account ID
accttype: Account Type
action_type_description: Type
active: Active
address: Address
admin_disabled: Lockdown Mode
aggregate_all_vm_cpus: Aggregate All Vm CPUs
aggregate_all_vm_disk_count: Aggregate All Vm Disk Count
aggregate_all_vm_disk_space_allocated: Aggregate All Vm Disk Space Allocated
aggregate_all_vm_disk_space_used: Aggregate All Vm Disk Space Used
aggregate_all_vm_memory_on_disk: Aggregate All Vm Memory On Disk
aggregate_all_vm_memory: Aggregate All Vm Memory
aggregate_cpu_speed: Total CPU Speed
aggregate_cpu_total_cores: Total Number of Logical CPUs
aggregate_direct_vm_cpus: Aggregate Direct Vm CPUs
aggregate_direct_vm_disk_count: Aggregate Direct Vm Disk Count
aggregate_direct_vm_disk_space_allocated: Aggregate Direct Vm Disk Space Allocated
aggregate_direct_vm_disk_space_used: Aggregate Direct Vm Disk Space Used
aggregate_direct_vm_memory_on_disk: Aggregate Direct Vm Memory On Disk
aggregate_direct_vm_memory: Aggregate Direct Vm Memory
aggregate_disk_capacity: Aggregate Disk Capacity
aggregate_memory: Total Memory
aggregate_physical_cpus: Total Number of Physical CPUs
aggregate_vm_cpus: Aggregate Vm CPUs
aggregate_vm_memory: Aggregate Vm Memory
all_enabled_ports: All Enabled Ports
allocated_disk_storage: Allocated Disk Storage
allocated_memory: Allocated Memory
allocated_storage: Allocated Storage
allocated_vcpu: Allocated vCPU
allow_promiscuous: Allow Promiscuous
ancestry: Ancestry
api_version: API Version
approval_state: Approval State
arch: Arch
architecture: Architecture
archived: Archived
asset_tag: Asset Tag
author: Author
authtype: Authtype
autostart: Autostart
avg_latency: Usage (All) - Latency in MicroSeconds for All Operations Avg
avg_latency_max: Usage (All) - Latency in MicroSeconds for All Operations Avg Max
avg_latency_min: Usage (All) - Latency in MicroSeconds for All Operations Avg Min
authentication_status: Authentication Status
backing_ref: Backing Ref
base_name: Base Name
become_username: Become Username
beginning_of_resource_existence_in_report_interval: Beginning Of Report Existence In Report Interval
bios: BIOS
bios_location: BIOS Location
blade_slot_count: Blade Slot Count
block_storage_based_only: Block Storage Based Only
bootable: Bootable
boot_time: Boot Time
build: Build
build_source_type: Build Source Type
build_state: Build State
build_time: Build Time
busy: Busy
cancelation_status: Cancelation Status
capabilities_add: Capabilities Add
capabilities_drop: Capabilities Drop
capacity: Capacity
certificate_authority: Certificate Authority
chain_id: Chain ID
chargeback_rates: Chargeback Rates
cidr: Cidr
cifs_other_latency: Usage (CIFS) - Time for Other Operations Avg
cifs_other_latency_max: Usage (CIFS) - Time for Other Operations Avg Max
cifs_other_latency_min: Usage (CIFS) - Time for Other Operations Avg Min
cifs_other_ops: Usage (CIFS) - Number of Other Operations per Second
cifs_other_ops_max: Usage (CIFS) - Number of Other Operations per Second Max
cifs_other_ops_min: Usage (CIFS) - Number of Other Operations per Second Min
cifs_read_data: Usage (CIFS) - Bytes Read per Second
cifs_read_data_max: Usage (CIFS) - Bytes Read per Second Max
cifs_read_data_min: Usage (CIFS) - Bytes Read per Second Min
cifs_read_latency: Usage (CIFS) - Time for Reads Avg
cifs_read_latency_max: Usage (CIFS) - Time for Reads Avg Max
cifs_read_latency_min: Usage (CIFS) - Time for Reads Avg Min
cifs_read_ops: Usage (CIFS) - Number of Reads per Second
cifs_read_ops_max: Usage (CIFS) - Number of Reads per Second Max
cifs_read_ops_min: Usage (CIFS) - Number of Reads per Second Min
cifs_write_data: Usage (CIFS) - Bytes Written per Second
cifs_write_data_max: Usage (CIFS) - Bytes Written per Second Max
cifs_write_data_min: Usage (CIFS) - Bytes Written per Second Min
cifs_write_latency: Usage (CIFS) - Time for Writes Avg
cifs_write_latency_max: Usage (CIFS) - Time for Writes Avg Max
cifs_write_latency_min: Usage (CIFS) - Time for Writes Avg Min
cifs_write_ops: Usage (CIFS) - Number of Writes per Second
cifs_write_ops_max: Usage (CIFS) - Number of Writes per Second Max
cifs_write_ops_min: Usage (CIFS) - Number of Writes per Second Min
claim_name: Claim Name
cloud: Cloud
cloud_network_only: Cloud Network Only
cloud_subnet_required: Cloud Subnet Required
command: Command
common_fs_type: Common Fs Type
common_partition: Common Partition
common_path: Common Path
common_read_only: Common Read Only
common_secret: Common Secret
completion_deadline_seconds: Completion Deadline Seconds
compliant: Compliant
config_xml: Configuration XML
configuration_architecture_name: Configuration Architecture Name
configuration_compute_profile_name: Configuration Compute Profile Name
configuration_domain_name: Configuration Domain Name
configuration_environment_name: Configuration Environment Name
configuration_profile_name: Configuration Profile Name
configuration_realm_name: Configuration Realm Name
connection_state: Connection State
container_group_name: Container Group Name
container_groups_count: Container Groups Count
container_name: Container Name
container_namespace: Container Namespace
container_node_name: Container Node Name
container_replicator_name: Container Replicator Name
container_runtime_version: Container Runtime Version
containers_count: Containers Count
content: Content
context_data: Context Data
count_of_trend: Data Points
count_of_vmdk_disk_files: Count Of Vmdk Disk Files
counterpart_type: Counterpart Type
cpu_affinity: CPU Affinity
cpu_cores: CPU Cores
cpu_cores_per_socket: CPU Cores Per Socket
cpu_hot_add_enabled: CPU Hot Add Enabled
cpu_hot_remove_enabled: CPU Hot Remove Enabled
cpu_limit: CPU Limit
cpu_ready_delta_summation: CPU - Aggregate Time Child VMs Spent in Ready State (ms)
cpu_reserve: CPU Reserve
cpu_reserve_expand: CPU Reserve Expand
cpu_shares: CPU Shares
cpu_shares_level: CPU Shares Level
cpu_speed: CPU Speed
cpu_system_delta_summation: CPU - Aggregate Time Child VMs Spent in System State (ms)
cpu_time: CPU Time
cpu_total_cores: Number of CPU Cores
cpu_type: CPU Type
cpu_usage_rate_average: CPU - Usage Rate for Collected Intervals (%)
cpu_usage_rate_average_avg_over_time_period: CPU Usage Rate Average Avg Over Time Period
cpu_usage_rate_average_high_over_time_period: CPU Usage Rate Average High Over Time Period
cpu_usage_rate_average_low_over_time_period: CPU Usage Rate Average Low Over Time Period
cpu_usagemhz_rate_average: CPU - Aggregate Usage Rate for Child VMs for Collected Intervals (MHz)
cpu_usagemhz_rate_average_avg_over_time_period: CPU - Aggregate Usage Rate for Child VMs for Collected Intervals 30 Day Avg (MHz)
cpu_usagemhz_rate_average_high_over_time_period: CPU - Aggregate Usage Rate for Child VMs for Collected Intervals 30 Day High Avg (MHz)
cpu_usagemhz_rate_average_low_over_time_period: CPU - Aggregate Usage Rate for Child VMs for Collected Intervals 30 Day Low Avg (MHz)
cpu_usagemhz_rate_average_max_over_time_period: CPU - Aggregate Usage Rate for Child VMs for Collected Intervals 30 Day Max (MHz)
cpu_used_delta_summation: CPU - Aggregate Time Used for Child VMs (ms)
cpu_wait_delta_summation: CPU - Aggregate Time Spent in Wait State for Child VMs (ms)
cpus: Cpus
created_at: Date Created
created_on: Date Created
creation_time: Creation Time
credentials_changed_on: Credentials Changed On
current_replicas: Current Replicas
custom_1: Custom 1
custom_2: Custom 2
custom_3: Custom 3
custom_4: Custom 4
custom_5: Custom 5
custom_6: Custom 6
custom_7: Custom 7
custom_8: Custom 8
custom_9: Custom 9
customization_script_medium_name: Customization Script Medium Name
customization_script_ptable_name: Customization Script Ptable Name
debris_size: Debris Size
default_gateway: Default Gateway
deleted_on: Deleted On
depend_on_group: Depends on Group
depend_on_service: Depends on Service
deprecated: Deprecated
derived_cpu_available: CPU Total Installed
derived_cpu_reserved: CPU - Available (MHz)
derived_host_count_off: State - Number of Hosts Powered Off - Hourly Count / Daily Avg
derived_host_count_on: State - Number of Hosts Powered On - Hourly Count / Daily Avg
derived_host_count_total: Derived Host Count Total
derived_host_sockets: Derived Host Sockets
derived_memory_available: Memory - Total Allocated for Child VMs (MB)
derived_memory_reserved: Memory - Available (MB)
derived_memory_used: Memory - Aggregate Used for Child VMs for Collected Intervals (MB)
derived_memory_used_avg_over_time_period: Memory - Aggregate Used for Child VMs for Collected Intervals 30 Day Avg (MB)
derived_memory_used_high_over_time_period: Memory - Aggregate Used for Child VMs for Collected Intervals 30 Day High Avg (MB)
derived_memory_used_low_over_time_period: Memory - Aggregate Used for Child VMs for Collected Intervals 30 Day Low Avg (MB)
derived_memory_used_max_over_time_period: Memory - Aggregate Used for Child VMs for Collected Intervals 30 Day Max (MB)
derived_storage_disk_managed: Content - Avg of Total Size of Managed VMs Disk Files (B)
derived_storage_disk_registered: Content - Avg of Total Size of Registered VMs Disk Files (B)
derived_storage_disk_unmanaged: Content - Avg of Total Size of Unmanaged VMs Disk Files (B)
derived_storage_disk_unregistered: Content - Avg of Total Size of Unregistered VMs Disk Files (B)
derived_storage_free: Capacity - Avg Free Space for Collected Intervals (B)
derived_storage_mem_managed: Content - Avg of Total Size of Managed VMs Memory Files (B)
derived_storage_mem_registered: Content - Avg of Total Size of Registered VMs Memory Files (B)
derived_storage_mem_unmanaged: Content - Avg of Total Size of Unmanaged VMs Memory Files (B)
derived_storage_mem_unregistered: Content - Avg of Total Size of Unregistered VMs Memory Files (B)
derived_storage_snapshot_managed: Content - Avg of Total Size of Managed VMs Snapshot Files (B)
derived_storage_snapshot_registered: Content - Avg of Total Size of Registered VMs Snapshot Files (B)
derived_storage_snapshot_unmanaged: Content - Avg of Total Size of Unmanaged VMs Snapshot Files (B)
derived_storage_snapshot_unregistered: Content - Avg of Total Size of Unregistered VMs Snapshot Files (B)
derived_storage_total: Capacity - Total Space (B)
derived_storage_used_managed: Content - Avg Space Used by Managed VMs for Collected Intervals (B)
derived_storage_used_registered: Content - Avg Space Used by Registered VMs for Collected Intervals (B)
derived_storage_used_unmanaged: Content - Avg Space Used by Unmanaged VMs for Collected Intervals (B)
derived_storage_used_unregistered: Content - Avg Space Used by Unregistered VMs for Collected Intervals (B)
derived_storage_vm_count_managed: Content - Avg Count of Managed VMs
derived_storage_vm_count_registered: Content - Avg Count of Registered VMs
derived_storage_vm_count_unmanaged: Content - Avg Count of Unmanaged VMs
derived_storage_vm_count_unregistered: Content - Avg Count of Unregistered VMs
derived_vm_allocated_disk_storage: Derived Vm Allocated Disk Storage
derived_vm_count_off: State - Peak Avg VMs Powered-off - Hourly Count / Daily Avg
derived_vm_count_on: State - Peak Avg VMs Powered-On - Hourly Count / Daily Avg
derived_vm_count_total: Derived Vm Count Total
derived_vm_numvcpus: Derived Vm Numvcpus
derived_vm_used_disk_storage: Derived Vm Used Disk Storage
description: Description
dest_ems_cluster_name: Destination Ems Cluster Name
dest_ems_cluster_uid: Destination Ems Cluster Uid
dest_host_name: Destination Host Name
dest_vm_ems_ref: Destination Vm Ems Ref
dest_vm_location: Destination VM Location
dest_vm_name: Destination VM Name
destination_type: Destination Type
detailed_description: Detailed Description
dhcp_enabled: DHCP Enabled
dhcp_server: DHCP Server
digest: Digest
direction_of_trend: Trend
directory_hierarchy_supported: Directory Hierarchy Supported
disconnected: Disconnected
disk_1_disk_type: Disk 1 Disk Type
disk_1_mode: Disk 1 Mode
disk_1_partitions_aligned: Disk 1 Partitions Aligned
disk_1_size_on_disk: Disk 1 Size On Disk
disk_1_size: Disk 1 Size
disk_1_used_percent_of_provisioned: Disk 1 Used Percent Of Provisioned
disk_2_disk_type: Disk 2 Disk Type
disk_2_mode: Disk 2 Mode
disk_2_partitions_aligned: Disk 2 Partitions Aligned
disk_2_size_on_disk: Disk 2 Size On Disk
disk_2_size: Disk 2 Size
disk_2_used_percent_of_provisioned: Disk 2 Used Percent Of Provisioned
disk_3_disk_type: Disk 3 Disk Type
disk_3_mode: Disk 3 Mode
disk_3_partitions_aligned: Disk 3 Partitions Aligned
disk_3_size_on_disk: Disk 3 Size On Disk
disk_3_size: Disk 3 Size
disk_3_used_percent_of_provisioned: Disk 3 Used Percent Of Provisioned
disk_4_disk_type: Disk 4 Disk Type
disk_4_mode: Disk 4 Mode
disk_4_partitions_aligned: Disk 4 Partitions Aligned
disk_4_size_on_disk: Disk 4 Size On Disk
disk_4_size: Disk 4 Size
disk_4_used_percent_of_provisioned: Disk 4 Used Percent Of Provisioned
disk_5_disk_type: Disk 5 Disk Type
disk_5_mode: Disk 5 Mode
disk_5_partitions_aligned: Disk 5 Partitions Aligned
disk_5_size_on_disk: Disk 5 Size On Disk
disk_5_size: Disk 5 Size
disk_5_used_percent_of_provisioned: Disk 5 Used Percent Of Provisioned
disk_6_disk_type: Disk 6 Disk Type
disk_6_mode: Disk 6 Mode
disk_6_partitions_aligned: Disk 6 Partitions Aligned
disk_6_size_on_disk: Disk 6 Size On Disk
disk_6_size: Disk 6 Size
disk_6_used_percent_of_provisioned: Disk 6 Used Percent Of Provisioned
disk_7_disk_type: Disk 7 Disk Type
disk_7_mode: Disk 7 Mode
disk_7_partitions_aligned: Disk 7 Partitions Aligned
disk_7_size_on_disk: Disk 7 Size On Disk
disk_7_size: Disk 7 Size
disk_7_used_percent_of_provisioned: Disk 7 Used Percent Of Provisioned
disk_8_disk_type: Disk 8 Disk Type
disk_8_mode: Disk 8 Mode
disk_8_partitions_aligned: Disk 8 Partitions Aligned
disk_8_size_on_disk: Disk 8 Size On Disk
disk_8_size: Disk 8 Size
disk_8_used_percent_of_provisioned: Disk 8 Used Percent Of Provisioned
disk_9_disk_type: Disk 9 Disk Type
disk_9_mode: Disk 9 Mode
disk_9_partitions_aligned: Disk 2 Partitions Aligned
disk_9_size_on_disk: Disk 9 Size On Disk
disk_9_size: Disk 9 Size
disk_9_used_percent_of_provisioned: Disk 9 Used Percent Of Provisioned
disk_devicelatency_absolute_average: Disk Latency - Avg (ms)
disk_kernellatency_absolute_average: Disk Kernel Latency - Avg (ms)
disk_queuelatency_absolute_average: Disk Queue Latency - Avg (ms)
disk_size: Disk Size
disk_usage_rate_average: Disk I/O - Avg (KBps)
disks_aligned: Disks Aligned
display: Display
display_name: Display Name
display_deprecated: Display Deprecated
display_memory: Display Memory
display_operating_system: Display Operating System
display_platform: Display Platform
display_registry: Display Registry
display_tenant: Display Tenant
display_type: Display Type
divisible: Divisible
dns_policy: DNS Policy
dns_server: DNS Server
docker_version: Docker Version
domain: Domain
draft: Draft
drb_uri: Drb Uri
drs_automation_level: Drs Automation Level
drs_enabled: Drs Enabled
drs_migration_threshold: Drs Migration Threshold
effective_cpu: CPU - Effective
effective_memory: Memory - Effective
email: Email
empty_dir_medium_type: Empty Dir Medium Type
ems_cluster_name: Cluster
ems_cluster_uid: Ems Cluster Uid
ems_compliance_name: Ems Compliance Name
ems_compliance_status: Ems Compliance Status
ems_ref: Ems Ref
ems_ref_type: Ems Ref Type
emstype: Emstype
emstype_description: Type Description
enabled: Active
enabled_inbound_ports: Enabled Inbound Ports
enabled_outbound_ports: Enabled Outbound Ports
enabled_run_level_0_services: Enabled Run Level 0 Services
enabled_run_level_1_services: Enabled Run Level 1 Services
enabled_run_level_2_services: Enabled Run Level 2 Services
enabled_run_level_3_services: Enabled Run Level 3 Services
enabled_run_level_4_services: Enabled Run Level 4 Services
enabled_run_level_5_services: Enabled Run Level 5 Services
enabled_run_level_6_services: Enabled Run Level 6 Services
enabled_tcp_inbound_ports: Enabled Tcp Inbound Ports
enabled_tcp_outbound_ports: Enabled Tcp Outbound Ports
enabled_udp_inbound_ports: Enabled Udp Inbound Ports
enabled_udp_outbound_ports: Enabled Udp Outbound Ports
encrypted: Encrypted
end_of_resource_existence_in_report_interval: End Of Resource Existence In Report Interval
end_trend_value: End
entrypoint: Entrypoint
environment_variables: Environment Variables
ephemeral_disk_count: Ephemeral Disk Count
ephemeral_disk_size: Ephemeral Disk Size
evaluation_description: What is evaluated
event: Event
event_src: Event Source
event_type: Event Type
evm_owner_email: Evm Owner Email
evm_owner_name: Evm Owner Name
evm_owner_userid: Evm Owner Userid
existence_hours_metric: Existence Hours Metric
exit_code: Exit Code
exposed_ports: Exposed Ports
ext_name: Ext Name
external_facing: External Facing
extra_attributes: Extra Attributes
failed_login_attempts: Failed Login Attempts
failover: Failover
fan_slot_count: Fan Slot Count
fault_tolerance: Fault Tolerance
field_replaceable_unit: Field Replaceable Unit
fingerprint: Fingerprint
filename: File Name
finish_time: Finish Time
finished_at: Finished At
first_drift_state_timestamp: First Drift State Timestamp
first_name: First Name
fixed_ip_address: Fixed IP Address
fixed_ip_addresses: Fixed IP Addresses
floating_ip_addresses: Floating IP Addresses
forged_transmits: Forged Transmits
format: Format
fqname: Fully Qualified Name
free_space: Free Space
friendly_name: Friendly Name
fulfilled_on: Fulfilled On
full_data: Full Data
full_name: Full Name
future: Future
gce_pd_name: Gce Pd Name
generic_subtype: Generic Subtype
git_repository: Git Repository
git_revision: Git Revision
glusterfs_endpoint_name: Glusterfs Endpoint Name
group: Group
group_level: Group Level
group_name: Group Name
group_type: Group Type
groups_count: Groups Count
guest_os: Guest OS
guid: EVM Unique ID (Guid)
ha_admit_control: Ha Admit Control
ha_enabled: Ha Enabled
ha_max_failures: Ha Max Failures
has_active_remote_console: Has Active Remote Console
has_active_userinterface: Has Active Userinterface
has_active_webservices: Has Active Webservices
has_parent: Has Parent
has_policies: Has Policies
has_rdm_disk: Has an RDM Disk?
has_vix_disk_lib: Has Vix Disk Lib
health_state: Health State Code
health_state_str: Health State
hidden: Hidden
homedir: Home Directory
host_name: Parent Host
host_default_vnc_port_end: Host Default Vnc Port End
host_default_vnc_port_start: Host Default Vnc Port Start
host: Host
hostname: Hostname
hostnames: Host Names
hosts: Hosts
href_slug: Href Slug
hyperthreading: Hyperthreading
hypervisor_hostname: Hypervisor Hostname
identity_infra: Identity Infra
identity_machine: Identity Machine
identity_system: Identity System
image: Image
image?: Image?
image_pull_policy: Image Pull Policy
image_ref: Image Ref
images_count: Images Count
initiated_by: Initiated By
initiator: Initiator
install_time: Install Time
internal: Internal
iops: IOPS
ip_address: IP Address
ip_addresses: IP Addresses
ipaddress: IP Address
ipaddresses: IP Addresses
ipmi_address: IPMI IP Address
ipmi_enabled: IPMI Enabled
ipmi_present: IPMI Present
ipv6address: IPv6 Address
is_default: Is Default
is_evm_appliance: Is an EVM Appliance?
is_master: Is Master
is_task: Is Task
iscsi_iqn: Iscsi Iqn
iscsi_lun: Iscsi Lun
iscsi_target_portal: Iscsi Target Portal
kernel_version: Kernel Version
kubernetes_kubelet_version: Kubernetes Kubelet Version
kubernetes_proxy_version: Kubernetes Proxy Version
language: Language
last_checkin: Last Checkin
last_compliance_status: Last Compliance Status
last_compliance_timestamp: Last Compliance Timestamp
last_drift_state_timestamp: Last Drift State Timestamp
last_exit_code: Last Exit Code
last_finished_at: Last Finished At
last_heartbeat: Last Heartbeat
last_invalid_on: Last Invalid On
last_inventory_date: Last Inventory Date
last_message: Last Message
last_metrics_error: Last Metrics Error
last_metrics_success_date: Last Metrics Success Date
last_metrics_update_date: Last Metrics Update Date
last_name: Last Name
last_perf_capture_on: Last Perf Capture On
last_reason: Last Reason
last_refresh_date: Last Refresh Date
last_refresh_error: Last Refresh Error
last_refresh_status: Last Refresh Status
last_scan_attempt_on: Last Analysis Attempt On
last_scan_on: Last Analysis Time
last_signal: Last Signal
last_started_at: Last Started At
last_state: Last State
last_sync_on: Last Sync Time
last_update_status: Last Update Status Code
last_update_status_str: Last Update Status
last_valid_on: Last Valid On
lastlogoff: Last Logoff
lastlogon: Last Logon
ldap_group: LDAP Group
lease_expires: Lease Expires
lease_obtained: Lease Obtained
lifecycle_state: Lifecycle State
limit_cpu_cores: Limit CPU Cores
limit_memory_bytes: Limit Memory Bytes
linked_clone: Linked Clone
lives_on_type: Lives On Type
load_balancer_health_check_state: Load Balancer Health Check State
load_balancer_health_check_states_with_reason: Load Balancer Health Check States With Reason
load_balancer_health_check_states: Load Balancer Health States
location: Location
login: Login
login_logo_content_type: Login Logo Content Type
login_logo_file_name: Login Logo File Name
login_logo_file_size: Login Logo File Size
login_logo_updated_at: Login Logo Updated At
login_text: Login Text
logo: Logo
logo_content_type: Logo Content Type
logo_file_name: Logo File Name
logo_file_size: Logo File Size
logo_updated_at: Logo Updated At
long_description: Long Description
mac_address: MAC Address
mac_addresses: MAC Addresses
mac_changes: MAC Changes
macaddress: MACaddress
macaddresses: MACaddresses
machine_type: Machine Type
maintenance_reason: Maintenance Reason
maintenance: Maintenance
management_module_slot_count: Management Module Slot Count
manager_ref: Manager Ref
manufacturer: Manufacturer
master: Master
max_container_groups: Max Container Groups
max_cpu_usage_rate_average: CPU - Peak Usage Rate Avg for Collected Intervals (%)
max_cpu_usage_rate_average_avg_over_time_period: CPU - Peak Usage Rate Avg for Collected Intervals 30 Day Avg (%)
max_cpu_usage_rate_average_avg_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Collected Intervals Without Host Overhead 30 Day Avg (%)
max_cpu_usage_rate_average_high_over_time_period: CPU - Peak Usage Rate Avg for Collected Intervals 30 Day High Avg (%)
max_cpu_usage_rate_average_high_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Collected Intervals Without Host Overhead 30 Day High Avg (%)
max_cpu_usage_rate_average_low_over_time_period: CPU - Peak Usage Rate Avg for Collected Intervals 30 Day Low Avg (%)
max_cpu_usage_rate_average_low_over_time_period_without_overhead: CPU - Peak Usage Rate Avg for Collected Intervals Without Host Overhead 30 Day Low Avg (%)
max_cpu_usage_rate_average_max_over_time_period: CPU - Peak Usage Rate for Collected Intervals 30 Day Max (%)
max_cpu_usage_rate_average_max_over_time_period_without_overhead: CPU - Peak Usage Rate for Collected Intervals Without Host Overhead 30 Day Max (%)
max_cpu_usagemhz_rate_average: CPU - Peak Usage Rate for Collected Intervals (MHz)
max_derived_cpu_available: CPU Max Total MHz
max_derived_cpu_reserved: CPU Max Available MHz
max_derived_host_count_off: State - Peak Number of Hosts Powered Off - Hourly Count / Daily Avg
max_derived_host_count_on: State - Peak Number of Hosts Powered On - Hourly Count / Daily Avg
max_derived_host_count_total: Max Derived Host Count Total
max_derived_host_sockets: Max Derived Host Sockets
max_derived_memory_available: Memory Max Total
max_derived_memory_reserved: Memory Max Available
max_derived_memory_used: Memory - Peak Aggregate Used for Child VMs for Collected Intervals (MB)
max_derived_storage_free: Disk Space Max Free
max_derived_storage_total: Disk Space Max Total
max_derived_vm_count_off: State - Peak Number of VMs Powered Off - Hourly Count / Daily Avg
max_derived_vm_count_on: State - Peak Number of VMs Powered On - Hourly Count / Daily Avg
max_derived_vm_allocated_disk_storage: Max Derived Vm Allocated Disk Storage
max_derived_vm_count_total: Max Derived Vm Count Total
max_derived_vm_numvcpus: Max Derived Vm Numvcpus
max_derived_vm_used_disk_storage: Max Derived Vm Used Disk Storage
max_disk_devicelatency_absolute_average: Max Disk Device Latency Absolute Average
max_disk_kernellatency_absolute_average: Max Disk Kernel Latency Absolute Average
max_disk_queuelatency_absolute_average: Max Disk Queue Latency Absolute Average
max_disk_usage_rate_average: Disk I/O - Peak Avg for Collected Intervals (KBps)
max_mem_swapin_absolute_average: Memory - Swap In Max Average
max_mem_swapout_absolute_average: Memory - Swap Out Max Average
max_mem_swapped_absolute_average: Memory - Swapped Max Average
max_mem_swaptarget_absolute_average: Memory - Swap Target Max Average
max_mem_usage_absolute_average: Memory - Peak Usage of Allocated for Collected Intervals (%)
max_mem_usage_absolute_average_avg_over_time_period: Memory - Peak Usage of Allocated for Collected Intervals 30 Day Avg (%)
max_mem_usage_absolute_average_avg_over_time_period_without_overhead: Memory - Peak Usage of Allocated for Collected Intervals Without Host Overhead 30 Day Avg (%)
max_mem_usage_absolute_average_high_over_time_period: Memory - Peak Usage of Allocated for Collected Intervals 30 Day High Avg (%)
max_mem_usage_absolute_average_high_over_time_period_without_overhead: Memory - Peak Usage of Allocated for Collected Intervals Without Host Overhead 30 Day High Avg (%)
max_mem_usage_absolute_average_low_over_time_period: Memory - Peak Usage of Allocated for Collected Intervals 30 Day Low Avg (%)
max_mem_usage_absolute_average_low_over_time_period_without_overhead: Memory - Peak Usage of Allocated for Collected Intervals Without Host Overhead 30 Day Low Avg (%)
max_mem_usage_absolute_average_max_over_time_period: Memory - Peak Usage of Allocated for Collected Intervals 30 Day Max (%)
max_mem_usage_absolute_average_max_over_time_period_without_overhead: Memory - Peak Usage of Allocated for Collected Intervals Without Host Overhead 30 Day Max (%)
max_mem_vmmemctl_absolute_average: Memory - Balloon Max Average
max_mem_vmmemctltarget_absolute_average: Memory - Balloon Target Max Average
max_net_usage_rate_average: Network I/O - Peak Avg for Collected Intervals (KBps)
max_stat_container_group_create_rate: Max Stat Container Group Create Rate
max_stat_container_group_delete_rate: Max Stat Container Group Delete Rate
max_stat_container_image_registration_rate: Max Stat Container Image Registration Rate
max_sys_uptime_absolute_latest: Uptime - Peak Uptime for Collected Intervals (Seconds)
max_trend_value: Max
max_v_derived_storage_used: Disk Space Max Used
maximum_transmission_unit: Maximum Transmission Unit
md5: Md5
mem_cpu: Memory
mem_swapin_absolute_average: Memory - Swap In Average
mem_swapout_absolute_average: Memory - Swap Out Average
mem_swapped_absolute_average: Memory - Swapped Average
mem_swaptarget_absolute_average: Memory - Swap Target Average
mem_usage_absolute_average: Memory - Usage of Total Allocated (%)
mem_usage_absolute_average_avg_over_time_period: Memeory Usage Absolute Average Avg Over Time Period
mem_usage_absolute_average_high_over_time_period: Memeory Usage Absolute Average High Over Time Period
mem_usage_absolute_average_low_over_time_period: Memeory Usage Absolute Average Low Over Time Period
mem_vmmemctl_absolute_average: Memory - Balloon Average
mem_vmmemctltarget_absolute_average: Memory - Balloon Target Average
memory: Memory
memory_exceeds_current_host_headroom: Memory Exceeds Current Host Headroom
memory_hot_add_enabled: Memory Hot Add Enabled
memory_hot_add_increment: Memory Hot Add Increment
memory_hot_add_limit: Memory Hot Add Limit
memory_limit: Memory Limit
memory_mb: RAM
memory_reserve_expand: Memory Reserve Expand
memory_reserve: Memory Reserve
memory_shares_level: Memory Shares Level
memory_shares: Memory Shares
memory_size: Memory Usage
message: Message
metadata: Metadata
metering_allocated_cpu_cores_metric: Metering Allocated CPU Cores Metric
metering_allocated_cpu_metric: Metering Allocated CPU Metric
metering_allocated_memory_metric: Metering Allocated Memory Metric
metering_used_metric: Metering Used Metric
min_cpu_usage_rate_average: CPU - Min Usage Rate for Collected Intervals (%)
min_cpu_usagemhz_rate_average: CPU - Min Usage for Collected Intervals (MHz)
min_derived_host_count_off: State - Min Number of Hosts Powered Off - Hourly Count / Daily Avg
min_derived_host_count_on: State - Min Number of Hosts Powered On - Hourly Count / Daily Avg
min_derived_host_count_total: Min Derived Host Count Total
min_derived_host_sockets: Min Derived Host Sockets
min_derived_memory_used: Memory - Minimum Aggregate Avg Used for Child VMs for Collected Intervals (MB)
min_derived_storage_free: Disk Space Min Free
min_derived_vm_count_off: State - Min Number of VMs Powered Off - Hourly Count / Daily Avg
min_derived_vm_count_on: State - Min Number of VMs Powered On - Hourly Count / Daily Avg
min_derived_vm_allocated_disk_storage: Min Derived Vm Allocated Disk Storage
min_derived_vm_count_total: Min Derived Vm Count Total
min_derived_vm_numvcpus: Min Derived Vm Numvcpus
min_derived_vm_used_disk_storage: Min Derived Vm Used Disk Storage
min_disk_devicelatency_absolute_average: Min Disk Device Latency Absolute Average
min_disk_kernellatency_absolute_average: Min Disk Kernel Latency Absolute Average
min_disk_queuelatency_absolute_average: Min Disk Queue Latency Absolute Average
min_disk_usage_rate_average: Disk I/O - Min Avg for Collected Intervals (KBps)
min_mem_swapin_absolute_average: Memory - Swap In Min Average
min_mem_swapout_absolute_average: Memory - Swap Out Min Average
min_mem_swapped_absolute_average: Memory - Swapped Min Average
min_mem_swaptarget_absolute_average: Memory - Swap Min Target Average
min_mem_usage_absolute_average: Memory - Min Usage of Allocated for Collected Intervals (%)
min_mem_vmmemctl_absolute_average: Memory - Balloon Min Average
min_mem_vmmemctltarget_absolute_average: Memory - Balloon Target Min Average
min_net_usage_rate_average: Network I/O - Min Avg for Collected Intervals (KBps)
min_stat_container_group_create_rate: Min Stat Container Group Create Rate
min_stat_container_group_delete_rate: Min Stat Container Group Delete Rate
min_stat_container_image_registration_rate: Min Stat Container Image Registration Rate
min_sys_uptime_absolute_latest: Uptime - Minimum Time Between Startups for Collected Intervals (Seconds)
min_trend_value: Min
min_v_derived_storage_used: Disk Space Min Used
miq_event_definition_description: Miq Event Definition Description
miq_group_description: Miq Group Description
miq_policy_description: Miq Policy Description
miq_user_role_name: Miq User Role Name
mode: Type
model: Model
mtime: Mtime
mtu: Mtu
multi_attachment: Multi Attachment
multiplehostaccess: Multiple Host Access
my_zone: My Zone
name: Name
namespace: Namespace
net_usage_rate_average: Network I/O - Avg (KBps)
next_available_vnc_port: Next Available Vnc Port
nfs_other_latency: Usage (NFS) - Time for Other Operations Avg
nfs_other_latency_max: Usage (NFS) - Time for Other Operations Avg Max
nfs_other_latency_min: Usage (NFS) - Time for Other Operations Avg Min
nfs_other_ops: Usage (NFS) - Number of Other Operations per Second
nfs_other_ops_max: Usage (NFS) - Number of Other Operations per Second Max
nfs_other_ops_min: Usage (NFS) - Number of Other Operations per Second Min
nfs_read_data: Usage (NFS) - Bytes Read per Second
nfs_read_data_max: Usage (NFS) - Bytes Read per Second Max
nfs_read_data_min: Usage (NFS) - Bytes Read per Second Min
nfs_read_latency: Usage (NFS) - Time for Reads Avg
nfs_read_latency_max: Usage (NFS) - Time for Reads Avg Max
nfs_read_latency_min: Usage (NFS) - Time for Reads Avg Min
nfs_read_ops: Usage (NFS) - Number of Reads per Second
nfs_read_ops_max: Usage (NFS) - Number of Reads per Second Max
nfs_read_ops_min: Usage (NFS) - Number of Reads per Second Min
nfs_server: NFS Servert
nfs_write_data: Usage (NFS) - Bytes Written per Second
nfs_write_data_max: Usage (NFS) - Bytes Written per Second Max
nfs_write_data_min: Usage (NFS) - Bytes Written per Second Min
nfs_write_latency: Usage (NFS) - Time for Writes Avg
nfs_write_latency_max: Usage (NFS) - Time for Writes Avg Max
nfs_write_latency_min: Usage (NFS) - Time for Writes Avg Min
nfs_write_ops: Usage (NFS) - Number of Writes per Second
nfs_write_ops_max: Usage (NFS) - Number of Writes per Second Max
nfs_write_ops_min: Usage (NFS) - Number of Writes per Second Min
normalized_state: Normalized State
notify_automate: Management Event Raised
notify_email: Email
notify_evm_event: Event on Timeline
notify_snmp: SNMP
num_cpu: Number of CPUs
num_disks: Number of Disks
num_hard_disks: Number of Hard Disks
cpu_sockets: Number of CPUs
object_labels: Object Labels
objects: Objects
operating_system_flavor_name: Operating System Flavor Name
operational_status: Operational Status Code
operational_status_str: Operational Status
orderable: Orderable
orphaned: Orphaned
os_image_name: OS Name
os_priority: Os Priority
other_latency: Usage (Other) - Time for Other Operations Avg
other_latency_max: Usage (Other) - Time for Other Operations Avg Max
other_latency_min: Usage (Other) - Time for Other Operations Avg Min
other_ops: Usage (Other) - Number of Other Operations per Second
other_ops_max: Usage (Other) - Number of Other Operations per Second Max
other_ops_min: Usage (Other) - Number of Other Operations per Second Miin
output_name: Output Name
overall_health_state: Overall Health State
overallocated_mem_pct: Memory - % Overallocated
overallocated_vcpus_pct: CPU - % Overallocated
owned_by_current_ldap_group: In My LDAP Group?
owned_by_current_user: Owned by Me?
owning_ldap_group: LDAP Group
package_name: Package Name
paravirtualization: Paravirtualization
parent_blue_folder_1_name: Folder Name (VMs & Templates) 1
parent_blue_folder_2_name: Folder Name (VMs & Templates) 2
parent_blue_folder_3_name: Folder Name (VMs & Templates) 3
parent_blue_folder_4_name: Folder Name (VMs & Templates) 4
parent_blue_folder_5_name: Folder Name (VMs & Templates) 5
parent_blue_folder_6_name: Folder Name (VMs & Templates) 6
parent_blue_folder_7_name: Folder Name (VMs & Templates) 7
parent_blue_folder_8_name: Folder Name (VMs & Templates) 8
parent_blue_folder_9_name: Folder Name (VMs & Templates) 9
parent_name: Parent Name
parent_type: Parent Type
partitions_aligned: Partitions Aligned
path: Path
percent_cpu: CPU %
percent_memory: Memory %
phase: Phase
pid: PID
platform: Platform
port: Port
port_security_enabled: Port Security Enabled
portal_ip: Portal Ip
ports: Ports
power_state: Power State
power_status: Power Status
powersupply_slot_count: Powersupply Slot Count
previous_state: Previous State
price: Price
privileged: Privileged
process: Process
product_key: Product Key
product_name: Product Name
project: Project
proportional_set_size: Proportional Set Size
prov_type: Prov Type
provider_network_type: Provider Network Type
provider_physical_network: Provider Physical Network
provider_region: Provider Region
provider_services_supported: Provider Services Supported
provision_cost: Provision Cost
provisioned_storage: Total Provisioned Space
public_key: Public Key
publicly_available: Publicly Available
puppet_status: Puppet Status
queue_name: Queue Name
ram_size: RAM Size (MB)
ram_size_in_bytes: Ram Size In Bytes
raw_disk_mappings_supported: Raw Disk Mappings Supported
raw_power_state: Raw Power State
rbd_ceph_monitors: Rbd Ceph Monitors
rbd_image: Rbd Image
rbd_keyring: Rbd Keyring
rbd_pool: Rbd Pool
rbd_rados_user: Rbd Rados User
read_data: Usage (Other) - Bytes Read per Second
read_data_max: Usage (Other) - Bytes Read per Second Max
read_data_min: Usage (Other) - Bytes Read per Second Min
read_latency: Usage (Other) - Time for Reads Avg
read_latency_max: Usage (Other) - Time for Reads Avg Max
read_latency_min: Usage (Other) - Time for Reads Avg Min
read_only: Read Only
read_ops: Usage (Other) - Number of Reads per Second
read_ops_max: Usage (Other) - Number of Reads per Second Max
read_ops_min: Usage (Other) - Number of Reads per Second Min
ready_condition_status: Ready Condition Status
realm: Realm
reason: Reason
reclaim_policy: Reclaim Policy
region: Region
region_description: Region Description
region_number: Region Number
registered: Registered
registered_on: Registered On
release: Release
replicas: Replicas
replicators_count: Replicators Count
request_cpu_cores: Request CPU Cores
request_memory_bytes: Request Memory Bytes
request_state: Request State
request_type_display: Request Type Display
request_type: Request Type
requester_name: Requester Name
resource_group: Resource Group
resource_name: Asset Name
resource_type: Resource Type
resource_version: Resource Version
restart_count: Restart Count
restart_needed: Restart Needed
restart_policy: Restart Policy
result: Result
retired: Retired
retirement_last_warn: Retirement Last Warn
retirement_requester: Retirement Requester
retirement_state: Retirement State
retirement_warn: Retirement Warn
retires_on: Retires On
root_disk_size: Root Disk Size
routes_count: Routes Count
rsc_type: Rsc Type
run_as_non_root: Run As Non Root
run_as_user: Run As User
running_containers_summary: Running Containers Summary
security_protocol: Security Protocol
sequence: Sequence
serial_number: Serial Number
service_account: Service Account
service_name: Service Name
service_names: Service Names
service_tag: Service Tag
service_type: Service Type
services_count: Services Count
session_affinity: Session Affinity
severity: Severity
shared: Shared
signal: Signal
size: Size
smart: Smart
snapshot_size: Snapshot Size
source: Source
source_binary: Source Binary
source_context_dir: Source Context Dir
source_dockerfile: Source Dockerfile
source_git: Source Git
source_secret: Source Secret
source_type: Source Type
sql_spid: Sql Spid
standby_action: Standby Action
start_time: Start Time
started_at: Started At
started_on: Started On
stamped_on: Stamped On
stat_container_group_create_rate: Stat Container Group Create Rate
stat_container_group_delete_rate: Stat Container Group Delete Rate
stat_container_image_registration_rate: Stat Container Image Registration Rate
state: State
state_changed_on: State Changed On
status: Status
status_details: Status Details
status_message: Status Message
status_phase: Status Phase
status_reason: Status Reason
stdout: Stdout
stopped_on: Stopped On
storage_capacity: Storage Capacity
storage_domain_type: Storage Domain Type
storage_name: Storage Name
store_type: Store Type
subdomain: Subdomain
subnet_mask: Subnet Mask
subscription: Subscription
supports_32_bit: Supports 32 Bit
supports_64_bit: Supports 64 Bit
supports_block_storage: Supports Block Storage
supports_cinder_volume_types: Supports Cinder Volume Types
supports_cloud_object_store_container_create: Supports Cloud Object Store Container Create
supports_create_security_group: Supports Create Security Group
supports_hvm: Supports Hvm
supports_paravirtual: Supports Paravirtual
supports_storage_services: Supports Storage Services
supports_volume_availability_zones: Supports Volume Availability Zones
supports_volume_multiattachment: Supports Volume Multiattachment
supports_volume_resizing: Supports Volume Resizing
swap_disk_size: Swap Disk Size
switch_slot_count: Switch Slot Count
switch_uuid: Switch Uuid
system_distribution: System Distribution
system_memory_free: System Memory Free
system_memory_used: System Memory Used
system_swap_free: System Swap Free
system_swap_used: System Swap Used
tag: Tag