1/*
2Copyright (c) 2017 VMware, Inc. All Rights Reserved.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package esx
18
19import "github.com/vmware/govmomi/vim25/types"
20
21// PerfCounter is the default template for the PerformanceManager perfCounter property.
22// Capture method:
23//   govc object.collect -s -dump PerformanceManager:ha-perfmgr perfCounter
24var PerfCounter = []types.PerfCounterInfo{
25	{
26		Key: 0,
27		NameInfo: &types.ElementDescription{
28			Description: types.Description{
29				Label:   "Usage",
30				Summary: "CPU usage as a percentage during the interval",
31			},
32			Key: "usage",
33		},
34		GroupInfo: &types.ElementDescription{
35			Description: types.Description{
36				Label:   "CPU",
37				Summary: "CPU",
38			},
39			Key: "cpu",
40		},
41		UnitInfo: &types.ElementDescription{
42			Description: types.Description{
43				Label:   "%",
44				Summary: "Percentage",
45			},
46			Key: "percent",
47		},
48		RollupType:          "none",
49		StatsType:           "rate",
50		Level:               0,
51		PerDeviceLevel:      0,
52		AssociatedCounterId: []int32{1, 2, 3},
53	},
54	{
55		Key: 1,
56		NameInfo: &types.ElementDescription{
57			Description: types.Description{
58				Label:   "Usage",
59				Summary: "CPU usage as a percentage during the interval",
60			},
61			Key: "usage",
62		},
63		GroupInfo: &types.ElementDescription{
64			Description: types.Description{
65				Label:   "CPU",
66				Summary: "CPU",
67			},
68			Key: "cpu",
69		},
70		UnitInfo: &types.ElementDescription{
71			Description: types.Description{
72				Label:   "%",
73				Summary: "Percentage",
74			},
75			Key: "percent",
76		},
77		RollupType:          "average",
78		StatsType:           "rate",
79		Level:               0,
80		PerDeviceLevel:      0,
81		AssociatedCounterId: nil,
82	},
83	{
84		Key: 2,
85		NameInfo: &types.ElementDescription{
86			Description: types.Description{
87				Label:   "Usage",
88				Summary: "CPU usage as a percentage during the interval",
89			},
90			Key: "usage",
91		},
92		GroupInfo: &types.ElementDescription{
93			Description: types.Description{
94				Label:   "CPU",
95				Summary: "CPU",
96			},
97			Key: "cpu",
98		},
99		UnitInfo: &types.ElementDescription{
100			Description: types.Description{
101				Label:   "%",
102				Summary: "Percentage",
103			},
104			Key: "percent",
105		},
106		RollupType:          "maximum",
107		StatsType:           "rate",
108		Level:               0,
109		PerDeviceLevel:      0,
110		AssociatedCounterId: nil,
111	},
112	{
113		Key: 3,
114		NameInfo: &types.ElementDescription{
115			Description: types.Description{
116				Label:   "Usage",
117				Summary: "CPU usage as a percentage during the interval",
118			},
119			Key: "usage",
120		},
121		GroupInfo: &types.ElementDescription{
122			Description: types.Description{
123				Label:   "CPU",
124				Summary: "CPU",
125			},
126			Key: "cpu",
127		},
128		UnitInfo: &types.ElementDescription{
129			Description: types.Description{
130				Label:   "%",
131				Summary: "Percentage",
132			},
133			Key: "percent",
134		},
135		RollupType:          "minimum",
136		StatsType:           "rate",
137		Level:               0,
138		PerDeviceLevel:      0,
139		AssociatedCounterId: nil,
140	},
141	{
142		Key: 4,
143		NameInfo: &types.ElementDescription{
144			Description: types.Description{
145				Label:   "Usage in MHz",
146				Summary: "CPU usage in megahertz during the interval",
147			},
148			Key: "usagemhz",
149		},
150		GroupInfo: &types.ElementDescription{
151			Description: types.Description{
152				Label:   "CPU",
153				Summary: "CPU",
154			},
155			Key: "cpu",
156		},
157		UnitInfo: &types.ElementDescription{
158			Description: types.Description{
159				Label:   "MHz",
160				Summary: "Megahertz",
161			},
162			Key: "megaHertz",
163		},
164		RollupType:          "none",
165		StatsType:           "rate",
166		Level:               0,
167		PerDeviceLevel:      0,
168		AssociatedCounterId: []int32{5, 6, 7},
169	},
170	{
171		Key: 5,
172		NameInfo: &types.ElementDescription{
173			Description: types.Description{
174				Label:   "Usage in MHz",
175				Summary: "CPU usage in megahertz during the interval",
176			},
177			Key: "usagemhz",
178		},
179		GroupInfo: &types.ElementDescription{
180			Description: types.Description{
181				Label:   "CPU",
182				Summary: "CPU",
183			},
184			Key: "cpu",
185		},
186		UnitInfo: &types.ElementDescription{
187			Description: types.Description{
188				Label:   "MHz",
189				Summary: "Megahertz",
190			},
191			Key: "megaHertz",
192		},
193		RollupType:          "average",
194		StatsType:           "rate",
195		Level:               0,
196		PerDeviceLevel:      0,
197		AssociatedCounterId: nil,
198	},
199	{
200		Key: 6,
201		NameInfo: &types.ElementDescription{
202			Description: types.Description{
203				Label:   "Usage in MHz",
204				Summary: "CPU usage in megahertz during the interval",
205			},
206			Key: "usagemhz",
207		},
208		GroupInfo: &types.ElementDescription{
209			Description: types.Description{
210				Label:   "CPU",
211				Summary: "CPU",
212			},
213			Key: "cpu",
214		},
215		UnitInfo: &types.ElementDescription{
216			Description: types.Description{
217				Label:   "MHz",
218				Summary: "Megahertz",
219			},
220			Key: "megaHertz",
221		},
222		RollupType:          "maximum",
223		StatsType:           "rate",
224		Level:               0,
225		PerDeviceLevel:      0,
226		AssociatedCounterId: nil,
227	},
228	{
229		Key: 7,
230		NameInfo: &types.ElementDescription{
231			Description: types.Description{
232				Label:   "Usage in MHz",
233				Summary: "CPU usage in megahertz during the interval",
234			},
235			Key: "usagemhz",
236		},
237		GroupInfo: &types.ElementDescription{
238			Description: types.Description{
239				Label:   "CPU",
240				Summary: "CPU",
241			},
242			Key: "cpu",
243		},
244		UnitInfo: &types.ElementDescription{
245			Description: types.Description{
246				Label:   "MHz",
247				Summary: "Megahertz",
248			},
249			Key: "megaHertz",
250		},
251		RollupType:          "minimum",
252		StatsType:           "rate",
253		Level:               0,
254		PerDeviceLevel:      0,
255		AssociatedCounterId: nil,
256	},
257	{
258		Key: 8,
259		NameInfo: &types.ElementDescription{
260			Description: types.Description{
261				Label:   "Reserved capacity",
262				Summary: "Total CPU capacity reserved by virtual machines",
263			},
264			Key: "reservedCapacity",
265		},
266		GroupInfo: &types.ElementDescription{
267			Description: types.Description{
268				Label:   "CPU",
269				Summary: "CPU",
270			},
271			Key: "cpu",
272		},
273		UnitInfo: &types.ElementDescription{
274			Description: types.Description{
275				Label:   "MHz",
276				Summary: "Megahertz",
277			},
278			Key: "megaHertz",
279		},
280		RollupType:          "average",
281		StatsType:           "absolute",
282		Level:               0,
283		PerDeviceLevel:      0,
284		AssociatedCounterId: nil,
285	},
286	{
287		Key: 9,
288		NameInfo: &types.ElementDescription{
289			Description: types.Description{
290				Label:   "System",
291				Summary: "Amount of time spent on system processes on each virtual CPU in the virtual machine",
292			},
293			Key: "system",
294		},
295		GroupInfo: &types.ElementDescription{
296			Description: types.Description{
297				Label:   "CPU",
298				Summary: "CPU",
299			},
300			Key: "cpu",
301		},
302		UnitInfo: &types.ElementDescription{
303			Description: types.Description{
304				Label:   "ms",
305				Summary: "Millisecond",
306			},
307			Key: "millisecond",
308		},
309		RollupType:          "summation",
310		StatsType:           "delta",
311		Level:               0,
312		PerDeviceLevel:      0,
313		AssociatedCounterId: nil,
314	},
315	{
316		Key: 10,
317		NameInfo: &types.ElementDescription{
318			Description: types.Description{
319				Label:   "Wait",
320				Summary: "Total CPU time spent in wait state",
321			},
322			Key: "wait",
323		},
324		GroupInfo: &types.ElementDescription{
325			Description: types.Description{
326				Label:   "CPU",
327				Summary: "CPU",
328			},
329			Key: "cpu",
330		},
331		UnitInfo: &types.ElementDescription{
332			Description: types.Description{
333				Label:   "ms",
334				Summary: "Millisecond",
335			},
336			Key: "millisecond",
337		},
338		RollupType:          "summation",
339		StatsType:           "delta",
340		Level:               0,
341		PerDeviceLevel:      0,
342		AssociatedCounterId: nil,
343	},
344	{
345		Key: 11,
346		NameInfo: &types.ElementDescription{
347			Description: types.Description{
348				Label:   "Ready",
349				Summary: "Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval",
350			},
351			Key: "ready",
352		},
353		GroupInfo: &types.ElementDescription{
354			Description: types.Description{
355				Label:   "CPU",
356				Summary: "CPU",
357			},
358			Key: "cpu",
359		},
360		UnitInfo: &types.ElementDescription{
361			Description: types.Description{
362				Label:   "ms",
363				Summary: "Millisecond",
364			},
365			Key: "millisecond",
366		},
367		RollupType:          "summation",
368		StatsType:           "delta",
369		Level:               0,
370		PerDeviceLevel:      0,
371		AssociatedCounterId: nil,
372	},
373	{
374		Key: 12,
375		NameInfo: &types.ElementDescription{
376			Description: types.Description{
377				Label:   "Used",
378				Summary: "Total CPU usage",
379			},
380			Key: "used",
381		},
382		GroupInfo: &types.ElementDescription{
383			Description: types.Description{
384				Label:   "CPU",
385				Summary: "CPU",
386			},
387			Key: "cpu",
388		},
389		UnitInfo: &types.ElementDescription{
390			Description: types.Description{
391				Label:   "ms",
392				Summary: "Millisecond",
393			},
394			Key: "millisecond",
395		},
396		RollupType:          "summation",
397		StatsType:           "delta",
398		Level:               0,
399		PerDeviceLevel:      0,
400		AssociatedCounterId: nil,
401	},
402	{
403		Key: 13,
404		NameInfo: &types.ElementDescription{
405			Description: types.Description{
406				Label:   "Idle",
407				Summary: "Total time that the CPU spent in an idle state",
408			},
409			Key: "idle",
410		},
411		GroupInfo: &types.ElementDescription{
412			Description: types.Description{
413				Label:   "CPU",
414				Summary: "CPU",
415			},
416			Key: "cpu",
417		},
418		UnitInfo: &types.ElementDescription{
419			Description: types.Description{
420				Label:   "ms",
421				Summary: "Millisecond",
422			},
423			Key: "millisecond",
424		},
425		RollupType:          "summation",
426		StatsType:           "delta",
427		Level:               0,
428		PerDeviceLevel:      0,
429		AssociatedCounterId: nil,
430	},
431	{
432		Key: 14,
433		NameInfo: &types.ElementDescription{
434			Description: types.Description{
435				Label:   "Swap wait",
436				Summary: "CPU time spent waiting for swap-in",
437			},
438			Key: "swapwait",
439		},
440		GroupInfo: &types.ElementDescription{
441			Description: types.Description{
442				Label:   "CPU",
443				Summary: "CPU",
444			},
445			Key: "cpu",
446		},
447		UnitInfo: &types.ElementDescription{
448			Description: types.Description{
449				Label:   "ms",
450				Summary: "Millisecond",
451			},
452			Key: "millisecond",
453		},
454		RollupType:          "summation",
455		StatsType:           "delta",
456		Level:               0,
457		PerDeviceLevel:      0,
458		AssociatedCounterId: nil,
459	},
460	{
461		Key: 15,
462		NameInfo: &types.ElementDescription{
463			Description: types.Description{
464				Label:   "Utilization",
465				Summary: "CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading)",
466			},
467			Key: "utilization",
468		},
469		GroupInfo: &types.ElementDescription{
470			Description: types.Description{
471				Label:   "CPU",
472				Summary: "CPU",
473			},
474			Key: "cpu",
475		},
476		UnitInfo: &types.ElementDescription{
477			Description: types.Description{
478				Label:   "%",
479				Summary: "Percentage",
480			},
481			Key: "percent",
482		},
483		RollupType:          "none",
484		StatsType:           "rate",
485		Level:               0,
486		PerDeviceLevel:      0,
487		AssociatedCounterId: []int32{16, 17, 18},
488	},
489	{
490		Key: 16,
491		NameInfo: &types.ElementDescription{
492			Description: types.Description{
493				Label:   "Utilization",
494				Summary: "CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading)",
495			},
496			Key: "utilization",
497		},
498		GroupInfo: &types.ElementDescription{
499			Description: types.Description{
500				Label:   "CPU",
501				Summary: "CPU",
502			},
503			Key: "cpu",
504		},
505		UnitInfo: &types.ElementDescription{
506			Description: types.Description{
507				Label:   "%",
508				Summary: "Percentage",
509			},
510			Key: "percent",
511		},
512		RollupType:          "average",
513		StatsType:           "rate",
514		Level:               0,
515		PerDeviceLevel:      0,
516		AssociatedCounterId: nil,
517	},
518	{
519		Key: 17,
520		NameInfo: &types.ElementDescription{
521			Description: types.Description{
522				Label:   "Utilization",
523				Summary: "CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading)",
524			},
525			Key: "utilization",
526		},
527		GroupInfo: &types.ElementDescription{
528			Description: types.Description{
529				Label:   "CPU",
530				Summary: "CPU",
531			},
532			Key: "cpu",
533		},
534		UnitInfo: &types.ElementDescription{
535			Description: types.Description{
536				Label:   "%",
537				Summary: "Percentage",
538			},
539			Key: "percent",
540		},
541		RollupType:          "maximum",
542		StatsType:           "rate",
543		Level:               0,
544		PerDeviceLevel:      0,
545		AssociatedCounterId: nil,
546	},
547	{
548		Key: 18,
549		NameInfo: &types.ElementDescription{
550			Description: types.Description{
551				Label:   "Utilization",
552				Summary: "CPU utilization as a percentage during the interval (CPU usage and CPU utilization might be different due to power management technologies or hyper-threading)",
553			},
554			Key: "utilization",
555		},
556		GroupInfo: &types.ElementDescription{
557			Description: types.Description{
558				Label:   "CPU",
559				Summary: "CPU",
560			},
561			Key: "cpu",
562		},
563		UnitInfo: &types.ElementDescription{
564			Description: types.Description{
565				Label:   "%",
566				Summary: "Percentage",
567			},
568			Key: "percent",
569		},
570		RollupType:          "minimum",
571		StatsType:           "rate",
572		Level:               0,
573		PerDeviceLevel:      0,
574		AssociatedCounterId: nil,
575	},
576	{
577		Key: 19,
578		NameInfo: &types.ElementDescription{
579			Description: types.Description{
580				Label:   "Core Utilization",
581				Summary: "CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized)",
582			},
583			Key: "coreUtilization",
584		},
585		GroupInfo: &types.ElementDescription{
586			Description: types.Description{
587				Label:   "CPU",
588				Summary: "CPU",
589			},
590			Key: "cpu",
591		},
592		UnitInfo: &types.ElementDescription{
593			Description: types.Description{
594				Label:   "%",
595				Summary: "Percentage",
596			},
597			Key: "percent",
598		},
599		RollupType:          "none",
600		StatsType:           "rate",
601		Level:               0,
602		PerDeviceLevel:      0,
603		AssociatedCounterId: []int32{20, 21, 22},
604	},
605	{
606		Key: 20,
607		NameInfo: &types.ElementDescription{
608			Description: types.Description{
609				Label:   "Core Utilization",
610				Summary: "CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized)",
611			},
612			Key: "coreUtilization",
613		},
614		GroupInfo: &types.ElementDescription{
615			Description: types.Description{
616				Label:   "CPU",
617				Summary: "CPU",
618			},
619			Key: "cpu",
620		},
621		UnitInfo: &types.ElementDescription{
622			Description: types.Description{
623				Label:   "%",
624				Summary: "Percentage",
625			},
626			Key: "percent",
627		},
628		RollupType:          "average",
629		StatsType:           "rate",
630		Level:               0,
631		PerDeviceLevel:      0,
632		AssociatedCounterId: nil,
633	},
634	{
635		Key: 21,
636		NameInfo: &types.ElementDescription{
637			Description: types.Description{
638				Label:   "Core Utilization",
639				Summary: "CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized)",
640			},
641			Key: "coreUtilization",
642		},
643		GroupInfo: &types.ElementDescription{
644			Description: types.Description{
645				Label:   "CPU",
646				Summary: "CPU",
647			},
648			Key: "cpu",
649		},
650		UnitInfo: &types.ElementDescription{
651			Description: types.Description{
652				Label:   "%",
653				Summary: "Percentage",
654			},
655			Key: "percent",
656		},
657		RollupType:          "maximum",
658		StatsType:           "rate",
659		Level:               0,
660		PerDeviceLevel:      0,
661		AssociatedCounterId: nil,
662	},
663	{
664		Key: 22,
665		NameInfo: &types.ElementDescription{
666			Description: types.Description{
667				Label:   "Core Utilization",
668				Summary: "CPU utilization of the corresponding core (if hyper-threading is enabled) as a percentage during the interval (A core is utilized if either or both of its logical CPUs are utilized)",
669			},
670			Key: "coreUtilization",
671		},
672		GroupInfo: &types.ElementDescription{
673			Description: types.Description{
674				Label:   "CPU",
675				Summary: "CPU",
676			},
677			Key: "cpu",
678		},
679		UnitInfo: &types.ElementDescription{
680			Description: types.Description{
681				Label:   "%",
682				Summary: "Percentage",
683			},
684			Key: "percent",
685		},
686		RollupType:          "minimum",
687		StatsType:           "rate",
688		Level:               0,
689		PerDeviceLevel:      0,
690		AssociatedCounterId: nil,
691	},
692	{
693		Key: 23,
694		NameInfo: &types.ElementDescription{
695			Description: types.Description{
696				Label:   "Total capacity",
697				Summary: "Total CPU capacity reserved by and available for virtual machines",
698			},
699			Key: "totalCapacity",
700		},
701		GroupInfo: &types.ElementDescription{
702			Description: types.Description{
703				Label:   "CPU",
704				Summary: "CPU",
705			},
706			Key: "cpu",
707		},
708		UnitInfo: &types.ElementDescription{
709			Description: types.Description{
710				Label:   "MHz",
711				Summary: "Megahertz",
712			},
713			Key: "megaHertz",
714		},
715		RollupType:          "average",
716		StatsType:           "absolute",
717		Level:               0,
718		PerDeviceLevel:      0,
719		AssociatedCounterId: nil,
720	},
721	{
722		Key: 24,
723		NameInfo: &types.ElementDescription{
724			Description: types.Description{
725				Label:   "Latency",
726				Summary: "Percent of time the virtual machine is unable to run because it is contending for access to the physical CPU(s)",
727			},
728			Key: "latency",
729		},
730		GroupInfo: &types.ElementDescription{
731			Description: types.Description{
732				Label:   "CPU",
733				Summary: "CPU",
734			},
735			Key: "cpu",
736		},
737		UnitInfo: &types.ElementDescription{
738			Description: types.Description{
739				Label:   "%",
740				Summary: "Percentage",
741			},
742			Key: "percent",
743		},
744		RollupType:          "average",
745		StatsType:           "rate",
746		Level:               0,
747		PerDeviceLevel:      0,
748		AssociatedCounterId: nil,
749	},
750	{
751		Key: 25,
752		NameInfo: &types.ElementDescription{
753			Description: types.Description{
754				Label:   "Entitlement",
755				Summary: "CPU resources devoted by the ESX scheduler",
756			},
757			Key: "entitlement",
758		},
759		GroupInfo: &types.ElementDescription{
760			Description: types.Description{
761				Label:   "CPU",
762				Summary: "CPU",
763			},
764			Key: "cpu",
765		},
766		UnitInfo: &types.ElementDescription{
767			Description: types.Description{
768				Label:   "MHz",
769				Summary: "Megahertz",
770			},
771			Key: "megaHertz",
772		},
773		RollupType:          "latest",
774		StatsType:           "absolute",
775		Level:               0,
776		PerDeviceLevel:      0,
777		AssociatedCounterId: nil,
778	},
779	{
780		Key: 26,
781		NameInfo: &types.ElementDescription{
782			Description: types.Description{
783				Label:   "Demand",
784				Summary: "The amount of CPU resources a virtual machine would use if there were no CPU contention or CPU limit",
785			},
786			Key: "demand",
787		},
788		GroupInfo: &types.ElementDescription{
789			Description: types.Description{
790				Label:   "CPU",
791				Summary: "CPU",
792			},
793			Key: "cpu",
794		},
795		UnitInfo: &types.ElementDescription{
796			Description: types.Description{
797				Label:   "MHz",
798				Summary: "Megahertz",
799			},
800			Key: "megaHertz",
801		},
802		RollupType:          "average",
803		StatsType:           "absolute",
804		Level:               0,
805		PerDeviceLevel:      0,
806		AssociatedCounterId: nil,
807	},
808	{
809		Key: 27,
810		NameInfo: &types.ElementDescription{
811			Description: types.Description{
812				Label:   "Co-stop",
813				Summary: "Time the virtual machine is ready to run, but is unable to run due to co-scheduling constraints",
814			},
815			Key: "costop",
816		},
817		GroupInfo: &types.ElementDescription{
818			Description: types.Description{
819				Label:   "CPU",
820				Summary: "CPU",
821			},
822			Key: "cpu",
823		},
824		UnitInfo: &types.ElementDescription{
825			Description: types.Description{
826				Label:   "ms",
827				Summary: "Millisecond",
828			},
829			Key: "millisecond",
830		},
831		RollupType:          "summation",
832		StatsType:           "delta",
833		Level:               0,
834		PerDeviceLevel:      0,
835		AssociatedCounterId: nil,
836	},
837	{
838		Key: 28,
839		NameInfo: &types.ElementDescription{
840			Description: types.Description{
841				Label:   "Max limited",
842				Summary: "Time the virtual machine is ready to run, but is not run due to maxing out its CPU limit setting",
843			},
844			Key: "maxlimited",
845		},
846		GroupInfo: &types.ElementDescription{
847			Description: types.Description{
848				Label:   "CPU",
849				Summary: "CPU",
850			},
851			Key: "cpu",
852		},
853		UnitInfo: &types.ElementDescription{
854			Description: types.Description{
855				Label:   "ms",
856				Summary: "Millisecond",
857			},
858			Key: "millisecond",
859		},
860		RollupType:          "summation",
861		StatsType:           "delta",
862		Level:               0,
863		PerDeviceLevel:      0,
864		AssociatedCounterId: nil,
865	},
866	{
867		Key: 29,
868		NameInfo: &types.ElementDescription{
869			Description: types.Description{
870				Label:   "Overlap",
871				Summary: "Time the virtual machine was interrupted to perform system services on behalf of itself or other virtual machines",
872			},
873			Key: "overlap",
874		},
875		GroupInfo: &types.ElementDescription{
876			Description: types.Description{
877				Label:   "CPU",
878				Summary: "CPU",
879			},
880			Key: "cpu",
881		},
882		UnitInfo: &types.ElementDescription{
883			Description: types.Description{
884				Label:   "ms",
885				Summary: "Millisecond",
886			},
887			Key: "millisecond",
888		},
889		RollupType:          "summation",
890		StatsType:           "delta",
891		Level:               0,
892		PerDeviceLevel:      0,
893		AssociatedCounterId: nil,
894	},
895	{
896		Key: 30,
897		NameInfo: &types.ElementDescription{
898			Description: types.Description{
899				Label:   "Run",
900				Summary: "Time the virtual machine is scheduled to run",
901			},
902			Key: "run",
903		},
904		GroupInfo: &types.ElementDescription{
905			Description: types.Description{
906				Label:   "CPU",
907				Summary: "CPU",
908			},
909			Key: "cpu",
910		},
911		UnitInfo: &types.ElementDescription{
912			Description: types.Description{
913				Label:   "ms",
914				Summary: "Millisecond",
915			},
916			Key: "millisecond",
917		},
918		RollupType:          "summation",
919		StatsType:           "delta",
920		Level:               0,
921		PerDeviceLevel:      0,
922		AssociatedCounterId: nil,
923	},
924	{
925		Key: 31,
926		NameInfo: &types.ElementDescription{
927			Description: types.Description{
928				Label:   "Demand-to-entitlement ratio",
929				Summary: "CPU resource entitlement to CPU demand ratio (in percents)",
930			},
931			Key: "demandEntitlementRatio",
932		},
933		GroupInfo: &types.ElementDescription{
934			Description: types.Description{
935				Label:   "CPU",
936				Summary: "CPU",
937			},
938			Key: "cpu",
939		},
940		UnitInfo: &types.ElementDescription{
941			Description: types.Description{
942				Label:   "%",
943				Summary: "Percentage",
944			},
945			Key: "percent",
946		},
947		RollupType:          "latest",
948		StatsType:           "absolute",
949		Level:               0,
950		PerDeviceLevel:      0,
951		AssociatedCounterId: nil,
952	},
953	{
954		Key: 32,
955		NameInfo: &types.ElementDescription{
956			Description: types.Description{
957				Label:   "Readiness",
958				Summary: "Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU",
959			},
960			Key: "readiness",
961		},
962		GroupInfo: &types.ElementDescription{
963			Description: types.Description{
964				Label:   "CPU",
965				Summary: "CPU",
966			},
967			Key: "cpu",
968		},
969		UnitInfo: &types.ElementDescription{
970			Description: types.Description{
971				Label:   "%",
972				Summary: "Percentage",
973			},
974			Key: "percent",
975		},
976		RollupType:          "average",
977		StatsType:           "rate",
978		Level:               0,
979		PerDeviceLevel:      0,
980		AssociatedCounterId: nil,
981	},
982	{
983		Key: 65536,
984		NameInfo: &types.ElementDescription{
985			Description: types.Description{
986				Label:   "Host consumed %",
987				Summary: "Percentage of host physical memory that has been consumed",
988			},
989			Key: "usage",
990		},
991		GroupInfo: &types.ElementDescription{
992			Description: types.Description{
993				Label:   "Memory",
994				Summary: "Memory",
995			},
996			Key: "mem",
997		},
998		UnitInfo: &types.ElementDescription{
999			Description: types.Description{
1000				Label:   "%",
1001				Summary: "Percentage",
1002			},
1003			Key: "percent",
1004		},
1005		RollupType:          "none",
1006		StatsType:           "absolute",
1007		Level:               0,
1008		PerDeviceLevel:      0,
1009		AssociatedCounterId: []int32{65537, 65538, 65539},
1010	},
1011	{
1012		Key: 65537,
1013		NameInfo: &types.ElementDescription{
1014			Description: types.Description{
1015				Label:   "Host consumed %",
1016				Summary: "Percentage of host physical memory that has been consumed",
1017			},
1018			Key: "usage",
1019		},
1020		GroupInfo: &types.ElementDescription{
1021			Description: types.Description{
1022				Label:   "Memory",
1023				Summary: "Memory",
1024			},
1025			Key: "mem",
1026		},
1027		UnitInfo: &types.ElementDescription{
1028			Description: types.Description{
1029				Label:   "%",
1030				Summary: "Percentage",
1031			},
1032			Key: "percent",
1033		},
1034		RollupType:          "average",
1035		StatsType:           "absolute",
1036		Level:               0,
1037		PerDeviceLevel:      0,
1038		AssociatedCounterId: nil,
1039	},
1040	{
1041		Key: 65538,
1042		NameInfo: &types.ElementDescription{
1043			Description: types.Description{
1044				Label:   "Host consumed %",
1045				Summary: "Percentage of host physical memory that has been consumed",
1046			},
1047			Key: "usage",
1048		},
1049		GroupInfo: &types.ElementDescription{
1050			Description: types.Description{
1051				Label:   "Memory",
1052				Summary: "Memory",
1053			},
1054			Key: "mem",
1055		},
1056		UnitInfo: &types.ElementDescription{
1057			Description: types.Description{
1058				Label:   "%",
1059				Summary: "Percentage",
1060			},
1061			Key: "percent",
1062		},
1063		RollupType:          "maximum",
1064		StatsType:           "absolute",
1065		Level:               0,
1066		PerDeviceLevel:      0,
1067		AssociatedCounterId: nil,
1068	},
1069	{
1070		Key: 65539,
1071		NameInfo: &types.ElementDescription{
1072			Description: types.Description{
1073				Label:   "Host consumed %",
1074				Summary: "Percentage of host physical memory that has been consumed",
1075			},
1076			Key: "usage",
1077		},
1078		GroupInfo: &types.ElementDescription{
1079			Description: types.Description{
1080				Label:   "Memory",
1081				Summary: "Memory",
1082			},
1083			Key: "mem",
1084		},
1085		UnitInfo: &types.ElementDescription{
1086			Description: types.Description{
1087				Label:   "%",
1088				Summary: "Percentage",
1089			},
1090			Key: "percent",
1091		},
1092		RollupType:          "minimum",
1093		StatsType:           "absolute",
1094		Level:               0,
1095		PerDeviceLevel:      0,
1096		AssociatedCounterId: nil,
1097	},
1098	{
1099		Key: 65540,
1100		NameInfo: &types.ElementDescription{
1101			Description: types.Description{
1102				Label:   "Granted",
1103				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
1104			},
1105			Key: "granted",
1106		},
1107		GroupInfo: &types.ElementDescription{
1108			Description: types.Description{
1109				Label:   "Memory",
1110				Summary: "Memory",
1111			},
1112			Key: "mem",
1113		},
1114		UnitInfo: &types.ElementDescription{
1115			Description: types.Description{
1116				Label:   "KB",
1117				Summary: "Kilobyte",
1118			},
1119			Key: "kiloBytes",
1120		},
1121		RollupType:          "none",
1122		StatsType:           "absolute",
1123		Level:               0,
1124		PerDeviceLevel:      0,
1125		AssociatedCounterId: []int32{65541, 65542, 65543},
1126	},
1127	{
1128		Key: 65541,
1129		NameInfo: &types.ElementDescription{
1130			Description: types.Description{
1131				Label:   "Granted",
1132				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
1133			},
1134			Key: "granted",
1135		},
1136		GroupInfo: &types.ElementDescription{
1137			Description: types.Description{
1138				Label:   "Memory",
1139				Summary: "Memory",
1140			},
1141			Key: "mem",
1142		},
1143		UnitInfo: &types.ElementDescription{
1144			Description: types.Description{
1145				Label:   "KB",
1146				Summary: "Kilobyte",
1147			},
1148			Key: "kiloBytes",
1149		},
1150		RollupType:          "average",
1151		StatsType:           "absolute",
1152		Level:               0,
1153		PerDeviceLevel:      0,
1154		AssociatedCounterId: nil,
1155	},
1156	{
1157		Key: 65542,
1158		NameInfo: &types.ElementDescription{
1159			Description: types.Description{
1160				Label:   "Granted",
1161				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
1162			},
1163			Key: "granted",
1164		},
1165		GroupInfo: &types.ElementDescription{
1166			Description: types.Description{
1167				Label:   "Memory",
1168				Summary: "Memory",
1169			},
1170			Key: "mem",
1171		},
1172		UnitInfo: &types.ElementDescription{
1173			Description: types.Description{
1174				Label:   "KB",
1175				Summary: "Kilobyte",
1176			},
1177			Key: "kiloBytes",
1178		},
1179		RollupType:          "maximum",
1180		StatsType:           "absolute",
1181		Level:               0,
1182		PerDeviceLevel:      0,
1183		AssociatedCounterId: nil,
1184	},
1185	{
1186		Key: 65543,
1187		NameInfo: &types.ElementDescription{
1188			Description: types.Description{
1189				Label:   "Granted",
1190				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
1191			},
1192			Key: "granted",
1193		},
1194		GroupInfo: &types.ElementDescription{
1195			Description: types.Description{
1196				Label:   "Memory",
1197				Summary: "Memory",
1198			},
1199			Key: "mem",
1200		},
1201		UnitInfo: &types.ElementDescription{
1202			Description: types.Description{
1203				Label:   "KB",
1204				Summary: "Kilobyte",
1205			},
1206			Key: "kiloBytes",
1207		},
1208		RollupType:          "minimum",
1209		StatsType:           "absolute",
1210		Level:               0,
1211		PerDeviceLevel:      0,
1212		AssociatedCounterId: nil,
1213	},
1214	{
1215		Key: 65544,
1216		NameInfo: &types.ElementDescription{
1217			Description: types.Description{
1218				Label:   "Active",
1219				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
1220			},
1221			Key: "active",
1222		},
1223		GroupInfo: &types.ElementDescription{
1224			Description: types.Description{
1225				Label:   "Memory",
1226				Summary: "Memory",
1227			},
1228			Key: "mem",
1229		},
1230		UnitInfo: &types.ElementDescription{
1231			Description: types.Description{
1232				Label:   "KB",
1233				Summary: "Kilobyte",
1234			},
1235			Key: "kiloBytes",
1236		},
1237		RollupType:          "none",
1238		StatsType:           "absolute",
1239		Level:               0,
1240		PerDeviceLevel:      0,
1241		AssociatedCounterId: []int32{65545, 65546, 65547},
1242	},
1243	{
1244		Key: 65545,
1245		NameInfo: &types.ElementDescription{
1246			Description: types.Description{
1247				Label:   "Active",
1248				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
1249			},
1250			Key: "active",
1251		},
1252		GroupInfo: &types.ElementDescription{
1253			Description: types.Description{
1254				Label:   "Memory",
1255				Summary: "Memory",
1256			},
1257			Key: "mem",
1258		},
1259		UnitInfo: &types.ElementDescription{
1260			Description: types.Description{
1261				Label:   "KB",
1262				Summary: "Kilobyte",
1263			},
1264			Key: "kiloBytes",
1265		},
1266		RollupType:          "average",
1267		StatsType:           "absolute",
1268		Level:               0,
1269		PerDeviceLevel:      0,
1270		AssociatedCounterId: nil,
1271	},
1272	{
1273		Key: 65546,
1274		NameInfo: &types.ElementDescription{
1275			Description: types.Description{
1276				Label:   "Active",
1277				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
1278			},
1279			Key: "active",
1280		},
1281		GroupInfo: &types.ElementDescription{
1282			Description: types.Description{
1283				Label:   "Memory",
1284				Summary: "Memory",
1285			},
1286			Key: "mem",
1287		},
1288		UnitInfo: &types.ElementDescription{
1289			Description: types.Description{
1290				Label:   "KB",
1291				Summary: "Kilobyte",
1292			},
1293			Key: "kiloBytes",
1294		},
1295		RollupType:          "maximum",
1296		StatsType:           "absolute",
1297		Level:               0,
1298		PerDeviceLevel:      0,
1299		AssociatedCounterId: nil,
1300	},
1301	{
1302		Key: 65547,
1303		NameInfo: &types.ElementDescription{
1304			Description: types.Description{
1305				Label:   "Active",
1306				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
1307			},
1308			Key: "active",
1309		},
1310		GroupInfo: &types.ElementDescription{
1311			Description: types.Description{
1312				Label:   "Memory",
1313				Summary: "Memory",
1314			},
1315			Key: "mem",
1316		},
1317		UnitInfo: &types.ElementDescription{
1318			Description: types.Description{
1319				Label:   "KB",
1320				Summary: "Kilobyte",
1321			},
1322			Key: "kiloBytes",
1323		},
1324		RollupType:          "minimum",
1325		StatsType:           "absolute",
1326		Level:               0,
1327		PerDeviceLevel:      0,
1328		AssociatedCounterId: nil,
1329	},
1330	{
1331		Key: 65548,
1332		NameInfo: &types.ElementDescription{
1333			Description: types.Description{
1334				Label:   "Shared",
1335				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
1336			},
1337			Key: "shared",
1338		},
1339		GroupInfo: &types.ElementDescription{
1340			Description: types.Description{
1341				Label:   "Memory",
1342				Summary: "Memory",
1343			},
1344			Key: "mem",
1345		},
1346		UnitInfo: &types.ElementDescription{
1347			Description: types.Description{
1348				Label:   "KB",
1349				Summary: "Kilobyte",
1350			},
1351			Key: "kiloBytes",
1352		},
1353		RollupType:          "none",
1354		StatsType:           "absolute",
1355		Level:               0,
1356		PerDeviceLevel:      0,
1357		AssociatedCounterId: []int32{65549, 65550, 65551},
1358	},
1359	{
1360		Key: 65549,
1361		NameInfo: &types.ElementDescription{
1362			Description: types.Description{
1363				Label:   "Shared",
1364				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
1365			},
1366			Key: "shared",
1367		},
1368		GroupInfo: &types.ElementDescription{
1369			Description: types.Description{
1370				Label:   "Memory",
1371				Summary: "Memory",
1372			},
1373			Key: "mem",
1374		},
1375		UnitInfo: &types.ElementDescription{
1376			Description: types.Description{
1377				Label:   "KB",
1378				Summary: "Kilobyte",
1379			},
1380			Key: "kiloBytes",
1381		},
1382		RollupType:          "average",
1383		StatsType:           "absolute",
1384		Level:               0,
1385		PerDeviceLevel:      0,
1386		AssociatedCounterId: nil,
1387	},
1388	{
1389		Key: 65550,
1390		NameInfo: &types.ElementDescription{
1391			Description: types.Description{
1392				Label:   "Shared",
1393				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
1394			},
1395			Key: "shared",
1396		},
1397		GroupInfo: &types.ElementDescription{
1398			Description: types.Description{
1399				Label:   "Memory",
1400				Summary: "Memory",
1401			},
1402			Key: "mem",
1403		},
1404		UnitInfo: &types.ElementDescription{
1405			Description: types.Description{
1406				Label:   "KB",
1407				Summary: "Kilobyte",
1408			},
1409			Key: "kiloBytes",
1410		},
1411		RollupType:          "maximum",
1412		StatsType:           "absolute",
1413		Level:               0,
1414		PerDeviceLevel:      0,
1415		AssociatedCounterId: nil,
1416	},
1417	{
1418		Key: 65551,
1419		NameInfo: &types.ElementDescription{
1420			Description: types.Description{
1421				Label:   "Shared",
1422				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
1423			},
1424			Key: "shared",
1425		},
1426		GroupInfo: &types.ElementDescription{
1427			Description: types.Description{
1428				Label:   "Memory",
1429				Summary: "Memory",
1430			},
1431			Key: "mem",
1432		},
1433		UnitInfo: &types.ElementDescription{
1434			Description: types.Description{
1435				Label:   "KB",
1436				Summary: "Kilobyte",
1437			},
1438			Key: "kiloBytes",
1439		},
1440		RollupType:          "minimum",
1441		StatsType:           "absolute",
1442		Level:               0,
1443		PerDeviceLevel:      0,
1444		AssociatedCounterId: nil,
1445	},
1446	{
1447		Key: 65552,
1448		NameInfo: &types.ElementDescription{
1449			Description: types.Description{
1450				Label:   "Zero pages",
1451				Summary: "Guest physical memory pages whose content is 0x00",
1452			},
1453			Key: "zero",
1454		},
1455		GroupInfo: &types.ElementDescription{
1456			Description: types.Description{
1457				Label:   "Memory",
1458				Summary: "Memory",
1459			},
1460			Key: "mem",
1461		},
1462		UnitInfo: &types.ElementDescription{
1463			Description: types.Description{
1464				Label:   "KB",
1465				Summary: "Kilobyte",
1466			},
1467			Key: "kiloBytes",
1468		},
1469		RollupType:          "none",
1470		StatsType:           "absolute",
1471		Level:               0,
1472		PerDeviceLevel:      0,
1473		AssociatedCounterId: []int32{65553, 65554, 65555},
1474	},
1475	{
1476		Key: 65553,
1477		NameInfo: &types.ElementDescription{
1478			Description: types.Description{
1479				Label:   "Zero pages",
1480				Summary: "Guest physical memory pages whose content is 0x00",
1481			},
1482			Key: "zero",
1483		},
1484		GroupInfo: &types.ElementDescription{
1485			Description: types.Description{
1486				Label:   "Memory",
1487				Summary: "Memory",
1488			},
1489			Key: "mem",
1490		},
1491		UnitInfo: &types.ElementDescription{
1492			Description: types.Description{
1493				Label:   "KB",
1494				Summary: "Kilobyte",
1495			},
1496			Key: "kiloBytes",
1497		},
1498		RollupType:          "average",
1499		StatsType:           "absolute",
1500		Level:               0,
1501		PerDeviceLevel:      0,
1502		AssociatedCounterId: nil,
1503	},
1504	{
1505		Key: 65554,
1506		NameInfo: &types.ElementDescription{
1507			Description: types.Description{
1508				Label:   "Zero pages",
1509				Summary: "Guest physical memory pages whose content is 0x00",
1510			},
1511			Key: "zero",
1512		},
1513		GroupInfo: &types.ElementDescription{
1514			Description: types.Description{
1515				Label:   "Memory",
1516				Summary: "Memory",
1517			},
1518			Key: "mem",
1519		},
1520		UnitInfo: &types.ElementDescription{
1521			Description: types.Description{
1522				Label:   "KB",
1523				Summary: "Kilobyte",
1524			},
1525			Key: "kiloBytes",
1526		},
1527		RollupType:          "maximum",
1528		StatsType:           "absolute",
1529		Level:               0,
1530		PerDeviceLevel:      0,
1531		AssociatedCounterId: nil,
1532	},
1533	{
1534		Key: 65555,
1535		NameInfo: &types.ElementDescription{
1536			Description: types.Description{
1537				Label:   "Zero pages",
1538				Summary: "Guest physical memory pages whose content is 0x00",
1539			},
1540			Key: "zero",
1541		},
1542		GroupInfo: &types.ElementDescription{
1543			Description: types.Description{
1544				Label:   "Memory",
1545				Summary: "Memory",
1546			},
1547			Key: "mem",
1548		},
1549		UnitInfo: &types.ElementDescription{
1550			Description: types.Description{
1551				Label:   "KB",
1552				Summary: "Kilobyte",
1553			},
1554			Key: "kiloBytes",
1555		},
1556		RollupType:          "minimum",
1557		StatsType:           "absolute",
1558		Level:               0,
1559		PerDeviceLevel:      0,
1560		AssociatedCounterId: nil,
1561	},
1562	{
1563		Key: 65556,
1564		NameInfo: &types.ElementDescription{
1565			Description: types.Description{
1566				Label:   "Reservation available",
1567				Summary: "Amount by which reservation can be raised",
1568			},
1569			Key: "unreserved",
1570		},
1571		GroupInfo: &types.ElementDescription{
1572			Description: types.Description{
1573				Label:   "Memory",
1574				Summary: "Memory",
1575			},
1576			Key: "mem",
1577		},
1578		UnitInfo: &types.ElementDescription{
1579			Description: types.Description{
1580				Label:   "KB",
1581				Summary: "Kilobyte",
1582			},
1583			Key: "kiloBytes",
1584		},
1585		RollupType:          "none",
1586		StatsType:           "absolute",
1587		Level:               0,
1588		PerDeviceLevel:      0,
1589		AssociatedCounterId: []int32{65557, 65558, 65559},
1590	},
1591	{
1592		Key: 65557,
1593		NameInfo: &types.ElementDescription{
1594			Description: types.Description{
1595				Label:   "Reservation available",
1596				Summary: "Amount by which reservation can be raised",
1597			},
1598			Key: "unreserved",
1599		},
1600		GroupInfo: &types.ElementDescription{
1601			Description: types.Description{
1602				Label:   "Memory",
1603				Summary: "Memory",
1604			},
1605			Key: "mem",
1606		},
1607		UnitInfo: &types.ElementDescription{
1608			Description: types.Description{
1609				Label:   "KB",
1610				Summary: "Kilobyte",
1611			},
1612			Key: "kiloBytes",
1613		},
1614		RollupType:          "average",
1615		StatsType:           "absolute",
1616		Level:               0,
1617		PerDeviceLevel:      0,
1618		AssociatedCounterId: nil,
1619	},
1620	{
1621		Key: 65558,
1622		NameInfo: &types.ElementDescription{
1623			Description: types.Description{
1624				Label:   "Reservation available",
1625				Summary: "Amount by which reservation can be raised",
1626			},
1627			Key: "unreserved",
1628		},
1629		GroupInfo: &types.ElementDescription{
1630			Description: types.Description{
1631				Label:   "Memory",
1632				Summary: "Memory",
1633			},
1634			Key: "mem",
1635		},
1636		UnitInfo: &types.ElementDescription{
1637			Description: types.Description{
1638				Label:   "KB",
1639				Summary: "Kilobyte",
1640			},
1641			Key: "kiloBytes",
1642		},
1643		RollupType:          "maximum",
1644		StatsType:           "absolute",
1645		Level:               0,
1646		PerDeviceLevel:      0,
1647		AssociatedCounterId: nil,
1648	},
1649	{
1650		Key: 65559,
1651		NameInfo: &types.ElementDescription{
1652			Description: types.Description{
1653				Label:   "Reservation available",
1654				Summary: "Amount by which reservation can be raised",
1655			},
1656			Key: "unreserved",
1657		},
1658		GroupInfo: &types.ElementDescription{
1659			Description: types.Description{
1660				Label:   "Memory",
1661				Summary: "Memory",
1662			},
1663			Key: "mem",
1664		},
1665		UnitInfo: &types.ElementDescription{
1666			Description: types.Description{
1667				Label:   "KB",
1668				Summary: "Kilobyte",
1669			},
1670			Key: "kiloBytes",
1671		},
1672		RollupType:          "minimum",
1673		StatsType:           "absolute",
1674		Level:               0,
1675		PerDeviceLevel:      0,
1676		AssociatedCounterId: nil,
1677	},
1678	{
1679		Key: 65560,
1680		NameInfo: &types.ElementDescription{
1681			Description: types.Description{
1682				Label:   "Swap consumed",
1683				Summary: "Swap storage space consumed",
1684			},
1685			Key: "swapused",
1686		},
1687		GroupInfo: &types.ElementDescription{
1688			Description: types.Description{
1689				Label:   "Memory",
1690				Summary: "Memory",
1691			},
1692			Key: "mem",
1693		},
1694		UnitInfo: &types.ElementDescription{
1695			Description: types.Description{
1696				Label:   "KB",
1697				Summary: "Kilobyte",
1698			},
1699			Key: "kiloBytes",
1700		},
1701		RollupType:          "none",
1702		StatsType:           "absolute",
1703		Level:               0,
1704		PerDeviceLevel:      0,
1705		AssociatedCounterId: []int32{65561, 65562, 65563},
1706	},
1707	{
1708		Key: 65561,
1709		NameInfo: &types.ElementDescription{
1710			Description: types.Description{
1711				Label:   "Swap consumed",
1712				Summary: "Swap storage space consumed",
1713			},
1714			Key: "swapused",
1715		},
1716		GroupInfo: &types.ElementDescription{
1717			Description: types.Description{
1718				Label:   "Memory",
1719				Summary: "Memory",
1720			},
1721			Key: "mem",
1722		},
1723		UnitInfo: &types.ElementDescription{
1724			Description: types.Description{
1725				Label:   "KB",
1726				Summary: "Kilobyte",
1727			},
1728			Key: "kiloBytes",
1729		},
1730		RollupType:          "average",
1731		StatsType:           "absolute",
1732		Level:               0,
1733		PerDeviceLevel:      0,
1734		AssociatedCounterId: nil,
1735	},
1736	{
1737		Key: 65562,
1738		NameInfo: &types.ElementDescription{
1739			Description: types.Description{
1740				Label:   "Swap consumed",
1741				Summary: "Swap storage space consumed",
1742			},
1743			Key: "swapused",
1744		},
1745		GroupInfo: &types.ElementDescription{
1746			Description: types.Description{
1747				Label:   "Memory",
1748				Summary: "Memory",
1749			},
1750			Key: "mem",
1751		},
1752		UnitInfo: &types.ElementDescription{
1753			Description: types.Description{
1754				Label:   "KB",
1755				Summary: "Kilobyte",
1756			},
1757			Key: "kiloBytes",
1758		},
1759		RollupType:          "maximum",
1760		StatsType:           "absolute",
1761		Level:               0,
1762		PerDeviceLevel:      0,
1763		AssociatedCounterId: nil,
1764	},
1765	{
1766		Key: 65563,
1767		NameInfo: &types.ElementDescription{
1768			Description: types.Description{
1769				Label:   "Swap consumed",
1770				Summary: "Swap storage space consumed",
1771			},
1772			Key: "swapused",
1773		},
1774		GroupInfo: &types.ElementDescription{
1775			Description: types.Description{
1776				Label:   "Memory",
1777				Summary: "Memory",
1778			},
1779			Key: "mem",
1780		},
1781		UnitInfo: &types.ElementDescription{
1782			Description: types.Description{
1783				Label:   "KB",
1784				Summary: "Kilobyte",
1785			},
1786			Key: "kiloBytes",
1787		},
1788		RollupType:          "minimum",
1789		StatsType:           "absolute",
1790		Level:               0,
1791		PerDeviceLevel:      0,
1792		AssociatedCounterId: nil,
1793	},
1794	{
1795		Key: 65568,
1796		NameInfo: &types.ElementDescription{
1797			Description: types.Description{
1798				Label:   "Shared common",
1799				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
1800			},
1801			Key: "sharedcommon",
1802		},
1803		GroupInfo: &types.ElementDescription{
1804			Description: types.Description{
1805				Label:   "Memory",
1806				Summary: "Memory",
1807			},
1808			Key: "mem",
1809		},
1810		UnitInfo: &types.ElementDescription{
1811			Description: types.Description{
1812				Label:   "KB",
1813				Summary: "Kilobyte",
1814			},
1815			Key: "kiloBytes",
1816		},
1817		RollupType:          "none",
1818		StatsType:           "absolute",
1819		Level:               0,
1820		PerDeviceLevel:      0,
1821		AssociatedCounterId: []int32{65569, 65570, 65571},
1822	},
1823	{
1824		Key: 65569,
1825		NameInfo: &types.ElementDescription{
1826			Description: types.Description{
1827				Label:   "Shared common",
1828				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
1829			},
1830			Key: "sharedcommon",
1831		},
1832		GroupInfo: &types.ElementDescription{
1833			Description: types.Description{
1834				Label:   "Memory",
1835				Summary: "Memory",
1836			},
1837			Key: "mem",
1838		},
1839		UnitInfo: &types.ElementDescription{
1840			Description: types.Description{
1841				Label:   "KB",
1842				Summary: "Kilobyte",
1843			},
1844			Key: "kiloBytes",
1845		},
1846		RollupType:          "average",
1847		StatsType:           "absolute",
1848		Level:               0,
1849		PerDeviceLevel:      0,
1850		AssociatedCounterId: nil,
1851	},
1852	{
1853		Key: 65570,
1854		NameInfo: &types.ElementDescription{
1855			Description: types.Description{
1856				Label:   "Shared common",
1857				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
1858			},
1859			Key: "sharedcommon",
1860		},
1861		GroupInfo: &types.ElementDescription{
1862			Description: types.Description{
1863				Label:   "Memory",
1864				Summary: "Memory",
1865			},
1866			Key: "mem",
1867		},
1868		UnitInfo: &types.ElementDescription{
1869			Description: types.Description{
1870				Label:   "KB",
1871				Summary: "Kilobyte",
1872			},
1873			Key: "kiloBytes",
1874		},
1875		RollupType:          "maximum",
1876		StatsType:           "absolute",
1877		Level:               0,
1878		PerDeviceLevel:      0,
1879		AssociatedCounterId: nil,
1880	},
1881	{
1882		Key: 65571,
1883		NameInfo: &types.ElementDescription{
1884			Description: types.Description{
1885				Label:   "Shared common",
1886				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
1887			},
1888			Key: "sharedcommon",
1889		},
1890		GroupInfo: &types.ElementDescription{
1891			Description: types.Description{
1892				Label:   "Memory",
1893				Summary: "Memory",
1894			},
1895			Key: "mem",
1896		},
1897		UnitInfo: &types.ElementDescription{
1898			Description: types.Description{
1899				Label:   "KB",
1900				Summary: "Kilobyte",
1901			},
1902			Key: "kiloBytes",
1903		},
1904		RollupType:          "minimum",
1905		StatsType:           "absolute",
1906		Level:               0,
1907		PerDeviceLevel:      0,
1908		AssociatedCounterId: nil,
1909	},
1910	{
1911		Key: 65572,
1912		NameInfo: &types.ElementDescription{
1913			Description: types.Description{
1914				Label:   "Heap",
1915				Summary: "Virtual address space of ESXi that is dedicated to its heap",
1916			},
1917			Key: "heap",
1918		},
1919		GroupInfo: &types.ElementDescription{
1920			Description: types.Description{
1921				Label:   "Memory",
1922				Summary: "Memory",
1923			},
1924			Key: "mem",
1925		},
1926		UnitInfo: &types.ElementDescription{
1927			Description: types.Description{
1928				Label:   "KB",
1929				Summary: "Kilobyte",
1930			},
1931			Key: "kiloBytes",
1932		},
1933		RollupType:          "none",
1934		StatsType:           "absolute",
1935		Level:               0,
1936		PerDeviceLevel:      0,
1937		AssociatedCounterId: []int32{65573, 65574, 65575},
1938	},
1939	{
1940		Key: 65573,
1941		NameInfo: &types.ElementDescription{
1942			Description: types.Description{
1943				Label:   "Heap",
1944				Summary: "Virtual address space of ESXi that is dedicated to its heap",
1945			},
1946			Key: "heap",
1947		},
1948		GroupInfo: &types.ElementDescription{
1949			Description: types.Description{
1950				Label:   "Memory",
1951				Summary: "Memory",
1952			},
1953			Key: "mem",
1954		},
1955		UnitInfo: &types.ElementDescription{
1956			Description: types.Description{
1957				Label:   "KB",
1958				Summary: "Kilobyte",
1959			},
1960			Key: "kiloBytes",
1961		},
1962		RollupType:          "average",
1963		StatsType:           "absolute",
1964		Level:               0,
1965		PerDeviceLevel:      0,
1966		AssociatedCounterId: nil,
1967	},
1968	{
1969		Key: 65574,
1970		NameInfo: &types.ElementDescription{
1971			Description: types.Description{
1972				Label:   "Heap",
1973				Summary: "Virtual address space of ESXi that is dedicated to its heap",
1974			},
1975			Key: "heap",
1976		},
1977		GroupInfo: &types.ElementDescription{
1978			Description: types.Description{
1979				Label:   "Memory",
1980				Summary: "Memory",
1981			},
1982			Key: "mem",
1983		},
1984		UnitInfo: &types.ElementDescription{
1985			Description: types.Description{
1986				Label:   "KB",
1987				Summary: "Kilobyte",
1988			},
1989			Key: "kiloBytes",
1990		},
1991		RollupType:          "maximum",
1992		StatsType:           "absolute",
1993		Level:               0,
1994		PerDeviceLevel:      0,
1995		AssociatedCounterId: nil,
1996	},
1997	{
1998		Key: 65575,
1999		NameInfo: &types.ElementDescription{
2000			Description: types.Description{
2001				Label:   "Heap",
2002				Summary: "Virtual address space of ESXi that is dedicated to its heap",
2003			},
2004			Key: "heap",
2005		},
2006		GroupInfo: &types.ElementDescription{
2007			Description: types.Description{
2008				Label:   "Memory",
2009				Summary: "Memory",
2010			},
2011			Key: "mem",
2012		},
2013		UnitInfo: &types.ElementDescription{
2014			Description: types.Description{
2015				Label:   "KB",
2016				Summary: "Kilobyte",
2017			},
2018			Key: "kiloBytes",
2019		},
2020		RollupType:          "minimum",
2021		StatsType:           "absolute",
2022		Level:               0,
2023		PerDeviceLevel:      0,
2024		AssociatedCounterId: nil,
2025	},
2026	{
2027		Key: 65576,
2028		NameInfo: &types.ElementDescription{
2029			Description: types.Description{
2030				Label:   "Heap free",
2031				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
2032			},
2033			Key: "heapfree",
2034		},
2035		GroupInfo: &types.ElementDescription{
2036			Description: types.Description{
2037				Label:   "Memory",
2038				Summary: "Memory",
2039			},
2040			Key: "mem",
2041		},
2042		UnitInfo: &types.ElementDescription{
2043			Description: types.Description{
2044				Label:   "KB",
2045				Summary: "Kilobyte",
2046			},
2047			Key: "kiloBytes",
2048		},
2049		RollupType:          "none",
2050		StatsType:           "absolute",
2051		Level:               0,
2052		PerDeviceLevel:      0,
2053		AssociatedCounterId: []int32{65577, 65578, 65579},
2054	},
2055	{
2056		Key: 65577,
2057		NameInfo: &types.ElementDescription{
2058			Description: types.Description{
2059				Label:   "Heap free",
2060				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
2061			},
2062			Key: "heapfree",
2063		},
2064		GroupInfo: &types.ElementDescription{
2065			Description: types.Description{
2066				Label:   "Memory",
2067				Summary: "Memory",
2068			},
2069			Key: "mem",
2070		},
2071		UnitInfo: &types.ElementDescription{
2072			Description: types.Description{
2073				Label:   "KB",
2074				Summary: "Kilobyte",
2075			},
2076			Key: "kiloBytes",
2077		},
2078		RollupType:          "average",
2079		StatsType:           "absolute",
2080		Level:               0,
2081		PerDeviceLevel:      0,
2082		AssociatedCounterId: nil,
2083	},
2084	{
2085		Key: 65578,
2086		NameInfo: &types.ElementDescription{
2087			Description: types.Description{
2088				Label:   "Heap free",
2089				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
2090			},
2091			Key: "heapfree",
2092		},
2093		GroupInfo: &types.ElementDescription{
2094			Description: types.Description{
2095				Label:   "Memory",
2096				Summary: "Memory",
2097			},
2098			Key: "mem",
2099		},
2100		UnitInfo: &types.ElementDescription{
2101			Description: types.Description{
2102				Label:   "KB",
2103				Summary: "Kilobyte",
2104			},
2105			Key: "kiloBytes",
2106		},
2107		RollupType:          "maximum",
2108		StatsType:           "absolute",
2109		Level:               0,
2110		PerDeviceLevel:      0,
2111		AssociatedCounterId: nil,
2112	},
2113	{
2114		Key: 65579,
2115		NameInfo: &types.ElementDescription{
2116			Description: types.Description{
2117				Label:   "Heap free",
2118				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
2119			},
2120			Key: "heapfree",
2121		},
2122		GroupInfo: &types.ElementDescription{
2123			Description: types.Description{
2124				Label:   "Memory",
2125				Summary: "Memory",
2126			},
2127			Key: "mem",
2128		},
2129		UnitInfo: &types.ElementDescription{
2130			Description: types.Description{
2131				Label:   "KB",
2132				Summary: "Kilobyte",
2133			},
2134			Key: "kiloBytes",
2135		},
2136		RollupType:          "minimum",
2137		StatsType:           "absolute",
2138		Level:               0,
2139		PerDeviceLevel:      0,
2140		AssociatedCounterId: nil,
2141	},
2142	{
2143		Key: 65580,
2144		NameInfo: &types.ElementDescription{
2145			Description: types.Description{
2146				Label:   "Free state",
2147				Summary: "Current memory availability state of ESXi. Possible values are high, clear, soft, hard, low. The state value determines the techniques used for memory reclamation from virtual machines",
2148			},
2149			Key: "state",
2150		},
2151		GroupInfo: &types.ElementDescription{
2152			Description: types.Description{
2153				Label:   "Memory",
2154				Summary: "Memory",
2155			},
2156			Key: "mem",
2157		},
2158		UnitInfo: &types.ElementDescription{
2159			Description: types.Description{
2160				Label:   "num",
2161				Summary: "Number",
2162			},
2163			Key: "number",
2164		},
2165		RollupType:          "latest",
2166		StatsType:           "absolute",
2167		Level:               0,
2168		PerDeviceLevel:      0,
2169		AssociatedCounterId: nil,
2170	},
2171	{
2172		Key: 65581,
2173		NameInfo: &types.ElementDescription{
2174			Description: types.Description{
2175				Label:   "Ballooned memory",
2176				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
2177			},
2178			Key: "vmmemctl",
2179		},
2180		GroupInfo: &types.ElementDescription{
2181			Description: types.Description{
2182				Label:   "Memory",
2183				Summary: "Memory",
2184			},
2185			Key: "mem",
2186		},
2187		UnitInfo: &types.ElementDescription{
2188			Description: types.Description{
2189				Label:   "KB",
2190				Summary: "Kilobyte",
2191			},
2192			Key: "kiloBytes",
2193		},
2194		RollupType:          "none",
2195		StatsType:           "absolute",
2196		Level:               0,
2197		PerDeviceLevel:      0,
2198		AssociatedCounterId: []int32{65582, 65583, 65584},
2199	},
2200	{
2201		Key: 65582,
2202		NameInfo: &types.ElementDescription{
2203			Description: types.Description{
2204				Label:   "Ballooned memory",
2205				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
2206			},
2207			Key: "vmmemctl",
2208		},
2209		GroupInfo: &types.ElementDescription{
2210			Description: types.Description{
2211				Label:   "Memory",
2212				Summary: "Memory",
2213			},
2214			Key: "mem",
2215		},
2216		UnitInfo: &types.ElementDescription{
2217			Description: types.Description{
2218				Label:   "KB",
2219				Summary: "Kilobyte",
2220			},
2221			Key: "kiloBytes",
2222		},
2223		RollupType:          "average",
2224		StatsType:           "absolute",
2225		Level:               0,
2226		PerDeviceLevel:      0,
2227		AssociatedCounterId: nil,
2228	},
2229	{
2230		Key: 65583,
2231		NameInfo: &types.ElementDescription{
2232			Description: types.Description{
2233				Label:   "Ballooned memory",
2234				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
2235			},
2236			Key: "vmmemctl",
2237		},
2238		GroupInfo: &types.ElementDescription{
2239			Description: types.Description{
2240				Label:   "Memory",
2241				Summary: "Memory",
2242			},
2243			Key: "mem",
2244		},
2245		UnitInfo: &types.ElementDescription{
2246			Description: types.Description{
2247				Label:   "KB",
2248				Summary: "Kilobyte",
2249			},
2250			Key: "kiloBytes",
2251		},
2252		RollupType:          "maximum",
2253		StatsType:           "absolute",
2254		Level:               0,
2255		PerDeviceLevel:      0,
2256		AssociatedCounterId: nil,
2257	},
2258	{
2259		Key: 65584,
2260		NameInfo: &types.ElementDescription{
2261			Description: types.Description{
2262				Label:   "Ballooned memory",
2263				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
2264			},
2265			Key: "vmmemctl",
2266		},
2267		GroupInfo: &types.ElementDescription{
2268			Description: types.Description{
2269				Label:   "Memory",
2270				Summary: "Memory",
2271			},
2272			Key: "mem",
2273		},
2274		UnitInfo: &types.ElementDescription{
2275			Description: types.Description{
2276				Label:   "KB",
2277				Summary: "Kilobyte",
2278			},
2279			Key: "kiloBytes",
2280		},
2281		RollupType:          "minimum",
2282		StatsType:           "absolute",
2283		Level:               0,
2284		PerDeviceLevel:      0,
2285		AssociatedCounterId: nil,
2286	},
2287	{
2288		Key: 65585,
2289		NameInfo: &types.ElementDescription{
2290			Description: types.Description{
2291				Label:   "Overhead consumed",
2292				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
2293			},
2294			Key: "overhead",
2295		},
2296		GroupInfo: &types.ElementDescription{
2297			Description: types.Description{
2298				Label:   "Memory",
2299				Summary: "Memory",
2300			},
2301			Key: "mem",
2302		},
2303		UnitInfo: &types.ElementDescription{
2304			Description: types.Description{
2305				Label:   "KB",
2306				Summary: "Kilobyte",
2307			},
2308			Key: "kiloBytes",
2309		},
2310		RollupType:          "none",
2311		StatsType:           "absolute",
2312		Level:               0,
2313		PerDeviceLevel:      0,
2314		AssociatedCounterId: []int32{65586, 65587, 65588},
2315	},
2316	{
2317		Key: 65586,
2318		NameInfo: &types.ElementDescription{
2319			Description: types.Description{
2320				Label:   "Overhead consumed",
2321				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
2322			},
2323			Key: "overhead",
2324		},
2325		GroupInfo: &types.ElementDescription{
2326			Description: types.Description{
2327				Label:   "Memory",
2328				Summary: "Memory",
2329			},
2330			Key: "mem",
2331		},
2332		UnitInfo: &types.ElementDescription{
2333			Description: types.Description{
2334				Label:   "KB",
2335				Summary: "Kilobyte",
2336			},
2337			Key: "kiloBytes",
2338		},
2339		RollupType:          "average",
2340		StatsType:           "absolute",
2341		Level:               0,
2342		PerDeviceLevel:      0,
2343		AssociatedCounterId: nil,
2344	},
2345	{
2346		Key: 65587,
2347		NameInfo: &types.ElementDescription{
2348			Description: types.Description{
2349				Label:   "Overhead consumed",
2350				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
2351			},
2352			Key: "overhead",
2353		},
2354		GroupInfo: &types.ElementDescription{
2355			Description: types.Description{
2356				Label:   "Memory",
2357				Summary: "Memory",
2358			},
2359			Key: "mem",
2360		},
2361		UnitInfo: &types.ElementDescription{
2362			Description: types.Description{
2363				Label:   "KB",
2364				Summary: "Kilobyte",
2365			},
2366			Key: "kiloBytes",
2367		},
2368		RollupType:          "maximum",
2369		StatsType:           "absolute",
2370		Level:               0,
2371		PerDeviceLevel:      0,
2372		AssociatedCounterId: nil,
2373	},
2374	{
2375		Key: 65588,
2376		NameInfo: &types.ElementDescription{
2377			Description: types.Description{
2378				Label:   "Overhead consumed",
2379				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
2380			},
2381			Key: "overhead",
2382		},
2383		GroupInfo: &types.ElementDescription{
2384			Description: types.Description{
2385				Label:   "Memory",
2386				Summary: "Memory",
2387			},
2388			Key: "mem",
2389		},
2390		UnitInfo: &types.ElementDescription{
2391			Description: types.Description{
2392				Label:   "KB",
2393				Summary: "Kilobyte",
2394			},
2395			Key: "kiloBytes",
2396		},
2397		RollupType:          "minimum",
2398		StatsType:           "absolute",
2399		Level:               0,
2400		PerDeviceLevel:      0,
2401		AssociatedCounterId: nil,
2402	},
2403	{
2404		Key: 65589,
2405		NameInfo: &types.ElementDescription{
2406			Description: types.Description{
2407				Label:   "Reservation consumed",
2408				Summary: "Memory reservation consumed by powered-on virtual machines",
2409			},
2410			Key: "reservedCapacity",
2411		},
2412		GroupInfo: &types.ElementDescription{
2413			Description: types.Description{
2414				Label:   "Memory",
2415				Summary: "Memory",
2416			},
2417			Key: "mem",
2418		},
2419		UnitInfo: &types.ElementDescription{
2420			Description: types.Description{
2421				Label:   "MB",
2422				Summary: "Megabyte",
2423			},
2424			Key: "megaBytes",
2425		},
2426		RollupType:          "average",
2427		StatsType:           "absolute",
2428		Level:               0,
2429		PerDeviceLevel:      0,
2430		AssociatedCounterId: nil,
2431	},
2432	{
2433		Key: 65590,
2434		NameInfo: &types.ElementDescription{
2435			Description: types.Description{
2436				Label:   "Swapped",
2437				Summary: "Amount of guest physical memory that is swapped out to the swap space",
2438			},
2439			Key: "swapped",
2440		},
2441		GroupInfo: &types.ElementDescription{
2442			Description: types.Description{
2443				Label:   "Memory",
2444				Summary: "Memory",
2445			},
2446			Key: "mem",
2447		},
2448		UnitInfo: &types.ElementDescription{
2449			Description: types.Description{
2450				Label:   "KB",
2451				Summary: "Kilobyte",
2452			},
2453			Key: "kiloBytes",
2454		},
2455		RollupType:          "none",
2456		StatsType:           "absolute",
2457		Level:               0,
2458		PerDeviceLevel:      0,
2459		AssociatedCounterId: []int32{65591, 65592, 65593},
2460	},
2461	{
2462		Key: 65591,
2463		NameInfo: &types.ElementDescription{
2464			Description: types.Description{
2465				Label:   "Swapped",
2466				Summary: "Amount of guest physical memory that is swapped out to the swap space",
2467			},
2468			Key: "swapped",
2469		},
2470		GroupInfo: &types.ElementDescription{
2471			Description: types.Description{
2472				Label:   "Memory",
2473				Summary: "Memory",
2474			},
2475			Key: "mem",
2476		},
2477		UnitInfo: &types.ElementDescription{
2478			Description: types.Description{
2479				Label:   "KB",
2480				Summary: "Kilobyte",
2481			},
2482			Key: "kiloBytes",
2483		},
2484		RollupType:          "average",
2485		StatsType:           "absolute",
2486		Level:               0,
2487		PerDeviceLevel:      0,
2488		AssociatedCounterId: nil,
2489	},
2490	{
2491		Key: 65592,
2492		NameInfo: &types.ElementDescription{
2493			Description: types.Description{
2494				Label:   "Swapped",
2495				Summary: "Amount of guest physical memory that is swapped out to the swap space",
2496			},
2497			Key: "swapped",
2498		},
2499		GroupInfo: &types.ElementDescription{
2500			Description: types.Description{
2501				Label:   "Memory",
2502				Summary: "Memory",
2503			},
2504			Key: "mem",
2505		},
2506		UnitInfo: &types.ElementDescription{
2507			Description: types.Description{
2508				Label:   "KB",
2509				Summary: "Kilobyte",
2510			},
2511			Key: "kiloBytes",
2512		},
2513		RollupType:          "maximum",
2514		StatsType:           "absolute",
2515		Level:               0,
2516		PerDeviceLevel:      0,
2517		AssociatedCounterId: nil,
2518	},
2519	{
2520		Key: 65593,
2521		NameInfo: &types.ElementDescription{
2522			Description: types.Description{
2523				Label:   "Swapped",
2524				Summary: "Amount of guest physical memory that is swapped out to the swap space",
2525			},
2526			Key: "swapped",
2527		},
2528		GroupInfo: &types.ElementDescription{
2529			Description: types.Description{
2530				Label:   "Memory",
2531				Summary: "Memory",
2532			},
2533			Key: "mem",
2534		},
2535		UnitInfo: &types.ElementDescription{
2536			Description: types.Description{
2537				Label:   "KB",
2538				Summary: "Kilobyte",
2539			},
2540			Key: "kiloBytes",
2541		},
2542		RollupType:          "minimum",
2543		StatsType:           "absolute",
2544		Level:               0,
2545		PerDeviceLevel:      0,
2546		AssociatedCounterId: nil,
2547	},
2548	{
2549		Key: 65594,
2550		NameInfo: &types.ElementDescription{
2551			Description: types.Description{
2552				Label:   "Swap target",
2553				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
2554			},
2555			Key: "swaptarget",
2556		},
2557		GroupInfo: &types.ElementDescription{
2558			Description: types.Description{
2559				Label:   "Memory",
2560				Summary: "Memory",
2561			},
2562			Key: "mem",
2563		},
2564		UnitInfo: &types.ElementDescription{
2565			Description: types.Description{
2566				Label:   "KB",
2567				Summary: "Kilobyte",
2568			},
2569			Key: "kiloBytes",
2570		},
2571		RollupType:          "none",
2572		StatsType:           "absolute",
2573		Level:               0,
2574		PerDeviceLevel:      0,
2575		AssociatedCounterId: []int32{65595, 65596, 65597},
2576	},
2577	{
2578		Key: 65595,
2579		NameInfo: &types.ElementDescription{
2580			Description: types.Description{
2581				Label:   "Swap target",
2582				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
2583			},
2584			Key: "swaptarget",
2585		},
2586		GroupInfo: &types.ElementDescription{
2587			Description: types.Description{
2588				Label:   "Memory",
2589				Summary: "Memory",
2590			},
2591			Key: "mem",
2592		},
2593		UnitInfo: &types.ElementDescription{
2594			Description: types.Description{
2595				Label:   "KB",
2596				Summary: "Kilobyte",
2597			},
2598			Key: "kiloBytes",
2599		},
2600		RollupType:          "average",
2601		StatsType:           "absolute",
2602		Level:               0,
2603		PerDeviceLevel:      0,
2604		AssociatedCounterId: nil,
2605	},
2606	{
2607		Key: 65596,
2608		NameInfo: &types.ElementDescription{
2609			Description: types.Description{
2610				Label:   "Swap target",
2611				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
2612			},
2613			Key: "swaptarget",
2614		},
2615		GroupInfo: &types.ElementDescription{
2616			Description: types.Description{
2617				Label:   "Memory",
2618				Summary: "Memory",
2619			},
2620			Key: "mem",
2621		},
2622		UnitInfo: &types.ElementDescription{
2623			Description: types.Description{
2624				Label:   "KB",
2625				Summary: "Kilobyte",
2626			},
2627			Key: "kiloBytes",
2628		},
2629		RollupType:          "maximum",
2630		StatsType:           "absolute",
2631		Level:               0,
2632		PerDeviceLevel:      0,
2633		AssociatedCounterId: nil,
2634	},
2635	{
2636		Key: 65597,
2637		NameInfo: &types.ElementDescription{
2638			Description: types.Description{
2639				Label:   "Swap target",
2640				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
2641			},
2642			Key: "swaptarget",
2643		},
2644		GroupInfo: &types.ElementDescription{
2645			Description: types.Description{
2646				Label:   "Memory",
2647				Summary: "Memory",
2648			},
2649			Key: "mem",
2650		},
2651		UnitInfo: &types.ElementDescription{
2652			Description: types.Description{
2653				Label:   "KB",
2654				Summary: "Kilobyte",
2655			},
2656			Key: "kiloBytes",
2657		},
2658		RollupType:          "minimum",
2659		StatsType:           "absolute",
2660		Level:               0,
2661		PerDeviceLevel:      0,
2662		AssociatedCounterId: nil,
2663	},
2664	{
2665		Key: 65598,
2666		NameInfo: &types.ElementDescription{
2667			Description: types.Description{
2668				Label:   "Swap in",
2669				Summary: "Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter",
2670			},
2671			Key: "swapin",
2672		},
2673		GroupInfo: &types.ElementDescription{
2674			Description: types.Description{
2675				Label:   "Memory",
2676				Summary: "Memory",
2677			},
2678			Key: "mem",
2679		},
2680		UnitInfo: &types.ElementDescription{
2681			Description: types.Description{
2682				Label:   "KB",
2683				Summary: "Kilobyte",
2684			},
2685			Key: "kiloBytes",
2686		},
2687		RollupType:          "none",
2688		StatsType:           "absolute",
2689		Level:               0,
2690		PerDeviceLevel:      0,
2691		AssociatedCounterId: []int32{65599, 65600, 65601},
2692	},
2693	{
2694		Key: 65599,
2695		NameInfo: &types.ElementDescription{
2696			Description: types.Description{
2697				Label:   "Swap in",
2698				Summary: "Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter",
2699			},
2700			Key: "swapin",
2701		},
2702		GroupInfo: &types.ElementDescription{
2703			Description: types.Description{
2704				Label:   "Memory",
2705				Summary: "Memory",
2706			},
2707			Key: "mem",
2708		},
2709		UnitInfo: &types.ElementDescription{
2710			Description: types.Description{
2711				Label:   "KB",
2712				Summary: "Kilobyte",
2713			},
2714			Key: "kiloBytes",
2715		},
2716		RollupType:          "average",
2717		StatsType:           "absolute",
2718		Level:               0,
2719		PerDeviceLevel:      0,
2720		AssociatedCounterId: nil,
2721	},
2722	{
2723		Key: 65600,
2724		NameInfo: &types.ElementDescription{
2725			Description: types.Description{
2726				Label:   "Swap in",
2727				Summary: "Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter",
2728			},
2729			Key: "swapin",
2730		},
2731		GroupInfo: &types.ElementDescription{
2732			Description: types.Description{
2733				Label:   "Memory",
2734				Summary: "Memory",
2735			},
2736			Key: "mem",
2737		},
2738		UnitInfo: &types.ElementDescription{
2739			Description: types.Description{
2740				Label:   "KB",
2741				Summary: "Kilobyte",
2742			},
2743			Key: "kiloBytes",
2744		},
2745		RollupType:          "maximum",
2746		StatsType:           "absolute",
2747		Level:               0,
2748		PerDeviceLevel:      0,
2749		AssociatedCounterId: nil,
2750	},
2751	{
2752		Key: 65601,
2753		NameInfo: &types.ElementDescription{
2754			Description: types.Description{
2755				Label:   "Swap in",
2756				Summary: "Amount of guest physical memory that is swapped in from the swap space since the virtual machine has been powered on. This value is less than or equal to the 'Swap out' counter",
2757			},
2758			Key: "swapin",
2759		},
2760		GroupInfo: &types.ElementDescription{
2761			Description: types.Description{
2762				Label:   "Memory",
2763				Summary: "Memory",
2764			},
2765			Key: "mem",
2766		},
2767		UnitInfo: &types.ElementDescription{
2768			Description: types.Description{
2769				Label:   "KB",
2770				Summary: "Kilobyte",
2771			},
2772			Key: "kiloBytes",
2773		},
2774		RollupType:          "minimum",
2775		StatsType:           "absolute",
2776		Level:               0,
2777		PerDeviceLevel:      0,
2778		AssociatedCounterId: nil,
2779	},
2780	{
2781		Key: 65602,
2782		NameInfo: &types.ElementDescription{
2783			Description: types.Description{
2784				Label:   "Swap out",
2785				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
2786			},
2787			Key: "swapout",
2788		},
2789		GroupInfo: &types.ElementDescription{
2790			Description: types.Description{
2791				Label:   "Memory",
2792				Summary: "Memory",
2793			},
2794			Key: "mem",
2795		},
2796		UnitInfo: &types.ElementDescription{
2797			Description: types.Description{
2798				Label:   "KB",
2799				Summary: "Kilobyte",
2800			},
2801			Key: "kiloBytes",
2802		},
2803		RollupType:          "none",
2804		StatsType:           "absolute",
2805		Level:               0,
2806		PerDeviceLevel:      0,
2807		AssociatedCounterId: []int32{65603, 65604, 65605},
2808	},
2809	{
2810		Key: 65603,
2811		NameInfo: &types.ElementDescription{
2812			Description: types.Description{
2813				Label:   "Swap out",
2814				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
2815			},
2816			Key: "swapout",
2817		},
2818		GroupInfo: &types.ElementDescription{
2819			Description: types.Description{
2820				Label:   "Memory",
2821				Summary: "Memory",
2822			},
2823			Key: "mem",
2824		},
2825		UnitInfo: &types.ElementDescription{
2826			Description: types.Description{
2827				Label:   "KB",
2828				Summary: "Kilobyte",
2829			},
2830			Key: "kiloBytes",
2831		},
2832		RollupType:          "average",
2833		StatsType:           "absolute",
2834		Level:               0,
2835		PerDeviceLevel:      0,
2836		AssociatedCounterId: nil,
2837	},
2838	{
2839		Key: 65604,
2840		NameInfo: &types.ElementDescription{
2841			Description: types.Description{
2842				Label:   "Swap out",
2843				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
2844			},
2845			Key: "swapout",
2846		},
2847		GroupInfo: &types.ElementDescription{
2848			Description: types.Description{
2849				Label:   "Memory",
2850				Summary: "Memory",
2851			},
2852			Key: "mem",
2853		},
2854		UnitInfo: &types.ElementDescription{
2855			Description: types.Description{
2856				Label:   "KB",
2857				Summary: "Kilobyte",
2858			},
2859			Key: "kiloBytes",
2860		},
2861		RollupType:          "maximum",
2862		StatsType:           "absolute",
2863		Level:               0,
2864		PerDeviceLevel:      0,
2865		AssociatedCounterId: nil,
2866	},
2867	{
2868		Key: 65605,
2869		NameInfo: &types.ElementDescription{
2870			Description: types.Description{
2871				Label:   "Swap out",
2872				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
2873			},
2874			Key: "swapout",
2875		},
2876		GroupInfo: &types.ElementDescription{
2877			Description: types.Description{
2878				Label:   "Memory",
2879				Summary: "Memory",
2880			},
2881			Key: "mem",
2882		},
2883		UnitInfo: &types.ElementDescription{
2884			Description: types.Description{
2885				Label:   "KB",
2886				Summary: "Kilobyte",
2887			},
2888			Key: "kiloBytes",
2889		},
2890		RollupType:          "minimum",
2891		StatsType:           "absolute",
2892		Level:               0,
2893		PerDeviceLevel:      0,
2894		AssociatedCounterId: nil,
2895	},
2896	{
2897		Key: 65606,
2898		NameInfo: &types.ElementDescription{
2899			Description: types.Description{
2900				Label:   "Balloon target",
2901				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
2902			},
2903			Key: "vmmemctltarget",
2904		},
2905		GroupInfo: &types.ElementDescription{
2906			Description: types.Description{
2907				Label:   "Memory",
2908				Summary: "Memory",
2909			},
2910			Key: "mem",
2911		},
2912		UnitInfo: &types.ElementDescription{
2913			Description: types.Description{
2914				Label:   "KB",
2915				Summary: "Kilobyte",
2916			},
2917			Key: "kiloBytes",
2918		},
2919		RollupType:          "none",
2920		StatsType:           "absolute",
2921		Level:               0,
2922		PerDeviceLevel:      0,
2923		AssociatedCounterId: []int32{65607, 65608, 65609},
2924	},
2925	{
2926		Key: 65607,
2927		NameInfo: &types.ElementDescription{
2928			Description: types.Description{
2929				Label:   "Balloon target",
2930				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
2931			},
2932			Key: "vmmemctltarget",
2933		},
2934		GroupInfo: &types.ElementDescription{
2935			Description: types.Description{
2936				Label:   "Memory",
2937				Summary: "Memory",
2938			},
2939			Key: "mem",
2940		},
2941		UnitInfo: &types.ElementDescription{
2942			Description: types.Description{
2943				Label:   "KB",
2944				Summary: "Kilobyte",
2945			},
2946			Key: "kiloBytes",
2947		},
2948		RollupType:          "average",
2949		StatsType:           "absolute",
2950		Level:               0,
2951		PerDeviceLevel:      0,
2952		AssociatedCounterId: nil,
2953	},
2954	{
2955		Key: 65608,
2956		NameInfo: &types.ElementDescription{
2957			Description: types.Description{
2958				Label:   "Balloon target",
2959				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
2960			},
2961			Key: "vmmemctltarget",
2962		},
2963		GroupInfo: &types.ElementDescription{
2964			Description: types.Description{
2965				Label:   "Memory",
2966				Summary: "Memory",
2967			},
2968			Key: "mem",
2969		},
2970		UnitInfo: &types.ElementDescription{
2971			Description: types.Description{
2972				Label:   "KB",
2973				Summary: "Kilobyte",
2974			},
2975			Key: "kiloBytes",
2976		},
2977		RollupType:          "maximum",
2978		StatsType:           "absolute",
2979		Level:               0,
2980		PerDeviceLevel:      0,
2981		AssociatedCounterId: nil,
2982	},
2983	{
2984		Key: 65609,
2985		NameInfo: &types.ElementDescription{
2986			Description: types.Description{
2987				Label:   "Balloon target",
2988				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
2989			},
2990			Key: "vmmemctltarget",
2991		},
2992		GroupInfo: &types.ElementDescription{
2993			Description: types.Description{
2994				Label:   "Memory",
2995				Summary: "Memory",
2996			},
2997			Key: "mem",
2998		},
2999		UnitInfo: &types.ElementDescription{
3000			Description: types.Description{
3001				Label:   "KB",
3002				Summary: "Kilobyte",
3003			},
3004			Key: "kiloBytes",
3005		},
3006		RollupType:          "minimum",
3007		StatsType:           "absolute",
3008		Level:               0,
3009		PerDeviceLevel:      0,
3010		AssociatedCounterId: nil,
3011	},
3012	{
3013		Key: 65610,
3014		NameInfo: &types.ElementDescription{
3015			Description: types.Description{
3016				Label:   "Consumed",
3017				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
3018			},
3019			Key: "consumed",
3020		},
3021		GroupInfo: &types.ElementDescription{
3022			Description: types.Description{
3023				Label:   "Memory",
3024				Summary: "Memory",
3025			},
3026			Key: "mem",
3027		},
3028		UnitInfo: &types.ElementDescription{
3029			Description: types.Description{
3030				Label:   "KB",
3031				Summary: "Kilobyte",
3032			},
3033			Key: "kiloBytes",
3034		},
3035		RollupType:          "none",
3036		StatsType:           "absolute",
3037		Level:               0,
3038		PerDeviceLevel:      0,
3039		AssociatedCounterId: []int32{65611, 65612, 65613},
3040	},
3041	{
3042		Key: 65611,
3043		NameInfo: &types.ElementDescription{
3044			Description: types.Description{
3045				Label:   "Consumed",
3046				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
3047			},
3048			Key: "consumed",
3049		},
3050		GroupInfo: &types.ElementDescription{
3051			Description: types.Description{
3052				Label:   "Memory",
3053				Summary: "Memory",
3054			},
3055			Key: "mem",
3056		},
3057		UnitInfo: &types.ElementDescription{
3058			Description: types.Description{
3059				Label:   "KB",
3060				Summary: "Kilobyte",
3061			},
3062			Key: "kiloBytes",
3063		},
3064		RollupType:          "average",
3065		StatsType:           "absolute",
3066		Level:               0,
3067		PerDeviceLevel:      0,
3068		AssociatedCounterId: nil,
3069	},
3070	{
3071		Key: 65612,
3072		NameInfo: &types.ElementDescription{
3073			Description: types.Description{
3074				Label:   "Consumed",
3075				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
3076			},
3077			Key: "consumed",
3078		},
3079		GroupInfo: &types.ElementDescription{
3080			Description: types.Description{
3081				Label:   "Memory",
3082				Summary: "Memory",
3083			},
3084			Key: "mem",
3085		},
3086		UnitInfo: &types.ElementDescription{
3087			Description: types.Description{
3088				Label:   "KB",
3089				Summary: "Kilobyte",
3090			},
3091			Key: "kiloBytes",
3092		},
3093		RollupType:          "maximum",
3094		StatsType:           "absolute",
3095		Level:               0,
3096		PerDeviceLevel:      0,
3097		AssociatedCounterId: nil,
3098	},
3099	{
3100		Key: 65613,
3101		NameInfo: &types.ElementDescription{
3102			Description: types.Description{
3103				Label:   "Consumed",
3104				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
3105			},
3106			Key: "consumed",
3107		},
3108		GroupInfo: &types.ElementDescription{
3109			Description: types.Description{
3110				Label:   "Memory",
3111				Summary: "Memory",
3112			},
3113			Key: "mem",
3114		},
3115		UnitInfo: &types.ElementDescription{
3116			Description: types.Description{
3117				Label:   "KB",
3118				Summary: "Kilobyte",
3119			},
3120			Key: "kiloBytes",
3121		},
3122		RollupType:          "minimum",
3123		StatsType:           "absolute",
3124		Level:               0,
3125		PerDeviceLevel:      0,
3126		AssociatedCounterId: nil,
3127	},
3128	{
3129		Key: 65614,
3130		NameInfo: &types.ElementDescription{
3131			Description: types.Description{
3132				Label:   "VMkernel consumed",
3133				Summary: "Amount of host physical memory consumed by VMkernel",
3134			},
3135			Key: "sysUsage",
3136		},
3137		GroupInfo: &types.ElementDescription{
3138			Description: types.Description{
3139				Label:   "Memory",
3140				Summary: "Memory",
3141			},
3142			Key: "mem",
3143		},
3144		UnitInfo: &types.ElementDescription{
3145			Description: types.Description{
3146				Label:   "KB",
3147				Summary: "Kilobyte",
3148			},
3149			Key: "kiloBytes",
3150		},
3151		RollupType:          "none",
3152		StatsType:           "absolute",
3153		Level:               0,
3154		PerDeviceLevel:      0,
3155		AssociatedCounterId: []int32{65615, 65616, 65617},
3156	},
3157	{
3158		Key: 65615,
3159		NameInfo: &types.ElementDescription{
3160			Description: types.Description{
3161				Label:   "VMkernel consumed",
3162				Summary: "Amount of host physical memory consumed by VMkernel",
3163			},
3164			Key: "sysUsage",
3165		},
3166		GroupInfo: &types.ElementDescription{
3167			Description: types.Description{
3168				Label:   "Memory",
3169				Summary: "Memory",
3170			},
3171			Key: "mem",
3172		},
3173		UnitInfo: &types.ElementDescription{
3174			Description: types.Description{
3175				Label:   "KB",
3176				Summary: "Kilobyte",
3177			},
3178			Key: "kiloBytes",
3179		},
3180		RollupType:          "average",
3181		StatsType:           "absolute",
3182		Level:               0,
3183		PerDeviceLevel:      0,
3184		AssociatedCounterId: nil,
3185	},
3186	{
3187		Key: 65616,
3188		NameInfo: &types.ElementDescription{
3189			Description: types.Description{
3190				Label:   "VMkernel consumed",
3191				Summary: "Amount of host physical memory consumed by VMkernel",
3192			},
3193			Key: "sysUsage",
3194		},
3195		GroupInfo: &types.ElementDescription{
3196			Description: types.Description{
3197				Label:   "Memory",
3198				Summary: "Memory",
3199			},
3200			Key: "mem",
3201		},
3202		UnitInfo: &types.ElementDescription{
3203			Description: types.Description{
3204				Label:   "KB",
3205				Summary: "Kilobyte",
3206			},
3207			Key: "kiloBytes",
3208		},
3209		RollupType:          "maximum",
3210		StatsType:           "absolute",
3211		Level:               0,
3212		PerDeviceLevel:      0,
3213		AssociatedCounterId: nil,
3214	},
3215	{
3216		Key: 65617,
3217		NameInfo: &types.ElementDescription{
3218			Description: types.Description{
3219				Label:   "VMkernel consumed",
3220				Summary: "Amount of host physical memory consumed by VMkernel",
3221			},
3222			Key: "sysUsage",
3223		},
3224		GroupInfo: &types.ElementDescription{
3225			Description: types.Description{
3226				Label:   "Memory",
3227				Summary: "Memory",
3228			},
3229			Key: "mem",
3230		},
3231		UnitInfo: &types.ElementDescription{
3232			Description: types.Description{
3233				Label:   "KB",
3234				Summary: "Kilobyte",
3235			},
3236			Key: "kiloBytes",
3237		},
3238		RollupType:          "minimum",
3239		StatsType:           "absolute",
3240		Level:               0,
3241		PerDeviceLevel:      0,
3242		AssociatedCounterId: nil,
3243	},
3244	{
3245		Key: 65618,
3246		NameInfo: &types.ElementDescription{
3247			Description: types.Description{
3248				Label:   "Swap in rate",
3249				Summary: "Rate at which guest physical memory is swapped in from the swap space",
3250			},
3251			Key: "swapinRate",
3252		},
3253		GroupInfo: &types.ElementDescription{
3254			Description: types.Description{
3255				Label:   "Memory",
3256				Summary: "Memory",
3257			},
3258			Key: "mem",
3259		},
3260		UnitInfo: &types.ElementDescription{
3261			Description: types.Description{
3262				Label:   "KBps",
3263				Summary: "Kilobytes per second",
3264			},
3265			Key: "kiloBytesPerSecond",
3266		},
3267		RollupType:          "average",
3268		StatsType:           "rate",
3269		Level:               0,
3270		PerDeviceLevel:      0,
3271		AssociatedCounterId: nil,
3272	},
3273	{
3274		Key: 65619,
3275		NameInfo: &types.ElementDescription{
3276			Description: types.Description{
3277				Label:   "Swap out rate",
3278				Summary: "Rate at which guest physical memory is swapped out to the swap space",
3279			},
3280			Key: "swapoutRate",
3281		},
3282		GroupInfo: &types.ElementDescription{
3283			Description: types.Description{
3284				Label:   "Memory",
3285				Summary: "Memory",
3286			},
3287			Key: "mem",
3288		},
3289		UnitInfo: &types.ElementDescription{
3290			Description: types.Description{
3291				Label:   "KBps",
3292				Summary: "Kilobytes per second",
3293			},
3294			Key: "kiloBytesPerSecond",
3295		},
3296		RollupType:          "average",
3297		StatsType:           "rate",
3298		Level:               0,
3299		PerDeviceLevel:      0,
3300		AssociatedCounterId: nil,
3301	},
3302	{
3303		Key: 65620,
3304		NameInfo: &types.ElementDescription{
3305			Description: types.Description{
3306				Label:   "Active write",
3307				Summary: "Amount of guest physical memory that is being actively written by guest. Activeness is estimated by ESXi",
3308			},
3309			Key: "activewrite",
3310		},
3311		GroupInfo: &types.ElementDescription{
3312			Description: types.Description{
3313				Label:   "Memory",
3314				Summary: "Memory",
3315			},
3316			Key: "mem",
3317		},
3318		UnitInfo: &types.ElementDescription{
3319			Description: types.Description{
3320				Label:   "KB",
3321				Summary: "Kilobyte",
3322			},
3323			Key: "kiloBytes",
3324		},
3325		RollupType:          "average",
3326		StatsType:           "absolute",
3327		Level:               0,
3328		PerDeviceLevel:      0,
3329		AssociatedCounterId: nil,
3330	},
3331	{
3332		Key: 65621,
3333		NameInfo: &types.ElementDescription{
3334			Description: types.Description{
3335				Label:   "Compressed",
3336				Summary: "Guest physical memory pages that have undergone memory compression",
3337			},
3338			Key: "compressed",
3339		},
3340		GroupInfo: &types.ElementDescription{
3341			Description: types.Description{
3342				Label:   "Memory",
3343				Summary: "Memory",
3344			},
3345			Key: "mem",
3346		},
3347		UnitInfo: &types.ElementDescription{
3348			Description: types.Description{
3349				Label:   "KB",
3350				Summary: "Kilobyte",
3351			},
3352			Key: "kiloBytes",
3353		},
3354		RollupType:          "average",
3355		StatsType:           "absolute",
3356		Level:               0,
3357		PerDeviceLevel:      0,
3358		AssociatedCounterId: nil,
3359	},
3360	{
3361		Key: 65622,
3362		NameInfo: &types.ElementDescription{
3363			Description: types.Description{
3364				Label:   "Compression rate",
3365				Summary: "Rate of guest physical memory page compression by ESXi",
3366			},
3367			Key: "compressionRate",
3368		},
3369		GroupInfo: &types.ElementDescription{
3370			Description: types.Description{
3371				Label:   "Memory",
3372				Summary: "Memory",
3373			},
3374			Key: "mem",
3375		},
3376		UnitInfo: &types.ElementDescription{
3377			Description: types.Description{
3378				Label:   "KBps",
3379				Summary: "Kilobytes per second",
3380			},
3381			Key: "kiloBytesPerSecond",
3382		},
3383		RollupType:          "average",
3384		StatsType:           "rate",
3385		Level:               0,
3386		PerDeviceLevel:      0,
3387		AssociatedCounterId: nil,
3388	},
3389	{
3390		Key: 65623,
3391		NameInfo: &types.ElementDescription{
3392			Description: types.Description{
3393				Label:   "Decompression rate",
3394				Summary: "Rate of guest physical memory decompression",
3395			},
3396			Key: "decompressionRate",
3397		},
3398		GroupInfo: &types.ElementDescription{
3399			Description: types.Description{
3400				Label:   "Memory",
3401				Summary: "Memory",
3402			},
3403			Key: "mem",
3404		},
3405		UnitInfo: &types.ElementDescription{
3406			Description: types.Description{
3407				Label:   "KBps",
3408				Summary: "Kilobytes per second",
3409			},
3410			Key: "kiloBytesPerSecond",
3411		},
3412		RollupType:          "average",
3413		StatsType:           "rate",
3414		Level:               0,
3415		PerDeviceLevel:      0,
3416		AssociatedCounterId: nil,
3417	},
3418	{
3419		Key: 65624,
3420		NameInfo: &types.ElementDescription{
3421			Description: types.Description{
3422				Label:   "Overhead reserved",
3423				Summary: "Host physical memory reserved by ESXi, for its data structures, for running the virtual machine",
3424			},
3425			Key: "overheadMax",
3426		},
3427		GroupInfo: &types.ElementDescription{
3428			Description: types.Description{
3429				Label:   "Memory",
3430				Summary: "Memory",
3431			},
3432			Key: "mem",
3433		},
3434		UnitInfo: &types.ElementDescription{
3435			Description: types.Description{
3436				Label:   "KB",
3437				Summary: "Kilobyte",
3438			},
3439			Key: "kiloBytes",
3440		},
3441		RollupType:          "average",
3442		StatsType:           "absolute",
3443		Level:               0,
3444		PerDeviceLevel:      0,
3445		AssociatedCounterId: nil,
3446	},
3447	{
3448		Key: 65625,
3449		NameInfo: &types.ElementDescription{
3450			Description: types.Description{
3451				Label:   "Total reservation",
3452				Summary: "Total reservation, available and consumed, for powered-on virtual machines",
3453			},
3454			Key: "totalCapacity",
3455		},
3456		GroupInfo: &types.ElementDescription{
3457			Description: types.Description{
3458				Label:   "Memory",
3459				Summary: "Memory",
3460			},
3461			Key: "mem",
3462		},
3463		UnitInfo: &types.ElementDescription{
3464			Description: types.Description{
3465				Label:   "MB",
3466				Summary: "Megabyte",
3467			},
3468			Key: "megaBytes",
3469		},
3470		RollupType:          "average",
3471		StatsType:           "absolute",
3472		Level:               0,
3473		PerDeviceLevel:      0,
3474		AssociatedCounterId: nil,
3475	},
3476	{
3477		Key: 65626,
3478		NameInfo: &types.ElementDescription{
3479			Description: types.Description{
3480				Label:   "Compressed",
3481				Summary: "Amount of guest physical memory pages compressed by ESXi",
3482			},
3483			Key: "zipped",
3484		},
3485		GroupInfo: &types.ElementDescription{
3486			Description: types.Description{
3487				Label:   "Memory",
3488				Summary: "Memory",
3489			},
3490			Key: "mem",
3491		},
3492		UnitInfo: &types.ElementDescription{
3493			Description: types.Description{
3494				Label:   "KB",
3495				Summary: "Kilobyte",
3496			},
3497			Key: "kiloBytes",
3498		},
3499		RollupType:          "latest",
3500		StatsType:           "absolute",
3501		Level:               0,
3502		PerDeviceLevel:      0,
3503		AssociatedCounterId: nil,
3504	},
3505	{
3506		Key: 65627,
3507		NameInfo: &types.ElementDescription{
3508			Description: types.Description{
3509				Label:   "Compression saved",
3510				Summary: "Host physical memory, reclaimed from a virtual machine, by memory compression. This value is less than the value of 'Compressed' memory",
3511			},
3512			Key: "zipSaved",
3513		},
3514		GroupInfo: &types.ElementDescription{
3515			Description: types.Description{
3516				Label:   "Memory",
3517				Summary: "Memory",
3518			},
3519			Key: "mem",
3520		},
3521		UnitInfo: &types.ElementDescription{
3522			Description: types.Description{
3523				Label:   "KB",
3524				Summary: "Kilobyte",
3525			},
3526			Key: "kiloBytes",
3527		},
3528		RollupType:          "latest",
3529		StatsType:           "absolute",
3530		Level:               0,
3531		PerDeviceLevel:      0,
3532		AssociatedCounterId: nil,
3533	},
3534	{
3535		Key: 65628,
3536		NameInfo: &types.ElementDescription{
3537			Description: types.Description{
3538				Label:   "Page-fault latency",
3539				Summary: "Percentage of time the virtual machine spent waiting to swap in or decompress guest physical memory",
3540			},
3541			Key: "latency",
3542		},
3543		GroupInfo: &types.ElementDescription{
3544			Description: types.Description{
3545				Label:   "Memory",
3546				Summary: "Memory",
3547			},
3548			Key: "mem",
3549		},
3550		UnitInfo: &types.ElementDescription{
3551			Description: types.Description{
3552				Label:   "%",
3553				Summary: "Percentage",
3554			},
3555			Key: "percent",
3556		},
3557		RollupType:          "average",
3558		StatsType:           "absolute",
3559		Level:               0,
3560		PerDeviceLevel:      0,
3561		AssociatedCounterId: nil,
3562	},
3563	{
3564		Key: 65629,
3565		NameInfo: &types.ElementDescription{
3566			Description: types.Description{
3567				Label:   "Entitlement",
3568				Summary: "Amount of host physical memory the virtual machine deserves, as determined by ESXi",
3569			},
3570			Key: "entitlement",
3571		},
3572		GroupInfo: &types.ElementDescription{
3573			Description: types.Description{
3574				Label:   "Memory",
3575				Summary: "Memory",
3576			},
3577			Key: "mem",
3578		},
3579		UnitInfo: &types.ElementDescription{
3580			Description: types.Description{
3581				Label:   "KB",
3582				Summary: "Kilobyte",
3583			},
3584			Key: "kiloBytes",
3585		},
3586		RollupType:          "average",
3587		StatsType:           "absolute",
3588		Level:               0,
3589		PerDeviceLevel:      0,
3590		AssociatedCounterId: nil,
3591	},
3592	{
3593		Key: 65630,
3594		NameInfo: &types.ElementDescription{
3595			Description: types.Description{
3596				Label:   "Reclamation threshold",
3597				Summary: "Threshold of free host physical memory below which ESXi will begin actively reclaiming memory from virtual machines by swapping, compression and ballooning",
3598			},
3599			Key: "lowfreethreshold",
3600		},
3601		GroupInfo: &types.ElementDescription{
3602			Description: types.Description{
3603				Label:   "Memory",
3604				Summary: "Memory",
3605			},
3606			Key: "mem",
3607		},
3608		UnitInfo: &types.ElementDescription{
3609			Description: types.Description{
3610				Label:   "KB",
3611				Summary: "Kilobyte",
3612			},
3613			Key: "kiloBytes",
3614		},
3615		RollupType:          "average",
3616		StatsType:           "absolute",
3617		Level:               0,
3618		PerDeviceLevel:      0,
3619		AssociatedCounterId: nil,
3620	},
3621	{
3622		Key: 65631,
3623		NameInfo: &types.ElementDescription{
3624			Description: types.Description{
3625				Label:   "Host cache consumed",
3626				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
3627			},
3628			Key: "llSwapUsed",
3629		},
3630		GroupInfo: &types.ElementDescription{
3631			Description: types.Description{
3632				Label:   "Memory",
3633				Summary: "Memory",
3634			},
3635			Key: "mem",
3636		},
3637		UnitInfo: &types.ElementDescription{
3638			Description: types.Description{
3639				Label:   "KB",
3640				Summary: "Kilobyte",
3641			},
3642			Key: "kiloBytes",
3643		},
3644		RollupType:          "none",
3645		StatsType:           "absolute",
3646		Level:               0,
3647		PerDeviceLevel:      0,
3648		AssociatedCounterId: []int32{65635, 65636, 65637},
3649	},
3650	{
3651		Key: 65632,
3652		NameInfo: &types.ElementDescription{
3653			Description: types.Description{
3654				Label:   "Host cache swap in rate",
3655				Summary: "Rate at which guest physical memory is swapped in from the host swap cache",
3656			},
3657			Key: "llSwapInRate",
3658		},
3659		GroupInfo: &types.ElementDescription{
3660			Description: types.Description{
3661				Label:   "Memory",
3662				Summary: "Memory",
3663			},
3664			Key: "mem",
3665		},
3666		UnitInfo: &types.ElementDescription{
3667			Description: types.Description{
3668				Label:   "KBps",
3669				Summary: "Kilobytes per second",
3670			},
3671			Key: "kiloBytesPerSecond",
3672		},
3673		RollupType:          "average",
3674		StatsType:           "rate",
3675		Level:               0,
3676		PerDeviceLevel:      0,
3677		AssociatedCounterId: nil,
3678	},
3679	{
3680		Key: 65633,
3681		NameInfo: &types.ElementDescription{
3682			Description: types.Description{
3683				Label:   "Host cache swap out rate",
3684				Summary: "Rate at which guest physical memory is swapped out to the host swap cache",
3685			},
3686			Key: "llSwapOutRate",
3687		},
3688		GroupInfo: &types.ElementDescription{
3689			Description: types.Description{
3690				Label:   "Memory",
3691				Summary: "Memory",
3692			},
3693			Key: "mem",
3694		},
3695		UnitInfo: &types.ElementDescription{
3696			Description: types.Description{
3697				Label:   "KBps",
3698				Summary: "Kilobytes per second",
3699			},
3700			Key: "kiloBytesPerSecond",
3701		},
3702		RollupType:          "average",
3703		StatsType:           "rate",
3704		Level:               0,
3705		PerDeviceLevel:      0,
3706		AssociatedCounterId: nil,
3707	},
3708	{
3709		Key: 65634,
3710		NameInfo: &types.ElementDescription{
3711			Description: types.Description{
3712				Label:   "Overhead active",
3713				Summary: "Estimate of the host physical memory, from Overhead consumed, that is actively read or written to by ESXi",
3714			},
3715			Key: "overheadTouched",
3716		},
3717		GroupInfo: &types.ElementDescription{
3718			Description: types.Description{
3719				Label:   "Memory",
3720				Summary: "Memory",
3721			},
3722			Key: "mem",
3723		},
3724		UnitInfo: &types.ElementDescription{
3725			Description: types.Description{
3726				Label:   "KB",
3727				Summary: "Kilobyte",
3728			},
3729			Key: "kiloBytes",
3730		},
3731		RollupType:          "average",
3732		StatsType:           "absolute",
3733		Level:               0,
3734		PerDeviceLevel:      0,
3735		AssociatedCounterId: nil,
3736	},
3737	{
3738		Key: 65635,
3739		NameInfo: &types.ElementDescription{
3740			Description: types.Description{
3741				Label:   "Host cache consumed",
3742				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
3743			},
3744			Key: "llSwapUsed",
3745		},
3746		GroupInfo: &types.ElementDescription{
3747			Description: types.Description{
3748				Label:   "Memory",
3749				Summary: "Memory",
3750			},
3751			Key: "mem",
3752		},
3753		UnitInfo: &types.ElementDescription{
3754			Description: types.Description{
3755				Label:   "KB",
3756				Summary: "Kilobyte",
3757			},
3758			Key: "kiloBytes",
3759		},
3760		RollupType:          "average",
3761		StatsType:           "absolute",
3762		Level:               0,
3763		PerDeviceLevel:      0,
3764		AssociatedCounterId: nil,
3765	},
3766	{
3767		Key: 65636,
3768		NameInfo: &types.ElementDescription{
3769			Description: types.Description{
3770				Label:   "Host cache consumed",
3771				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
3772			},
3773			Key: "llSwapUsed",
3774		},
3775		GroupInfo: &types.ElementDescription{
3776			Description: types.Description{
3777				Label:   "Memory",
3778				Summary: "Memory",
3779			},
3780			Key: "mem",
3781		},
3782		UnitInfo: &types.ElementDescription{
3783			Description: types.Description{
3784				Label:   "KB",
3785				Summary: "Kilobyte",
3786			},
3787			Key: "kiloBytes",
3788		},
3789		RollupType:          "maximum",
3790		StatsType:           "absolute",
3791		Level:               0,
3792		PerDeviceLevel:      0,
3793		AssociatedCounterId: nil,
3794	},
3795	{
3796		Key: 65637,
3797		NameInfo: &types.ElementDescription{
3798			Description: types.Description{
3799				Label:   "Host cache consumed",
3800				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
3801			},
3802			Key: "llSwapUsed",
3803		},
3804		GroupInfo: &types.ElementDescription{
3805			Description: types.Description{
3806				Label:   "Memory",
3807				Summary: "Memory",
3808			},
3809			Key: "mem",
3810		},
3811		UnitInfo: &types.ElementDescription{
3812			Description: types.Description{
3813				Label:   "KB",
3814				Summary: "Kilobyte",
3815			},
3816			Key: "kiloBytes",
3817		},
3818		RollupType:          "minimum",
3819		StatsType:           "absolute",
3820		Level:               0,
3821		PerDeviceLevel:      0,
3822		AssociatedCounterId: nil,
3823	},
3824	{
3825		Key: 65638,
3826		NameInfo: &types.ElementDescription{
3827			Description: types.Description{
3828				Label:   "Host cache swap in",
3829				Summary: "Amount of guest physical memory swapped in from host cache",
3830			},
3831			Key: "llSwapIn",
3832		},
3833		GroupInfo: &types.ElementDescription{
3834			Description: types.Description{
3835				Label:   "Memory",
3836				Summary: "Memory",
3837			},
3838			Key: "mem",
3839		},
3840		UnitInfo: &types.ElementDescription{
3841			Description: types.Description{
3842				Label:   "KB",
3843				Summary: "Kilobyte",
3844			},
3845			Key: "kiloBytes",
3846		},
3847		RollupType:          "none",
3848		StatsType:           "absolute",
3849		Level:               0,
3850		PerDeviceLevel:      0,
3851		AssociatedCounterId: []int32{65639, 65640, 65641},
3852	},
3853	{
3854		Key: 65639,
3855		NameInfo: &types.ElementDescription{
3856			Description: types.Description{
3857				Label:   "Host cache swap in",
3858				Summary: "Amount of guest physical memory swapped in from host cache",
3859			},
3860			Key: "llSwapIn",
3861		},
3862		GroupInfo: &types.ElementDescription{
3863			Description: types.Description{
3864				Label:   "Memory",
3865				Summary: "Memory",
3866			},
3867			Key: "mem",
3868		},
3869		UnitInfo: &types.ElementDescription{
3870			Description: types.Description{
3871				Label:   "KB",
3872				Summary: "Kilobyte",
3873			},
3874			Key: "kiloBytes",
3875		},
3876		RollupType:          "average",
3877		StatsType:           "absolute",
3878		Level:               0,
3879		PerDeviceLevel:      0,
3880		AssociatedCounterId: nil,
3881	},
3882	{
3883		Key: 65640,
3884		NameInfo: &types.ElementDescription{
3885			Description: types.Description{
3886				Label:   "Host cache swap in",
3887				Summary: "Amount of guest physical memory swapped in from host cache",
3888			},
3889			Key: "llSwapIn",
3890		},
3891		GroupInfo: &types.ElementDescription{
3892			Description: types.Description{
3893				Label:   "Memory",
3894				Summary: "Memory",
3895			},
3896			Key: "mem",
3897		},
3898		UnitInfo: &types.ElementDescription{
3899			Description: types.Description{
3900				Label:   "KB",
3901				Summary: "Kilobyte",
3902			},
3903			Key: "kiloBytes",
3904		},
3905		RollupType:          "maximum",
3906		StatsType:           "absolute",
3907		Level:               0,
3908		PerDeviceLevel:      0,
3909		AssociatedCounterId: nil,
3910	},
3911	{
3912		Key: 65641,
3913		NameInfo: &types.ElementDescription{
3914			Description: types.Description{
3915				Label:   "Host cache swap in",
3916				Summary: "Amount of guest physical memory swapped in from host cache",
3917			},
3918			Key: "llSwapIn",
3919		},
3920		GroupInfo: &types.ElementDescription{
3921			Description: types.Description{
3922				Label:   "Memory",
3923				Summary: "Memory",
3924			},
3925			Key: "mem",
3926		},
3927		UnitInfo: &types.ElementDescription{
3928			Description: types.Description{
3929				Label:   "KB",
3930				Summary: "Kilobyte",
3931			},
3932			Key: "kiloBytes",
3933		},
3934		RollupType:          "minimum",
3935		StatsType:           "absolute",
3936		Level:               0,
3937		PerDeviceLevel:      0,
3938		AssociatedCounterId: nil,
3939	},
3940	{
3941		Key: 65642,
3942		NameInfo: &types.ElementDescription{
3943			Description: types.Description{
3944				Label:   "Host cache swap out",
3945				Summary: "Amount of guest physical memory swapped out to the host swap cache",
3946			},
3947			Key: "llSwapOut",
3948		},
3949		GroupInfo: &types.ElementDescription{
3950			Description: types.Description{
3951				Label:   "Memory",
3952				Summary: "Memory",
3953			},
3954			Key: "mem",
3955		},
3956		UnitInfo: &types.ElementDescription{
3957			Description: types.Description{
3958				Label:   "KB",
3959				Summary: "Kilobyte",
3960			},
3961			Key: "kiloBytes",
3962		},
3963		RollupType:          "none",
3964		StatsType:           "absolute",
3965		Level:               0,
3966		PerDeviceLevel:      0,
3967		AssociatedCounterId: []int32{65643, 65644, 65645},
3968	},
3969	{
3970		Key: 65643,
3971		NameInfo: &types.ElementDescription{
3972			Description: types.Description{
3973				Label:   "Host cache swap out",
3974				Summary: "Amount of guest physical memory swapped out to the host swap cache",
3975			},
3976			Key: "llSwapOut",
3977		},
3978		GroupInfo: &types.ElementDescription{
3979			Description: types.Description{
3980				Label:   "Memory",
3981				Summary: "Memory",
3982			},
3983			Key: "mem",
3984		},
3985		UnitInfo: &types.ElementDescription{
3986			Description: types.Description{
3987				Label:   "KB",
3988				Summary: "Kilobyte",
3989			},
3990			Key: "kiloBytes",
3991		},
3992		RollupType:          "average",
3993		StatsType:           "absolute",
3994		Level:               0,
3995		PerDeviceLevel:      0,
3996		AssociatedCounterId: nil,
3997	},
3998	{
3999		Key: 65644,
4000		NameInfo: &types.ElementDescription{
4001			Description: types.Description{
4002				Label:   "Host cache swap out",
4003				Summary: "Amount of guest physical memory swapped out to the host swap cache",
4004			},
4005			Key: "llSwapOut",
4006		},
4007		GroupInfo: &types.ElementDescription{
4008			Description: types.Description{
4009				Label:   "Memory",
4010				Summary: "Memory",
4011			},
4012			Key: "mem",
4013		},
4014		UnitInfo: &types.ElementDescription{
4015			Description: types.Description{
4016				Label:   "KB",
4017				Summary: "Kilobyte",
4018			},
4019			Key: "kiloBytes",
4020		},
4021		RollupType:          "maximum",
4022		StatsType:           "absolute",
4023		Level:               0,
4024		PerDeviceLevel:      0,
4025		AssociatedCounterId: nil,
4026	},
4027	{
4028		Key: 65645,
4029		NameInfo: &types.ElementDescription{
4030			Description: types.Description{
4031				Label:   "Host cache swap out",
4032				Summary: "Amount of guest physical memory swapped out to the host swap cache",
4033			},
4034			Key: "llSwapOut",
4035		},
4036		GroupInfo: &types.ElementDescription{
4037			Description: types.Description{
4038				Label:   "Memory",
4039				Summary: "Memory",
4040			},
4041			Key: "mem",
4042		},
4043		UnitInfo: &types.ElementDescription{
4044			Description: types.Description{
4045				Label:   "KB",
4046				Summary: "Kilobyte",
4047			},
4048			Key: "kiloBytes",
4049		},
4050		RollupType:          "minimum",
4051		StatsType:           "absolute",
4052		Level:               0,
4053		PerDeviceLevel:      0,
4054		AssociatedCounterId: nil,
4055	},
4056	{
4057		Key: 65646,
4058		NameInfo: &types.ElementDescription{
4059			Description: types.Description{
4060				Label:   "VMFS PB Cache Size",
4061				Summary: "Space used for holding VMFS Pointer Blocks in memory",
4062			},
4063			Key: "vmfs.pbc.size",
4064		},
4065		GroupInfo: &types.ElementDescription{
4066			Description: types.Description{
4067				Label:   "Memory",
4068				Summary: "Memory",
4069			},
4070			Key: "mem",
4071		},
4072		UnitInfo: &types.ElementDescription{
4073			Description: types.Description{
4074				Label:   "MB",
4075				Summary: "Megabyte",
4076			},
4077			Key: "megaBytes",
4078		},
4079		RollupType:          "latest",
4080		StatsType:           "absolute",
4081		Level:               0,
4082		PerDeviceLevel:      0,
4083		AssociatedCounterId: nil,
4084	},
4085	{
4086		Key: 65647,
4087		NameInfo: &types.ElementDescription{
4088			Description: types.Description{
4089				Label:   "Maximum VMFS PB Cache Size",
4090				Summary: "Maximum size the VMFS Pointer Block Cache can grow to",
4091			},
4092			Key: "vmfs.pbc.sizeMax",
4093		},
4094		GroupInfo: &types.ElementDescription{
4095			Description: types.Description{
4096				Label:   "Memory",
4097				Summary: "Memory",
4098			},
4099			Key: "mem",
4100		},
4101		UnitInfo: &types.ElementDescription{
4102			Description: types.Description{
4103				Label:   "MB",
4104				Summary: "Megabyte",
4105			},
4106			Key: "megaBytes",
4107		},
4108		RollupType:          "latest",
4109		StatsType:           "absolute",
4110		Level:               0,
4111		PerDeviceLevel:      0,
4112		AssociatedCounterId: nil,
4113	},
4114	{
4115		Key: 65648,
4116		NameInfo: &types.ElementDescription{
4117			Description: types.Description{
4118				Label:   "VMFS Working Set",
4119				Summary: "Amount of file blocks whose addresses are cached in the VMFS PB Cache",
4120			},
4121			Key: "vmfs.pbc.workingSet",
4122		},
4123		GroupInfo: &types.ElementDescription{
4124			Description: types.Description{
4125				Label:   "Memory",
4126				Summary: "Memory",
4127			},
4128			Key: "mem",
4129		},
4130		UnitInfo: &types.ElementDescription{
4131			Description: types.Description{
4132				Label:   "TB",
4133				Summary: "Terabyte",
4134			},
4135			Key: "teraBytes",
4136		},
4137		RollupType:          "latest",
4138		StatsType:           "absolute",
4139		Level:               0,
4140		PerDeviceLevel:      0,
4141		AssociatedCounterId: nil,
4142	},
4143	{
4144		Key: 65649,
4145		NameInfo: &types.ElementDescription{
4146			Description: types.Description{
4147				Label:   "Maximum VMFS Working Set",
4148				Summary: "Maximum amount of file blocks whose addresses are cached in the VMFS PB Cache",
4149			},
4150			Key: "vmfs.pbc.workingSetMax",
4151		},
4152		GroupInfo: &types.ElementDescription{
4153			Description: types.Description{
4154				Label:   "Memory",
4155				Summary: "Memory",
4156			},
4157			Key: "mem",
4158		},
4159		UnitInfo: &types.ElementDescription{
4160			Description: types.Description{
4161				Label:   "TB",
4162				Summary: "Terabyte",
4163			},
4164			Key: "teraBytes",
4165		},
4166		RollupType:          "latest",
4167		StatsType:           "absolute",
4168		Level:               0,
4169		PerDeviceLevel:      0,
4170		AssociatedCounterId: nil,
4171	},
4172	{
4173		Key: 65650,
4174		NameInfo: &types.ElementDescription{
4175			Description: types.Description{
4176				Label:   "VMFS PB Cache Overhead",
4177				Summary: "Amount of VMFS heap used by the VMFS PB Cache",
4178			},
4179			Key: "vmfs.pbc.overhead",
4180		},
4181		GroupInfo: &types.ElementDescription{
4182			Description: types.Description{
4183				Label:   "Memory",
4184				Summary: "Memory",
4185			},
4186			Key: "mem",
4187		},
4188		UnitInfo: &types.ElementDescription{
4189			Description: types.Description{
4190				Label:   "KB",
4191				Summary: "Kilobyte",
4192			},
4193			Key: "kiloBytes",
4194		},
4195		RollupType:          "latest",
4196		StatsType:           "absolute",
4197		Level:               0,
4198		PerDeviceLevel:      0,
4199		AssociatedCounterId: nil,
4200	},
4201	{
4202		Key: 65651,
4203		NameInfo: &types.ElementDescription{
4204			Description: types.Description{
4205				Label:   "VMFS PB Cache Capacity Miss Ratio",
4206				Summary: "Trailing average of the ratio of capacity misses to compulsory misses for the VMFS PB Cache",
4207			},
4208			Key: "vmfs.pbc.capMissRatio",
4209		},
4210		GroupInfo: &types.ElementDescription{
4211			Description: types.Description{
4212				Label:   "Memory",
4213				Summary: "Memory",
4214			},
4215			Key: "mem",
4216		},
4217		UnitInfo: &types.ElementDescription{
4218			Description: types.Description{
4219				Label:   "%",
4220				Summary: "Percentage",
4221			},
4222			Key: "percent",
4223		},
4224		RollupType:          "latest",
4225		StatsType:           "absolute",
4226		Level:               0,
4227		PerDeviceLevel:      0,
4228		AssociatedCounterId: nil,
4229	},
4230	{
4231		Key: 131072,
4232		NameInfo: &types.ElementDescription{
4233			Description: types.Description{
4234				Label:   "Usage",
4235				Summary: "Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval.",
4236			},
4237			Key: "usage",
4238		},
4239		GroupInfo: &types.ElementDescription{
4240			Description: types.Description{
4241				Label:   "Disk",
4242				Summary: "Disk",
4243			},
4244			Key: "disk",
4245		},
4246		UnitInfo: &types.ElementDescription{
4247			Description: types.Description{
4248				Label:   "KBps",
4249				Summary: "Kilobytes per second",
4250			},
4251			Key: "kiloBytesPerSecond",
4252		},
4253		RollupType:          "none",
4254		StatsType:           "rate",
4255		Level:               0,
4256		PerDeviceLevel:      0,
4257		AssociatedCounterId: []int32{131073, 131074, 131075},
4258	},
4259	{
4260		Key: 131073,
4261		NameInfo: &types.ElementDescription{
4262			Description: types.Description{
4263				Label:   "Usage",
4264				Summary: "Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval.",
4265			},
4266			Key: "usage",
4267		},
4268		GroupInfo: &types.ElementDescription{
4269			Description: types.Description{
4270				Label:   "Disk",
4271				Summary: "Disk",
4272			},
4273			Key: "disk",
4274		},
4275		UnitInfo: &types.ElementDescription{
4276			Description: types.Description{
4277				Label:   "KBps",
4278				Summary: "Kilobytes per second",
4279			},
4280			Key: "kiloBytesPerSecond",
4281		},
4282		RollupType:          "average",
4283		StatsType:           "rate",
4284		Level:               0,
4285		PerDeviceLevel:      0,
4286		AssociatedCounterId: nil,
4287	},
4288	{
4289		Key: 131074,
4290		NameInfo: &types.ElementDescription{
4291			Description: types.Description{
4292				Label:   "Usage",
4293				Summary: "Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval.",
4294			},
4295			Key: "usage",
4296		},
4297		GroupInfo: &types.ElementDescription{
4298			Description: types.Description{
4299				Label:   "Disk",
4300				Summary: "Disk",
4301			},
4302			Key: "disk",
4303		},
4304		UnitInfo: &types.ElementDescription{
4305			Description: types.Description{
4306				Label:   "KBps",
4307				Summary: "Kilobytes per second",
4308			},
4309			Key: "kiloBytesPerSecond",
4310		},
4311		RollupType:          "maximum",
4312		StatsType:           "rate",
4313		Level:               0,
4314		PerDeviceLevel:      0,
4315		AssociatedCounterId: nil,
4316	},
4317	{
4318		Key: 131075,
4319		NameInfo: &types.ElementDescription{
4320			Description: types.Description{
4321				Label:   "Usage",
4322				Summary: "Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host during the collection interval.",
4323			},
4324			Key: "usage",
4325		},
4326		GroupInfo: &types.ElementDescription{
4327			Description: types.Description{
4328				Label:   "Disk",
4329				Summary: "Disk",
4330			},
4331			Key: "disk",
4332		},
4333		UnitInfo: &types.ElementDescription{
4334			Description: types.Description{
4335				Label:   "KBps",
4336				Summary: "Kilobytes per second",
4337			},
4338			Key: "kiloBytesPerSecond",
4339		},
4340		RollupType:          "minimum",
4341		StatsType:           "rate",
4342		Level:               0,
4343		PerDeviceLevel:      0,
4344		AssociatedCounterId: nil,
4345	},
4346	{
4347		Key: 131076,
4348		NameInfo: &types.ElementDescription{
4349			Description: types.Description{
4350				Label:   "Read requests",
4351				Summary: "Number of disk reads during the collection interval",
4352			},
4353			Key: "numberRead",
4354		},
4355		GroupInfo: &types.ElementDescription{
4356			Description: types.Description{
4357				Label:   "Disk",
4358				Summary: "Disk",
4359			},
4360			Key: "disk",
4361		},
4362		UnitInfo: &types.ElementDescription{
4363			Description: types.Description{
4364				Label:   "num",
4365				Summary: "Number",
4366			},
4367			Key: "number",
4368		},
4369		RollupType:          "summation",
4370		StatsType:           "delta",
4371		Level:               0,
4372		PerDeviceLevel:      0,
4373		AssociatedCounterId: nil,
4374	},
4375	{
4376		Key: 131077,
4377		NameInfo: &types.ElementDescription{
4378			Description: types.Description{
4379				Label:   "Write requests",
4380				Summary: "Number of disk writes during the collection interval",
4381			},
4382			Key: "numberWrite",
4383		},
4384		GroupInfo: &types.ElementDescription{
4385			Description: types.Description{
4386				Label:   "Disk",
4387				Summary: "Disk",
4388			},
4389			Key: "disk",
4390		},
4391		UnitInfo: &types.ElementDescription{
4392			Description: types.Description{
4393				Label:   "num",
4394				Summary: "Number",
4395			},
4396			Key: "number",
4397		},
4398		RollupType:          "summation",
4399		StatsType:           "delta",
4400		Level:               0,
4401		PerDeviceLevel:      0,
4402		AssociatedCounterId: nil,
4403	},
4404	{
4405		Key: 131078,
4406		NameInfo: &types.ElementDescription{
4407			Description: types.Description{
4408				Label:   "Read rate",
4409				Summary: "Average number of kilobytes read from the disk each second during the collection interval",
4410			},
4411			Key: "read",
4412		},
4413		GroupInfo: &types.ElementDescription{
4414			Description: types.Description{
4415				Label:   "Disk",
4416				Summary: "Disk",
4417			},
4418			Key: "disk",
4419		},
4420		UnitInfo: &types.ElementDescription{
4421			Description: types.Description{
4422				Label:   "KBps",
4423				Summary: "Kilobytes per second",
4424			},
4425			Key: "kiloBytesPerSecond",
4426		},
4427		RollupType:          "average",
4428		StatsType:           "rate",
4429		Level:               0,
4430		PerDeviceLevel:      0,
4431		AssociatedCounterId: nil,
4432	},
4433	{
4434		Key: 131079,
4435		NameInfo: &types.ElementDescription{
4436			Description: types.Description{
4437				Label:   "Write rate",
4438				Summary: "Average number of kilobytes written to disk each second during the collection interval",
4439			},
4440			Key: "write",
4441		},
4442		GroupInfo: &types.ElementDescription{
4443			Description: types.Description{
4444				Label:   "Disk",
4445				Summary: "Disk",
4446			},
4447			Key: "disk",
4448		},
4449		UnitInfo: &types.ElementDescription{
4450			Description: types.Description{
4451				Label:   "KBps",
4452				Summary: "Kilobytes per second",
4453			},
4454			Key: "kiloBytesPerSecond",
4455		},
4456		RollupType:          "average",
4457		StatsType:           "rate",
4458		Level:               0,
4459		PerDeviceLevel:      0,
4460		AssociatedCounterId: nil,
4461	},
4462	{
4463		Key: 131080,
4464		NameInfo: &types.ElementDescription{
4465			Description: types.Description{
4466				Label:   "Commands issued",
4467				Summary: "Number of SCSI commands issued during the collection interval",
4468			},
4469			Key: "commands",
4470		},
4471		GroupInfo: &types.ElementDescription{
4472			Description: types.Description{
4473				Label:   "Disk",
4474				Summary: "Disk",
4475			},
4476			Key: "disk",
4477		},
4478		UnitInfo: &types.ElementDescription{
4479			Description: types.Description{
4480				Label:   "num",
4481				Summary: "Number",
4482			},
4483			Key: "number",
4484		},
4485		RollupType:          "summation",
4486		StatsType:           "delta",
4487		Level:               0,
4488		PerDeviceLevel:      0,
4489		AssociatedCounterId: nil,
4490	},
4491	{
4492		Key: 131081,
4493		NameInfo: &types.ElementDescription{
4494			Description: types.Description{
4495				Label:   "Commands aborted",
4496				Summary: "Number of SCSI commands aborted during the collection interval",
4497			},
4498			Key: "commandsAborted",
4499		},
4500		GroupInfo: &types.ElementDescription{
4501			Description: types.Description{
4502				Label:   "Disk",
4503				Summary: "Disk",
4504			},
4505			Key: "disk",
4506		},
4507		UnitInfo: &types.ElementDescription{
4508			Description: types.Description{
4509				Label:   "num",
4510				Summary: "Number",
4511			},
4512			Key: "number",
4513		},
4514		RollupType:          "summation",
4515		StatsType:           "delta",
4516		Level:               0,
4517		PerDeviceLevel:      0,
4518		AssociatedCounterId: nil,
4519	},
4520	{
4521		Key: 131082,
4522		NameInfo: &types.ElementDescription{
4523			Description: types.Description{
4524				Label:   "Bus resets",
4525				Summary: "Number of SCSI-bus reset commands issued during the collection interval",
4526			},
4527			Key: "busResets",
4528		},
4529		GroupInfo: &types.ElementDescription{
4530			Description: types.Description{
4531				Label:   "Disk",
4532				Summary: "Disk",
4533			},
4534			Key: "disk",
4535		},
4536		UnitInfo: &types.ElementDescription{
4537			Description: types.Description{
4538				Label:   "num",
4539				Summary: "Number",
4540			},
4541			Key: "number",
4542		},
4543		RollupType:          "summation",
4544		StatsType:           "delta",
4545		Level:               0,
4546		PerDeviceLevel:      0,
4547		AssociatedCounterId: nil,
4548	},
4549	{
4550		Key: 131083,
4551		NameInfo: &types.ElementDescription{
4552			Description: types.Description{
4553				Label:   "Physical device read latency",
4554				Summary: "Average amount of time, in milliseconds, to read from the physical device",
4555			},
4556			Key: "deviceReadLatency",
4557		},
4558		GroupInfo: &types.ElementDescription{
4559			Description: types.Description{
4560				Label:   "Disk",
4561				Summary: "Disk",
4562			},
4563			Key: "disk",
4564		},
4565		UnitInfo: &types.ElementDescription{
4566			Description: types.Description{
4567				Label:   "ms",
4568				Summary: "Millisecond",
4569			},
4570			Key: "millisecond",
4571		},
4572		RollupType:          "average",
4573		StatsType:           "absolute",
4574		Level:               0,
4575		PerDeviceLevel:      0,
4576		AssociatedCounterId: nil,
4577	},
4578	{
4579		Key: 131084,
4580		NameInfo: &types.ElementDescription{
4581			Description: types.Description{
4582				Label:   "Kernel read latency",
4583				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI read command",
4584			},
4585			Key: "kernelReadLatency",
4586		},
4587		GroupInfo: &types.ElementDescription{
4588			Description: types.Description{
4589				Label:   "Disk",
4590				Summary: "Disk",
4591			},
4592			Key: "disk",
4593		},
4594		UnitInfo: &types.ElementDescription{
4595			Description: types.Description{
4596				Label:   "ms",
4597				Summary: "Millisecond",
4598			},
4599			Key: "millisecond",
4600		},
4601		RollupType:          "average",
4602		StatsType:           "absolute",
4603		Level:               0,
4604		PerDeviceLevel:      0,
4605		AssociatedCounterId: nil,
4606	},
4607	{
4608		Key: 131085,
4609		NameInfo: &types.ElementDescription{
4610			Description: types.Description{
4611				Label:   "Read latency",
4612				Summary: "Average amount of time taken during the collection interval to process a SCSI read command issued from the guest OS to the virtual machine",
4613			},
4614			Key: "totalReadLatency",
4615		},
4616		GroupInfo: &types.ElementDescription{
4617			Description: types.Description{
4618				Label:   "Disk",
4619				Summary: "Disk",
4620			},
4621			Key: "disk",
4622		},
4623		UnitInfo: &types.ElementDescription{
4624			Description: types.Description{
4625				Label:   "ms",
4626				Summary: "Millisecond",
4627			},
4628			Key: "millisecond",
4629		},
4630		RollupType:          "average",
4631		StatsType:           "absolute",
4632		Level:               0,
4633		PerDeviceLevel:      0,
4634		AssociatedCounterId: nil,
4635	},
4636	{
4637		Key: 131086,
4638		NameInfo: &types.ElementDescription{
4639			Description: types.Description{
4640				Label:   "Queue read latency",
4641				Summary: "Average amount of time spent in the VMkernel queue, per SCSI read command, during the collection interval",
4642			},
4643			Key: "queueReadLatency",
4644		},
4645		GroupInfo: &types.ElementDescription{
4646			Description: types.Description{
4647				Label:   "Disk",
4648				Summary: "Disk",
4649			},
4650			Key: "disk",
4651		},
4652		UnitInfo: &types.ElementDescription{
4653			Description: types.Description{
4654				Label:   "ms",
4655				Summary: "Millisecond",
4656			},
4657			Key: "millisecond",
4658		},
4659		RollupType:          "average",
4660		StatsType:           "absolute",
4661		Level:               0,
4662		PerDeviceLevel:      0,
4663		AssociatedCounterId: nil,
4664	},
4665	{
4666		Key: 131087,
4667		NameInfo: &types.ElementDescription{
4668			Description: types.Description{
4669				Label:   "Physical device write latency",
4670				Summary: "Average amount of time, in milliseconds, to write to the physical device",
4671			},
4672			Key: "deviceWriteLatency",
4673		},
4674		GroupInfo: &types.ElementDescription{
4675			Description: types.Description{
4676				Label:   "Disk",
4677				Summary: "Disk",
4678			},
4679			Key: "disk",
4680		},
4681		UnitInfo: &types.ElementDescription{
4682			Description: types.Description{
4683				Label:   "ms",
4684				Summary: "Millisecond",
4685			},
4686			Key: "millisecond",
4687		},
4688		RollupType:          "average",
4689		StatsType:           "absolute",
4690		Level:               0,
4691		PerDeviceLevel:      0,
4692		AssociatedCounterId: nil,
4693	},
4694	{
4695		Key: 131088,
4696		NameInfo: &types.ElementDescription{
4697			Description: types.Description{
4698				Label:   "Kernel write latency",
4699				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI write command",
4700			},
4701			Key: "kernelWriteLatency",
4702		},
4703		GroupInfo: &types.ElementDescription{
4704			Description: types.Description{
4705				Label:   "Disk",
4706				Summary: "Disk",
4707			},
4708			Key: "disk",
4709		},
4710		UnitInfo: &types.ElementDescription{
4711			Description: types.Description{
4712				Label:   "ms",
4713				Summary: "Millisecond",
4714			},
4715			Key: "millisecond",
4716		},
4717		RollupType:          "average",
4718		StatsType:           "absolute",
4719		Level:               0,
4720		PerDeviceLevel:      0,
4721		AssociatedCounterId: nil,
4722	},
4723	{
4724		Key: 131089,
4725		NameInfo: &types.ElementDescription{
4726			Description: types.Description{
4727				Label:   "Write latency",
4728				Summary: "Average amount of time taken during the collection interval to process a SCSI write command issued by the guest OS to the virtual machine",
4729			},
4730			Key: "totalWriteLatency",
4731		},
4732		GroupInfo: &types.ElementDescription{
4733			Description: types.Description{
4734				Label:   "Disk",
4735				Summary: "Disk",
4736			},
4737			Key: "disk",
4738		},
4739		UnitInfo: &types.ElementDescription{
4740			Description: types.Description{
4741				Label:   "ms",
4742				Summary: "Millisecond",
4743			},
4744			Key: "millisecond",
4745		},
4746		RollupType:          "average",
4747		StatsType:           "absolute",
4748		Level:               0,
4749		PerDeviceLevel:      0,
4750		AssociatedCounterId: nil,
4751	},
4752	{
4753		Key: 131090,
4754		NameInfo: &types.ElementDescription{
4755			Description: types.Description{
4756				Label:   "Queue write latency",
4757				Summary: "Average amount of time spent in the VMkernel queue, per SCSI write command, during the collection interval",
4758			},
4759			Key: "queueWriteLatency",
4760		},
4761		GroupInfo: &types.ElementDescription{
4762			Description: types.Description{
4763				Label:   "Disk",
4764				Summary: "Disk",
4765			},
4766			Key: "disk",
4767		},
4768		UnitInfo: &types.ElementDescription{
4769			Description: types.Description{
4770				Label:   "ms",
4771				Summary: "Millisecond",
4772			},
4773			Key: "millisecond",
4774		},
4775		RollupType:          "average",
4776		StatsType:           "absolute",
4777		Level:               0,
4778		PerDeviceLevel:      0,
4779		AssociatedCounterId: nil,
4780	},
4781	{
4782		Key: 131091,
4783		NameInfo: &types.ElementDescription{
4784			Description: types.Description{
4785				Label:   "Physical device command latency",
4786				Summary: "Average amount of time, in milliseconds, to complete a SCSI command from the physical device",
4787			},
4788			Key: "deviceLatency",
4789		},
4790		GroupInfo: &types.ElementDescription{
4791			Description: types.Description{
4792				Label:   "Disk",
4793				Summary: "Disk",
4794			},
4795			Key: "disk",
4796		},
4797		UnitInfo: &types.ElementDescription{
4798			Description: types.Description{
4799				Label:   "ms",
4800				Summary: "Millisecond",
4801			},
4802			Key: "millisecond",
4803		},
4804		RollupType:          "average",
4805		StatsType:           "absolute",
4806		Level:               0,
4807		PerDeviceLevel:      0,
4808		AssociatedCounterId: nil,
4809	},
4810	{
4811		Key: 131092,
4812		NameInfo: &types.ElementDescription{
4813			Description: types.Description{
4814				Label:   "Kernel command latency",
4815				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI command",
4816			},
4817			Key: "kernelLatency",
4818		},
4819		GroupInfo: &types.ElementDescription{
4820			Description: types.Description{
4821				Label:   "Disk",
4822				Summary: "Disk",
4823			},
4824			Key: "disk",
4825		},
4826		UnitInfo: &types.ElementDescription{
4827			Description: types.Description{
4828				Label:   "ms",
4829				Summary: "Millisecond",
4830			},
4831			Key: "millisecond",
4832		},
4833		RollupType:          "average",
4834		StatsType:           "absolute",
4835		Level:               0,
4836		PerDeviceLevel:      0,
4837		AssociatedCounterId: nil,
4838	},
4839	{
4840		Key: 131093,
4841		NameInfo: &types.ElementDescription{
4842			Description: types.Description{
4843				Label:   "Command latency",
4844				Summary: "Average amount of time taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine",
4845			},
4846			Key: "totalLatency",
4847		},
4848		GroupInfo: &types.ElementDescription{
4849			Description: types.Description{
4850				Label:   "Disk",
4851				Summary: "Disk",
4852			},
4853			Key: "disk",
4854		},
4855		UnitInfo: &types.ElementDescription{
4856			Description: types.Description{
4857				Label:   "ms",
4858				Summary: "Millisecond",
4859			},
4860			Key: "millisecond",
4861		},
4862		RollupType:          "average",
4863		StatsType:           "absolute",
4864		Level:               0,
4865		PerDeviceLevel:      0,
4866		AssociatedCounterId: nil,
4867	},
4868	{
4869		Key: 131094,
4870		NameInfo: &types.ElementDescription{
4871			Description: types.Description{
4872				Label:   "Queue command latency",
4873				Summary: "Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval",
4874			},
4875			Key: "queueLatency",
4876		},
4877		GroupInfo: &types.ElementDescription{
4878			Description: types.Description{
4879				Label:   "Disk",
4880				Summary: "Disk",
4881			},
4882			Key: "disk",
4883		},
4884		UnitInfo: &types.ElementDescription{
4885			Description: types.Description{
4886				Label:   "ms",
4887				Summary: "Millisecond",
4888			},
4889			Key: "millisecond",
4890		},
4891		RollupType:          "average",
4892		StatsType:           "absolute",
4893		Level:               0,
4894		PerDeviceLevel:      0,
4895		AssociatedCounterId: nil,
4896	},
4897	{
4898		Key: 131095,
4899		NameInfo: &types.ElementDescription{
4900			Description: types.Description{
4901				Label:   "Highest latency",
4902				Summary: "Highest latency value across all disks used by the host",
4903			},
4904			Key: "maxTotalLatency",
4905		},
4906		GroupInfo: &types.ElementDescription{
4907			Description: types.Description{
4908				Label:   "Disk",
4909				Summary: "Disk",
4910			},
4911			Key: "disk",
4912		},
4913		UnitInfo: &types.ElementDescription{
4914			Description: types.Description{
4915				Label:   "ms",
4916				Summary: "Millisecond",
4917			},
4918			Key: "millisecond",
4919		},
4920		RollupType:          "latest",
4921		StatsType:           "absolute",
4922		Level:               0,
4923		PerDeviceLevel:      0,
4924		AssociatedCounterId: nil,
4925	},
4926	{
4927		Key: 131096,
4928		NameInfo: &types.ElementDescription{
4929			Description: types.Description{
4930				Label:   "Maximum queue depth",
4931				Summary: "Maximum queue depth",
4932			},
4933			Key: "maxQueueDepth",
4934		},
4935		GroupInfo: &types.ElementDescription{
4936			Description: types.Description{
4937				Label:   "Disk",
4938				Summary: "Disk",
4939			},
4940			Key: "disk",
4941		},
4942		UnitInfo: &types.ElementDescription{
4943			Description: types.Description{
4944				Label:   "num",
4945				Summary: "Number",
4946			},
4947			Key: "number",
4948		},
4949		RollupType:          "average",
4950		StatsType:           "absolute",
4951		Level:               0,
4952		PerDeviceLevel:      0,
4953		AssociatedCounterId: nil,
4954	},
4955	{
4956		Key: 131097,
4957		NameInfo: &types.ElementDescription{
4958			Description: types.Description{
4959				Label:   "Average read requests per second",
4960				Summary: "Average number of disk reads per second during the collection interval",
4961			},
4962			Key: "numberReadAveraged",
4963		},
4964		GroupInfo: &types.ElementDescription{
4965			Description: types.Description{
4966				Label:   "Disk",
4967				Summary: "Disk",
4968			},
4969			Key: "disk",
4970		},
4971		UnitInfo: &types.ElementDescription{
4972			Description: types.Description{
4973				Label:   "num",
4974				Summary: "Number",
4975			},
4976			Key: "number",
4977		},
4978		RollupType:          "average",
4979		StatsType:           "rate",
4980		Level:               0,
4981		PerDeviceLevel:      0,
4982		AssociatedCounterId: nil,
4983	},
4984	{
4985		Key: 131098,
4986		NameInfo: &types.ElementDescription{
4987			Description: types.Description{
4988				Label:   "Average write requests per second",
4989				Summary: "Average number of disk writes per second during the collection interval",
4990			},
4991			Key: "numberWriteAveraged",
4992		},
4993		GroupInfo: &types.ElementDescription{
4994			Description: types.Description{
4995				Label:   "Disk",
4996				Summary: "Disk",
4997			},
4998			Key: "disk",
4999		},
5000		UnitInfo: &types.ElementDescription{
5001			Description: types.Description{
5002				Label:   "num",
5003				Summary: "Number",
5004			},
5005			Key: "number",
5006		},
5007		RollupType:          "average",
5008		StatsType:           "rate",
5009		Level:               0,
5010		PerDeviceLevel:      0,
5011		AssociatedCounterId: nil,
5012	},
5013	{
5014		Key: 131099,
5015		NameInfo: &types.ElementDescription{
5016			Description: types.Description{
5017				Label:   "Average commands issued per second",
5018				Summary: "Average number of SCSI commands issued per second during the collection interval",
5019			},
5020			Key: "commandsAveraged",
5021		},
5022		GroupInfo: &types.ElementDescription{
5023			Description: types.Description{
5024				Label:   "Disk",
5025				Summary: "Disk",
5026			},
5027			Key: "disk",
5028		},
5029		UnitInfo: &types.ElementDescription{
5030			Description: types.Description{
5031				Label:   "num",
5032				Summary: "Number",
5033			},
5034			Key: "number",
5035		},
5036		RollupType:          "average",
5037		StatsType:           "rate",
5038		Level:               0,
5039		PerDeviceLevel:      0,
5040		AssociatedCounterId: nil,
5041	},
5042	{
5043		Key: 196608,
5044		NameInfo: &types.ElementDescription{
5045			Description: types.Description{
5046				Label:   "Usage",
5047				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
5048			},
5049			Key: "usage",
5050		},
5051		GroupInfo: &types.ElementDescription{
5052			Description: types.Description{
5053				Label:   "Network",
5054				Summary: "Network",
5055			},
5056			Key: "net",
5057		},
5058		UnitInfo: &types.ElementDescription{
5059			Description: types.Description{
5060				Label:   "KBps",
5061				Summary: "Kilobytes per second",
5062			},
5063			Key: "kiloBytesPerSecond",
5064		},
5065		RollupType:          "none",
5066		StatsType:           "rate",
5067		Level:               0,
5068		PerDeviceLevel:      0,
5069		AssociatedCounterId: []int32{196609, 196610, 196611},
5070	},
5071	{
5072		Key: 196609,
5073		NameInfo: &types.ElementDescription{
5074			Description: types.Description{
5075				Label:   "Usage",
5076				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
5077			},
5078			Key: "usage",
5079		},
5080		GroupInfo: &types.ElementDescription{
5081			Description: types.Description{
5082				Label:   "Network",
5083				Summary: "Network",
5084			},
5085			Key: "net",
5086		},
5087		UnitInfo: &types.ElementDescription{
5088			Description: types.Description{
5089				Label:   "KBps",
5090				Summary: "Kilobytes per second",
5091			},
5092			Key: "kiloBytesPerSecond",
5093		},
5094		RollupType:          "average",
5095		StatsType:           "rate",
5096		Level:               0,
5097		PerDeviceLevel:      0,
5098		AssociatedCounterId: nil,
5099	},
5100	{
5101		Key: 196610,
5102		NameInfo: &types.ElementDescription{
5103			Description: types.Description{
5104				Label:   "Usage",
5105				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
5106			},
5107			Key: "usage",
5108		},
5109		GroupInfo: &types.ElementDescription{
5110			Description: types.Description{
5111				Label:   "Network",
5112				Summary: "Network",
5113			},
5114			Key: "net",
5115		},
5116		UnitInfo: &types.ElementDescription{
5117			Description: types.Description{
5118				Label:   "KBps",
5119				Summary: "Kilobytes per second",
5120			},
5121			Key: "kiloBytesPerSecond",
5122		},
5123		RollupType:          "maximum",
5124		StatsType:           "rate",
5125		Level:               0,
5126		PerDeviceLevel:      0,
5127		AssociatedCounterId: nil,
5128	},
5129	{
5130		Key: 196611,
5131		NameInfo: &types.ElementDescription{
5132			Description: types.Description{
5133				Label:   "Usage",
5134				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
5135			},
5136			Key: "usage",
5137		},
5138		GroupInfo: &types.ElementDescription{
5139			Description: types.Description{
5140				Label:   "Network",
5141				Summary: "Network",
5142			},
5143			Key: "net",
5144		},
5145		UnitInfo: &types.ElementDescription{
5146			Description: types.Description{
5147				Label:   "KBps",
5148				Summary: "Kilobytes per second",
5149			},
5150			Key: "kiloBytesPerSecond",
5151		},
5152		RollupType:          "minimum",
5153		StatsType:           "rate",
5154		Level:               0,
5155		PerDeviceLevel:      0,
5156		AssociatedCounterId: nil,
5157	},
5158	{
5159		Key: 196612,
5160		NameInfo: &types.ElementDescription{
5161			Description: types.Description{
5162				Label:   "Packets received",
5163				Summary: "Number of packets received during the interval",
5164			},
5165			Key: "packetsRx",
5166		},
5167		GroupInfo: &types.ElementDescription{
5168			Description: types.Description{
5169				Label:   "Network",
5170				Summary: "Network",
5171			},
5172			Key: "net",
5173		},
5174		UnitInfo: &types.ElementDescription{
5175			Description: types.Description{
5176				Label:   "num",
5177				Summary: "Number",
5178			},
5179			Key: "number",
5180		},
5181		RollupType:          "summation",
5182		StatsType:           "delta",
5183		Level:               0,
5184		PerDeviceLevel:      0,
5185		AssociatedCounterId: nil,
5186	},
5187	{
5188		Key: 196613,
5189		NameInfo: &types.ElementDescription{
5190			Description: types.Description{
5191				Label:   "Packets transmitted",
5192				Summary: "Number of packets transmitted during the interval",
5193			},
5194			Key: "packetsTx",
5195		},
5196		GroupInfo: &types.ElementDescription{
5197			Description: types.Description{
5198				Label:   "Network",
5199				Summary: "Network",
5200			},
5201			Key: "net",
5202		},
5203		UnitInfo: &types.ElementDescription{
5204			Description: types.Description{
5205				Label:   "num",
5206				Summary: "Number",
5207			},
5208			Key: "number",
5209		},
5210		RollupType:          "summation",
5211		StatsType:           "delta",
5212		Level:               0,
5213		PerDeviceLevel:      0,
5214		AssociatedCounterId: nil,
5215	},
5216	{
5217		Key: 196614,
5218		NameInfo: &types.ElementDescription{
5219			Description: types.Description{
5220				Label:   "Data receive rate",
5221				Summary: "Average rate at which data was received during the interval",
5222			},
5223			Key: "received",
5224		},
5225		GroupInfo: &types.ElementDescription{
5226			Description: types.Description{
5227				Label:   "Network",
5228				Summary: "Network",
5229			},
5230			Key: "net",
5231		},
5232		UnitInfo: &types.ElementDescription{
5233			Description: types.Description{
5234				Label:   "KBps",
5235				Summary: "Kilobytes per second",
5236			},
5237			Key: "kiloBytesPerSecond",
5238		},
5239		RollupType:          "average",
5240		StatsType:           "rate",
5241		Level:               0,
5242		PerDeviceLevel:      0,
5243		AssociatedCounterId: nil,
5244	},
5245	{
5246		Key: 196615,
5247		NameInfo: &types.ElementDescription{
5248			Description: types.Description{
5249				Label:   "Data transmit rate",
5250				Summary: "Average rate at which data was transmitted during the interval",
5251			},
5252			Key: "transmitted",
5253		},
5254		GroupInfo: &types.ElementDescription{
5255			Description: types.Description{
5256				Label:   "Network",
5257				Summary: "Network",
5258			},
5259			Key: "net",
5260		},
5261		UnitInfo: &types.ElementDescription{
5262			Description: types.Description{
5263				Label:   "KBps",
5264				Summary: "Kilobytes per second",
5265			},
5266			Key: "kiloBytesPerSecond",
5267		},
5268		RollupType:          "average",
5269		StatsType:           "rate",
5270		Level:               0,
5271		PerDeviceLevel:      0,
5272		AssociatedCounterId: nil,
5273	},
5274	{
5275		Key: 196616,
5276		NameInfo: &types.ElementDescription{
5277			Description: types.Description{
5278				Label:   "Receive packets dropped",
5279				Summary: "Number of receives dropped",
5280			},
5281			Key: "droppedRx",
5282		},
5283		GroupInfo: &types.ElementDescription{
5284			Description: types.Description{
5285				Label:   "Network",
5286				Summary: "Network",
5287			},
5288			Key: "net",
5289		},
5290		UnitInfo: &types.ElementDescription{
5291			Description: types.Description{
5292				Label:   "num",
5293				Summary: "Number",
5294			},
5295			Key: "number",
5296		},
5297		RollupType:          "summation",
5298		StatsType:           "delta",
5299		Level:               0,
5300		PerDeviceLevel:      0,
5301		AssociatedCounterId: nil,
5302	},
5303	{
5304		Key: 196617,
5305		NameInfo: &types.ElementDescription{
5306			Description: types.Description{
5307				Label:   "Transmit packets dropped",
5308				Summary: "Number of transmits dropped",
5309			},
5310			Key: "droppedTx",
5311		},
5312		GroupInfo: &types.ElementDescription{
5313			Description: types.Description{
5314				Label:   "Network",
5315				Summary: "Network",
5316			},
5317			Key: "net",
5318		},
5319		UnitInfo: &types.ElementDescription{
5320			Description: types.Description{
5321				Label:   "num",
5322				Summary: "Number",
5323			},
5324			Key: "number",
5325		},
5326		RollupType:          "summation",
5327		StatsType:           "delta",
5328		Level:               0,
5329		PerDeviceLevel:      0,
5330		AssociatedCounterId: nil,
5331	},
5332	{
5333		Key: 196618,
5334		NameInfo: &types.ElementDescription{
5335			Description: types.Description{
5336				Label:   "Data receive rate",
5337				Summary: "Average amount of data received per second",
5338			},
5339			Key: "bytesRx",
5340		},
5341		GroupInfo: &types.ElementDescription{
5342			Description: types.Description{
5343				Label:   "Network",
5344				Summary: "Network",
5345			},
5346			Key: "net",
5347		},
5348		UnitInfo: &types.ElementDescription{
5349			Description: types.Description{
5350				Label:   "KBps",
5351				Summary: "Kilobytes per second",
5352			},
5353			Key: "kiloBytesPerSecond",
5354		},
5355		RollupType:          "average",
5356		StatsType:           "rate",
5357		Level:               0,
5358		PerDeviceLevel:      0,
5359		AssociatedCounterId: nil,
5360	},
5361	{
5362		Key: 196619,
5363		NameInfo: &types.ElementDescription{
5364			Description: types.Description{
5365				Label:   "Data transmit rate",
5366				Summary: "Average amount of data transmitted per second",
5367			},
5368			Key: "bytesTx",
5369		},
5370		GroupInfo: &types.ElementDescription{
5371			Description: types.Description{
5372				Label:   "Network",
5373				Summary: "Network",
5374			},
5375			Key: "net",
5376		},
5377		UnitInfo: &types.ElementDescription{
5378			Description: types.Description{
5379				Label:   "KBps",
5380				Summary: "Kilobytes per second",
5381			},
5382			Key: "kiloBytesPerSecond",
5383		},
5384		RollupType:          "average",
5385		StatsType:           "rate",
5386		Level:               0,
5387		PerDeviceLevel:      0,
5388		AssociatedCounterId: nil,
5389	},
5390	{
5391		Key: 196620,
5392		NameInfo: &types.ElementDescription{
5393			Description: types.Description{
5394				Label:   "Broadcast receives",
5395				Summary: "Number of broadcast packets received during the sampling interval",
5396			},
5397			Key: "broadcastRx",
5398		},
5399		GroupInfo: &types.ElementDescription{
5400			Description: types.Description{
5401				Label:   "Network",
5402				Summary: "Network",
5403			},
5404			Key: "net",
5405		},
5406		UnitInfo: &types.ElementDescription{
5407			Description: types.Description{
5408				Label:   "num",
5409				Summary: "Number",
5410			},
5411			Key: "number",
5412		},
5413		RollupType:          "summation",
5414		StatsType:           "delta",
5415		Level:               0,
5416		PerDeviceLevel:      0,
5417		AssociatedCounterId: nil,
5418	},
5419	{
5420		Key: 196621,
5421		NameInfo: &types.ElementDescription{
5422			Description: types.Description{
5423				Label:   "Broadcast transmits",
5424				Summary: "Number of broadcast packets transmitted during the sampling interval",
5425			},
5426			Key: "broadcastTx",
5427		},
5428		GroupInfo: &types.ElementDescription{
5429			Description: types.Description{
5430				Label:   "Network",
5431				Summary: "Network",
5432			},
5433			Key: "net",
5434		},
5435		UnitInfo: &types.ElementDescription{
5436			Description: types.Description{
5437				Label:   "num",
5438				Summary: "Number",
5439			},
5440			Key: "number",
5441		},
5442		RollupType:          "summation",
5443		StatsType:           "delta",
5444		Level:               0,
5445		PerDeviceLevel:      0,
5446		AssociatedCounterId: nil,
5447	},
5448	{
5449		Key: 196622,
5450		NameInfo: &types.ElementDescription{
5451			Description: types.Description{
5452				Label:   "Multicast receives",
5453				Summary: "Number of multicast packets received during the sampling interval",
5454			},
5455			Key: "multicastRx",
5456		},
5457		GroupInfo: &types.ElementDescription{
5458			Description: types.Description{
5459				Label:   "Network",
5460				Summary: "Network",
5461			},
5462			Key: "net",
5463		},
5464		UnitInfo: &types.ElementDescription{
5465			Description: types.Description{
5466				Label:   "num",
5467				Summary: "Number",
5468			},
5469			Key: "number",
5470		},
5471		RollupType:          "summation",
5472		StatsType:           "delta",
5473		Level:               0,
5474		PerDeviceLevel:      0,
5475		AssociatedCounterId: nil,
5476	},
5477	{
5478		Key: 196623,
5479		NameInfo: &types.ElementDescription{
5480			Description: types.Description{
5481				Label:   "Multicast transmits",
5482				Summary: "Number of multicast packets transmitted during the sampling interval",
5483			},
5484			Key: "multicastTx",
5485		},
5486		GroupInfo: &types.ElementDescription{
5487			Description: types.Description{
5488				Label:   "Network",
5489				Summary: "Network",
5490			},
5491			Key: "net",
5492		},
5493		UnitInfo: &types.ElementDescription{
5494			Description: types.Description{
5495				Label:   "num",
5496				Summary: "Number",
5497			},
5498			Key: "number",
5499		},
5500		RollupType:          "summation",
5501		StatsType:           "delta",
5502		Level:               0,
5503		PerDeviceLevel:      0,
5504		AssociatedCounterId: nil,
5505	},
5506	{
5507		Key: 196624,
5508		NameInfo: &types.ElementDescription{
5509			Description: types.Description{
5510				Label:   "Packet receive errors",
5511				Summary: "Number of packets with errors received during the sampling interval",
5512			},
5513			Key: "errorsRx",
5514		},
5515		GroupInfo: &types.ElementDescription{
5516			Description: types.Description{
5517				Label:   "Network",
5518				Summary: "Network",
5519			},
5520			Key: "net",
5521		},
5522		UnitInfo: &types.ElementDescription{
5523			Description: types.Description{
5524				Label:   "num",
5525				Summary: "Number",
5526			},
5527			Key: "number",
5528		},
5529		RollupType:          "summation",
5530		StatsType:           "delta",
5531		Level:               0,
5532		PerDeviceLevel:      0,
5533		AssociatedCounterId: nil,
5534	},
5535	{
5536		Key: 196625,
5537		NameInfo: &types.ElementDescription{
5538			Description: types.Description{
5539				Label:   "Packet transmit errors",
5540				Summary: "Number of packets with errors transmitted during the sampling interval",
5541			},
5542			Key: "errorsTx",
5543		},
5544		GroupInfo: &types.ElementDescription{
5545			Description: types.Description{
5546				Label:   "Network",
5547				Summary: "Network",
5548			},
5549			Key: "net",
5550		},
5551		UnitInfo: &types.ElementDescription{
5552			Description: types.Description{
5553				Label:   "num",
5554				Summary: "Number",
5555			},
5556			Key: "number",
5557		},
5558		RollupType:          "summation",
5559		StatsType:           "delta",
5560		Level:               0,
5561		PerDeviceLevel:      0,
5562		AssociatedCounterId: nil,
5563	},
5564	{
5565		Key: 196626,
5566		NameInfo: &types.ElementDescription{
5567			Description: types.Description{
5568				Label:   "Unknown protocol frames",
5569				Summary: "Number of frames with unknown protocol received during the sampling interval",
5570			},
5571			Key: "unknownProtos",
5572		},
5573		GroupInfo: &types.ElementDescription{
5574			Description: types.Description{
5575				Label:   "Network",
5576				Summary: "Network",
5577			},
5578			Key: "net",
5579		},
5580		UnitInfo: &types.ElementDescription{
5581			Description: types.Description{
5582				Label:   "num",
5583				Summary: "Number",
5584			},
5585			Key: "number",
5586		},
5587		RollupType:          "summation",
5588		StatsType:           "delta",
5589		Level:               0,
5590		PerDeviceLevel:      0,
5591		AssociatedCounterId: nil,
5592	},
5593	{
5594		Key: 196627,
5595		NameInfo: &types.ElementDescription{
5596			Description: types.Description{
5597				Label:   "pnicBytesRx",
5598				Summary: "pnicBytesRx",
5599			},
5600			Key: "pnicBytesRx",
5601		},
5602		GroupInfo: &types.ElementDescription{
5603			Description: types.Description{
5604				Label:   "Network",
5605				Summary: "Network",
5606			},
5607			Key: "net",
5608		},
5609		UnitInfo: &types.ElementDescription{
5610			Description: types.Description{
5611				Label:   "KBps",
5612				Summary: "Kilobytes per second",
5613			},
5614			Key: "kiloBytesPerSecond",
5615		},
5616		RollupType:          "average",
5617		StatsType:           "rate",
5618		Level:               0,
5619		PerDeviceLevel:      0,
5620		AssociatedCounterId: nil,
5621	},
5622	{
5623		Key: 196628,
5624		NameInfo: &types.ElementDescription{
5625			Description: types.Description{
5626				Label:   "pnicBytesTx",
5627				Summary: "pnicBytesTx",
5628			},
5629			Key: "pnicBytesTx",
5630		},
5631		GroupInfo: &types.ElementDescription{
5632			Description: types.Description{
5633				Label:   "Network",
5634				Summary: "Network",
5635			},
5636			Key: "net",
5637		},
5638		UnitInfo: &types.ElementDescription{
5639			Description: types.Description{
5640				Label:   "KBps",
5641				Summary: "Kilobytes per second",
5642			},
5643			Key: "kiloBytesPerSecond",
5644		},
5645		RollupType:          "average",
5646		StatsType:           "rate",
5647		Level:               0,
5648		PerDeviceLevel:      0,
5649		AssociatedCounterId: nil,
5650	},
5651	{
5652		Key: 262144,
5653		NameInfo: &types.ElementDescription{
5654			Description: types.Description{
5655				Label:   "Uptime",
5656				Summary: "Total time elapsed, in seconds, since last system startup",
5657			},
5658			Key: "uptime",
5659		},
5660		GroupInfo: &types.ElementDescription{
5661			Description: types.Description{
5662				Label:   "System",
5663				Summary: "System",
5664			},
5665			Key: "sys",
5666		},
5667		UnitInfo: &types.ElementDescription{
5668			Description: types.Description{
5669				Label:   "s",
5670				Summary: "Second",
5671			},
5672			Key: "second",
5673		},
5674		RollupType:          "latest",
5675		StatsType:           "absolute",
5676		Level:               0,
5677		PerDeviceLevel:      0,
5678		AssociatedCounterId: nil,
5679	},
5680	{
5681		Key: 262145,
5682		NameInfo: &types.ElementDescription{
5683			Description: types.Description{
5684				Label:   "Heartbeat",
5685				Summary: "Number of heartbeats issued per virtual machine during the interval",
5686			},
5687			Key: "heartbeat",
5688		},
5689		GroupInfo: &types.ElementDescription{
5690			Description: types.Description{
5691				Label:   "System",
5692				Summary: "System",
5693			},
5694			Key: "sys",
5695		},
5696		UnitInfo: &types.ElementDescription{
5697			Description: types.Description{
5698				Label:   "num",
5699				Summary: "Number",
5700			},
5701			Key: "number",
5702		},
5703		RollupType:          "latest",
5704		StatsType:           "absolute",
5705		Level:               0,
5706		PerDeviceLevel:      0,
5707		AssociatedCounterId: nil,
5708	},
5709	{
5710		Key: 262146,
5711		NameInfo: &types.ElementDescription{
5712			Description: types.Description{
5713				Label:   "Disk usage",
5714				Summary: "Amount of disk space usage for each mount point",
5715			},
5716			Key: "diskUsage",
5717		},
5718		GroupInfo: &types.ElementDescription{
5719			Description: types.Description{
5720				Label:   "System",
5721				Summary: "System",
5722			},
5723			Key: "sys",
5724		},
5725		UnitInfo: &types.ElementDescription{
5726			Description: types.Description{
5727				Label:   "%",
5728				Summary: "Percentage",
5729			},
5730			Key: "percent",
5731		},
5732		RollupType:          "latest",
5733		StatsType:           "absolute",
5734		Level:               0,
5735		PerDeviceLevel:      0,
5736		AssociatedCounterId: nil,
5737	},
5738	{
5739		Key: 262147,
5740		NameInfo: &types.ElementDescription{
5741			Description: types.Description{
5742				Label:   "Resource CPU usage (None)",
5743				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
5744			},
5745			Key: "resourceCpuUsage",
5746		},
5747		GroupInfo: &types.ElementDescription{
5748			Description: types.Description{
5749				Label:   "System",
5750				Summary: "System",
5751			},
5752			Key: "sys",
5753		},
5754		UnitInfo: &types.ElementDescription{
5755			Description: types.Description{
5756				Label:   "MHz",
5757				Summary: "Megahertz",
5758			},
5759			Key: "megaHertz",
5760		},
5761		RollupType:          "none",
5762		StatsType:           "rate",
5763		Level:               0,
5764		PerDeviceLevel:      0,
5765		AssociatedCounterId: []int32{262148, 262149, 262150},
5766	},
5767	{
5768		Key: 262148,
5769		NameInfo: &types.ElementDescription{
5770			Description: types.Description{
5771				Label:   "Resource CPU usage (Average)",
5772				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
5773			},
5774			Key: "resourceCpuUsage",
5775		},
5776		GroupInfo: &types.ElementDescription{
5777			Description: types.Description{
5778				Label:   "System",
5779				Summary: "System",
5780			},
5781			Key: "sys",
5782		},
5783		UnitInfo: &types.ElementDescription{
5784			Description: types.Description{
5785				Label:   "MHz",
5786				Summary: "Megahertz",
5787			},
5788			Key: "megaHertz",
5789		},
5790		RollupType:          "average",
5791		StatsType:           "rate",
5792		Level:               0,
5793		PerDeviceLevel:      0,
5794		AssociatedCounterId: nil,
5795	},
5796	{
5797		Key: 262149,
5798		NameInfo: &types.ElementDescription{
5799			Description: types.Description{
5800				Label:   "Resource CPU usage (Maximum)",
5801				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
5802			},
5803			Key: "resourceCpuUsage",
5804		},
5805		GroupInfo: &types.ElementDescription{
5806			Description: types.Description{
5807				Label:   "System",
5808				Summary: "System",
5809			},
5810			Key: "sys",
5811		},
5812		UnitInfo: &types.ElementDescription{
5813			Description: types.Description{
5814				Label:   "MHz",
5815				Summary: "Megahertz",
5816			},
5817			Key: "megaHertz",
5818		},
5819		RollupType:          "maximum",
5820		StatsType:           "rate",
5821		Level:               0,
5822		PerDeviceLevel:      0,
5823		AssociatedCounterId: nil,
5824	},
5825	{
5826		Key: 262150,
5827		NameInfo: &types.ElementDescription{
5828			Description: types.Description{
5829				Label:   "Resource CPU usage (Minimum)",
5830				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
5831			},
5832			Key: "resourceCpuUsage",
5833		},
5834		GroupInfo: &types.ElementDescription{
5835			Description: types.Description{
5836				Label:   "System",
5837				Summary: "System",
5838			},
5839			Key: "sys",
5840		},
5841		UnitInfo: &types.ElementDescription{
5842			Description: types.Description{
5843				Label:   "MHz",
5844				Summary: "Megahertz",
5845			},
5846			Key: "megaHertz",
5847		},
5848		RollupType:          "minimum",
5849		StatsType:           "rate",
5850		Level:               0,
5851		PerDeviceLevel:      0,
5852		AssociatedCounterId: nil,
5853	},
5854	{
5855		Key: 262151,
5856		NameInfo: &types.ElementDescription{
5857			Description: types.Description{
5858				Label:   "Resource memory touched",
5859				Summary: "Memory touched by the system resource group",
5860			},
5861			Key: "resourceMemTouched",
5862		},
5863		GroupInfo: &types.ElementDescription{
5864			Description: types.Description{
5865				Label:   "System",
5866				Summary: "System",
5867			},
5868			Key: "sys",
5869		},
5870		UnitInfo: &types.ElementDescription{
5871			Description: types.Description{
5872				Label:   "KB",
5873				Summary: "Kilobyte",
5874			},
5875			Key: "kiloBytes",
5876		},
5877		RollupType:          "latest",
5878		StatsType:           "absolute",
5879		Level:               0,
5880		PerDeviceLevel:      0,
5881		AssociatedCounterId: nil,
5882	},
5883	{
5884		Key: 262152,
5885		NameInfo: &types.ElementDescription{
5886			Description: types.Description{
5887				Label:   "Resource memory mapped",
5888				Summary: "Memory mapped by the system resource group",
5889			},
5890			Key: "resourceMemMapped",
5891		},
5892		GroupInfo: &types.ElementDescription{
5893			Description: types.Description{
5894				Label:   "System",
5895				Summary: "System",
5896			},
5897			Key: "sys",
5898		},
5899		UnitInfo: &types.ElementDescription{
5900			Description: types.Description{
5901				Label:   "KB",
5902				Summary: "Kilobyte",
5903			},
5904			Key: "kiloBytes",
5905		},
5906		RollupType:          "latest",
5907		StatsType:           "absolute",
5908		Level:               0,
5909		PerDeviceLevel:      0,
5910		AssociatedCounterId: nil,
5911	},
5912	{
5913		Key: 262153,
5914		NameInfo: &types.ElementDescription{
5915			Description: types.Description{
5916				Label:   "Resource memory share saved",
5917				Summary: "Memory saved due to sharing by the system resource group",
5918			},
5919			Key: "resourceMemShared",
5920		},
5921		GroupInfo: &types.ElementDescription{
5922			Description: types.Description{
5923				Label:   "System",
5924				Summary: "System",
5925			},
5926			Key: "sys",
5927		},
5928		UnitInfo: &types.ElementDescription{
5929			Description: types.Description{
5930				Label:   "KB",
5931				Summary: "Kilobyte",
5932			},
5933			Key: "kiloBytes",
5934		},
5935		RollupType:          "latest",
5936		StatsType:           "absolute",
5937		Level:               0,
5938		PerDeviceLevel:      0,
5939		AssociatedCounterId: nil,
5940	},
5941	{
5942		Key: 262154,
5943		NameInfo: &types.ElementDescription{
5944			Description: types.Description{
5945				Label:   "Resource memory swapped",
5946				Summary: "Memory swapped out by the system resource group",
5947			},
5948			Key: "resourceMemSwapped",
5949		},
5950		GroupInfo: &types.ElementDescription{
5951			Description: types.Description{
5952				Label:   "System",
5953				Summary: "System",
5954			},
5955			Key: "sys",
5956		},
5957		UnitInfo: &types.ElementDescription{
5958			Description: types.Description{
5959				Label:   "KB",
5960				Summary: "Kilobyte",
5961			},
5962			Key: "kiloBytes",
5963		},
5964		RollupType:          "latest",
5965		StatsType:           "absolute",
5966		Level:               0,
5967		PerDeviceLevel:      0,
5968		AssociatedCounterId: nil,
5969	},
5970	{
5971		Key: 262155,
5972		NameInfo: &types.ElementDescription{
5973			Description: types.Description{
5974				Label:   "Resource memory overhead",
5975				Summary: "Overhead memory consumed by the system resource group",
5976			},
5977			Key: "resourceMemOverhead",
5978		},
5979		GroupInfo: &types.ElementDescription{
5980			Description: types.Description{
5981				Label:   "System",
5982				Summary: "System",
5983			},
5984			Key: "sys",
5985		},
5986		UnitInfo: &types.ElementDescription{
5987			Description: types.Description{
5988				Label:   "KB",
5989				Summary: "Kilobyte",
5990			},
5991			Key: "kiloBytes",
5992		},
5993		RollupType:          "latest",
5994		StatsType:           "absolute",
5995		Level:               0,
5996		PerDeviceLevel:      0,
5997		AssociatedCounterId: nil,
5998	},
5999	{
6000		Key: 262156,
6001		NameInfo: &types.ElementDescription{
6002			Description: types.Description{
6003				Label:   "Resource memory shared",
6004				Summary: "Memory shared by the system resource group",
6005			},
6006			Key: "resourceMemCow",
6007		},
6008		GroupInfo: &types.ElementDescription{
6009			Description: types.Description{
6010				Label:   "System",
6011				Summary: "System",
6012			},
6013			Key: "sys",
6014		},
6015		UnitInfo: &types.ElementDescription{
6016			Description: types.Description{
6017				Label:   "KB",
6018				Summary: "Kilobyte",
6019			},
6020			Key: "kiloBytes",
6021		},
6022		RollupType:          "latest",
6023		StatsType:           "absolute",
6024		Level:               0,
6025		PerDeviceLevel:      0,
6026		AssociatedCounterId: nil,
6027	},
6028	{
6029		Key: 262157,
6030		NameInfo: &types.ElementDescription{
6031			Description: types.Description{
6032				Label:   "Resource memory zero",
6033				Summary: "Zero filled memory used by the system resource group",
6034			},
6035			Key: "resourceMemZero",
6036		},
6037		GroupInfo: &types.ElementDescription{
6038			Description: types.Description{
6039				Label:   "System",
6040				Summary: "System",
6041			},
6042			Key: "sys",
6043		},
6044		UnitInfo: &types.ElementDescription{
6045			Description: types.Description{
6046				Label:   "KB",
6047				Summary: "Kilobyte",
6048			},
6049			Key: "kiloBytes",
6050		},
6051		RollupType:          "latest",
6052		StatsType:           "absolute",
6053		Level:               0,
6054		PerDeviceLevel:      0,
6055		AssociatedCounterId: nil,
6056	},
6057	{
6058		Key: 262158,
6059		NameInfo: &types.ElementDescription{
6060			Description: types.Description{
6061				Label:   "Resource CPU running (1 min. average)",
6062				Summary: "CPU running average over 1 minute of the system resource group",
6063			},
6064			Key: "resourceCpuRun1",
6065		},
6066		GroupInfo: &types.ElementDescription{
6067			Description: types.Description{
6068				Label:   "System",
6069				Summary: "System",
6070			},
6071			Key: "sys",
6072		},
6073		UnitInfo: &types.ElementDescription{
6074			Description: types.Description{
6075				Label:   "%",
6076				Summary: "Percentage",
6077			},
6078			Key: "percent",
6079		},
6080		RollupType:          "latest",
6081		StatsType:           "absolute",
6082		Level:               0,
6083		PerDeviceLevel:      0,
6084		AssociatedCounterId: nil,
6085	},
6086	{
6087		Key: 262159,
6088		NameInfo: &types.ElementDescription{
6089			Description: types.Description{
6090				Label:   "Resource CPU active (1 min average)",
6091				Summary: "CPU active average over 1 minute of the system resource group",
6092			},
6093			Key: "resourceCpuAct1",
6094		},
6095		GroupInfo: &types.ElementDescription{
6096			Description: types.Description{
6097				Label:   "System",
6098				Summary: "System",
6099			},
6100			Key: "sys",
6101		},
6102		UnitInfo: &types.ElementDescription{
6103			Description: types.Description{
6104				Label:   "%",
6105				Summary: "Percentage",
6106			},
6107			Key: "percent",
6108		},
6109		RollupType:          "latest",
6110		StatsType:           "absolute",
6111		Level:               0,
6112		PerDeviceLevel:      0,
6113		AssociatedCounterId: nil,
6114	},
6115	{
6116		Key: 262160,
6117		NameInfo: &types.ElementDescription{
6118			Description: types.Description{
6119				Label:   "Resource CPU maximum limited (1 min)",
6120				Summary: "CPU maximum limited over 1 minute of the system resource group",
6121			},
6122			Key: "resourceCpuMaxLimited1",
6123		},
6124		GroupInfo: &types.ElementDescription{
6125			Description: types.Description{
6126				Label:   "System",
6127				Summary: "System",
6128			},
6129			Key: "sys",
6130		},
6131		UnitInfo: &types.ElementDescription{
6132			Description: types.Description{
6133				Label:   "%",
6134				Summary: "Percentage",
6135			},
6136			Key: "percent",
6137		},
6138		RollupType:          "latest",
6139		StatsType:           "absolute",
6140		Level:               0,
6141		PerDeviceLevel:      0,
6142		AssociatedCounterId: nil,
6143	},
6144	{
6145		Key: 262161,
6146		NameInfo: &types.ElementDescription{
6147			Description: types.Description{
6148				Label:   "Resource CPU running (5 min average)",
6149				Summary: "CPU running average over 5 minutes of the system resource group",
6150			},
6151			Key: "resourceCpuRun5",
6152		},
6153		GroupInfo: &types.ElementDescription{
6154			Description: types.Description{
6155				Label:   "System",
6156				Summary: "System",
6157			},
6158			Key: "sys",
6159		},
6160		UnitInfo: &types.ElementDescription{
6161			Description: types.Description{
6162				Label:   "%",
6163				Summary: "Percentage",
6164			},
6165			Key: "percent",
6166		},
6167		RollupType:          "latest",
6168		StatsType:           "absolute",
6169		Level:               0,
6170		PerDeviceLevel:      0,
6171		AssociatedCounterId: nil,
6172	},
6173	{
6174		Key: 262162,
6175		NameInfo: &types.ElementDescription{
6176			Description: types.Description{
6177				Label:   "Resource CPU active (5 min average)",
6178				Summary: "CPU active average over 5 minutes of the system resource group",
6179			},
6180			Key: "resourceCpuAct5",
6181		},
6182		GroupInfo: &types.ElementDescription{
6183			Description: types.Description{
6184				Label:   "System",
6185				Summary: "System",
6186			},
6187			Key: "sys",
6188		},
6189		UnitInfo: &types.ElementDescription{
6190			Description: types.Description{
6191				Label:   "%",
6192				Summary: "Percentage",
6193			},
6194			Key: "percent",
6195		},
6196		RollupType:          "latest",
6197		StatsType:           "absolute",
6198		Level:               0,
6199		PerDeviceLevel:      0,
6200		AssociatedCounterId: nil,
6201	},
6202	{
6203		Key: 262163,
6204		NameInfo: &types.ElementDescription{
6205			Description: types.Description{
6206				Label:   "Resource CPU maximum limited (5 min)",
6207				Summary: "CPU maximum limited over 5 minutes of the system resource group",
6208			},
6209			Key: "resourceCpuMaxLimited5",
6210		},
6211		GroupInfo: &types.ElementDescription{
6212			Description: types.Description{
6213				Label:   "System",
6214				Summary: "System",
6215			},
6216			Key: "sys",
6217		},
6218		UnitInfo: &types.ElementDescription{
6219			Description: types.Description{
6220				Label:   "%",
6221				Summary: "Percentage",
6222			},
6223			Key: "percent",
6224		},
6225		RollupType:          "latest",
6226		StatsType:           "absolute",
6227		Level:               0,
6228		PerDeviceLevel:      0,
6229		AssociatedCounterId: nil,
6230	},
6231	{
6232		Key: 262164,
6233		NameInfo: &types.ElementDescription{
6234			Description: types.Description{
6235				Label:   "Resource CPU allocation minimum (in MHz)",
6236				Summary: "CPU allocation reservation (in MHz) of the system resource group",
6237			},
6238			Key: "resourceCpuAllocMin",
6239		},
6240		GroupInfo: &types.ElementDescription{
6241			Description: types.Description{
6242				Label:   "System",
6243				Summary: "System",
6244			},
6245			Key: "sys",
6246		},
6247		UnitInfo: &types.ElementDescription{
6248			Description: types.Description{
6249				Label:   "MHz",
6250				Summary: "Megahertz",
6251			},
6252			Key: "megaHertz",
6253		},
6254		RollupType:          "latest",
6255		StatsType:           "absolute",
6256		Level:               0,
6257		PerDeviceLevel:      0,
6258		AssociatedCounterId: nil,
6259	},
6260	{
6261		Key: 262165,
6262		NameInfo: &types.ElementDescription{
6263			Description: types.Description{
6264				Label:   "Resource CPU allocation maximum (in MHz)",
6265				Summary: "CPU allocation limit (in MHz) of the system resource group",
6266			},
6267			Key: "resourceCpuAllocMax",
6268		},
6269		GroupInfo: &types.ElementDescription{
6270			Description: types.Description{
6271				Label:   "System",
6272				Summary: "System",
6273			},
6274			Key: "sys",
6275		},
6276		UnitInfo: &types.ElementDescription{
6277			Description: types.Description{
6278				Label:   "MHz",
6279				Summary: "Megahertz",
6280			},
6281			Key: "megaHertz",
6282		},
6283		RollupType:          "latest",
6284		StatsType:           "absolute",
6285		Level:               0,
6286		PerDeviceLevel:      0,
6287		AssociatedCounterId: nil,
6288	},
6289	{
6290		Key: 262166,
6291		NameInfo: &types.ElementDescription{
6292			Description: types.Description{
6293				Label:   "Resource CPU allocation shares",
6294				Summary: "CPU allocation shares of the system resource group",
6295			},
6296			Key: "resourceCpuAllocShares",
6297		},
6298		GroupInfo: &types.ElementDescription{
6299			Description: types.Description{
6300				Label:   "System",
6301				Summary: "System",
6302			},
6303			Key: "sys",
6304		},
6305		UnitInfo: &types.ElementDescription{
6306			Description: types.Description{
6307				Label:   "num",
6308				Summary: "Number",
6309			},
6310			Key: "number",
6311		},
6312		RollupType:          "latest",
6313		StatsType:           "absolute",
6314		Level:               0,
6315		PerDeviceLevel:      0,
6316		AssociatedCounterId: nil,
6317	},
6318	{
6319		Key: 262167,
6320		NameInfo: &types.ElementDescription{
6321			Description: types.Description{
6322				Label:   "Resource memory allocation minimum (in KB)",
6323				Summary: "Memory allocation reservation (in KB) of the system resource group",
6324			},
6325			Key: "resourceMemAllocMin",
6326		},
6327		GroupInfo: &types.ElementDescription{
6328			Description: types.Description{
6329				Label:   "System",
6330				Summary: "System",
6331			},
6332			Key: "sys",
6333		},
6334		UnitInfo: &types.ElementDescription{
6335			Description: types.Description{
6336				Label:   "KB",
6337				Summary: "Kilobyte",
6338			},
6339			Key: "kiloBytes",
6340		},
6341		RollupType:          "latest",
6342		StatsType:           "absolute",
6343		Level:               0,
6344		PerDeviceLevel:      0,
6345		AssociatedCounterId: nil,
6346	},
6347	{
6348		Key: 262168,
6349		NameInfo: &types.ElementDescription{
6350			Description: types.Description{
6351				Label:   "Resource memory allocation maximum (in KB)",
6352				Summary: "Memory allocation limit (in KB) of the system resource group",
6353			},
6354			Key: "resourceMemAllocMax",
6355		},
6356		GroupInfo: &types.ElementDescription{
6357			Description: types.Description{
6358				Label:   "System",
6359				Summary: "System",
6360			},
6361			Key: "sys",
6362		},
6363		UnitInfo: &types.ElementDescription{
6364			Description: types.Description{
6365				Label:   "KB",
6366				Summary: "Kilobyte",
6367			},
6368			Key: "kiloBytes",
6369		},
6370		RollupType:          "latest",
6371		StatsType:           "absolute",
6372		Level:               0,
6373		PerDeviceLevel:      0,
6374		AssociatedCounterId: nil,
6375	},
6376	{
6377		Key: 262169,
6378		NameInfo: &types.ElementDescription{
6379			Description: types.Description{
6380				Label:   "Resource memory allocation shares",
6381				Summary: "Memory allocation shares of the system resource group",
6382			},
6383			Key: "resourceMemAllocShares",
6384		},
6385		GroupInfo: &types.ElementDescription{
6386			Description: types.Description{
6387				Label:   "System",
6388				Summary: "System",
6389			},
6390			Key: "sys",
6391		},
6392		UnitInfo: &types.ElementDescription{
6393			Description: types.Description{
6394				Label:   "num",
6395				Summary: "Number",
6396			},
6397			Key: "number",
6398		},
6399		RollupType:          "latest",
6400		StatsType:           "absolute",
6401		Level:               0,
6402		PerDeviceLevel:      0,
6403		AssociatedCounterId: nil,
6404	},
6405	{
6406		Key: 262170,
6407		NameInfo: &types.ElementDescription{
6408			Description: types.Description{
6409				Label:   "OS Uptime",
6410				Summary: "Total time elapsed, in seconds, since last operating system boot-up",
6411			},
6412			Key: "osUptime",
6413		},
6414		GroupInfo: &types.ElementDescription{
6415			Description: types.Description{
6416				Label:   "System",
6417				Summary: "System",
6418			},
6419			Key: "sys",
6420		},
6421		UnitInfo: &types.ElementDescription{
6422			Description: types.Description{
6423				Label:   "s",
6424				Summary: "Second",
6425			},
6426			Key: "second",
6427		},
6428		RollupType:          "latest",
6429		StatsType:           "absolute",
6430		Level:               0,
6431		PerDeviceLevel:      0,
6432		AssociatedCounterId: nil,
6433	},
6434	{
6435		Key: 262171,
6436		NameInfo: &types.ElementDescription{
6437			Description: types.Description{
6438				Label:   "Resource memory consumed",
6439				Summary: "Memory consumed by the system resource group",
6440			},
6441			Key: "resourceMemConsumed",
6442		},
6443		GroupInfo: &types.ElementDescription{
6444			Description: types.Description{
6445				Label:   "System",
6446				Summary: "System",
6447			},
6448			Key: "sys",
6449		},
6450		UnitInfo: &types.ElementDescription{
6451			Description: types.Description{
6452				Label:   "KB",
6453				Summary: "Kilobyte",
6454			},
6455			Key: "kiloBytes",
6456		},
6457		RollupType:          "latest",
6458		StatsType:           "absolute",
6459		Level:               0,
6460		PerDeviceLevel:      0,
6461		AssociatedCounterId: nil,
6462	},
6463	{
6464		Key: 262172,
6465		NameInfo: &types.ElementDescription{
6466			Description: types.Description{
6467				Label:   "File descriptors used",
6468				Summary: "Number of file descriptors used by the system resource group",
6469			},
6470			Key: "resourceFdUsage",
6471		},
6472		GroupInfo: &types.ElementDescription{
6473			Description: types.Description{
6474				Label:   "System",
6475				Summary: "System",
6476			},
6477			Key: "sys",
6478		},
6479		UnitInfo: &types.ElementDescription{
6480			Description: types.Description{
6481				Label:   "num",
6482				Summary: "Number",
6483			},
6484			Key: "number",
6485		},
6486		RollupType:          "latest",
6487		StatsType:           "absolute",
6488		Level:               0,
6489		PerDeviceLevel:      0,
6490		AssociatedCounterId: nil,
6491	},
6492	{
6493		Key: 327680,
6494		NameInfo: &types.ElementDescription{
6495			Description: types.Description{
6496				Label:   "Active (1 min average)",
6497				Summary: "CPU active average over 1 minute",
6498			},
6499			Key: "actav1",
6500		},
6501		GroupInfo: &types.ElementDescription{
6502			Description: types.Description{
6503				Label:   "Resource group CPU",
6504				Summary: "Resource group CPU",
6505			},
6506			Key: "rescpu",
6507		},
6508		UnitInfo: &types.ElementDescription{
6509			Description: types.Description{
6510				Label:   "%",
6511				Summary: "Percentage",
6512			},
6513			Key: "percent",
6514		},
6515		RollupType:          "latest",
6516		StatsType:           "absolute",
6517		Level:               0,
6518		PerDeviceLevel:      0,
6519		AssociatedCounterId: nil,
6520	},
6521	{
6522		Key: 327681,
6523		NameInfo: &types.ElementDescription{
6524			Description: types.Description{
6525				Label:   "Active (1 min peak)",
6526				Summary: "CPU active peak over 1 minute",
6527			},
6528			Key: "actpk1",
6529		},
6530		GroupInfo: &types.ElementDescription{
6531			Description: types.Description{
6532				Label:   "Resource group CPU",
6533				Summary: "Resource group CPU",
6534			},
6535			Key: "rescpu",
6536		},
6537		UnitInfo: &types.ElementDescription{
6538			Description: types.Description{
6539				Label:   "%",
6540				Summary: "Percentage",
6541			},
6542			Key: "percent",
6543		},
6544		RollupType:          "latest",
6545		StatsType:           "absolute",
6546		Level:               0,
6547		PerDeviceLevel:      0,
6548		AssociatedCounterId: nil,
6549	},
6550	{
6551		Key: 327682,
6552		NameInfo: &types.ElementDescription{
6553			Description: types.Description{
6554				Label:   "Running (1 min average)",
6555				Summary: "CPU running average over 1 minute",
6556			},
6557			Key: "runav1",
6558		},
6559		GroupInfo: &types.ElementDescription{
6560			Description: types.Description{
6561				Label:   "Resource group CPU",
6562				Summary: "Resource group CPU",
6563			},
6564			Key: "rescpu",
6565		},
6566		UnitInfo: &types.ElementDescription{
6567			Description: types.Description{
6568				Label:   "%",
6569				Summary: "Percentage",
6570			},
6571			Key: "percent",
6572		},
6573		RollupType:          "latest",
6574		StatsType:           "absolute",
6575		Level:               0,
6576		PerDeviceLevel:      0,
6577		AssociatedCounterId: nil,
6578	},
6579	{
6580		Key: 327683,
6581		NameInfo: &types.ElementDescription{
6582			Description: types.Description{
6583				Label:   "Active (5 min average)",
6584				Summary: "CPU active average over 5 minutes",
6585			},
6586			Key: "actav5",
6587		},
6588		GroupInfo: &types.ElementDescription{
6589			Description: types.Description{
6590				Label:   "Resource group CPU",
6591				Summary: "Resource group CPU",
6592			},
6593			Key: "rescpu",
6594		},
6595		UnitInfo: &types.ElementDescription{
6596			Description: types.Description{
6597				Label:   "%",
6598				Summary: "Percentage",
6599			},
6600			Key: "percent",
6601		},
6602		RollupType:          "latest",
6603		StatsType:           "absolute",
6604		Level:               0,
6605		PerDeviceLevel:      0,
6606		AssociatedCounterId: nil,
6607	},
6608	{
6609		Key: 327684,
6610		NameInfo: &types.ElementDescription{
6611			Description: types.Description{
6612				Label:   "Active (5 min peak)",
6613				Summary: "CPU active peak over 5 minutes",
6614			},
6615			Key: "actpk5",
6616		},
6617		GroupInfo: &types.ElementDescription{
6618			Description: types.Description{
6619				Label:   "Resource group CPU",
6620				Summary: "Resource group CPU",
6621			},
6622			Key: "rescpu",
6623		},
6624		UnitInfo: &types.ElementDescription{
6625			Description: types.Description{
6626				Label:   "%",
6627				Summary: "Percentage",
6628			},
6629			Key: "percent",
6630		},
6631		RollupType:          "latest",
6632		StatsType:           "absolute",
6633		Level:               0,
6634		PerDeviceLevel:      0,
6635		AssociatedCounterId: nil,
6636	},
6637	{
6638		Key: 327685,
6639		NameInfo: &types.ElementDescription{
6640			Description: types.Description{
6641				Label:   "Running (5 min average)",
6642				Summary: "CPU running average over 5 minutes",
6643			},
6644			Key: "runav5",
6645		},
6646		GroupInfo: &types.ElementDescription{
6647			Description: types.Description{
6648				Label:   "Resource group CPU",
6649				Summary: "Resource group CPU",
6650			},
6651			Key: "rescpu",
6652		},
6653		UnitInfo: &types.ElementDescription{
6654			Description: types.Description{
6655				Label:   "%",
6656				Summary: "Percentage",
6657			},
6658			Key: "percent",
6659		},
6660		RollupType:          "latest",
6661		StatsType:           "absolute",
6662		Level:               0,
6663		PerDeviceLevel:      0,
6664		AssociatedCounterId: nil,
6665	},
6666	{
6667		Key: 327686,
6668		NameInfo: &types.ElementDescription{
6669			Description: types.Description{
6670				Label:   "Active (15 min average)",
6671				Summary: "CPU active average over 15 minutes",
6672			},
6673			Key: "actav15",
6674		},
6675		GroupInfo: &types.ElementDescription{
6676			Description: types.Description{
6677				Label:   "Resource group CPU",
6678				Summary: "Resource group CPU",
6679			},
6680			Key: "rescpu",
6681		},
6682		UnitInfo: &types.ElementDescription{
6683			Description: types.Description{
6684				Label:   "%",
6685				Summary: "Percentage",
6686			},
6687			Key: "percent",
6688		},
6689		RollupType:          "latest",
6690		StatsType:           "absolute",
6691		Level:               0,
6692		PerDeviceLevel:      0,
6693		AssociatedCounterId: nil,
6694	},
6695	{
6696		Key: 327687,
6697		NameInfo: &types.ElementDescription{
6698			Description: types.Description{
6699				Label:   "Active (15 min peak)",
6700				Summary: "CPU active peak over 15 minutes",
6701			},
6702			Key: "actpk15",
6703		},
6704		GroupInfo: &types.ElementDescription{
6705			Description: types.Description{
6706				Label:   "Resource group CPU",
6707				Summary: "Resource group CPU",
6708			},
6709			Key: "rescpu",
6710		},
6711		UnitInfo: &types.ElementDescription{
6712			Description: types.Description{
6713				Label:   "%",
6714				Summary: "Percentage",
6715			},
6716			Key: "percent",
6717		},
6718		RollupType:          "latest",
6719		StatsType:           "absolute",
6720		Level:               0,
6721		PerDeviceLevel:      0,
6722		AssociatedCounterId: nil,
6723	},
6724	{
6725		Key: 327688,
6726		NameInfo: &types.ElementDescription{
6727			Description: types.Description{
6728				Label:   "Running (15 min average)",
6729				Summary: "CPU running average over 15 minutes",
6730			},
6731			Key: "runav15",
6732		},
6733		GroupInfo: &types.ElementDescription{
6734			Description: types.Description{
6735				Label:   "Resource group CPU",
6736				Summary: "Resource group CPU",
6737			},
6738			Key: "rescpu",
6739		},
6740		UnitInfo: &types.ElementDescription{
6741			Description: types.Description{
6742				Label:   "%",
6743				Summary: "Percentage",
6744			},
6745			Key: "percent",
6746		},
6747		RollupType:          "latest",
6748		StatsType:           "absolute",
6749		Level:               0,
6750		PerDeviceLevel:      0,
6751		AssociatedCounterId: nil,
6752	},
6753	{
6754		Key: 327689,
6755		NameInfo: &types.ElementDescription{
6756			Description: types.Description{
6757				Label:   "Running (1 min peak)",
6758				Summary: "CPU running peak over 1 minute",
6759			},
6760			Key: "runpk1",
6761		},
6762		GroupInfo: &types.ElementDescription{
6763			Description: types.Description{
6764				Label:   "Resource group CPU",
6765				Summary: "Resource group CPU",
6766			},
6767			Key: "rescpu",
6768		},
6769		UnitInfo: &types.ElementDescription{
6770			Description: types.Description{
6771				Label:   "%",
6772				Summary: "Percentage",
6773			},
6774			Key: "percent",
6775		},
6776		RollupType:          "latest",
6777		StatsType:           "absolute",
6778		Level:               0,
6779		PerDeviceLevel:      0,
6780		AssociatedCounterId: nil,
6781	},
6782	{
6783		Key: 327690,
6784		NameInfo: &types.ElementDescription{
6785			Description: types.Description{
6786				Label:   "Throttled (1 min average)",
6787				Summary: "Amount of CPU resources over the limit that were refused, average over 1 minute",
6788			},
6789			Key: "maxLimited1",
6790		},
6791		GroupInfo: &types.ElementDescription{
6792			Description: types.Description{
6793				Label:   "Resource group CPU",
6794				Summary: "Resource group CPU",
6795			},
6796			Key: "rescpu",
6797		},
6798		UnitInfo: &types.ElementDescription{
6799			Description: types.Description{
6800				Label:   "%",
6801				Summary: "Percentage",
6802			},
6803			Key: "percent",
6804		},
6805		RollupType:          "latest",
6806		StatsType:           "absolute",
6807		Level:               0,
6808		PerDeviceLevel:      0,
6809		AssociatedCounterId: nil,
6810	},
6811	{
6812		Key: 327691,
6813		NameInfo: &types.ElementDescription{
6814			Description: types.Description{
6815				Label:   "Running (5 min peak)",
6816				Summary: "CPU running peak over 5 minutes",
6817			},
6818			Key: "runpk5",
6819		},
6820		GroupInfo: &types.ElementDescription{
6821			Description: types.Description{
6822				Label:   "Resource group CPU",
6823				Summary: "Resource group CPU",
6824			},
6825			Key: "rescpu",
6826		},
6827		UnitInfo: &types.ElementDescription{
6828			Description: types.Description{
6829				Label:   "%",
6830				Summary: "Percentage",
6831			},
6832			Key: "percent",
6833		},
6834		RollupType:          "latest",
6835		StatsType:           "absolute",
6836		Level:               0,
6837		PerDeviceLevel:      0,
6838		AssociatedCounterId: nil,
6839	},
6840	{
6841		Key: 327692,
6842		NameInfo: &types.ElementDescription{
6843			Description: types.Description{
6844				Label:   "Throttled (5 min average)",
6845				Summary: "Amount of CPU resources over the limit that were refused, average over 5 minutes",
6846			},
6847			Key: "maxLimited5",
6848		},
6849		GroupInfo: &types.ElementDescription{
6850			Description: types.Description{
6851				Label:   "Resource group CPU",
6852				Summary: "Resource group CPU",
6853			},
6854			Key: "rescpu",
6855		},
6856		UnitInfo: &types.ElementDescription{
6857			Description: types.Description{
6858				Label:   "%",
6859				Summary: "Percentage",
6860			},
6861			Key: "percent",
6862		},
6863		RollupType:          "latest",
6864		StatsType:           "absolute",
6865		Level:               0,
6866		PerDeviceLevel:      0,
6867		AssociatedCounterId: nil,
6868	},
6869	{
6870		Key: 327693,
6871		NameInfo: &types.ElementDescription{
6872			Description: types.Description{
6873				Label:   "Running (15 min peak)",
6874				Summary: "CPU running peak over 15 minutes",
6875			},
6876			Key: "runpk15",
6877		},
6878		GroupInfo: &types.ElementDescription{
6879			Description: types.Description{
6880				Label:   "Resource group CPU",
6881				Summary: "Resource group CPU",
6882			},
6883			Key: "rescpu",
6884		},
6885		UnitInfo: &types.ElementDescription{
6886			Description: types.Description{
6887				Label:   "%",
6888				Summary: "Percentage",
6889			},
6890			Key: "percent",
6891		},
6892		RollupType:          "latest",
6893		StatsType:           "absolute",
6894		Level:               0,
6895		PerDeviceLevel:      0,
6896		AssociatedCounterId: nil,
6897	},
6898	{
6899		Key: 327694,
6900		NameInfo: &types.ElementDescription{
6901			Description: types.Description{
6902				Label:   "Throttled (15 min average)",
6903				Summary: "Amount of CPU resources over the limit that were refused, average over 15 minutes",
6904			},
6905			Key: "maxLimited15",
6906		},
6907		GroupInfo: &types.ElementDescription{
6908			Description: types.Description{
6909				Label:   "Resource group CPU",
6910				Summary: "Resource group CPU",
6911			},
6912			Key: "rescpu",
6913		},
6914		UnitInfo: &types.ElementDescription{
6915			Description: types.Description{
6916				Label:   "%",
6917				Summary: "Percentage",
6918			},
6919			Key: "percent",
6920		},
6921		RollupType:          "latest",
6922		StatsType:           "absolute",
6923		Level:               0,
6924		PerDeviceLevel:      0,
6925		AssociatedCounterId: nil,
6926	},
6927	{
6928		Key: 327695,
6929		NameInfo: &types.ElementDescription{
6930			Description: types.Description{
6931				Label:   "Group CPU sample count",
6932				Summary: "Group CPU sample count",
6933			},
6934			Key: "sampleCount",
6935		},
6936		GroupInfo: &types.ElementDescription{
6937			Description: types.Description{
6938				Label:   "Resource group CPU",
6939				Summary: "Resource group CPU",
6940			},
6941			Key: "rescpu",
6942		},
6943		UnitInfo: &types.ElementDescription{
6944			Description: types.Description{
6945				Label:   "num",
6946				Summary: "Number",
6947			},
6948			Key: "number",
6949		},
6950		RollupType:          "latest",
6951		StatsType:           "absolute",
6952		Level:               0,
6953		PerDeviceLevel:      0,
6954		AssociatedCounterId: nil,
6955	},
6956	{
6957		Key: 327696,
6958		NameInfo: &types.ElementDescription{
6959			Description: types.Description{
6960				Label:   "Group CPU sample period",
6961				Summary: "Group CPU sample period",
6962			},
6963			Key: "samplePeriod",
6964		},
6965		GroupInfo: &types.ElementDescription{
6966			Description: types.Description{
6967				Label:   "Resource group CPU",
6968				Summary: "Resource group CPU",
6969			},
6970			Key: "rescpu",
6971		},
6972		UnitInfo: &types.ElementDescription{
6973			Description: types.Description{
6974				Label:   "ms",
6975				Summary: "Millisecond",
6976			},
6977			Key: "millisecond",
6978		},
6979		RollupType:          "latest",
6980		StatsType:           "absolute",
6981		Level:               0,
6982		PerDeviceLevel:      0,
6983		AssociatedCounterId: nil,
6984	},
6985	{
6986		Key: 393216,
6987		NameInfo: &types.ElementDescription{
6988			Description: types.Description{
6989				Label:   "Memory used",
6990				Summary: "Amount of total configured memory that is available for use",
6991			},
6992			Key: "memUsed",
6993		},
6994		GroupInfo: &types.ElementDescription{
6995			Description: types.Description{
6996				Label:   "Management agent",
6997				Summary: "Management agent",
6998			},
6999			Key: "managementAgent",
7000		},
7001		UnitInfo: &types.ElementDescription{
7002			Description: types.Description{
7003				Label:   "KB",
7004				Summary: "Kilobyte",
7005			},
7006			Key: "kiloBytes",
7007		},
7008		RollupType:          "average",
7009		StatsType:           "absolute",
7010		Level:               0,
7011		PerDeviceLevel:      0,
7012		AssociatedCounterId: nil,
7013	},
7014	{
7015		Key: 393217,
7016		NameInfo: &types.ElementDescription{
7017			Description: types.Description{
7018				Label:   "Memory swap used",
7019				Summary: "Sum of the memory swapped by all powered-on virtual machines on the host",
7020			},
7021			Key: "swapUsed",
7022		},
7023		GroupInfo: &types.ElementDescription{
7024			Description: types.Description{
7025				Label:   "Management agent",
7026				Summary: "Management agent",
7027			},
7028			Key: "managementAgent",
7029		},
7030		UnitInfo: &types.ElementDescription{
7031			Description: types.Description{
7032				Label:   "KB",
7033				Summary: "Kilobyte",
7034			},
7035			Key: "kiloBytes",
7036		},
7037		RollupType:          "average",
7038		StatsType:           "absolute",
7039		Level:               0,
7040		PerDeviceLevel:      0,
7041		AssociatedCounterId: nil,
7042	},
7043	{
7044		Key: 393218,
7045		NameInfo: &types.ElementDescription{
7046			Description: types.Description{
7047				Label:   "Memory swap in",
7048				Summary: "Amount of memory that is swapped in for the Service Console",
7049			},
7050			Key: "swapIn",
7051		},
7052		GroupInfo: &types.ElementDescription{
7053			Description: types.Description{
7054				Label:   "Management agent",
7055				Summary: "Management agent",
7056			},
7057			Key: "managementAgent",
7058		},
7059		UnitInfo: &types.ElementDescription{
7060			Description: types.Description{
7061				Label:   "KBps",
7062				Summary: "Kilobytes per second",
7063			},
7064			Key: "kiloBytesPerSecond",
7065		},
7066		RollupType:          "average",
7067		StatsType:           "rate",
7068		Level:               0,
7069		PerDeviceLevel:      0,
7070		AssociatedCounterId: nil,
7071	},
7072	{
7073		Key: 393219,
7074		NameInfo: &types.ElementDescription{
7075			Description: types.Description{
7076				Label:   "Memory swap out",
7077				Summary: "Amount of memory that is swapped out for the Service Console",
7078			},
7079			Key: "swapOut",
7080		},
7081		GroupInfo: &types.ElementDescription{
7082			Description: types.Description{
7083				Label:   "Management agent",
7084				Summary: "Management agent",
7085			},
7086			Key: "managementAgent",
7087		},
7088		UnitInfo: &types.ElementDescription{
7089			Description: types.Description{
7090				Label:   "KBps",
7091				Summary: "Kilobytes per second",
7092			},
7093			Key: "kiloBytesPerSecond",
7094		},
7095		RollupType:          "average",
7096		StatsType:           "rate",
7097		Level:               0,
7098		PerDeviceLevel:      0,
7099		AssociatedCounterId: nil,
7100	},
7101	{
7102		Key: 393220,
7103		NameInfo: &types.ElementDescription{
7104			Description: types.Description{
7105				Label:   "CPU usage",
7106				Summary: "Amount of Service Console CPU usage",
7107			},
7108			Key: "cpuUsage",
7109		},
7110		GroupInfo: &types.ElementDescription{
7111			Description: types.Description{
7112				Label:   "Management agent",
7113				Summary: "Management agent",
7114			},
7115			Key: "managementAgent",
7116		},
7117		UnitInfo: &types.ElementDescription{
7118			Description: types.Description{
7119				Label:   "MHz",
7120				Summary: "Megahertz",
7121			},
7122			Key: "megaHertz",
7123		},
7124		RollupType:          "average",
7125		StatsType:           "rate",
7126		Level:               0,
7127		PerDeviceLevel:      0,
7128		AssociatedCounterId: nil,
7129	},
7130	{
7131		Key: 458752,
7132		NameInfo: &types.ElementDescription{
7133			Description: types.Description{
7134				Label:   "Average commands issued per second",
7135				Summary: "Average number of commands issued per second by the storage adapter during the collection interval",
7136			},
7137			Key: "commandsAveraged",
7138		},
7139		GroupInfo: &types.ElementDescription{
7140			Description: types.Description{
7141				Label:   "Storage adapter",
7142				Summary: "Storage adapter",
7143			},
7144			Key: "storageAdapter",
7145		},
7146		UnitInfo: &types.ElementDescription{
7147			Description: types.Description{
7148				Label:   "num",
7149				Summary: "Number",
7150			},
7151			Key: "number",
7152		},
7153		RollupType:          "average",
7154		StatsType:           "rate",
7155		Level:               0,
7156		PerDeviceLevel:      0,
7157		AssociatedCounterId: nil,
7158	},
7159	{
7160		Key: 458753,
7161		NameInfo: &types.ElementDescription{
7162			Description: types.Description{
7163				Label:   "Average read requests per second",
7164				Summary: "Average number of read commands issued per second by the storage adapter during the collection interval",
7165			},
7166			Key: "numberReadAveraged",
7167		},
7168		GroupInfo: &types.ElementDescription{
7169			Description: types.Description{
7170				Label:   "Storage adapter",
7171				Summary: "Storage adapter",
7172			},
7173			Key: "storageAdapter",
7174		},
7175		UnitInfo: &types.ElementDescription{
7176			Description: types.Description{
7177				Label:   "num",
7178				Summary: "Number",
7179			},
7180			Key: "number",
7181		},
7182		RollupType:          "average",
7183		StatsType:           "rate",
7184		Level:               0,
7185		PerDeviceLevel:      0,
7186		AssociatedCounterId: nil,
7187	},
7188	{
7189		Key: 458754,
7190		NameInfo: &types.ElementDescription{
7191			Description: types.Description{
7192				Label:   "Average write requests per second",
7193				Summary: "Average number of write commands issued per second by the storage adapter during the collection interval",
7194			},
7195			Key: "numberWriteAveraged",
7196		},
7197		GroupInfo: &types.ElementDescription{
7198			Description: types.Description{
7199				Label:   "Storage adapter",
7200				Summary: "Storage adapter",
7201			},
7202			Key: "storageAdapter",
7203		},
7204		UnitInfo: &types.ElementDescription{
7205			Description: types.Description{
7206				Label:   "num",
7207				Summary: "Number",
7208			},
7209			Key: "number",
7210		},
7211		RollupType:          "average",
7212		StatsType:           "rate",
7213		Level:               0,
7214		PerDeviceLevel:      0,
7215		AssociatedCounterId: nil,
7216	},
7217	{
7218		Key: 458755,
7219		NameInfo: &types.ElementDescription{
7220			Description: types.Description{
7221				Label:   "Read rate",
7222				Summary: "Rate of reading data by the storage adapter",
7223			},
7224			Key: "read",
7225		},
7226		GroupInfo: &types.ElementDescription{
7227			Description: types.Description{
7228				Label:   "Storage adapter",
7229				Summary: "Storage adapter",
7230			},
7231			Key: "storageAdapter",
7232		},
7233		UnitInfo: &types.ElementDescription{
7234			Description: types.Description{
7235				Label:   "KBps",
7236				Summary: "Kilobytes per second",
7237			},
7238			Key: "kiloBytesPerSecond",
7239		},
7240		RollupType:          "average",
7241		StatsType:           "rate",
7242		Level:               0,
7243		PerDeviceLevel:      0,
7244		AssociatedCounterId: nil,
7245	},
7246	{
7247		Key: 458756,
7248		NameInfo: &types.ElementDescription{
7249			Description: types.Description{
7250				Label:   "Write rate",
7251				Summary: "Rate of writing data by the storage adapter",
7252			},
7253			Key: "write",
7254		},
7255		GroupInfo: &types.ElementDescription{
7256			Description: types.Description{
7257				Label:   "Storage adapter",
7258				Summary: "Storage adapter",
7259			},
7260			Key: "storageAdapter",
7261		},
7262		UnitInfo: &types.ElementDescription{
7263			Description: types.Description{
7264				Label:   "KBps",
7265				Summary: "Kilobytes per second",
7266			},
7267			Key: "kiloBytesPerSecond",
7268		},
7269		RollupType:          "average",
7270		StatsType:           "rate",
7271		Level:               0,
7272		PerDeviceLevel:      0,
7273		AssociatedCounterId: nil,
7274	},
7275	{
7276		Key: 458757,
7277		NameInfo: &types.ElementDescription{
7278			Description: types.Description{
7279				Label:   "Read latency",
7280				Summary: "The average time a read by the storage adapter takes",
7281			},
7282			Key: "totalReadLatency",
7283		},
7284		GroupInfo: &types.ElementDescription{
7285			Description: types.Description{
7286				Label:   "Storage adapter",
7287				Summary: "Storage adapter",
7288			},
7289			Key: "storageAdapter",
7290		},
7291		UnitInfo: &types.ElementDescription{
7292			Description: types.Description{
7293				Label:   "ms",
7294				Summary: "Millisecond",
7295			},
7296			Key: "millisecond",
7297		},
7298		RollupType:          "average",
7299		StatsType:           "absolute",
7300		Level:               0,
7301		PerDeviceLevel:      0,
7302		AssociatedCounterId: nil,
7303	},
7304	{
7305		Key: 458758,
7306		NameInfo: &types.ElementDescription{
7307			Description: types.Description{
7308				Label:   "Write latency",
7309				Summary: "The average time a write by the storage adapter takes",
7310			},
7311			Key: "totalWriteLatency",
7312		},
7313		GroupInfo: &types.ElementDescription{
7314			Description: types.Description{
7315				Label:   "Storage adapter",
7316				Summary: "Storage adapter",
7317			},
7318			Key: "storageAdapter",
7319		},
7320		UnitInfo: &types.ElementDescription{
7321			Description: types.Description{
7322				Label:   "ms",
7323				Summary: "Millisecond",
7324			},
7325			Key: "millisecond",
7326		},
7327		RollupType:          "average",
7328		StatsType:           "absolute",
7329		Level:               0,
7330		PerDeviceLevel:      0,
7331		AssociatedCounterId: nil,
7332	},
7333	{
7334		Key: 458759,
7335		NameInfo: &types.ElementDescription{
7336			Description: types.Description{
7337				Label:   "Highest latency",
7338				Summary: "Highest latency value across all storage adapters used by the host",
7339			},
7340			Key: "maxTotalLatency",
7341		},
7342		GroupInfo: &types.ElementDescription{
7343			Description: types.Description{
7344				Label:   "Storage adapter",
7345				Summary: "Storage adapter",
7346			},
7347			Key: "storageAdapter",
7348		},
7349		UnitInfo: &types.ElementDescription{
7350			Description: types.Description{
7351				Label:   "ms",
7352				Summary: "Millisecond",
7353			},
7354			Key: "millisecond",
7355		},
7356		RollupType:          "latest",
7357		StatsType:           "absolute",
7358		Level:               0,
7359		PerDeviceLevel:      0,
7360		AssociatedCounterId: nil,
7361	},
7362	{
7363		Key: 524288,
7364		NameInfo: &types.ElementDescription{
7365			Description: types.Description{
7366				Label:   "Average commands issued per second",
7367				Summary: "Average number of commands issued per second on the storage path during the collection interval",
7368			},
7369			Key: "commandsAveraged",
7370		},
7371		GroupInfo: &types.ElementDescription{
7372			Description: types.Description{
7373				Label:   "Storage path",
7374				Summary: "Storage path",
7375			},
7376			Key: "storagePath",
7377		},
7378		UnitInfo: &types.ElementDescription{
7379			Description: types.Description{
7380				Label:   "num",
7381				Summary: "Number",
7382			},
7383			Key: "number",
7384		},
7385		RollupType:          "average",
7386		StatsType:           "rate",
7387		Level:               0,
7388		PerDeviceLevel:      0,
7389		AssociatedCounterId: nil,
7390	},
7391	{
7392		Key: 524289,
7393		NameInfo: &types.ElementDescription{
7394			Description: types.Description{
7395				Label:   "Average read requests per second",
7396				Summary: "Average number of read commands issued per second on the storage path during the collection interval",
7397			},
7398			Key: "numberReadAveraged",
7399		},
7400		GroupInfo: &types.ElementDescription{
7401			Description: types.Description{
7402				Label:   "Storage path",
7403				Summary: "Storage path",
7404			},
7405			Key: "storagePath",
7406		},
7407		UnitInfo: &types.ElementDescription{
7408			Description: types.Description{
7409				Label:   "num",
7410				Summary: "Number",
7411			},
7412			Key: "number",
7413		},
7414		RollupType:          "average",
7415		StatsType:           "rate",
7416		Level:               0,
7417		PerDeviceLevel:      0,
7418		AssociatedCounterId: nil,
7419	},
7420	{
7421		Key: 524290,
7422		NameInfo: &types.ElementDescription{
7423			Description: types.Description{
7424				Label:   "Average write requests per second",
7425				Summary: "Average number of write commands issued per second on the storage path during the collection interval",
7426			},
7427			Key: "numberWriteAveraged",
7428		},
7429		GroupInfo: &types.ElementDescription{
7430			Description: types.Description{
7431				Label:   "Storage path",
7432				Summary: "Storage path",
7433			},
7434			Key: "storagePath",
7435		},
7436		UnitInfo: &types.ElementDescription{
7437			Description: types.Description{
7438				Label:   "num",
7439				Summary: "Number",
7440			},
7441			Key: "number",
7442		},
7443		RollupType:          "average",
7444		StatsType:           "rate",
7445		Level:               0,
7446		PerDeviceLevel:      0,
7447		AssociatedCounterId: nil,
7448	},
7449	{
7450		Key: 524291,
7451		NameInfo: &types.ElementDescription{
7452			Description: types.Description{
7453				Label:   "Read rate",
7454				Summary: "Rate of reading data on the storage path",
7455			},
7456			Key: "read",
7457		},
7458		GroupInfo: &types.ElementDescription{
7459			Description: types.Description{
7460				Label:   "Storage path",
7461				Summary: "Storage path",
7462			},
7463			Key: "storagePath",
7464		},
7465		UnitInfo: &types.ElementDescription{
7466			Description: types.Description{
7467				Label:   "KBps",
7468				Summary: "Kilobytes per second",
7469			},
7470			Key: "kiloBytesPerSecond",
7471		},
7472		RollupType:          "average",
7473		StatsType:           "rate",
7474		Level:               0,
7475		PerDeviceLevel:      0,
7476		AssociatedCounterId: nil,
7477	},
7478	{
7479		Key: 524292,
7480		NameInfo: &types.ElementDescription{
7481			Description: types.Description{
7482				Label:   "Write rate",
7483				Summary: "Rate of writing data on the storage path",
7484			},
7485			Key: "write",
7486		},
7487		GroupInfo: &types.ElementDescription{
7488			Description: types.Description{
7489				Label:   "Storage path",
7490				Summary: "Storage path",
7491			},
7492			Key: "storagePath",
7493		},
7494		UnitInfo: &types.ElementDescription{
7495			Description: types.Description{
7496				Label:   "KBps",
7497				Summary: "Kilobytes per second",
7498			},
7499			Key: "kiloBytesPerSecond",
7500		},
7501		RollupType:          "average",
7502		StatsType:           "rate",
7503		Level:               0,
7504		PerDeviceLevel:      0,
7505		AssociatedCounterId: nil,
7506	},
7507	{
7508		Key: 524293,
7509		NameInfo: &types.ElementDescription{
7510			Description: types.Description{
7511				Label:   "Read latency",
7512				Summary: "The average time a read issued on the storage path takes",
7513			},
7514			Key: "totalReadLatency",
7515		},
7516		GroupInfo: &types.ElementDescription{
7517			Description: types.Description{
7518				Label:   "Storage path",
7519				Summary: "Storage path",
7520			},
7521			Key: "storagePath",
7522		},
7523		UnitInfo: &types.ElementDescription{
7524			Description: types.Description{
7525				Label:   "ms",
7526				Summary: "Millisecond",
7527			},
7528			Key: "millisecond",
7529		},
7530		RollupType:          "average",
7531		StatsType:           "absolute",
7532		Level:               0,
7533		PerDeviceLevel:      0,
7534		AssociatedCounterId: nil,
7535	},
7536	{
7537		Key: 524294,
7538		NameInfo: &types.ElementDescription{
7539			Description: types.Description{
7540				Label:   "Write latency",
7541				Summary: "The average time a write issued on the storage path takes",
7542			},
7543			Key: "totalWriteLatency",
7544		},
7545		GroupInfo: &types.ElementDescription{
7546			Description: types.Description{
7547				Label:   "Storage path",
7548				Summary: "Storage path",
7549			},
7550			Key: "storagePath",
7551		},
7552		UnitInfo: &types.ElementDescription{
7553			Description: types.Description{
7554				Label:   "ms",
7555				Summary: "Millisecond",
7556			},
7557			Key: "millisecond",
7558		},
7559		RollupType:          "average",
7560		StatsType:           "absolute",
7561		Level:               0,
7562		PerDeviceLevel:      0,
7563		AssociatedCounterId: nil,
7564	},
7565	{
7566		Key: 524295,
7567		NameInfo: &types.ElementDescription{
7568			Description: types.Description{
7569				Label:   "Highest latency",
7570				Summary: "Highest latency value across all storage paths used by the host",
7571			},
7572			Key: "maxTotalLatency",
7573		},
7574		GroupInfo: &types.ElementDescription{
7575			Description: types.Description{
7576				Label:   "Storage path",
7577				Summary: "Storage path",
7578			},
7579			Key: "storagePath",
7580		},
7581		UnitInfo: &types.ElementDescription{
7582			Description: types.Description{
7583				Label:   "ms",
7584				Summary: "Millisecond",
7585			},
7586			Key: "millisecond",
7587		},
7588		RollupType:          "latest",
7589		StatsType:           "absolute",
7590		Level:               0,
7591		PerDeviceLevel:      0,
7592		AssociatedCounterId: nil,
7593	},
7594	{
7595		Key: 589824,
7596		NameInfo: &types.ElementDescription{
7597			Description: types.Description{
7598				Label:   "Average read requests per second",
7599				Summary: "Average number of read commands issued per second to the virtual disk during the collection interval",
7600			},
7601			Key: "numberReadAveraged",
7602		},
7603		GroupInfo: &types.ElementDescription{
7604			Description: types.Description{
7605				Label:   "Virtual disk",
7606				Summary: "Virtual disk",
7607			},
7608			Key: "virtualDisk",
7609		},
7610		UnitInfo: &types.ElementDescription{
7611			Description: types.Description{
7612				Label:   "num",
7613				Summary: "Number",
7614			},
7615			Key: "number",
7616		},
7617		RollupType:          "average",
7618		StatsType:           "rate",
7619		Level:               0,
7620		PerDeviceLevel:      0,
7621		AssociatedCounterId: nil,
7622	},
7623	{
7624		Key: 589825,
7625		NameInfo: &types.ElementDescription{
7626			Description: types.Description{
7627				Label:   "Average write requests per second",
7628				Summary: "Average number of write commands issued per second to the virtual disk during the collection interval",
7629			},
7630			Key: "numberWriteAveraged",
7631		},
7632		GroupInfo: &types.ElementDescription{
7633			Description: types.Description{
7634				Label:   "Virtual disk",
7635				Summary: "Virtual disk",
7636			},
7637			Key: "virtualDisk",
7638		},
7639		UnitInfo: &types.ElementDescription{
7640			Description: types.Description{
7641				Label:   "num",
7642				Summary: "Number",
7643			},
7644			Key: "number",
7645		},
7646		RollupType:          "average",
7647		StatsType:           "rate",
7648		Level:               0,
7649		PerDeviceLevel:      0,
7650		AssociatedCounterId: nil,
7651	},
7652	{
7653		Key: 589826,
7654		NameInfo: &types.ElementDescription{
7655			Description: types.Description{
7656				Label:   "Read rate",
7657				Summary: "Rate of reading data from the virtual disk",
7658			},
7659			Key: "read",
7660		},
7661		GroupInfo: &types.ElementDescription{
7662			Description: types.Description{
7663				Label:   "Virtual disk",
7664				Summary: "Virtual disk",
7665			},
7666			Key: "virtualDisk",
7667		},
7668		UnitInfo: &types.ElementDescription{
7669			Description: types.Description{
7670				Label:   "KBps",
7671				Summary: "Kilobytes per second",
7672			},
7673			Key: "kiloBytesPerSecond",
7674		},
7675		RollupType:          "average",
7676		StatsType:           "rate",
7677		Level:               0,
7678		PerDeviceLevel:      0,
7679		AssociatedCounterId: nil,
7680	},
7681	{
7682		Key: 589827,
7683		NameInfo: &types.ElementDescription{
7684			Description: types.Description{
7685				Label:   "Write rate",
7686				Summary: "Rate of writing data to the virtual disk",
7687			},
7688			Key: "write",
7689		},
7690		GroupInfo: &types.ElementDescription{
7691			Description: types.Description{
7692				Label:   "Virtual disk",
7693				Summary: "Virtual disk",
7694			},
7695			Key: "virtualDisk",
7696		},
7697		UnitInfo: &types.ElementDescription{
7698			Description: types.Description{
7699				Label:   "KBps",
7700				Summary: "Kilobytes per second",
7701			},
7702			Key: "kiloBytesPerSecond",
7703		},
7704		RollupType:          "average",
7705		StatsType:           "rate",
7706		Level:               0,
7707		PerDeviceLevel:      0,
7708		AssociatedCounterId: nil,
7709	},
7710	{
7711		Key: 589828,
7712		NameInfo: &types.ElementDescription{
7713			Description: types.Description{
7714				Label:   "Read latency",
7715				Summary: "The average time a read from the virtual disk takes",
7716			},
7717			Key: "totalReadLatency",
7718		},
7719		GroupInfo: &types.ElementDescription{
7720			Description: types.Description{
7721				Label:   "Virtual disk",
7722				Summary: "Virtual disk",
7723			},
7724			Key: "virtualDisk",
7725		},
7726		UnitInfo: &types.ElementDescription{
7727			Description: types.Description{
7728				Label:   "ms",
7729				Summary: "Millisecond",
7730			},
7731			Key: "millisecond",
7732		},
7733		RollupType:          "average",
7734		StatsType:           "absolute",
7735		Level:               0,
7736		PerDeviceLevel:      0,
7737		AssociatedCounterId: nil,
7738	},
7739	{
7740		Key: 589829,
7741		NameInfo: &types.ElementDescription{
7742			Description: types.Description{
7743				Label:   "Write latency",
7744				Summary: "The average time a write to the virtual disk takes",
7745			},
7746			Key: "totalWriteLatency",
7747		},
7748		GroupInfo: &types.ElementDescription{
7749			Description: types.Description{
7750				Label:   "Virtual disk",
7751				Summary: "Virtual disk",
7752			},
7753			Key: "virtualDisk",
7754		},
7755		UnitInfo: &types.ElementDescription{
7756			Description: types.Description{
7757				Label:   "ms",
7758				Summary: "Millisecond",
7759			},
7760			Key: "millisecond",
7761		},
7762		RollupType:          "average",
7763		StatsType:           "absolute",
7764		Level:               0,
7765		PerDeviceLevel:      0,
7766		AssociatedCounterId: nil,
7767	},
7768	{
7769		Key: 589830,
7770		NameInfo: &types.ElementDescription{
7771			Description: types.Description{
7772				Label:   "Average number of outstanding read requests",
7773				Summary: "Average number of outstanding read requests to the virtual disk during the collection interval",
7774			},
7775			Key: "readOIO",
7776		},
7777		GroupInfo: &types.ElementDescription{
7778			Description: types.Description{
7779				Label:   "Virtual disk",
7780				Summary: "Virtual disk",
7781			},
7782			Key: "virtualDisk",
7783		},
7784		UnitInfo: &types.ElementDescription{
7785			Description: types.Description{
7786				Label:   "num",
7787				Summary: "Number",
7788			},
7789			Key: "number",
7790		},
7791		RollupType:          "latest",
7792		StatsType:           "absolute",
7793		Level:               0,
7794		PerDeviceLevel:      0,
7795		AssociatedCounterId: nil,
7796	},
7797	{
7798		Key: 589831,
7799		NameInfo: &types.ElementDescription{
7800			Description: types.Description{
7801				Label:   "Average number of outstanding write requests",
7802				Summary: "Average number of outstanding write requests to the virtual disk during the collection interval",
7803			},
7804			Key: "writeOIO",
7805		},
7806		GroupInfo: &types.ElementDescription{
7807			Description: types.Description{
7808				Label:   "Virtual disk",
7809				Summary: "Virtual disk",
7810			},
7811			Key: "virtualDisk",
7812		},
7813		UnitInfo: &types.ElementDescription{
7814			Description: types.Description{
7815				Label:   "num",
7816				Summary: "Number",
7817			},
7818			Key: "number",
7819		},
7820		RollupType:          "latest",
7821		StatsType:           "absolute",
7822		Level:               0,
7823		PerDeviceLevel:      0,
7824		AssociatedCounterId: nil,
7825	},
7826	{
7827		Key: 589832,
7828		NameInfo: &types.ElementDescription{
7829			Description: types.Description{
7830				Label:   "Read workload metric",
7831				Summary: "Storage DRS virtual disk metric for the read workload model",
7832			},
7833			Key: "readLoadMetric",
7834		},
7835		GroupInfo: &types.ElementDescription{
7836			Description: types.Description{
7837				Label:   "Virtual disk",
7838				Summary: "Virtual disk",
7839			},
7840			Key: "virtualDisk",
7841		},
7842		UnitInfo: &types.ElementDescription{
7843			Description: types.Description{
7844				Label:   "num",
7845				Summary: "Number",
7846			},
7847			Key: "number",
7848		},
7849		RollupType:          "latest",
7850		StatsType:           "absolute",
7851		Level:               0,
7852		PerDeviceLevel:      0,
7853		AssociatedCounterId: nil,
7854	},
7855	{
7856		Key: 589833,
7857		NameInfo: &types.ElementDescription{
7858			Description: types.Description{
7859				Label:   "Write workload metric",
7860				Summary: "Storage DRS virtual disk metric for the write workload model",
7861			},
7862			Key: "writeLoadMetric",
7863		},
7864		GroupInfo: &types.ElementDescription{
7865			Description: types.Description{
7866				Label:   "Virtual disk",
7867				Summary: "Virtual disk",
7868			},
7869			Key: "virtualDisk",
7870		},
7871		UnitInfo: &types.ElementDescription{
7872			Description: types.Description{
7873				Label:   "num",
7874				Summary: "Number",
7875			},
7876			Key: "number",
7877		},
7878		RollupType:          "latest",
7879		StatsType:           "absolute",
7880		Level:               0,
7881		PerDeviceLevel:      0,
7882		AssociatedCounterId: nil,
7883	},
7884	{
7885		Key: 589834,
7886		NameInfo: &types.ElementDescription{
7887			Description: types.Description{
7888				Label:   "Read request size",
7889				Summary: "Average read request size in bytes",
7890			},
7891			Key: "readIOSize",
7892		},
7893		GroupInfo: &types.ElementDescription{
7894			Description: types.Description{
7895				Label:   "Virtual disk",
7896				Summary: "Virtual disk",
7897			},
7898			Key: "virtualDisk",
7899		},
7900		UnitInfo: &types.ElementDescription{
7901			Description: types.Description{
7902				Label:   "num",
7903				Summary: "Number",
7904			},
7905			Key: "number",
7906		},
7907		RollupType:          "latest",
7908		StatsType:           "absolute",
7909		Level:               0,
7910		PerDeviceLevel:      0,
7911		AssociatedCounterId: nil,
7912	},
7913	{
7914		Key: 589835,
7915		NameInfo: &types.ElementDescription{
7916			Description: types.Description{
7917				Label:   "Write request size",
7918				Summary: "Average write request size in bytes",
7919			},
7920			Key: "writeIOSize",
7921		},
7922		GroupInfo: &types.ElementDescription{
7923			Description: types.Description{
7924				Label:   "Virtual disk",
7925				Summary: "Virtual disk",
7926			},
7927			Key: "virtualDisk",
7928		},
7929		UnitInfo: &types.ElementDescription{
7930			Description: types.Description{
7931				Label:   "num",
7932				Summary: "Number",
7933			},
7934			Key: "number",
7935		},
7936		RollupType:          "latest",
7937		StatsType:           "absolute",
7938		Level:               0,
7939		PerDeviceLevel:      0,
7940		AssociatedCounterId: nil,
7941	},
7942	{
7943		Key: 589836,
7944		NameInfo: &types.ElementDescription{
7945			Description: types.Description{
7946				Label:   "Number of small seeks",
7947				Summary: "Number of seeks during the interval that were less than 64 LBNs apart",
7948			},
7949			Key: "smallSeeks",
7950		},
7951		GroupInfo: &types.ElementDescription{
7952			Description: types.Description{
7953				Label:   "Virtual disk",
7954				Summary: "Virtual disk",
7955			},
7956			Key: "virtualDisk",
7957		},
7958		UnitInfo: &types.ElementDescription{
7959			Description: types.Description{
7960				Label:   "num",
7961				Summary: "Number",
7962			},
7963			Key: "number",
7964		},
7965		RollupType:          "latest",
7966		StatsType:           "absolute",
7967		Level:               0,
7968		PerDeviceLevel:      0,
7969		AssociatedCounterId: nil,
7970	},
7971	{
7972		Key: 589837,
7973		NameInfo: &types.ElementDescription{
7974			Description: types.Description{
7975				Label:   "Number of medium seeks",
7976				Summary: "Number of seeks during the interval that were between 64 and 8192 LBNs apart",
7977			},
7978			Key: "mediumSeeks",
7979		},
7980		GroupInfo: &types.ElementDescription{
7981			Description: types.Description{
7982				Label:   "Virtual disk",
7983				Summary: "Virtual disk",
7984			},
7985			Key: "virtualDisk",
7986		},
7987		UnitInfo: &types.ElementDescription{
7988			Description: types.Description{
7989				Label:   "num",
7990				Summary: "Number",
7991			},
7992			Key: "number",
7993		},
7994		RollupType:          "latest",
7995		StatsType:           "absolute",
7996		Level:               0,
7997		PerDeviceLevel:      0,
7998		AssociatedCounterId: nil,
7999	},
8000	{
8001		Key: 589838,
8002		NameInfo: &types.ElementDescription{
8003			Description: types.Description{
8004				Label:   "Number of large seeks",
8005				Summary: "Number of seeks during the interval that were greater than 8192 LBNs apart",
8006			},
8007			Key: "largeSeeks",
8008		},
8009		GroupInfo: &types.ElementDescription{
8010			Description: types.Description{
8011				Label:   "Virtual disk",
8012				Summary: "Virtual disk",
8013			},
8014			Key: "virtualDisk",
8015		},
8016		UnitInfo: &types.ElementDescription{
8017			Description: types.Description{
8018				Label:   "num",
8019				Summary: "Number",
8020			},
8021			Key: "number",
8022		},
8023		RollupType:          "latest",
8024		StatsType:           "absolute",
8025		Level:               0,
8026		PerDeviceLevel:      0,
8027		AssociatedCounterId: nil,
8028	},
8029	{
8030		Key: 589839,
8031		NameInfo: &types.ElementDescription{
8032			Description: types.Description{
8033				Label:   "Read Latency (us)",
8034				Summary: "Read latency in microseconds",
8035			},
8036			Key: "readLatencyUS",
8037		},
8038		GroupInfo: &types.ElementDescription{
8039			Description: types.Description{
8040				Label:   "Virtual disk",
8041				Summary: "Virtual disk",
8042			},
8043			Key: "virtualDisk",
8044		},
8045		UnitInfo: &types.ElementDescription{
8046			Description: types.Description{
8047				Label:   "µs",
8048				Summary: "Microsecond",
8049			},
8050			Key: "microsecond",
8051		},
8052		RollupType:          "latest",
8053		StatsType:           "absolute",
8054		Level:               0,
8055		PerDeviceLevel:      0,
8056		AssociatedCounterId: nil,
8057	},
8058	{
8059		Key: 589840,
8060		NameInfo: &types.ElementDescription{
8061			Description: types.Description{
8062				Label:   "Write Latency (us)",
8063				Summary: "Write latency in microseconds",
8064			},
8065			Key: "writeLatencyUS",
8066		},
8067		GroupInfo: &types.ElementDescription{
8068			Description: types.Description{
8069				Label:   "Virtual disk",
8070				Summary: "Virtual disk",
8071			},
8072			Key: "virtualDisk",
8073		},
8074		UnitInfo: &types.ElementDescription{
8075			Description: types.Description{
8076				Label:   "µs",
8077				Summary: "Microsecond",
8078			},
8079			Key: "microsecond",
8080		},
8081		RollupType:          "latest",
8082		StatsType:           "absolute",
8083		Level:               0,
8084		PerDeviceLevel:      0,
8085		AssociatedCounterId: nil,
8086	},
8087	{
8088		Key: 589841,
8089		NameInfo: &types.ElementDescription{
8090			Description: types.Description{
8091				Label:   "Virtual Flash Read Cache I/Os per second for the virtual disk",
8092				Summary: "The average virtual Flash Read Cache I/Os per second value for the virtual disk",
8093			},
8094			Key: "vFlashCacheIops",
8095		},
8096		GroupInfo: &types.ElementDescription{
8097			Description: types.Description{
8098				Label:   "Virtual disk",
8099				Summary: "Virtual disk",
8100			},
8101			Key: "virtualDisk",
8102		},
8103		UnitInfo: &types.ElementDescription{
8104			Description: types.Description{
8105				Label:   "num",
8106				Summary: "Number",
8107			},
8108			Key: "number",
8109		},
8110		RollupType:          "latest",
8111		StatsType:           "absolute",
8112		Level:               0,
8113		PerDeviceLevel:      0,
8114		AssociatedCounterId: nil,
8115	},
8116	{
8117		Key: 589842,
8118		NameInfo: &types.ElementDescription{
8119			Description: types.Description{
8120				Label:   "Virtual Flash Read Cache latency for the virtual disk",
8121				Summary: "The average virtual Flash Read Cache latency value for the virtual disk",
8122			},
8123			Key: "vFlashCacheLatency",
8124		},
8125		GroupInfo: &types.ElementDescription{
8126			Description: types.Description{
8127				Label:   "Virtual disk",
8128				Summary: "Virtual disk",
8129			},
8130			Key: "virtualDisk",
8131		},
8132		UnitInfo: &types.ElementDescription{
8133			Description: types.Description{
8134				Label:   "µs",
8135				Summary: "Microsecond",
8136			},
8137			Key: "microsecond",
8138		},
8139		RollupType:          "latest",
8140		StatsType:           "absolute",
8141		Level:               0,
8142		PerDeviceLevel:      0,
8143		AssociatedCounterId: nil,
8144	},
8145	{
8146		Key: 589843,
8147		NameInfo: &types.ElementDescription{
8148			Description: types.Description{
8149				Label:   "Virtual Flash Read Cache throughput for virtual disk",
8150				Summary: "The average virtual Flash Read Cache throughput value for the virtual disk",
8151			},
8152			Key: "vFlashCacheThroughput",
8153		},
8154		GroupInfo: &types.ElementDescription{
8155			Description: types.Description{
8156				Label:   "Virtual disk",
8157				Summary: "Virtual disk",
8158			},
8159			Key: "virtualDisk",
8160		},
8161		UnitInfo: &types.ElementDescription{
8162			Description: types.Description{
8163				Label:   "num",
8164				Summary: "Number",
8165			},
8166			Key: "number",
8167		},
8168		RollupType:          "latest",
8169		StatsType:           "absolute",
8170		Level:               0,
8171		PerDeviceLevel:      0,
8172		AssociatedCounterId: nil,
8173	},
8174	{
8175		Key: 655360,
8176		NameInfo: &types.ElementDescription{
8177			Description: types.Description{
8178				Label:   "Average read requests per second",
8179				Summary: "Average number of read commands issued per second to the datastore during the collection interval",
8180			},
8181			Key: "numberReadAveraged",
8182		},
8183		GroupInfo: &types.ElementDescription{
8184			Description: types.Description{
8185				Label:   "Datastore",
8186				Summary: "Datastore",
8187			},
8188			Key: "datastore",
8189		},
8190		UnitInfo: &types.ElementDescription{
8191			Description: types.Description{
8192				Label:   "num",
8193				Summary: "Number",
8194			},
8195			Key: "number",
8196		},
8197		RollupType:          "average",
8198		StatsType:           "rate",
8199		Level:               0,
8200		PerDeviceLevel:      0,
8201		AssociatedCounterId: nil,
8202	},
8203	{
8204		Key: 655361,
8205		NameInfo: &types.ElementDescription{
8206			Description: types.Description{
8207				Label:   "Average write requests per second",
8208				Summary: "Average number of write commands issued per second to the datastore during the collection interval",
8209			},
8210			Key: "numberWriteAveraged",
8211		},
8212		GroupInfo: &types.ElementDescription{
8213			Description: types.Description{
8214				Label:   "Datastore",
8215				Summary: "Datastore",
8216			},
8217			Key: "datastore",
8218		},
8219		UnitInfo: &types.ElementDescription{
8220			Description: types.Description{
8221				Label:   "num",
8222				Summary: "Number",
8223			},
8224			Key: "number",
8225		},
8226		RollupType:          "average",
8227		StatsType:           "rate",
8228		Level:               0,
8229		PerDeviceLevel:      0,
8230		AssociatedCounterId: nil,
8231	},
8232	{
8233		Key: 655362,
8234		NameInfo: &types.ElementDescription{
8235			Description: types.Description{
8236				Label:   "Read rate",
8237				Summary: "Rate of reading data from the datastore",
8238			},
8239			Key: "read",
8240		},
8241		GroupInfo: &types.ElementDescription{
8242			Description: types.Description{
8243				Label:   "Datastore",
8244				Summary: "Datastore",
8245			},
8246			Key: "datastore",
8247		},
8248		UnitInfo: &types.ElementDescription{
8249			Description: types.Description{
8250				Label:   "KBps",
8251				Summary: "Kilobytes per second",
8252			},
8253			Key: "kiloBytesPerSecond",
8254		},
8255		RollupType:          "average",
8256		StatsType:           "rate",
8257		Level:               0,
8258		PerDeviceLevel:      0,
8259		AssociatedCounterId: nil,
8260	},
8261	{
8262		Key: 655363,
8263		NameInfo: &types.ElementDescription{
8264			Description: types.Description{
8265				Label:   "Write rate",
8266				Summary: "Rate of writing data to the datastore",
8267			},
8268			Key: "write",
8269		},
8270		GroupInfo: &types.ElementDescription{
8271			Description: types.Description{
8272				Label:   "Datastore",
8273				Summary: "Datastore",
8274			},
8275			Key: "datastore",
8276		},
8277		UnitInfo: &types.ElementDescription{
8278			Description: types.Description{
8279				Label:   "KBps",
8280				Summary: "Kilobytes per second",
8281			},
8282			Key: "kiloBytesPerSecond",
8283		},
8284		RollupType:          "average",
8285		StatsType:           "rate",
8286		Level:               0,
8287		PerDeviceLevel:      0,
8288		AssociatedCounterId: nil,
8289	},
8290	{
8291		Key: 655364,
8292		NameInfo: &types.ElementDescription{
8293			Description: types.Description{
8294				Label:   "Read latency",
8295				Summary: "The average time a read from the datastore takes",
8296			},
8297			Key: "totalReadLatency",
8298		},
8299		GroupInfo: &types.ElementDescription{
8300			Description: types.Description{
8301				Label:   "Datastore",
8302				Summary: "Datastore",
8303			},
8304			Key: "datastore",
8305		},
8306		UnitInfo: &types.ElementDescription{
8307			Description: types.Description{
8308				Label:   "ms",
8309				Summary: "Millisecond",
8310			},
8311			Key: "millisecond",
8312		},
8313		RollupType:          "average",
8314		StatsType:           "absolute",
8315		Level:               0,
8316		PerDeviceLevel:      0,
8317		AssociatedCounterId: nil,
8318	},
8319	{
8320		Key: 655365,
8321		NameInfo: &types.ElementDescription{
8322			Description: types.Description{
8323				Label:   "Write latency",
8324				Summary: "The average time a write to the datastore takes",
8325			},
8326			Key: "totalWriteLatency",
8327		},
8328		GroupInfo: &types.ElementDescription{
8329			Description: types.Description{
8330				Label:   "Datastore",
8331				Summary: "Datastore",
8332			},
8333			Key: "datastore",
8334		},
8335		UnitInfo: &types.ElementDescription{
8336			Description: types.Description{
8337				Label:   "ms",
8338				Summary: "Millisecond",
8339			},
8340			Key: "millisecond",
8341		},
8342		RollupType:          "average",
8343		StatsType:           "absolute",
8344		Level:               0,
8345		PerDeviceLevel:      0,
8346		AssociatedCounterId: nil,
8347	},
8348	{
8349		Key: 655366,
8350		NameInfo: &types.ElementDescription{
8351			Description: types.Description{
8352				Label:   "Storage I/O Control normalized latency",
8353				Summary: "Storage I/O Control size-normalized I/O latency",
8354			},
8355			Key: "sizeNormalizedDatastoreLatency",
8356		},
8357		GroupInfo: &types.ElementDescription{
8358			Description: types.Description{
8359				Label:   "Datastore",
8360				Summary: "Datastore",
8361			},
8362			Key: "datastore",
8363		},
8364		UnitInfo: &types.ElementDescription{
8365			Description: types.Description{
8366				Label:   "µs",
8367				Summary: "Microsecond",
8368			},
8369			Key: "microsecond",
8370		},
8371		RollupType:          "average",
8372		StatsType:           "absolute",
8373		Level:               0,
8374		PerDeviceLevel:      0,
8375		AssociatedCounterId: nil,
8376	},
8377	{
8378		Key: 655367,
8379		NameInfo: &types.ElementDescription{
8380			Description: types.Description{
8381				Label:   "Storage I/O Control aggregated IOPS",
8382				Summary: "Storage I/O Control aggregated IOPS",
8383			},
8384			Key: "datastoreIops",
8385		},
8386		GroupInfo: &types.ElementDescription{
8387			Description: types.Description{
8388				Label:   "Datastore",
8389				Summary: "Datastore",
8390			},
8391			Key: "datastore",
8392		},
8393		UnitInfo: &types.ElementDescription{
8394			Description: types.Description{
8395				Label:   "num",
8396				Summary: "Number",
8397			},
8398			Key: "number",
8399		},
8400		RollupType:          "average",
8401		StatsType:           "absolute",
8402		Level:               0,
8403		PerDeviceLevel:      0,
8404		AssociatedCounterId: nil,
8405	},
8406	{
8407		Key: 655368,
8408		NameInfo: &types.ElementDescription{
8409			Description: types.Description{
8410				Label:   "Storage DRS datastore bytes read",
8411				Summary: "Storage DRS datastore bytes read",
8412			},
8413			Key: "datastoreReadBytes",
8414		},
8415		GroupInfo: &types.ElementDescription{
8416			Description: types.Description{
8417				Label:   "Datastore",
8418				Summary: "Datastore",
8419			},
8420			Key: "datastore",
8421		},
8422		UnitInfo: &types.ElementDescription{
8423			Description: types.Description{
8424				Label:   "num",
8425				Summary: "Number",
8426			},
8427			Key: "number",
8428		},
8429		RollupType:          "latest",
8430		StatsType:           "absolute",
8431		Level:               0,
8432		PerDeviceLevel:      0,
8433		AssociatedCounterId: nil,
8434	},
8435	{
8436		Key: 655369,
8437		NameInfo: &types.ElementDescription{
8438			Description: types.Description{
8439				Label:   "Storage DRS datastore bytes written",
8440				Summary: "Storage DRS datastore bytes written",
8441			},
8442			Key: "datastoreWriteBytes",
8443		},
8444		GroupInfo: &types.ElementDescription{
8445			Description: types.Description{
8446				Label:   "Datastore",
8447				Summary: "Datastore",
8448			},
8449			Key: "datastore",
8450		},
8451		UnitInfo: &types.ElementDescription{
8452			Description: types.Description{
8453				Label:   "num",
8454				Summary: "Number",
8455			},
8456			Key: "number",
8457		},
8458		RollupType:          "latest",
8459		StatsType:           "absolute",
8460		Level:               0,
8461		PerDeviceLevel:      0,
8462		AssociatedCounterId: nil,
8463	},
8464	{
8465		Key: 655370,
8466		NameInfo: &types.ElementDescription{
8467			Description: types.Description{
8468				Label:   "Storage DRS datastore read I/O rate",
8469				Summary: "Storage DRS datastore read I/O rate",
8470			},
8471			Key: "datastoreReadIops",
8472		},
8473		GroupInfo: &types.ElementDescription{
8474			Description: types.Description{
8475				Label:   "Datastore",
8476				Summary: "Datastore",
8477			},
8478			Key: "datastore",
8479		},
8480		UnitInfo: &types.ElementDescription{
8481			Description: types.Description{
8482				Label:   "num",
8483				Summary: "Number",
8484			},
8485			Key: "number",
8486		},
8487		RollupType:          "latest",
8488		StatsType:           "absolute",
8489		Level:               0,
8490		PerDeviceLevel:      0,
8491		AssociatedCounterId: nil,
8492	},
8493	{
8494		Key: 655371,
8495		NameInfo: &types.ElementDescription{
8496			Description: types.Description{
8497				Label:   "Storage DRS datastore write I/O rate",
8498				Summary: "Storage DRS datastore write I/O rate",
8499			},
8500			Key: "datastoreWriteIops",
8501		},
8502		GroupInfo: &types.ElementDescription{
8503			Description: types.Description{
8504				Label:   "Datastore",
8505				Summary: "Datastore",
8506			},
8507			Key: "datastore",
8508		},
8509		UnitInfo: &types.ElementDescription{
8510			Description: types.Description{
8511				Label:   "num",
8512				Summary: "Number",
8513			},
8514			Key: "number",
8515		},
8516		RollupType:          "latest",
8517		StatsType:           "absolute",
8518		Level:               0,
8519		PerDeviceLevel:      0,
8520		AssociatedCounterId: nil,
8521	},
8522	{
8523		Key: 655372,
8524		NameInfo: &types.ElementDescription{
8525			Description: types.Description{
8526				Label:   "Storage DRS datastore normalized read latency",
8527				Summary: "Storage DRS datastore normalized read latency",
8528			},
8529			Key: "datastoreNormalReadLatency",
8530		},
8531		GroupInfo: &types.ElementDescription{
8532			Description: types.Description{
8533				Label:   "Datastore",
8534				Summary: "Datastore",
8535			},
8536			Key: "datastore",
8537		},
8538		UnitInfo: &types.ElementDescription{
8539			Description: types.Description{
8540				Label:   "num",
8541				Summary: "Number",
8542			},
8543			Key: "number",
8544		},
8545		RollupType:          "latest",
8546		StatsType:           "absolute",
8547		Level:               0,
8548		PerDeviceLevel:      0,
8549		AssociatedCounterId: nil,
8550	},
8551	{
8552		Key: 655373,
8553		NameInfo: &types.ElementDescription{
8554			Description: types.Description{
8555				Label:   "Storage DRS datastore normalized write latency",
8556				Summary: "Storage DRS datastore normalized write latency",
8557			},
8558			Key: "datastoreNormalWriteLatency",
8559		},
8560		GroupInfo: &types.ElementDescription{
8561			Description: types.Description{
8562				Label:   "Datastore",
8563				Summary: "Datastore",
8564			},
8565			Key: "datastore",
8566		},
8567		UnitInfo: &types.ElementDescription{
8568			Description: types.Description{
8569				Label:   "num",
8570				Summary: "Number",
8571			},
8572			Key: "number",
8573		},
8574		RollupType:          "latest",
8575		StatsType:           "absolute",
8576		Level:               0,
8577		PerDeviceLevel:      0,
8578		AssociatedCounterId: nil,
8579	},
8580	{
8581		Key: 655374,
8582		NameInfo: &types.ElementDescription{
8583			Description: types.Description{
8584				Label:   "Storage DRS datastore outstanding read requests",
8585				Summary: "Storage DRS datastore outstanding read requests",
8586			},
8587			Key: "datastoreReadOIO",
8588		},
8589		GroupInfo: &types.ElementDescription{
8590			Description: types.Description{
8591				Label:   "Datastore",
8592				Summary: "Datastore",
8593			},
8594			Key: "datastore",
8595		},
8596		UnitInfo: &types.ElementDescription{
8597			Description: types.Description{
8598				Label:   "num",
8599				Summary: "Number",
8600			},
8601			Key: "number",
8602		},
8603		RollupType:          "latest",
8604		StatsType:           "absolute",
8605		Level:               0,
8606		PerDeviceLevel:      0,
8607		AssociatedCounterId: nil,
8608	},
8609	{
8610		Key: 655375,
8611		NameInfo: &types.ElementDescription{
8612			Description: types.Description{
8613				Label:   "Storage DRS datastore outstanding write requests",
8614				Summary: "Storage DRS datastore outstanding write requests",
8615			},
8616			Key: "datastoreWriteOIO",
8617		},
8618		GroupInfo: &types.ElementDescription{
8619			Description: types.Description{
8620				Label:   "Datastore",
8621				Summary: "Datastore",
8622			},
8623			Key: "datastore",
8624		},
8625		UnitInfo: &types.ElementDescription{
8626			Description: types.Description{
8627				Label:   "num",
8628				Summary: "Number",
8629			},
8630			Key: "number",
8631		},
8632		RollupType:          "latest",
8633		StatsType:           "absolute",
8634		Level:               0,
8635		PerDeviceLevel:      0,
8636		AssociatedCounterId: nil,
8637	},
8638	{
8639		Key: 655376,
8640		NameInfo: &types.ElementDescription{
8641			Description: types.Description{
8642				Label:   "Storage I/O Control datastore maximum queue depth",
8643				Summary: "Storage I/O Control datastore maximum queue depth",
8644			},
8645			Key: "datastoreMaxQueueDepth",
8646		},
8647		GroupInfo: &types.ElementDescription{
8648			Description: types.Description{
8649				Label:   "Datastore",
8650				Summary: "Datastore",
8651			},
8652			Key: "datastore",
8653		},
8654		UnitInfo: &types.ElementDescription{
8655			Description: types.Description{
8656				Label:   "num",
8657				Summary: "Number",
8658			},
8659			Key: "number",
8660		},
8661		RollupType:          "latest",
8662		StatsType:           "absolute",
8663		Level:               0,
8664		PerDeviceLevel:      0,
8665		AssociatedCounterId: nil,
8666	},
8667	{
8668		Key: 655377,
8669		NameInfo: &types.ElementDescription{
8670			Description: types.Description{
8671				Label:   "Storage DRS datastore read workload metric",
8672				Summary: "Storage DRS datastore metric for read workload model",
8673			},
8674			Key: "datastoreReadLoadMetric",
8675		},
8676		GroupInfo: &types.ElementDescription{
8677			Description: types.Description{
8678				Label:   "Datastore",
8679				Summary: "Datastore",
8680			},
8681			Key: "datastore",
8682		},
8683		UnitInfo: &types.ElementDescription{
8684			Description: types.Description{
8685				Label:   "num",
8686				Summary: "Number",
8687			},
8688			Key: "number",
8689		},
8690		RollupType:          "latest",
8691		StatsType:           "absolute",
8692		Level:               0,
8693		PerDeviceLevel:      0,
8694		AssociatedCounterId: nil,
8695	},
8696	{
8697		Key: 655378,
8698		NameInfo: &types.ElementDescription{
8699			Description: types.Description{
8700				Label:   "Storage DRS datastore write workload metric",
8701				Summary: "Storage DRS datastore metric for write workload model",
8702			},
8703			Key: "datastoreWriteLoadMetric",
8704		},
8705		GroupInfo: &types.ElementDescription{
8706			Description: types.Description{
8707				Label:   "Datastore",
8708				Summary: "Datastore",
8709			},
8710			Key: "datastore",
8711		},
8712		UnitInfo: &types.ElementDescription{
8713			Description: types.Description{
8714				Label:   "num",
8715				Summary: "Number",
8716			},
8717			Key: "number",
8718		},
8719		RollupType:          "latest",
8720		StatsType:           "absolute",
8721		Level:               0,
8722		PerDeviceLevel:      0,
8723		AssociatedCounterId: nil,
8724	},
8725	{
8726		Key: 655379,
8727		NameInfo: &types.ElementDescription{
8728			Description: types.Description{
8729				Label:   "Highest latency",
8730				Summary: "Highest latency value across all datastores used by the host",
8731			},
8732			Key: "maxTotalLatency",
8733		},
8734		GroupInfo: &types.ElementDescription{
8735			Description: types.Description{
8736				Label:   "Datastore",
8737				Summary: "Datastore",
8738			},
8739			Key: "datastore",
8740		},
8741		UnitInfo: &types.ElementDescription{
8742			Description: types.Description{
8743				Label:   "ms",
8744				Summary: "Millisecond",
8745			},
8746			Key: "millisecond",
8747		},
8748		RollupType:          "latest",
8749		StatsType:           "absolute",
8750		Level:               0,
8751		PerDeviceLevel:      0,
8752		AssociatedCounterId: nil,
8753	},
8754	{
8755		Key: 655380,
8756		NameInfo: &types.ElementDescription{
8757			Description: types.Description{
8758				Label:   "Storage I/O Control active time percentage",
8759				Summary: "Percentage of time Storage I/O Control actively controlled datastore latency",
8760			},
8761			Key: "siocActiveTimePercentage",
8762		},
8763		GroupInfo: &types.ElementDescription{
8764			Description: types.Description{
8765				Label:   "Datastore",
8766				Summary: "Datastore",
8767			},
8768			Key: "datastore",
8769		},
8770		UnitInfo: &types.ElementDescription{
8771			Description: types.Description{
8772				Label:   "%",
8773				Summary: "Percentage",
8774			},
8775			Key: "percent",
8776		},
8777		RollupType:          "average",
8778		StatsType:           "absolute",
8779		Level:               0,
8780		PerDeviceLevel:      0,
8781		AssociatedCounterId: nil,
8782	},
8783	{
8784		Key: 655381,
8785		NameInfo: &types.ElementDescription{
8786			Description: types.Description{
8787				Label:   "Datastore latency observed by VMs",
8788				Summary: "The average datastore latency as seen by virtual machines",
8789			},
8790			Key: "datastoreVMObservedLatency",
8791		},
8792		GroupInfo: &types.ElementDescription{
8793			Description: types.Description{
8794				Label:   "Datastore",
8795				Summary: "Datastore",
8796			},
8797			Key: "datastore",
8798		},
8799		UnitInfo: &types.ElementDescription{
8800			Description: types.Description{
8801				Label:   "µs",
8802				Summary: "Microsecond",
8803			},
8804			Key: "microsecond",
8805		},
8806		RollupType:          "latest",
8807		StatsType:           "absolute",
8808		Level:               0,
8809		PerDeviceLevel:      0,
8810		AssociatedCounterId: nil,
8811	},
8812	{
8813		Key: 720896,
8814		NameInfo: &types.ElementDescription{
8815			Description: types.Description{
8816				Label:   "Usage",
8817				Summary: "Current power usage",
8818			},
8819			Key: "power",
8820		},
8821		GroupInfo: &types.ElementDescription{
8822			Description: types.Description{
8823				Label:   "Power",
8824				Summary: "Power",
8825			},
8826			Key: "power",
8827		},
8828		UnitInfo: &types.ElementDescription{
8829			Description: types.Description{
8830				Label:   "W",
8831				Summary: "Watt",
8832			},
8833			Key: "watt",
8834		},
8835		RollupType:          "average",
8836		StatsType:           "rate",
8837		Level:               0,
8838		PerDeviceLevel:      0,
8839		AssociatedCounterId: nil,
8840	},
8841	{
8842		Key: 720897,
8843		NameInfo: &types.ElementDescription{
8844			Description: types.Description{
8845				Label:   "Cap",
8846				Summary: "Maximum allowed power usage",
8847			},
8848			Key: "powerCap",
8849		},
8850		GroupInfo: &types.ElementDescription{
8851			Description: types.Description{
8852				Label:   "Power",
8853				Summary: "Power",
8854			},
8855			Key: "power",
8856		},
8857		UnitInfo: &types.ElementDescription{
8858			Description: types.Description{
8859				Label:   "W",
8860				Summary: "Watt",
8861			},
8862			Key: "watt",
8863		},
8864		RollupType:          "average",
8865		StatsType:           "absolute",
8866		Level:               0,
8867		PerDeviceLevel:      0,
8868		AssociatedCounterId: nil,
8869	},
8870	{
8871		Key: 720898,
8872		NameInfo: &types.ElementDescription{
8873			Description: types.Description{
8874				Label:   "Energy usage",
8875				Summary: "Total energy used since last stats reset",
8876			},
8877			Key: "energy",
8878		},
8879		GroupInfo: &types.ElementDescription{
8880			Description: types.Description{
8881				Label:   "Power",
8882				Summary: "Power",
8883			},
8884			Key: "power",
8885		},
8886		UnitInfo: &types.ElementDescription{
8887			Description: types.Description{
8888				Label:   "J",
8889				Summary: "Joule",
8890			},
8891			Key: "joule",
8892		},
8893		RollupType:          "summation",
8894		StatsType:           "delta",
8895		Level:               0,
8896		PerDeviceLevel:      0,
8897		AssociatedCounterId: nil,
8898	},
8899	{
8900		Key: 786432,
8901		NameInfo: &types.ElementDescription{
8902			Description: types.Description{
8903				Label:   "vSphere Replication VM Count",
8904				Summary: "Current number of replicated virtual machines",
8905			},
8906			Key: "hbrNumVms",
8907		},
8908		GroupInfo: &types.ElementDescription{
8909			Description: types.Description{
8910				Label:   "vSphere Replication",
8911				Summary: "vSphere Replication",
8912			},
8913			Key: "hbr",
8914		},
8915		UnitInfo: &types.ElementDescription{
8916			Description: types.Description{
8917				Label:   "num",
8918				Summary: "Number",
8919			},
8920			Key: "number",
8921		},
8922		RollupType:          "average",
8923		StatsType:           "absolute",
8924		Level:               0,
8925		PerDeviceLevel:      0,
8926		AssociatedCounterId: nil,
8927	},
8928	{
8929		Key: 786433,
8930		NameInfo: &types.ElementDescription{
8931			Description: types.Description{
8932				Label:   "Replication Data Receive Rate",
8933				Summary: "Average amount of data received per second",
8934			},
8935			Key: "hbrNetRx",
8936		},
8937		GroupInfo: &types.ElementDescription{
8938			Description: types.Description{
8939				Label:   "vSphere Replication",
8940				Summary: "vSphere Replication",
8941			},
8942			Key: "hbr",
8943		},
8944		UnitInfo: &types.ElementDescription{
8945			Description: types.Description{
8946				Label:   "KBps",
8947				Summary: "Kilobytes per second",
8948			},
8949			Key: "kiloBytesPerSecond",
8950		},
8951		RollupType:          "average",
8952		StatsType:           "rate",
8953		Level:               0,
8954		PerDeviceLevel:      0,
8955		AssociatedCounterId: nil,
8956	},
8957	{
8958		Key: 786434,
8959		NameInfo: &types.ElementDescription{
8960			Description: types.Description{
8961				Label:   "Replication Data Transmit Rate",
8962				Summary: "Average amount of data transmitted per second",
8963			},
8964			Key: "hbrNetTx",
8965		},
8966		GroupInfo: &types.ElementDescription{
8967			Description: types.Description{
8968				Label:   "vSphere Replication",
8969				Summary: "vSphere Replication",
8970			},
8971			Key: "hbr",
8972		},
8973		UnitInfo: &types.ElementDescription{
8974			Description: types.Description{
8975				Label:   "KBps",
8976				Summary: "Kilobytes per second",
8977			},
8978			Key: "kiloBytesPerSecond",
8979		},
8980		RollupType:          "average",
8981		StatsType:           "rate",
8982		Level:               0,
8983		PerDeviceLevel:      0,
8984		AssociatedCounterId: nil,
8985	},
8986	{
8987		Key: 851968,
8988		NameInfo: &types.ElementDescription{
8989			Description: types.Description{
8990				Label:   "Number of caches controlled by the virtual flash module",
8991				Summary: "Number of caches controlled by the virtual flash module",
8992			},
8993			Key: "numActiveVMDKs",
8994		},
8995		GroupInfo: &types.ElementDescription{
8996			Description: types.Description{
8997				Label:   "Virtual flash",
8998				Summary: "Virtual flash module related statistical values",
8999			},
9000			Key: "vflashModule",
9001		},
9002		UnitInfo: &types.ElementDescription{
9003			Description: types.Description{
9004				Label:   "num",
9005				Summary: "Number",
9006			},
9007			Key: "number",
9008		},
9009		RollupType:          "latest",
9010		StatsType:           "absolute",
9011		Level:               0,
9012		PerDeviceLevel:      0,
9013		AssociatedCounterId: nil,
9014	},
9015	{
9016		Key: 1245184,
9017		NameInfo: &types.ElementDescription{
9018			Description: types.Description{
9019				Label:   "Read IOPS",
9020				Summary: "Read IOPS",
9021			},
9022			Key: "readIops",
9023		},
9024		GroupInfo: &types.ElementDescription{
9025			Description: types.Description{
9026				Label:   "VSAN DOM Objects",
9027				Summary: "VSAN DOM object related statistical values",
9028			},
9029			Key: "vsanDomObj",
9030		},
9031		UnitInfo: &types.ElementDescription{
9032			Description: types.Description{
9033				Label:   "num",
9034				Summary: "Number",
9035			},
9036			Key: "number",
9037		},
9038		RollupType:          "average",
9039		StatsType:           "rate",
9040		Level:               0,
9041		PerDeviceLevel:      0,
9042		AssociatedCounterId: nil,
9043	},
9044	{
9045		Key: 1245185,
9046		NameInfo: &types.ElementDescription{
9047			Description: types.Description{
9048				Label:   "Read throughput",
9049				Summary: "Read throughput in kBps",
9050			},
9051			Key: "readThroughput",
9052		},
9053		GroupInfo: &types.ElementDescription{
9054			Description: types.Description{
9055				Label:   "VSAN DOM Objects",
9056				Summary: "VSAN DOM object related statistical values",
9057			},
9058			Key: "vsanDomObj",
9059		},
9060		UnitInfo: &types.ElementDescription{
9061			Description: types.Description{
9062				Label:   "KBps",
9063				Summary: "Kilobytes per second",
9064			},
9065			Key: "kiloBytesPerSecond",
9066		},
9067		RollupType:          "average",
9068		StatsType:           "rate",
9069		Level:               0,
9070		PerDeviceLevel:      0,
9071		AssociatedCounterId: nil,
9072	},
9073	{
9074		Key: 1245186,
9075		NameInfo: &types.ElementDescription{
9076			Description: types.Description{
9077				Label:   "Average read latency",
9078				Summary: "Average read latency in ms",
9079			},
9080			Key: "readAvgLatency",
9081		},
9082		GroupInfo: &types.ElementDescription{
9083			Description: types.Description{
9084				Label:   "VSAN DOM Objects",
9085				Summary: "VSAN DOM object related statistical values",
9086			},
9087			Key: "vsanDomObj",
9088		},
9089		UnitInfo: &types.ElementDescription{
9090			Description: types.Description{
9091				Label:   "ms",
9092				Summary: "Millisecond",
9093			},
9094			Key: "millisecond",
9095		},
9096		RollupType:          "average",
9097		StatsType:           "absolute",
9098		Level:               0,
9099		PerDeviceLevel:      0,
9100		AssociatedCounterId: nil,
9101	},
9102	{
9103		Key: 1245187,
9104		NameInfo: &types.ElementDescription{
9105			Description: types.Description{
9106				Label:   "Max read latency",
9107				Summary: "Max read latency in ms",
9108			},
9109			Key: "readMaxLatency",
9110		},
9111		GroupInfo: &types.ElementDescription{
9112			Description: types.Description{
9113				Label:   "VSAN DOM Objects",
9114				Summary: "VSAN DOM object related statistical values",
9115			},
9116			Key: "vsanDomObj",
9117		},
9118		UnitInfo: &types.ElementDescription{
9119			Description: types.Description{
9120				Label:   "ms",
9121				Summary: "Millisecond",
9122			},
9123			Key: "millisecond",
9124		},
9125		RollupType:          "latest",
9126		StatsType:           "absolute",
9127		Level:               0,
9128		PerDeviceLevel:      0,
9129		AssociatedCounterId: nil,
9130	},
9131	{
9132		Key: 1245188,
9133		NameInfo: &types.ElementDescription{
9134			Description: types.Description{
9135				Label:   "Cache hit rate",
9136				Summary: "Cache hit rate percentage",
9137			},
9138			Key: "readCacheHitRate",
9139		},
9140		GroupInfo: &types.ElementDescription{
9141			Description: types.Description{
9142				Label:   "VSAN DOM Objects",
9143				Summary: "VSAN DOM object related statistical values",
9144			},
9145			Key: "vsanDomObj",
9146		},
9147		UnitInfo: &types.ElementDescription{
9148			Description: types.Description{
9149				Label:   "%",
9150				Summary: "Percentage",
9151			},
9152			Key: "percent",
9153		},
9154		RollupType:          "latest",
9155		StatsType:           "absolute",
9156		Level:               0,
9157		PerDeviceLevel:      0,
9158		AssociatedCounterId: nil,
9159	},
9160	{
9161		Key: 1245189,
9162		NameInfo: &types.ElementDescription{
9163			Description: types.Description{
9164				Label:   "Read congestion per sampling interval",
9165				Summary: "Read congestion",
9166			},
9167			Key: "readCongestion",
9168		},
9169		GroupInfo: &types.ElementDescription{
9170			Description: types.Description{
9171				Label:   "VSAN DOM Objects",
9172				Summary: "VSAN DOM object related statistical values",
9173			},
9174			Key: "vsanDomObj",
9175		},
9176		UnitInfo: &types.ElementDescription{
9177			Description: types.Description{
9178				Label:   "num",
9179				Summary: "Number",
9180			},
9181			Key: "number",
9182		},
9183		RollupType:          "average",
9184		StatsType:           "rate",
9185		Level:               0,
9186		PerDeviceLevel:      0,
9187		AssociatedCounterId: nil,
9188	},
9189	{
9190		Key: 1245190,
9191		NameInfo: &types.ElementDescription{
9192			Description: types.Description{
9193				Label:   "Write IOPS",
9194				Summary: "Write IOPS",
9195			},
9196			Key: "writeIops",
9197		},
9198		GroupInfo: &types.ElementDescription{
9199			Description: types.Description{
9200				Label:   "VSAN DOM Objects",
9201				Summary: "VSAN DOM object related statistical values",
9202			},
9203			Key: "vsanDomObj",
9204		},
9205		UnitInfo: &types.ElementDescription{
9206			Description: types.Description{
9207				Label:   "num",
9208				Summary: "Number",
9209			},
9210			Key: "number",
9211		},
9212		RollupType:          "average",
9213		StatsType:           "rate",
9214		Level:               0,
9215		PerDeviceLevel:      0,
9216		AssociatedCounterId: nil,
9217	},
9218	{
9219		Key: 1245191,
9220		NameInfo: &types.ElementDescription{
9221			Description: types.Description{
9222				Label:   "Write throughput",
9223				Summary: "Write throughput in kBps",
9224			},
9225			Key: "writeThroughput",
9226		},
9227		GroupInfo: &types.ElementDescription{
9228			Description: types.Description{
9229				Label:   "VSAN DOM Objects",
9230				Summary: "VSAN DOM object related statistical values",
9231			},
9232			Key: "vsanDomObj",
9233		},
9234		UnitInfo: &types.ElementDescription{
9235			Description: types.Description{
9236				Label:   "KBps",
9237				Summary: "Kilobytes per second",
9238			},
9239			Key: "kiloBytesPerSecond",
9240		},
9241		RollupType:          "average",
9242		StatsType:           "rate",
9243		Level:               0,
9244		PerDeviceLevel:      0,
9245		AssociatedCounterId: nil,
9246	},
9247	{
9248		Key: 1245192,
9249		NameInfo: &types.ElementDescription{
9250			Description: types.Description{
9251				Label:   "Average write latency",
9252				Summary: "Average write latency in ms",
9253			},
9254			Key: "writeAvgLatency",
9255		},
9256		GroupInfo: &types.ElementDescription{
9257			Description: types.Description{
9258				Label:   "VSAN DOM Objects",
9259				Summary: "VSAN DOM object related statistical values",
9260			},
9261			Key: "vsanDomObj",
9262		},
9263		UnitInfo: &types.ElementDescription{
9264			Description: types.Description{
9265				Label:   "ms",
9266				Summary: "Millisecond",
9267			},
9268			Key: "millisecond",
9269		},
9270		RollupType:          "average",
9271		StatsType:           "absolute",
9272		Level:               0,
9273		PerDeviceLevel:      0,
9274		AssociatedCounterId: nil,
9275	},
9276	{
9277		Key: 1245193,
9278		NameInfo: &types.ElementDescription{
9279			Description: types.Description{
9280				Label:   "Max write latency",
9281				Summary: "Max write latency in ms",
9282			},
9283			Key: "writeMaxLatency",
9284		},
9285		GroupInfo: &types.ElementDescription{
9286			Description: types.Description{
9287				Label:   "VSAN DOM Objects",
9288				Summary: "VSAN DOM object related statistical values",
9289			},
9290			Key: "vsanDomObj",
9291		},
9292		UnitInfo: &types.ElementDescription{
9293			Description: types.Description{
9294				Label:   "ms",
9295				Summary: "Millisecond",
9296			},
9297			Key: "millisecond",
9298		},
9299		RollupType:          "latest",
9300		StatsType:           "absolute",
9301		Level:               0,
9302		PerDeviceLevel:      0,
9303		AssociatedCounterId: nil,
9304	},
9305	{
9306		Key: 1245194,
9307		NameInfo: &types.ElementDescription{
9308			Description: types.Description{
9309				Label:   "Write congestion per sampling interval",
9310				Summary: "Write congestion",
9311			},
9312			Key: "writeCongestion",
9313		},
9314		GroupInfo: &types.ElementDescription{
9315			Description: types.Description{
9316				Label:   "VSAN DOM Objects",
9317				Summary: "VSAN DOM object related statistical values",
9318			},
9319			Key: "vsanDomObj",
9320		},
9321		UnitInfo: &types.ElementDescription{
9322			Description: types.Description{
9323				Label:   "num",
9324				Summary: "Number",
9325			},
9326			Key: "number",
9327		},
9328		RollupType:          "average",
9329		StatsType:           "rate",
9330		Level:               0,
9331		PerDeviceLevel:      0,
9332		AssociatedCounterId: nil,
9333	},
9334	{
9335		Key: 1245195,
9336		NameInfo: &types.ElementDescription{
9337			Description: types.Description{
9338				Label:   "Recovery write IOPS",
9339				Summary: "Recovery write IOPS",
9340			},
9341			Key: "recoveryWriteIops",
9342		},
9343		GroupInfo: &types.ElementDescription{
9344			Description: types.Description{
9345				Label:   "VSAN DOM Objects",
9346				Summary: "VSAN DOM object related statistical values",
9347			},
9348			Key: "vsanDomObj",
9349		},
9350		UnitInfo: &types.ElementDescription{
9351			Description: types.Description{
9352				Label:   "num",
9353				Summary: "Number",
9354			},
9355			Key: "number",
9356		},
9357		RollupType:          "average",
9358		StatsType:           "rate",
9359		Level:               0,
9360		PerDeviceLevel:      0,
9361		AssociatedCounterId: nil,
9362	},
9363	{
9364		Key: 1245196,
9365		NameInfo: &types.ElementDescription{
9366			Description: types.Description{
9367				Label:   "Recovery write through-put",
9368				Summary: "Recovery write through-put in kBps",
9369			},
9370			Key: "recoveryWriteThroughput",
9371		},
9372		GroupInfo: &types.ElementDescription{
9373			Description: types.Description{
9374				Label:   "VSAN DOM Objects",
9375				Summary: "VSAN DOM object related statistical values",
9376			},
9377			Key: "vsanDomObj",
9378		},
9379		UnitInfo: &types.ElementDescription{
9380			Description: types.Description{
9381				Label:   "KBps",
9382				Summary: "Kilobytes per second",
9383			},
9384			Key: "kiloBytesPerSecond",
9385		},
9386		RollupType:          "average",
9387		StatsType:           "rate",
9388		Level:               0,
9389		PerDeviceLevel:      0,
9390		AssociatedCounterId: nil,
9391	},
9392	{
9393		Key: 1245197,
9394		NameInfo: &types.ElementDescription{
9395			Description: types.Description{
9396				Label:   "Average recovery write latency",
9397				Summary: "Average recovery write latency in ms",
9398			},
9399			Key: "recoveryWriteAvgLatency",
9400		},
9401		GroupInfo: &types.ElementDescription{
9402			Description: types.Description{
9403				Label:   "VSAN DOM Objects",
9404				Summary: "VSAN DOM object related statistical values",
9405			},
9406			Key: "vsanDomObj",
9407		},
9408		UnitInfo: &types.ElementDescription{
9409			Description: types.Description{
9410				Label:   "ms",
9411				Summary: "Millisecond",
9412			},
9413			Key: "millisecond",
9414		},
9415		RollupType:          "average",
9416		StatsType:           "absolute",
9417		Level:               0,
9418		PerDeviceLevel:      0,
9419		AssociatedCounterId: nil,
9420	},
9421	{
9422		Key: 1245198,
9423		NameInfo: &types.ElementDescription{
9424			Description: types.Description{
9425				Label:   "Max recovery write latency",
9426				Summary: "Max recovery write latency in ms",
9427			},
9428			Key: "recoveryWriteMaxLatency",
9429		},
9430		GroupInfo: &types.ElementDescription{
9431			Description: types.Description{
9432				Label:   "VSAN DOM Objects",
9433				Summary: "VSAN DOM object related statistical values",
9434			},
9435			Key: "vsanDomObj",
9436		},
9437		UnitInfo: &types.ElementDescription{
9438			Description: types.Description{
9439				Label:   "ms",
9440				Summary: "Millisecond",
9441			},
9442			Key: "millisecond",
9443		},
9444		RollupType:          "latest",
9445		StatsType:           "absolute",
9446		Level:               0,
9447		PerDeviceLevel:      0,
9448		AssociatedCounterId: nil,
9449	},
9450	{
9451		Key: 1245199,
9452		NameInfo: &types.ElementDescription{
9453			Description: types.Description{
9454				Label:   "Recovery write congestion per sampling interval",
9455				Summary: "Recovery write congestion",
9456			},
9457			Key: "recoveryWriteCongestion",
9458		},
9459		GroupInfo: &types.ElementDescription{
9460			Description: types.Description{
9461				Label:   "VSAN DOM Objects",
9462				Summary: "VSAN DOM object related statistical values",
9463			},
9464			Key: "vsanDomObj",
9465		},
9466		UnitInfo: &types.ElementDescription{
9467			Description: types.Description{
9468				Label:   "num",
9469				Summary: "Number",
9470			},
9471			Key: "number",
9472		},
9473		RollupType:          "average",
9474		StatsType:           "rate",
9475		Level:               0,
9476		PerDeviceLevel:      0,
9477		AssociatedCounterId: nil,
9478	},
9479	{
9480		Key: 1310720,
9481		NameInfo: &types.ElementDescription{
9482			Description: types.Description{
9483				Label:   "Utilization",
9484				Summary: "The utilization of a GPU in percentages",
9485			},
9486			Key: "utilization",
9487		},
9488		GroupInfo: &types.ElementDescription{
9489			Description: types.Description{
9490				Label:   "GPU",
9491				Summary: "GPU",
9492			},
9493			Key: "gpu",
9494		},
9495		UnitInfo: &types.ElementDescription{
9496			Description: types.Description{
9497				Label:   "%",
9498				Summary: "Percentage",
9499			},
9500			Key: "percent",
9501		},
9502		RollupType:          "none",
9503		StatsType:           "absolute",
9504		Level:               0,
9505		PerDeviceLevel:      0,
9506		AssociatedCounterId: []int32{1310721, 1310722, 1310723},
9507	},
9508	{
9509		Key: 1310721,
9510		NameInfo: &types.ElementDescription{
9511			Description: types.Description{
9512				Label:   "Utilization",
9513				Summary: "The utilization of a GPU in percentages",
9514			},
9515			Key: "utilization",
9516		},
9517		GroupInfo: &types.ElementDescription{
9518			Description: types.Description{
9519				Label:   "GPU",
9520				Summary: "GPU",
9521			},
9522			Key: "gpu",
9523		},
9524		UnitInfo: &types.ElementDescription{
9525			Description: types.Description{
9526				Label:   "%",
9527				Summary: "Percentage",
9528			},
9529			Key: "percent",
9530		},
9531		RollupType:          "average",
9532		StatsType:           "absolute",
9533		Level:               0,
9534		PerDeviceLevel:      0,
9535		AssociatedCounterId: nil,
9536	},
9537	{
9538		Key: 1310722,
9539		NameInfo: &types.ElementDescription{
9540			Description: types.Description{
9541				Label:   "Utilization",
9542				Summary: "The utilization of a GPU in percentages",
9543			},
9544			Key: "utilization",
9545		},
9546		GroupInfo: &types.ElementDescription{
9547			Description: types.Description{
9548				Label:   "GPU",
9549				Summary: "GPU",
9550			},
9551			Key: "gpu",
9552		},
9553		UnitInfo: &types.ElementDescription{
9554			Description: types.Description{
9555				Label:   "%",
9556				Summary: "Percentage",
9557			},
9558			Key: "percent",
9559		},
9560		RollupType:          "maximum",
9561		StatsType:           "absolute",
9562		Level:               0,
9563		PerDeviceLevel:      0,
9564		AssociatedCounterId: nil,
9565	},
9566	{
9567		Key: 1310723,
9568		NameInfo: &types.ElementDescription{
9569			Description: types.Description{
9570				Label:   "Utilization",
9571				Summary: "The utilization of a GPU in percentages",
9572			},
9573			Key: "utilization",
9574		},
9575		GroupInfo: &types.ElementDescription{
9576			Description: types.Description{
9577				Label:   "GPU",
9578				Summary: "GPU",
9579			},
9580			Key: "gpu",
9581		},
9582		UnitInfo: &types.ElementDescription{
9583			Description: types.Description{
9584				Label:   "%",
9585				Summary: "Percentage",
9586			},
9587			Key: "percent",
9588		},
9589		RollupType:          "minimum",
9590		StatsType:           "absolute",
9591		Level:               0,
9592		PerDeviceLevel:      0,
9593		AssociatedCounterId: nil,
9594	},
9595	{
9596		Key: 1310724,
9597		NameInfo: &types.ElementDescription{
9598			Description: types.Description{
9599				Label:   "Memory used",
9600				Summary: "The amount of GPU memory used in kilobytes",
9601			},
9602			Key: "mem.used",
9603		},
9604		GroupInfo: &types.ElementDescription{
9605			Description: types.Description{
9606				Label:   "GPU",
9607				Summary: "GPU",
9608			},
9609			Key: "gpu",
9610		},
9611		UnitInfo: &types.ElementDescription{
9612			Description: types.Description{
9613				Label:   "KB",
9614				Summary: "Kilobyte",
9615			},
9616			Key: "kiloBytes",
9617		},
9618		RollupType:          "none",
9619		StatsType:           "absolute",
9620		Level:               0,
9621		PerDeviceLevel:      0,
9622		AssociatedCounterId: []int32{1310725, 1310726, 1310727},
9623	},
9624	{
9625		Key: 1310725,
9626		NameInfo: &types.ElementDescription{
9627			Description: types.Description{
9628				Label:   "Memory used",
9629				Summary: "The amount of GPU memory used in kilobytes",
9630			},
9631			Key: "mem.used",
9632		},
9633		GroupInfo: &types.ElementDescription{
9634			Description: types.Description{
9635				Label:   "GPU",
9636				Summary: "GPU",
9637			},
9638			Key: "gpu",
9639		},
9640		UnitInfo: &types.ElementDescription{
9641			Description: types.Description{
9642				Label:   "KB",
9643				Summary: "Kilobyte",
9644			},
9645			Key: "kiloBytes",
9646		},
9647		RollupType:          "average",
9648		StatsType:           "absolute",
9649		Level:               0,
9650		PerDeviceLevel:      0,
9651		AssociatedCounterId: nil,
9652	},
9653	{
9654		Key: 1310726,
9655		NameInfo: &types.ElementDescription{
9656			Description: types.Description{
9657				Label:   "Memory used",
9658				Summary: "The amount of GPU memory used in kilobytes",
9659			},
9660			Key: "mem.used",
9661		},
9662		GroupInfo: &types.ElementDescription{
9663			Description: types.Description{
9664				Label:   "GPU",
9665				Summary: "GPU",
9666			},
9667			Key: "gpu",
9668		},
9669		UnitInfo: &types.ElementDescription{
9670			Description: types.Description{
9671				Label:   "KB",
9672				Summary: "Kilobyte",
9673			},
9674			Key: "kiloBytes",
9675		},
9676		RollupType:          "maximum",
9677		StatsType:           "absolute",
9678		Level:               0,
9679		PerDeviceLevel:      0,
9680		AssociatedCounterId: nil,
9681	},
9682	{
9683		Key: 1310727,
9684		NameInfo: &types.ElementDescription{
9685			Description: types.Description{
9686				Label:   "Memory used",
9687				Summary: "The amount of GPU memory used in kilobytes",
9688			},
9689			Key: "mem.used",
9690		},
9691		GroupInfo: &types.ElementDescription{
9692			Description: types.Description{
9693				Label:   "GPU",
9694				Summary: "GPU",
9695			},
9696			Key: "gpu",
9697		},
9698		UnitInfo: &types.ElementDescription{
9699			Description: types.Description{
9700				Label:   "KB",
9701				Summary: "Kilobyte",
9702			},
9703			Key: "kiloBytes",
9704		},
9705		RollupType:          "minimum",
9706		StatsType:           "absolute",
9707		Level:               0,
9708		PerDeviceLevel:      0,
9709		AssociatedCounterId: nil,
9710	},
9711	{
9712		Key: 1310728,
9713		NameInfo: &types.ElementDescription{
9714			Description: types.Description{
9715				Label:   "Memory usage",
9716				Summary: "The amount of GPU memory used in percentages of the total available",
9717			},
9718			Key: "mem.usage",
9719		},
9720		GroupInfo: &types.ElementDescription{
9721			Description: types.Description{
9722				Label:   "GPU",
9723				Summary: "GPU",
9724			},
9725			Key: "gpu",
9726		},
9727		UnitInfo: &types.ElementDescription{
9728			Description: types.Description{
9729				Label:   "%",
9730				Summary: "Percentage",
9731			},
9732			Key: "percent",
9733		},
9734		RollupType:          "none",
9735		StatsType:           "absolute",
9736		Level:               0,
9737		PerDeviceLevel:      0,
9738		AssociatedCounterId: []int32{1310729, 1310730, 1310731},
9739	},
9740	{
9741		Key: 1310729,
9742		NameInfo: &types.ElementDescription{
9743			Description: types.Description{
9744				Label:   "Memory usage",
9745				Summary: "The amount of GPU memory used in percentages of the total available",
9746			},
9747			Key: "mem.usage",
9748		},
9749		GroupInfo: &types.ElementDescription{
9750			Description: types.Description{
9751				Label:   "GPU",
9752				Summary: "GPU",
9753			},
9754			Key: "gpu",
9755		},
9756		UnitInfo: &types.ElementDescription{
9757			Description: types.Description{
9758				Label:   "%",
9759				Summary: "Percentage",
9760			},
9761			Key: "percent",
9762		},
9763		RollupType:          "average",
9764		StatsType:           "absolute",
9765		Level:               0,
9766		PerDeviceLevel:      0,
9767		AssociatedCounterId: nil,
9768	},
9769	{
9770		Key: 1310730,
9771		NameInfo: &types.ElementDescription{
9772			Description: types.Description{
9773				Label:   "Memory usage",
9774				Summary: "The amount of GPU memory used in percentages of the total available",
9775			},
9776			Key: "mem.usage",
9777		},
9778		GroupInfo: &types.ElementDescription{
9779			Description: types.Description{
9780				Label:   "GPU",
9781				Summary: "GPU",
9782			},
9783			Key: "gpu",
9784		},
9785		UnitInfo: &types.ElementDescription{
9786			Description: types.Description{
9787				Label:   "%",
9788				Summary: "Percentage",
9789			},
9790			Key: "percent",
9791		},
9792		RollupType:          "maximum",
9793		StatsType:           "absolute",
9794		Level:               0,
9795		PerDeviceLevel:      0,
9796		AssociatedCounterId: nil,
9797	},
9798	{
9799		Key: 1310731,
9800		NameInfo: &types.ElementDescription{
9801			Description: types.Description{
9802				Label:   "Memory usage",
9803				Summary: "The amount of GPU memory used in percentages of the total available",
9804			},
9805			Key: "mem.usage",
9806		},
9807		GroupInfo: &types.ElementDescription{
9808			Description: types.Description{
9809				Label:   "GPU",
9810				Summary: "GPU",
9811			},
9812			Key: "gpu",
9813		},
9814		UnitInfo: &types.ElementDescription{
9815			Description: types.Description{
9816				Label:   "%",
9817				Summary: "Percentage",
9818			},
9819			Key: "percent",
9820		},
9821		RollupType:          "minimum",
9822		StatsType:           "absolute",
9823		Level:               0,
9824		PerDeviceLevel:      0,
9825		AssociatedCounterId: nil,
9826	},
9827	{
9828		Key: 1310732,
9829		NameInfo: &types.ElementDescription{
9830			Description: types.Description{
9831				Label:   "Temperature",
9832				Summary: "The temperature of a GPU in degrees celsius",
9833			},
9834			Key: "temperature",
9835		},
9836		GroupInfo: &types.ElementDescription{
9837			Description: types.Description{
9838				Label:   "GPU",
9839				Summary: "GPU",
9840			},
9841			Key: "gpu",
9842		},
9843		UnitInfo: &types.ElementDescription{
9844			Description: types.Description{
9845				Label:   "℃",
9846				Summary: "Temperature in degrees Celsius",
9847			},
9848			Key: "celsius",
9849		},
9850		RollupType:          "average",
9851		StatsType:           "absolute",
9852		Level:               0,
9853		PerDeviceLevel:      0,
9854		AssociatedCounterId: nil,
9855	},
9856	{
9857		Key: 1376256,
9858		NameInfo: &types.ElementDescription{
9859			Description: types.Description{
9860				Label:   "Persistent memory available reservation",
9861				Summary: "Persistent memory available reservation on a host.",
9862			},
9863			Key: "available.reservation",
9864		},
9865		GroupInfo: &types.ElementDescription{
9866			Description: types.Description{
9867				Label:   "PMEM",
9868				Summary: "PMEM",
9869			},
9870			Key: "pmem",
9871		},
9872		UnitInfo: &types.ElementDescription{
9873			Description: types.Description{
9874				Label:   "MB",
9875				Summary: "Megabyte",
9876			},
9877			Key: "megaBytes",
9878		},
9879		RollupType:          "latest",
9880		StatsType:           "absolute",
9881		Level:               0,
9882		PerDeviceLevel:      0,
9883		AssociatedCounterId: nil,
9884	},
9885}
9886
9887// *********************************** VM Metrics ************************************
9888var VmMetrics = []types.PerfMetricId{
9889	{
9890		CounterId: 11,
9891		Instance:  "$cpu",
9892	},
9893	{
9894		CounterId: 1,
9895		Instance:  "",
9896	},
9897	{
9898		CounterId: 12,
9899		Instance:  "",
9900	},
9901	{
9902		CounterId: 9,
9903		Instance:  "",
9904	},
9905	{
9906		CounterId: 29,
9907		Instance:  "",
9908	},
9909	{
9910		CounterId: 30,
9911		Instance:  "$cpu",
9912	},
9913	{
9914		CounterId: 24,
9915		Instance:  "",
9916	},
9917	{
9918		CounterId: 13,
9919		Instance:  "",
9920	},
9921	{
9922		CounterId: 10,
9923		Instance:  "$cpu",
9924	},
9925	{
9926		CounterId: 14,
9927		Instance:  "$cpu",
9928	},
9929	{
9930		CounterId: 27,
9931		Instance:  "$cpu",
9932	},
9933	{
9934		CounterId: 25,
9935		Instance:  "",
9936	},
9937	{
9938		CounterId: 5,
9939		Instance:  "$cpu",
9940	},
9941	{
9942		CounterId: 32,
9943		Instance:  "$cpu",
9944	},
9945	{
9946		CounterId: 14,
9947		Instance:  "",
9948	},
9949	{
9950		CounterId: 12,
9951		Instance:  "$cpu",
9952	},
9953	{
9954		CounterId: 10,
9955		Instance:  "",
9956	},
9957	{
9958		CounterId: 28,
9959		Instance:  "$cpu",
9960	},
9961	{
9962		CounterId: 5,
9963		Instance:  "",
9964	},
9965	{
9966		CounterId: 27,
9967		Instance:  "",
9968	},
9969	{
9970		CounterId: 31,
9971		Instance:  "",
9972	},
9973	{
9974		CounterId: 32,
9975		Instance:  "",
9976	},
9977	{
9978		CounterId: 26,
9979		Instance:  "",
9980	},
9981	{
9982		CounterId: 13,
9983		Instance:  "$cpu",
9984	},
9985	{
9986		CounterId: 28,
9987		Instance:  "",
9988	},
9989	{
9990		CounterId: 30,
9991		Instance:  "",
9992	},
9993	{
9994		CounterId: 11,
9995		Instance:  "",
9996	},
9997	{
9998		CounterId: 655379,
9999		Instance:  "",
10000	},
10001
10002	{
10003		CounterId: 655362,
10004		Instance:  "$physDisk",
10005	},
10006	{
10007		CounterId: 655363,
10008		Instance:  "$physDisk",
10009	},
10010	{
10011		CounterId: 655360,
10012		Instance:  "$physDisk",
10013	},
10014	{
10015		CounterId: 655364,
10016		Instance:  "$physDisk",
10017	},
10018	{
10019		CounterId: 655361,
10020		Instance:  "$physDisk",
10021	},
10022	{
10023		CounterId: 655365,
10024		Instance:  "$physDisk",
10025	},
10026
10027	{
10028		CounterId: 131095,
10029		Instance:  "",
10030	},
10031	{
10032		CounterId: 65549,
10033		Instance:  "",
10034	},
10035	{
10036		CounterId: 65595,
10037		Instance:  "",
10038	},
10039	{
10040		CounterId: 65632,
10041		Instance:  "",
10042	},
10043	{
10044		CounterId: 65591,
10045		Instance:  "",
10046	},
10047	{
10048		CounterId: 65623,
10049		Instance:  "",
10050	},
10051	{
10052		CounterId: 65628,
10053		Instance:  "",
10054	},
10055	{
10056		CounterId: 65621,
10057		Instance:  "",
10058	},
10059	{
10060		CounterId: 65618,
10061		Instance:  "",
10062	},
10063	{
10064		CounterId: 65634,
10065		Instance:  "",
10066	},
10067	{
10068		CounterId: 65624,
10069		Instance:  "",
10070	},
10071	{
10072		CounterId: 65586,
10073		Instance:  "",
10074	},
10075	{
10076		CounterId: 65545,
10077		Instance:  "",
10078	},
10079	{
10080		CounterId: 65633,
10081		Instance:  "",
10082	},
10083	{
10084		CounterId: 65607,
10085		Instance:  "",
10086	},
10087	{
10088		CounterId: 65541,
10089		Instance:  "",
10090	},
10091	{
10092		CounterId: 65626,
10093		Instance:  "",
10094	},
10095	{
10096		CounterId: 65620,
10097		Instance:  "",
10098	},
10099	{
10100		CounterId: 65611,
10101		Instance:  "",
10102	},
10103	{
10104		CounterId: 65629,
10105		Instance:  "",
10106	},
10107	{
10108		CounterId: 65622,
10109		Instance:  "",
10110	},
10111	{
10112		CounterId: 65619,
10113		Instance:  "",
10114	},
10115	{
10116		CounterId: 65553,
10117		Instance:  "",
10118	},
10119	{
10120		CounterId: 65627,
10121		Instance:  "",
10122	},
10123	{
10124		CounterId: 65635,
10125		Instance:  "",
10126	},
10127	{
10128		CounterId: 65599,
10129		Instance:  "",
10130	},
10131	{
10132		CounterId: 65582,
10133		Instance:  "",
10134	},
10135	{
10136		CounterId: 65537,
10137		Instance:  "",
10138	},
10139	{
10140		CounterId: 65603,
10141		Instance:  "",
10142	},
10143	{
10144		CounterId: 196622,
10145		Instance:  "4000",
10146	},
10147	{
10148		CounterId: 196612,
10149		Instance:  "",
10150	},
10151	{
10152		CounterId: 196617,
10153		Instance:  "",
10154	},
10155	{
10156		CounterId: 196613,
10157		Instance:  "",
10158	},
10159	{
10160		CounterId: 196619,
10161		Instance:  "4000",
10162	},
10163	{
10164		CounterId: 196618,
10165		Instance:  "4000",
10166	},
10167	{
10168		CounterId: 196617,
10169		Instance:  "4000",
10170	},
10171	{
10172		CounterId: 196621,
10173		Instance:  "4000",
10174	},
10175	{
10176		CounterId: 196616,
10177		Instance:  "4000",
10178	},
10179	{
10180		CounterId: 196615,
10181		Instance:  "4000",
10182	},
10183	{
10184		CounterId: 196614,
10185		Instance:  "4000",
10186	},
10187	{
10188		CounterId: 196618,
10189		Instance:  "",
10190	},
10191	{
10192		CounterId: 196609,
10193		Instance:  "4000",
10194	},
10195	{
10196		CounterId: 196619,
10197		Instance:  "",
10198	},
10199	{
10200		CounterId: 196622,
10201		Instance:  "",
10202	},
10203	{
10204		CounterId: 196628,
10205		Instance:  "4000",
10206	},
10207	{
10208		CounterId: 196609,
10209		Instance:  "",
10210	},
10211	{
10212		CounterId: 196612,
10213		Instance:  "4000",
10214	},
10215	{
10216		CounterId: 196628,
10217		Instance:  "",
10218	},
10219	{
10220		CounterId: 196627,
10221		Instance:  "",
10222	},
10223	{
10224		CounterId: 196616,
10225		Instance:  "",
10226	},
10227	{
10228		CounterId: 196613,
10229		Instance:  "4000",
10230	},
10231	{
10232		CounterId: 196627,
10233		Instance:  "4000",
10234	},
10235	{
10236		CounterId: 196614,
10237		Instance:  "",
10238	},
10239	{
10240		CounterId: 196621,
10241		Instance:  "",
10242	},
10243	{
10244		CounterId: 196620,
10245		Instance:  "4000",
10246	},
10247	{
10248		CounterId: 196620,
10249		Instance:  "",
10250	},
10251	{
10252		CounterId: 196623,
10253		Instance:  "",
10254	},
10255	{
10256		CounterId: 196615,
10257		Instance:  "",
10258	},
10259	{
10260		CounterId: 196623,
10261		Instance:  "4000",
10262	},
10263	{
10264		CounterId: 720898,
10265		Instance:  "",
10266	},
10267	{
10268		CounterId: 720896,
10269		Instance:  "",
10270	},
10271	{
10272		CounterId: 327684,
10273		Instance:  "",
10274	},
10275	{
10276		CounterId: 327687,
10277		Instance:  "",
10278	},
10279	{
10280		CounterId: 327693,
10281		Instance:  "",
10282	},
10283	{
10284		CounterId: 327680,
10285		Instance:  "",
10286	},
10287	{
10288		CounterId: 327685,
10289		Instance:  "",
10290	},
10291	{
10292		CounterId: 327694,
10293		Instance:  "",
10294	},
10295	{
10296		CounterId: 327686,
10297		Instance:  "",
10298	},
10299	{
10300		CounterId: 327692,
10301		Instance:  "",
10302	},
10303	{
10304		CounterId: 327688,
10305		Instance:  "",
10306	},
10307	{
10308		CounterId: 327695,
10309		Instance:  "",
10310	},
10311	{
10312		CounterId: 327689,
10313		Instance:  "",
10314	},
10315	{
10316		CounterId: 327681,
10317		Instance:  "",
10318	},
10319	{
10320		CounterId: 327696,
10321		Instance:  "",
10322	},
10323	{
10324		CounterId: 327683,
10325		Instance:  "",
10326	},
10327	{
10328		CounterId: 327691,
10329		Instance:  "",
10330	},
10331	{
10332		CounterId: 327690,
10333		Instance:  "",
10334	},
10335	{
10336		CounterId: 327682,
10337		Instance:  "",
10338	},
10339	{
10340		CounterId: 262144,
10341		Instance:  "",
10342	},
10343	{
10344		CounterId: 262145,
10345		Instance:  "",
10346	},
10347	{
10348		CounterId: 262170,
10349		Instance:  "",
10350	},
10351	{
10352		CounterId: 589827,
10353		Instance:  "",
10354	},
10355	{
10356		CounterId: 589826,
10357		Instance:  "",
10358	},
10359}
10360
10361// **************************** Host metrics *********************************
10362
10363var HostMetrics = []types.PerfMetricId{
10364	{
10365		CounterId: 23,
10366		Instance:  "",
10367	},
10368	{
10369		CounterId: 14,
10370		Instance:  "",
10371	},
10372	{
10373		CounterId: 1,
10374		Instance:  "",
10375	},
10376	{
10377		CounterId: 11,
10378		Instance:  "",
10379	},
10380	{
10381		CounterId: 20,
10382		Instance:  "$cpu",
10383	},
10384	{
10385		CounterId: 13,
10386		Instance:  "",
10387	},
10388	{
10389		CounterId: 5,
10390		Instance:  "",
10391	},
10392	{
10393		CounterId: 32,
10394		Instance:  "",
10395	},
10396	{
10397		CounterId: 26,
10398		Instance:  "",
10399	},
10400	{
10401		CounterId: 24,
10402		Instance:  "",
10403	},
10404	{
10405		CounterId: 16,
10406		Instance:  "$cpu",
10407	},
10408	{
10409		CounterId: 27,
10410		Instance:  "",
10411	},
10412	{
10413		CounterId: 16,
10414		Instance:  "",
10415	},
10416
10417	{
10418		CounterId: 10,
10419		Instance:  "",
10420	},
10421	{
10422		CounterId: 12,
10423		Instance:  "",
10424	},
10425	{
10426		CounterId: 1,
10427		Instance:  "$cpu",
10428	},
10429	{
10430		CounterId: 12,
10431		Instance:  "$cpu",
10432	},
10433	{
10434		CounterId: 13,
10435		Instance:  "$cpu",
10436	},
10437	{
10438		CounterId: 8,
10439		Instance:  "",
10440	},
10441	{
10442		CounterId: 655380,
10443		Instance:  "$physDisk",
10444	},
10445	{
10446		CounterId: 655370,
10447		Instance:  "$physDisk",
10448	},
10449	{
10450		CounterId: 655377,
10451		Instance:  "$physDisk",
10452	},
10453	{
10454		CounterId: 655379,
10455		Instance:  "",
10456	},
10457	{
10458		CounterId: 655375,
10459		Instance:  "$physDisk",
10460	},
10461	{
10462		CounterId: 655378,
10463		Instance:  "$physDisk",
10464	},
10465	{
10466		CounterId: 655372,
10467		Instance:  "$physDisk",
10468	},
10469	{
10470		CounterId: 655369,
10471		Instance:  "$physDisk",
10472	},
10473	{
10474		CounterId: 655373,
10475		Instance:  "$physDisk",
10476	},
10477	{
10478		CounterId: 655362,
10479		Instance:  "$physDisk",
10480	},
10481	{
10482		CounterId: 655374,
10483		Instance:  "$physDisk",
10484	},
10485	{
10486		CounterId: 655368,
10487		Instance:  "$physDisk",
10488	},
10489	{
10490		CounterId: 655365,
10491		Instance:  "$physDisk",
10492	},
10493	{
10494		CounterId: 655366,
10495		Instance:  "$physDisk",
10496	},
10497	{
10498		CounterId: 655367,
10499		Instance:  "$physDisk",
10500	},
10501	{
10502		CounterId: 655371,
10503		Instance:  "$physDisk",
10504	},
10505	{
10506		CounterId: 655361,
10507		Instance:  "$physDisk",
10508	},
10509	{
10510		CounterId: 655376,
10511		Instance:  "$physDisk",
10512	},
10513	{
10514		CounterId: 655363,
10515		Instance:  "$physDisk",
10516	},
10517	{
10518		CounterId: 655360,
10519		Instance:  "$physDisk",
10520	},
10521	{
10522		CounterId: 655381,
10523		Instance:  "$physDisk",
10524	},
10525	{
10526		CounterId: 131073,
10527		Instance:  "",
10528	},
10529	{
10530		CounterId: 131090,
10531		Instance:  "$physDisk",
10532	},
10533	{
10534		CounterId: 131079,
10535		Instance:  "",
10536	},
10537	{
10538		CounterId: 131086,
10539		Instance:  "$physDisk",
10540	},
10541	{
10542		CounterId: 131098,
10543		Instance:  "$physDisk",
10544	},
10545	{
10546		CounterId: 131081,
10547		Instance:  "$physDisk",
10548	},
10549	{
10550		CounterId: 131082,
10551		Instance:  "mpx.vmhba32:C0:T0:L0",
10552	},
10553	{
10554		CounterId: 131090,
10555		Instance:  "mpx.vmhba32:C0:T0:L0",
10556	},
10557	{
10558		CounterId: 131081,
10559		Instance:  "mpx.vmhba32:C0:T0:L0",
10560	},
10561	{
10562		CounterId: 131086,
10563		Instance:  "mpx.vmhba32:C0:T0:L0",
10564	},
10565	{
10566		CounterId: 131088,
10567		Instance:  "$physDisk",
10568	},
10569	{
10570		CounterId: 131098,
10571		Instance:  "mpx.vmhba32:C0:T0:L0",
10572	},
10573	{
10574		CounterId: 131078,
10575		Instance:  "mpx.vmhba32:C0:T0:L0",
10576	},
10577	{
10578		CounterId: 131079,
10579		Instance:  "mpx.vmhba32:C0:T0:L0",
10580	},
10581	{
10582		CounterId: 131099,
10583		Instance:  "$physDisk",
10584	},
10585	{
10586		CounterId: 131087,
10587		Instance:  "$physDisk",
10588	},
10589	{
10590		CounterId: 131089,
10591		Instance:  "$physDisk",
10592	},
10593	{
10594		CounterId: 131078,
10595		Instance:  "$physDisk",
10596	},
10597	{
10598		CounterId: 131096,
10599		Instance:  "$physDisk",
10600	},
10601	{
10602		CounterId: 131091,
10603		Instance:  "$physDisk",
10604	},
10605	{
10606		CounterId: 131080,
10607		Instance:  "$physDisk",
10608	},
10609	{
10610		CounterId: 131078,
10611		Instance:  "",
10612	},
10613	{
10614		CounterId: 131076,
10615		Instance:  "mpx.vmhba32:C0:T0:L0",
10616	},
10617	{
10618		CounterId: 131092,
10619		Instance:  "$physDisk",
10620	},
10621	{
10622		CounterId: 131080,
10623		Instance:  "mpx.vmhba32:C0:T0:L0",
10624	},
10625	{
10626		CounterId: 131095,
10627		Instance:  "",
10628	},
10629	{
10630		CounterId: 131097,
10631		Instance:  "$physDisk",
10632	},
10633	{
10634		CounterId: 131093,
10635		Instance:  "mpx.vmhba32:C0:T0:L0",
10636	},
10637	{
10638		CounterId: 131092,
10639		Instance:  "mpx.vmhba32:C0:T0:L0",
10640	},
10641	{
10642		CounterId: 131084,
10643		Instance:  "mpx.vmhba32:C0:T0:L0",
10644	},
10645	{
10646		CounterId: 131099,
10647		Instance:  "mpx.vmhba32:C0:T0:L0",
10648	},
10649	{
10650		CounterId: 131079,
10651		Instance:  "$physDisk",
10652	},
10653	{
10654		CounterId: 131085,
10655		Instance:  "$physDisk",
10656	},
10657	{
10658		CounterId: 131083,
10659		Instance:  "mpx.vmhba32:C0:T0:L0",
10660	},
10661	{
10662		CounterId: 131076,
10663		Instance:  "$physDisk",
10664	},
10665	{
10666		CounterId: 131096,
10667		Instance:  "mpx.vmhba32:C0:T0:L0",
10668	},
10669	{
10670		CounterId: 131094,
10671		Instance:  "$physDisk",
10672	},
10673	{
10674		CounterId: 131088,
10675		Instance:  "mpx.vmhba32:C0:T0:L0",
10676	},
10677	{
10678		CounterId: 131089,
10679		Instance:  "mpx.vmhba32:C0:T0:L0",
10680	},
10681	{
10682		CounterId: 131077,
10683		Instance:  "mpx.vmhba32:C0:T0:L0",
10684	},
10685	{
10686		CounterId: 131077,
10687		Instance:  "$physDisk",
10688	},
10689	{
10690		CounterId: 131093,
10691		Instance:  "$physDisk",
10692	},
10693	{
10694		CounterId: 131087,
10695		Instance:  "mpx.vmhba32:C0:T0:L0",
10696	},
10697	{
10698		CounterId: 131085,
10699		Instance:  "mpx.vmhba32:C0:T0:L0",
10700	},
10701	{
10702		CounterId: 131091,
10703		Instance:  "mpx.vmhba32:C0:T0:L0",
10704	},
10705	{
10706		CounterId: 131097,
10707		Instance:  "mpx.vmhba32:C0:T0:L0",
10708	},
10709	{
10710		CounterId: 131082,
10711		Instance:  "$physDisk",
10712	},
10713	{
10714		CounterId: 131094,
10715		Instance:  "mpx.vmhba32:C0:T0:L0",
10716	},
10717	{
10718		CounterId: 131084,
10719		Instance:  "$physDisk",
10720	},
10721	{
10722		CounterId: 131083,
10723		Instance:  "$physDisk",
10724	},
10725	{
10726		CounterId: 786433,
10727		Instance:  "",
10728	},
10729	{
10730		CounterId: 786434,
10731		Instance:  "",
10732	},
10733	{
10734		CounterId: 786432,
10735		Instance:  "",
10736	},
10737	{
10738		CounterId: 65573,
10739		Instance:  "",
10740	},
10741	{
10742		CounterId: 65618,
10743		Instance:  "",
10744	},
10745	{
10746		CounterId: 65632,
10747		Instance:  "",
10748	},
10749	{
10750		CounterId: 65623,
10751		Instance:  "",
10752	},
10753	{
10754		CounterId: 65582,
10755		Instance:  "",
10756	},
10757	{
10758		CounterId: 65611,
10759		Instance:  "",
10760	},
10761	{
10762		CounterId: 65541,
10763		Instance:  "",
10764	},
10765	{
10766		CounterId: 65586,
10767		Instance:  "",
10768	},
10769	{
10770		CounterId: 65621,
10771		Instance:  "",
10772	},
10773	{
10774		CounterId: 65561,
10775		Instance:  "",
10776	},
10777	{
10778		CounterId: 65569,
10779		Instance:  "",
10780	},
10781	{
10782		CounterId: 65580,
10783		Instance:  "",
10784	},
10785	{
10786		CounterId: 65553,
10787		Instance:  "",
10788	},
10789	{
10790		CounterId: 65646,
10791		Instance:  "",
10792	},
10793	{
10794		CounterId: 65603,
10795		Instance:  "",
10796	},
10797	{
10798		CounterId: 65647,
10799		Instance:  "",
10800	},
10801	{
10802		CounterId: 65628,
10803		Instance:  "",
10804	},
10805	{
10806		CounterId: 65557,
10807		Instance:  "",
10808	},
10809	{
10810		CounterId: 65635,
10811		Instance:  "",
10812	},
10813	{
10814		CounterId: 65589,
10815		Instance:  "",
10816	},
10817	{
10818		CounterId: 65643,
10819		Instance:  "",
10820	},
10821	{
10822		CounterId: 65545,
10823		Instance:  "",
10824	},
10825	{
10826		CounterId: 65537,
10827		Instance:  "",
10828	},
10829	{
10830		CounterId: 65622,
10831		Instance:  "",
10832	},
10833	{
10834		CounterId: 65639,
10835		Instance:  "",
10836	},
10837	{
10838		CounterId: 65599,
10839		Instance:  "",
10840	},
10841	{
10842		CounterId: 65633,
10843		Instance:  "",
10844	},
10845	{
10846		CounterId: 65650,
10847		Instance:  "",
10848	},
10849	{
10850		CounterId: 65649,
10851		Instance:  "",
10852	},
10853	{
10854		CounterId: 65615,
10855		Instance:  "",
10856	},
10857	{
10858		CounterId: 65577,
10859		Instance:  "",
10860	},
10861	{
10862		CounterId: 65648,
10863		Instance:  "",
10864	},
10865	{
10866		CounterId: 65619,
10867		Instance:  "",
10868	},
10869	{
10870		CounterId: 65630,
10871		Instance:  "",
10872	},
10873	{
10874		CounterId: 65651,
10875		Instance:  "",
10876	},
10877	{
10878		CounterId: 65620,
10879		Instance:  "",
10880	},
10881	{
10882		CounterId: 65625,
10883		Instance:  "",
10884	},
10885	{
10886		CounterId: 65549,
10887		Instance:  "",
10888	},
10889	{
10890		CounterId: 196616,
10891		Instance:  "vmnic0",
10892	},
10893	{
10894		CounterId: 196612,
10895		Instance:  "vmnic0",
10896	},
10897	{
10898		CounterId: 196621,
10899		Instance:  "",
10900	},
10901	{
10902		CounterId: 196618,
10903		Instance:  "vmnic0",
10904	},
10905	{
10906		CounterId: 196609,
10907		Instance:  "vmnic1",
10908	},
10909	{
10910		CounterId: 196622,
10911		Instance:  "",
10912	},
10913	{
10914		CounterId: 196623,
10915		Instance:  "vmnic0",
10916	},
10917	{
10918		CounterId: 196626,
10919		Instance:  "",
10920	},
10921	{
10922		CounterId: 196614,
10923		Instance:  "",
10924	},
10925	{
10926		CounterId: 196616,
10927		Instance:  "vmnic1",
10928	},
10929	{
10930		CounterId: 196615,
10931		Instance:  "vmnic0",
10932	},
10933	{
10934		CounterId: 196621,
10935		Instance:  "vmnic1",
10936	},
10937	{
10938		CounterId: 196622,
10939		Instance:  "vmnic0",
10940	},
10941	{
10942		CounterId: 196614,
10943		Instance:  "vmnic0",
10944	},
10945	{
10946		CounterId: 196620,
10947		Instance:  "",
10948	},
10949	{
10950		CounterId: 196622,
10951		Instance:  "vmnic1",
10952	},
10953	{
10954		CounterId: 196617,
10955		Instance:  "",
10956	},
10957	{
10958		CounterId: 196616,
10959		Instance:  "",
10960	},
10961	{
10962		CounterId: 196613,
10963		Instance:  "vmnic0",
10964	},
10965	{
10966		CounterId: 196614,
10967		Instance:  "vmnic1",
10968	},
10969	{
10970		CounterId: 196625,
10971		Instance:  "",
10972	},
10973	{
10974		CounterId: 196609,
10975		Instance:  "vmnic0",
10976	},
10977	{
10978		CounterId: 196624,
10979		Instance:  "",
10980	},
10981	{
10982		CounterId: 196619,
10983		Instance:  "vmnic1",
10984	},
10985	{
10986		CounterId: 196625,
10987		Instance:  "vmnic0",
10988	},
10989	{
10990		CounterId: 196617,
10991		Instance:  "vmnic1",
10992	},
10993	{
10994		CounterId: 196619,
10995		Instance:  "",
10996	},
10997	{
10998		CounterId: 196618,
10999		Instance:  "vmnic1",
11000	},
11001	{
11002		CounterId: 196626,
11003		Instance:  "vmnic0",
11004	},
11005	{
11006		CounterId: 196612,
11007		Instance:  "vmnic1",
11008	},
11009	{
11010		CounterId: 196613,
11011		Instance:  "",
11012	},
11013	{
11014		CounterId: 196621,
11015		Instance:  "vmnic0",
11016	},
11017	{
11018		CounterId: 196615,
11019		Instance:  "",
11020	},
11021	{
11022		CounterId: 196620,
11023		Instance:  "vmnic1",
11024	},
11025	{
11026		CounterId: 196612,
11027		Instance:  "",
11028	},
11029	{
11030		CounterId: 196624,
11031		Instance:  "vmnic1",
11032	},
11033	{
11034		CounterId: 196617,
11035		Instance:  "vmnic0",
11036	},
11037	{
11038		CounterId: 196625,
11039		Instance:  "vmnic1",
11040	},
11041	{
11042		CounterId: 196618,
11043		Instance:  "",
11044	},
11045	{
11046		CounterId: 196623,
11047		Instance:  "vmnic1",
11048	},
11049	{
11050		CounterId: 196623,
11051		Instance:  "",
11052	},
11053	{
11054		CounterId: 196609,
11055		Instance:  "",
11056	},
11057	{
11058		CounterId: 196613,
11059		Instance:  "vmnic1",
11060	},
11061	{
11062		CounterId: 196620,
11063		Instance:  "vmnic0",
11064	},
11065	{
11066		CounterId: 196619,
11067		Instance:  "vmnic0",
11068	},
11069	{
11070		CounterId: 196624,
11071		Instance:  "vmnic0",
11072	},
11073	{
11074		CounterId: 196615,
11075		Instance:  "vmnic1",
11076	},
11077	{
11078		CounterId: 196626,
11079		Instance:  "vmnic1",
11080	},
11081	{
11082		CounterId: 720898,
11083		Instance:  "",
11084	},
11085	{
11086		CounterId: 720897,
11087		Instance:  "",
11088	},
11089	{
11090		CounterId: 720896,
11091		Instance:  "",
11092	},
11093	{
11094		CounterId: 327681,
11095		Instance:  "",
11096	},
11097	{
11098		CounterId: 327694,
11099		Instance:  "",
11100	},
11101	{
11102		CounterId: 327689,
11103		Instance:  "",
11104	},
11105	{
11106		CounterId: 327696,
11107		Instance:  "",
11108	},
11109	{
11110		CounterId: 327685,
11111		Instance:  "",
11112	},
11113	{
11114		CounterId: 327680,
11115		Instance:  "",
11116	},
11117	{
11118		CounterId: 327690,
11119		Instance:  "",
11120	},
11121	{
11122		CounterId: 327693,
11123		Instance:  "",
11124	},
11125	{
11126		CounterId: 327683,
11127		Instance:  "",
11128	},
11129	{
11130		CounterId: 327688,
11131		Instance:  "",
11132	},
11133	{
11134		CounterId: 327687,
11135		Instance:  "",
11136	},
11137	{
11138		CounterId: 327684,
11139		Instance:  "",
11140	},
11141	{
11142		CounterId: 327691,
11143		Instance:  "",
11144	},
11145	{
11146		CounterId: 327682,
11147		Instance:  "",
11148	},
11149	{
11150		CounterId: 327695,
11151		Instance:  "",
11152	},
11153	{
11154		CounterId: 327686,
11155		Instance:  "",
11156	},
11157	{
11158		CounterId: 327692,
11159		Instance:  "",
11160	},
11161	{
11162		CounterId: 458755,
11163		Instance:  "vmhba64",
11164	},
11165	{
11166		CounterId: 458755,
11167		Instance:  "vmhba1",
11168	},
11169	{
11170		CounterId: 458756,
11171		Instance:  "vmhba1",
11172	},
11173	{
11174		CounterId: 458757,
11175		Instance:  "vmhba32",
11176	},
11177	{
11178		CounterId: 458753,
11179		Instance:  "vmhba1",
11180	},
11181	{
11182		CounterId: 458754,
11183		Instance:  "vmhba1",
11184	},
11185	{
11186		CounterId: 458752,
11187		Instance:  "vmhba0",
11188	},
11189	{
11190		CounterId: 458755,
11191		Instance:  "vmhba32",
11192	},
11193	{
11194		CounterId: 458757,
11195		Instance:  "vmhba64",
11196	},
11197	{
11198		CounterId: 458753,
11199		Instance:  "vmhba64",
11200	},
11201	{
11202		CounterId: 458754,
11203		Instance:  "vmhba64",
11204	},
11205	{
11206		CounterId: 458752,
11207		Instance:  "vmhba64",
11208	},
11209	{
11210		CounterId: 458759,
11211		Instance:  "",
11212	},
11213	{
11214		CounterId: 458758,
11215		Instance:  "vmhba1",
11216	},
11217	{
11218		CounterId: 458753,
11219		Instance:  "vmhba32",
11220	},
11221	{
11222		CounterId: 458758,
11223		Instance:  "vmhba0",
11224	},
11225	{
11226		CounterId: 458756,
11227		Instance:  "vmhba64",
11228	},
11229	{
11230		CounterId: 458754,
11231		Instance:  "vmhba32",
11232	},
11233	{
11234		CounterId: 458753,
11235		Instance:  "vmhba0",
11236	},
11237	{
11238		CounterId: 458757,
11239		Instance:  "vmhba0",
11240	},
11241	{
11242		CounterId: 458754,
11243		Instance:  "vmhba0",
11244	},
11245	{
11246		CounterId: 458756,
11247		Instance:  "vmhba0",
11248	},
11249	{
11250		CounterId: 458752,
11251		Instance:  "vmhba1",
11252	},
11253	{
11254		CounterId: 458752,
11255		Instance:  "vmhba32",
11256	},
11257	{
11258		CounterId: 458756,
11259		Instance:  "vmhba32",
11260	},
11261	{
11262		CounterId: 458755,
11263		Instance:  "vmhba0",
11264	},
11265	{
11266		CounterId: 458758,
11267		Instance:  "vmhba64",
11268	},
11269	{
11270		CounterId: 458757,
11271		Instance:  "vmhba1",
11272	},
11273	{
11274		CounterId: 458758,
11275		Instance:  "vmhba32",
11276	},
11277	{
11278		CounterId: 524290,
11279		Instance:  "$physDisk",
11280	},
11281	{
11282		CounterId: 524288,
11283		Instance:  "$physDisk",
11284	},
11285	{
11286		CounterId: 524291,
11287		Instance:  "$physDisk",
11288	},
11289	{
11290		CounterId: 524292,
11291		Instance:  "$physDisk",
11292	},
11293	{
11294		CounterId: 524295,
11295		Instance:  "",
11296	},
11297	{
11298		CounterId: 524289,
11299		Instance:  "$physDisk",
11300	},
11301	{
11302		CounterId: 524293,
11303		Instance:  "$physDisk",
11304	},
11305	{
11306		CounterId: 524294,
11307		Instance:  "$physDisk",
11308	},
11309	{
11310		CounterId: 262156,
11311		Instance:  "host/vim/vmvisor/vmkeventd",
11312	},
11313	{
11314		CounterId: 262168,
11315		Instance:  "host/system",
11316	},
11317	{
11318		CounterId: 262172,
11319		Instance:  "host/iofilters/vmwarevmcrypt",
11320	},
11321	{
11322		CounterId: 262152,
11323		Instance:  "host/vim/vmvisor/snmpd",
11324	},
11325	{
11326		CounterId: 262166,
11327		Instance:  "host/system",
11328	},
11329	{
11330		CounterId: 262157,
11331		Instance:  "host/system/svmotion",
11332	},
11333	{
11334		CounterId: 262157,
11335		Instance:  "host/system/drivers",
11336	},
11337	{
11338		CounterId: 262163,
11339		Instance:  "host/system",
11340	},
11341	{
11342		CounterId: 262156,
11343		Instance:  "host/system",
11344	},
11345	{
11346		CounterId: 262152,
11347		Instance:  "host/vim/vmvisor/dhclient",
11348	},
11349	{
11350		CounterId: 262153,
11351		Instance:  "host/vim/vimuser/terminal/ssh",
11352	},
11353	{
11354		CounterId: 262161,
11355		Instance:  "host/system/vmotion",
11356	},
11357	{
11358		CounterId: 262172,
11359		Instance:  "host/system/kernel/tmp",
11360	},
11361	{
11362		CounterId: 262171,
11363		Instance:  "host",
11364	},
11365	{
11366		CounterId: 262156,
11367		Instance:  "host",
11368	},
11369	{
11370		CounterId: 262152,
11371		Instance:  "host",
11372	},
11373	{
11374		CounterId: 262153,
11375		Instance:  "host/vim",
11376	},
11377	{
11378		CounterId: 262151,
11379		Instance:  "host/system/drivers",
11380	},
11381	{
11382		CounterId: 262148,
11383		Instance:  "host/system/kernel/opt",
11384	},
11385	{
11386		CounterId: 262171,
11387		Instance:  "host/vim/vmvisor/logging",
11388	},
11389	{
11390		CounterId: 262172,
11391		Instance:  "host/system/kernel",
11392	},
11393	{
11394		CounterId: 262148,
11395		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
11396	},
11397	{
11398		CounterId: 262155,
11399		Instance:  "host/vim/vmvisor/nscd",
11400	},
11401	{
11402		CounterId: 262153,
11403		Instance:  "host/vim/vmvisor/logging",
11404	},
11405	{
11406		CounterId: 262155,
11407		Instance:  "host/system/kernel/var",
11408	},
11409	{
11410		CounterId: 262148,
11411		Instance:  "host/vim/vmvisor/sfcb",
11412	},
11413	{
11414		CounterId: 262154,
11415		Instance:  "host/vim/vmvisor/ntpd",
11416	},
11417	{
11418		CounterId: 262153,
11419		Instance:  "host/system/ft",
11420	},
11421	{
11422		CounterId: 262153,
11423		Instance:  "host/system/kernel/tmp",
11424	},
11425	{
11426		CounterId: 262148,
11427		Instance:  "host/system/kernel",
11428	},
11429	{
11430		CounterId: 262154,
11431		Instance:  "host/vim/vmvisor/vmfstraced",
11432	},
11433	{
11434		CounterId: 262155,
11435		Instance:  "host/vim/vmvisor/hostdCgiServer",
11436	},
11437	{
11438		CounterId: 262157,
11439		Instance:  "host/vim/vmvisor/likewise",
11440	},
11441	{
11442		CounterId: 262148,
11443		Instance:  "host/vim/vmvisor/snmpd",
11444	},
11445	{
11446		CounterId: 262155,
11447		Instance:  "host/vim/vmvisor/osfsd",
11448	},
11449	{
11450		CounterId: 262153,
11451		Instance:  "host/vim/vmvisor/swapobjd",
11452	},
11453	{
11454		CounterId: 262156,
11455		Instance:  "host/system/kernel",
11456	},
11457	{
11458		CounterId: 262152,
11459		Instance:  "host/vim/vmvisor/vpxa",
11460	},
11461	{
11462		CounterId: 262156,
11463		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
11464	},
11465	{
11466		CounterId: 262156,
11467		Instance:  "host/vim/vmvisor/usbArbitrator",
11468	},
11469	{
11470		CounterId: 262151,
11471		Instance:  "host/system/kernel/tmp",
11472	},
11473	{
11474		CounterId: 262156,
11475		Instance:  "host/vim/vmvisor/init",
11476	},
11477	{
11478		CounterId: 262151,
11479		Instance:  "host/vim/vmvisor/wsman",
11480	},
11481	{
11482		CounterId: 262165,
11483		Instance:  "host/system/vmotion",
11484	},
11485	{
11486		CounterId: 262155,
11487		Instance:  "host/vim/vmvisor/hostd-probe",
11488	},
11489	{
11490		CounterId: 262171,
11491		Instance:  "host/iofilters",
11492	},
11493	{
11494		CounterId: 262156,
11495		Instance:  "host/vim/vmvisor/vmkiscsid",
11496	},
11497	{
11498		CounterId: 262156,
11499		Instance:  "host/vim/vmvisor/lbt",
11500	},
11501	{
11502		CounterId: 262151,
11503		Instance:  "host/vim/vmvisor/nscd",
11504	},
11505	{
11506		CounterId: 262151,
11507		Instance:  "host/system/kernel/root",
11508	},
11509	{
11510		CounterId: 262171,
11511		Instance:  "host/vim/vmvisor/dhclientrelease",
11512	},
11513	{
11514		CounterId: 262157,
11515		Instance:  "host/system/kernel",
11516	},
11517	{
11518		CounterId: 262153,
11519		Instance:  "host/system/kernel/root",
11520	},
11521	{
11522		CounterId: 262148,
11523		Instance:  "host/vim/vmvisor/vsfwd",
11524	},
11525	{
11526		CounterId: 262156,
11527		Instance:  "host/system/kernel/root",
11528	},
11529	{
11530		CounterId: 262153,
11531		Instance:  "host",
11532	},
11533	{
11534		CounterId: 262157,
11535		Instance:  "host/vim/vmvisor/vsanperfsvc",
11536	},
11537	{
11538		CounterId: 262153,
11539		Instance:  "host/vim/vmvisor/aam",
11540	},
11541	{
11542		CounterId: 262153,
11543		Instance:  "host/system/kernel/etc",
11544	},
11545	{
11546		CounterId: 262172,
11547		Instance:  "host/vim/vimuser/terminal/ssh",
11548	},
11549	{
11550		CounterId: 262154,
11551		Instance:  "host/system/kernel/etc",
11552	},
11553	{
11554		CounterId: 262148,
11555		Instance:  "host/system/kernel/var",
11556	},
11557	{
11558		CounterId: 262151,
11559		Instance:  "host/system/kernel",
11560	},
11561	{
11562		CounterId: 262171,
11563		Instance:  "host/system/kernel/etc",
11564	},
11565	{
11566		CounterId: 262153,
11567		Instance:  "host/vim/vmvisor/vmkeventd",
11568	},
11569	{
11570		CounterId: 262154,
11571		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
11572	},
11573	{
11574		CounterId: 262172,
11575		Instance:  "host/system/kernel/opt",
11576	},
11577	{
11578		CounterId: 262172,
11579		Instance:  "host/vim",
11580	},
11581	{
11582		CounterId: 262172,
11583		Instance:  "host/system/kernel/var",
11584	},
11585	{
11586		CounterId: 262151,
11587		Instance:  "host/system/kernel/opt",
11588	},
11589	{
11590		CounterId: 262155,
11591		Instance:  "host/system/kernel/opt",
11592	},
11593	{
11594		CounterId: 262151,
11595		Instance:  "host/system/kernel/var",
11596	},
11597	{
11598		CounterId: 262156,
11599		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
11600	},
11601	{
11602		CounterId: 262148,
11603		Instance:  "host/system",
11604	},
11605	{
11606		CounterId: 262155,
11607		Instance:  "host/vim/vmvisor/hostd-probe/stats",
11608	},
11609	{
11610		CounterId: 262172,
11611		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
11612	},
11613	{
11614		CounterId: 262172,
11615		Instance:  "host/vim/vmvisor/hostdCgiServer",
11616	},
11617	{
11618		CounterId: 262155,
11619		Instance:  "host/system/drivers",
11620	},
11621	{
11622		CounterId: 262154,
11623		Instance:  "host/system/kernel/var",
11624	},
11625	{
11626		CounterId: 262155,
11627		Instance:  "host/vim/vmvisor/vsanperfsvc",
11628	},
11629	{
11630		CounterId: 262155,
11631		Instance:  "host/vim/vmvisor/plugins",
11632	},
11633	{
11634		CounterId: 262153,
11635		Instance:  "host/system/vmotion",
11636	},
11637	{
11638		CounterId: 262148,
11639		Instance:  "host/vim/vimuser",
11640	},
11641	{
11642		CounterId: 262172,
11643		Instance:  "host/vim/vmvisor/sfcb_aux",
11644	},
11645	{
11646		CounterId: 262152,
11647		Instance:  "host/vim/vimuser/terminal/shell",
11648	},
11649	{
11650		CounterId: 262148,
11651		Instance:  "host/vim/vmvisor/netcpa",
11652	},
11653	{
11654		CounterId: 262171,
11655		Instance:  "host/system/kernel/tmp",
11656	},
11657	{
11658		CounterId: 262172,
11659		Instance:  "host",
11660	},
11661	{
11662		CounterId: 262156,
11663		Instance:  "host/vim/vmvisor/memScrubber",
11664	},
11665	{
11666		CounterId: 262162,
11667		Instance:  "host/vim",
11668	},
11669	{
11670		CounterId: 262151,
11671		Instance:  "host/system/kernel/iofilters",
11672	},
11673	{
11674		CounterId: 262153,
11675		Instance:  "host/system",
11676	},
11677	{
11678		CounterId: 262153,
11679		Instance:  "host/system/kernel/iofilters",
11680	},
11681	{
11682		CounterId: 262171,
11683		Instance:  "host/vim/vmvisor/hostd-probe/stats",
11684	},
11685	{
11686		CounterId: 262171,
11687		Instance:  "host/system/kernel/iofilters",
11688	},
11689	{
11690		CounterId: 262152,
11691		Instance:  "host/system/kernel/tmp",
11692	},
11693	{
11694		CounterId: 262155,
11695		Instance:  "host/vim/vimuser",
11696	},
11697	{
11698		CounterId: 262148,
11699		Instance:  "host/system/kernel/hostdstats",
11700	},
11701	{
11702		CounterId: 262154,
11703		Instance:  "host",
11704	},
11705	{
11706		CounterId: 262157,
11707		Instance:  "host/system",
11708	},
11709	{
11710		CounterId: 262155,
11711		Instance:  "host/vim/vmvisor/net-daemons",
11712	},
11713	{
11714		CounterId: 262156,
11715		Instance:  "host/system/kernel/var",
11716	},
11717	{
11718		CounterId: 262171,
11719		Instance:  "host/vim/vmvisor/upittraced",
11720	},
11721	{
11722		CounterId: 262153,
11723		Instance:  "host/vim/vmci",
11724	},
11725	{
11726		CounterId: 262171,
11727		Instance:  "host/system/kernel/hostdstats",
11728	},
11729	{
11730		CounterId: 262148,
11731		Instance:  "host/iofilters",
11732	},
11733	{
11734		CounterId: 262153,
11735		Instance:  "host/system/kernel/var",
11736	},
11737	{
11738		CounterId: 262152,
11739		Instance:  "host/system/kernel",
11740	},
11741	{
11742		CounterId: 262154,
11743		Instance:  "host/system/kernel/root",
11744	},
11745	{
11746		CounterId: 262151,
11747		Instance:  "host/system/kernel/hostdstats",
11748	},
11749	{
11750		CounterId: 262148,
11751		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
11752	},
11753	{
11754		CounterId: 262171,
11755		Instance:  "host/iofilters/iofiltervpd",
11756	},
11757	{
11758		CounterId: 262152,
11759		Instance:  "host/vim/vmvisor/vsanperfsvc",
11760	},
11761	{
11762		CounterId: 262151,
11763		Instance:  "host/vim/vimuser",
11764	},
11765	{
11766		CounterId: 262154,
11767		Instance:  "host/vim/vmvisor/plugins",
11768	},
11769	{
11770		CounterId: 262152,
11771		Instance:  "host/system/kernel/hostdstats",
11772	},
11773	{
11774		CounterId: 262154,
11775		Instance:  "host/system/kernel/tmp",
11776	},
11777	{
11778		CounterId: 262152,
11779		Instance:  "host/vim/vmvisor/slp",
11780	},
11781	{
11782		CounterId: 262171,
11783		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
11784	},
11785	{
11786		CounterId: 262172,
11787		Instance:  "host/system/helper",
11788	},
11789	{
11790		CounterId: 262154,
11791		Instance:  "host/system/kernel/hostdstats",
11792	},
11793	{
11794		CounterId: 262155,
11795		Instance:  "host/system/kernel/hostdstats",
11796	},
11797	{
11798		CounterId: 262157,
11799		Instance:  "host/vim/vmvisor/hostd",
11800	},
11801	{
11802		CounterId: 262156,
11803		Instance:  "host/system/kernel/hostdstats",
11804	},
11805	{
11806		CounterId: 262157,
11807		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
11808	},
11809	{
11810		CounterId: 262152,
11811		Instance:  "host/vim/vmvisor/uwdaemons",
11812	},
11813	{
11814		CounterId: 262154,
11815		Instance:  "host/system/helper",
11816	},
11817	{
11818		CounterId: 262151,
11819		Instance:  "host/iofilters/spm",
11820	},
11821	{
11822		CounterId: 262151,
11823		Instance:  "host/vim/vmvisor/vvoltraced",
11824	},
11825	{
11826		CounterId: 262155,
11827		Instance:  "host/system/helper",
11828	},
11829	{
11830		CounterId: 262156,
11831		Instance:  "host/vim/tmp",
11832	},
11833	{
11834		CounterId: 262148,
11835		Instance:  "host/vim/vmvisor/boot",
11836	},
11837	{
11838		CounterId: 262171,
11839		Instance:  "host/vim/vimuser/terminal/ssh",
11840	},
11841	{
11842		CounterId: 262154,
11843		Instance:  "host/vim/vmvisor/logging",
11844	},
11845	{
11846		CounterId: 262157,
11847		Instance:  "host/system/kernel/iofilters",
11848	},
11849	{
11850		CounterId: 262171,
11851		Instance:  "host/vim/vmvisor/vobd",
11852	},
11853	{
11854		CounterId: 262157,
11855		Instance:  "host/system/kernel/root",
11856	},
11857	{
11858		CounterId: 262154,
11859		Instance:  "host/vim/vimuser",
11860	},
11861	{
11862		CounterId: 262152,
11863		Instance:  "host/system/kernel/opt",
11864	},
11865	{
11866		CounterId: 262172,
11867		Instance:  "host/vim/vmvisor/upitd",
11868	},
11869	{
11870		CounterId: 262157,
11871		Instance:  "host/vim/vmvisor/dcui",
11872	},
11873	{
11874		CounterId: 262154,
11875		Instance:  "host/vim/vmvisor/sensord",
11876	},
11877	{
11878		CounterId: 262151,
11879		Instance:  "host/vim/vmvisor/hbrca",
11880	},
11881	{
11882		CounterId: 262157,
11883		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
11884	},
11885	{
11886		CounterId: 262157,
11887		Instance:  "host/vim/vimuser/terminal/shell",
11888	},
11889	{
11890		CounterId: 262152,
11891		Instance:  "host/vim/vmvisor/swapobjd",
11892	},
11893	{
11894		CounterId: 262148,
11895		Instance:  "host/system/drivers",
11896	},
11897	{
11898		CounterId: 262152,
11899		Instance:  "host/system/helper",
11900	},
11901	{
11902		CounterId: 262171,
11903		Instance:  "host/vim/vimuser/terminal/shell",
11904	},
11905	{
11906		CounterId: 262153,
11907		Instance:  "host/vim/vmvisor/pcscd",
11908	},
11909	{
11910		CounterId: 262155,
11911		Instance:  "host/system/kernel/root",
11912	},
11913	{
11914		CounterId: 262153,
11915		Instance:  "host/iofilters/spm",
11916	},
11917	{
11918		CounterId: 262154,
11919		Instance:  "host/system/svmotion",
11920	},
11921	{
11922		CounterId: 262154,
11923		Instance:  "host/vim/vmvisor/pcscd",
11924	},
11925	{
11926		CounterId: 262155,
11927		Instance:  "host/vim/vmvisor/pcscd",
11928	},
11929	{
11930		CounterId: 262156,
11931		Instance:  "host/vim/vmvisor/pcscd",
11932	},
11933	{
11934		CounterId: 262156,
11935		Instance:  "host/vim/vmvisor/hostd-probe",
11936	},
11937	{
11938		CounterId: 262153,
11939		Instance:  "host/vim/vmvisor/sensord",
11940	},
11941	{
11942		CounterId: 262157,
11943		Instance:  "host/vim/vmvisor/sfcb",
11944	},
11945	{
11946		CounterId: 262151,
11947		Instance:  "host/vim/vmvisor/snmpd",
11948	},
11949	{
11950		CounterId: 262152,
11951		Instance:  "host/vim/vmvisor/lbt",
11952	},
11953	{
11954		CounterId: 262161,
11955		Instance:  "host/system",
11956	},
11957	{
11958		CounterId: 262153,
11959		Instance:  "host/vim/vmvisor/vvold",
11960	},
11961	{
11962		CounterId: 262152,
11963		Instance:  "host/vim/vmvisor/hostdCgiServer",
11964	},
11965	{
11966		CounterId: 262157,
11967		Instance:  "host/vim/vmvisor/pcscd",
11968	},
11969	{
11970		CounterId: 262171,
11971		Instance:  "host/vim/vmvisor/usbArbitrator",
11972	},
11973	{
11974		CounterId: 262171,
11975		Instance:  "host/vim/vmvisor/pcscd",
11976	},
11977	{
11978		CounterId: 262154,
11979		Instance:  "host/vim/vmvisor/vmkeventd",
11980	},
11981	{
11982		CounterId: 262172,
11983		Instance:  "host/vim/vmvisor/plugins",
11984	},
11985	{
11986		CounterId: 262148,
11987		Instance:  "host/vim/vmvisor/plugins",
11988	},
11989	{
11990		CounterId: 262152,
11991		Instance:  "host/system/svmotion",
11992	},
11993	{
11994		CounterId: 262152,
11995		Instance:  "host/system/kernel/var",
11996	},
11997	{
11998		CounterId: 262151,
11999		Instance:  "host/vim/vmvisor/plugins",
12000	},
12001	{
12002		CounterId: 262151,
12003		Instance:  "host/vim/vmvisor/usbArbitrator",
12004	},
12005	{
12006		CounterId: 262171,
12007		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
12008	},
12009	{
12010		CounterId: 262157,
12011		Instance:  "host/vim/vmvisor/plugins",
12012	},
12013	{
12014		CounterId: 262172,
12015		Instance:  "host/vim/vmvisor/swapobjd",
12016	},
12017	{
12018		CounterId: 262171,
12019		Instance:  "host/vim/vmvisor/plugins",
12020	},
12021	{
12022		CounterId: 262158,
12023		Instance:  "host/system",
12024	},
12025	{
12026		CounterId: 262172,
12027		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12028	},
12029	{
12030		CounterId: 262172,
12031		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
12032	},
12033	{
12034		CounterId: 262148,
12035		Instance:  "host/vim/vmvisor/vpxa",
12036	},
12037	{
12038		CounterId: 262148,
12039		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12040	},
12041	{
12042		CounterId: 262148,
12043		Instance:  "host/iofilters/vmwarevmcrypt",
12044	},
12045	{
12046		CounterId: 262171,
12047		Instance:  "host/vim/vmvisor",
12048	},
12049	{
12050		CounterId: 262148,
12051		Instance:  "host/vim/vmvisor/init",
12052	},
12053	{
12054		CounterId: 262148,
12055		Instance:  "host/system/helper",
12056	},
12057	{
12058		CounterId: 262153,
12059		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
12060	},
12061	{
12062		CounterId: 262171,
12063		Instance:  "host/iofilters/spm",
12064	},
12065	{
12066		CounterId: 262151,
12067		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12068	},
12069	{
12070		CounterId: 262155,
12071		Instance:  "host/vim/vmvisor/sfcb_aux",
12072	},
12073	{
12074		CounterId: 262156,
12075		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
12076	},
12077	{
12078		CounterId: 262152,
12079		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12080	},
12081	{
12082		CounterId: 262152,
12083		Instance:  "host/system/drivers",
12084	},
12085	{
12086		CounterId: 262154,
12087		Instance:  "host/vim/vmvisor/dhclientrelease",
12088	},
12089	{
12090		CounterId: 262158,
12091		Instance:  "host/system/vmotion",
12092	},
12093	{
12094		CounterId: 262154,
12095		Instance:  "host/vim/vmvisor/slp",
12096	},
12097	{
12098		CounterId: 262157,
12099		Instance:  "host/system/kernel/hostdstats",
12100	},
12101	{
12102		CounterId: 262154,
12103		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12104	},
12105	{
12106		CounterId: 262152,
12107		Instance:  "host/vim/vmvisor/vmkiscsid",
12108	},
12109	{
12110		CounterId: 262155,
12111		Instance:  "host/vim/vmvisor/rabbitmqproxy",
12112	},
12113	{
12114		CounterId: 262155,
12115		Instance:  "host/vim/vmvisor/smartd",
12116	},
12117	{
12118		CounterId: 262151,
12119		Instance:  "host/vim/vmvisor/lbt",
12120	},
12121	{
12122		CounterId: 262172,
12123		Instance:  "host/vim/vmvisor/sensord",
12124	},
12125	{
12126		CounterId: 262154,
12127		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
12128	},
12129	{
12130		CounterId: 262157,
12131		Instance:  "host/vim/vmvisor/init",
12132	},
12133	{
12134		CounterId: 262156,
12135		Instance:  "host/system/kernel/opt",
12136	},
12137	{
12138		CounterId: 262151,
12139		Instance:  "host/vim/vmvisor/sensord",
12140	},
12141	{
12142		CounterId: 262152,
12143		Instance:  "host/vim",
12144	},
12145	{
12146		CounterId: 262152,
12147		Instance:  "host/vim/vmvisor/sensord",
12148	},
12149	{
12150		CounterId: 262171,
12151		Instance:  "host/vim/vmvisor/sfcb",
12152	},
12153	{
12154		CounterId: 262155,
12155		Instance:  "host/vim/vmvisor/sensord",
12156	},
12157	{
12158		CounterId: 262156,
12159		Instance:  "host/vim/vmvisor/sensord",
12160	},
12161	{
12162		CounterId: 262157,
12163		Instance:  "host/vim/vmvisor/sensord",
12164	},
12165	{
12166		CounterId: 262154,
12167		Instance:  "host/vim/vmvisor/smartd",
12168	},
12169	{
12170		CounterId: 262171,
12171		Instance:  "host/vim/vmvisor/sensord",
12172	},
12173	{
12174		CounterId: 262152,
12175		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
12176	},
12177	{
12178		CounterId: 262152,
12179		Instance:  "host/vim/vmvisor/memScrubber",
12180	},
12181	{
12182		CounterId: 262148,
12183		Instance:  "host/vim/vmvisor/sioc",
12184	},
12185	{
12186		CounterId: 262172,
12187		Instance:  "host/vim/vmvisor/sfcb",
12188	},
12189	{
12190		CounterId: 262151,
12191		Instance:  "host/system/vmotion",
12192	},
12193	{
12194		CounterId: 262148,
12195		Instance:  "host/system/kernel/tmp",
12196	},
12197	{
12198		CounterId: 262144,
12199		Instance:  "",
12200	},
12201	{
12202		CounterId: 262148,
12203		Instance:  "host/vim/vmvisor/wsman",
12204	},
12205	{
12206		CounterId: 262157,
12207		Instance:  "host/system/kernel/var",
12208	},
12209	{
12210		CounterId: 262152,
12211		Instance:  "host/vim/vmvisor/sfcb",
12212	},
12213	{
12214		CounterId: 262153,
12215		Instance:  "host/vim/vmvisor/sfcb",
12216	},
12217	{
12218		CounterId: 262156,
12219		Instance:  "host/vim/vmvisor/hostdCgiServer",
12220	},
12221	{
12222		CounterId: 262156,
12223		Instance:  "host/vim/vmvisor/nfcd",
12224	},
12225	{
12226		CounterId: 262152,
12227		Instance:  "host/system/kernel/iofilters",
12228	},
12229	{
12230		CounterId: 262171,
12231		Instance:  "host/vim/vmci",
12232	},
12233	{
12234		CounterId: 262155,
12235		Instance:  "host/vim/vmvisor/upitd",
12236	},
12237	{
12238		CounterId: 262171,
12239		Instance:  "host/vim/vmvisor/sfcb_aux",
12240	},
12241	{
12242		CounterId: 262151,
12243		Instance:  "host/system/kernel/etc",
12244	},
12245	{
12246		CounterId: 262154,
12247		Instance:  "host/vim/vmvisor/sfcb",
12248	},
12249	{
12250		CounterId: 262155,
12251		Instance:  "host/vim/vmvisor/sfcb",
12252	},
12253	{
12254		CounterId: 262155,
12255		Instance:  "host/vim/vmvisor/swapobjd",
12256	},
12257	{
12258		CounterId: 262152,
12259		Instance:  "host/vim/vmvisor/hostd-probe",
12260	},
12261	{
12262		CounterId: 262155,
12263		Instance:  "host/vim/vmvisor/vvoltraced",
12264	},
12265	{
12266		CounterId: 262156,
12267		Instance:  "host/vim/vmvisor/sfcb",
12268	},
12269	{
12270		CounterId: 262164,
12271		Instance:  "host/system",
12272	},
12273	{
12274		CounterId: 262156,
12275		Instance:  "host/vim/vmvisor/vobd",
12276	},
12277	{
12278		CounterId: 262157,
12279		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
12280	},
12281	{
12282		CounterId: 262148,
12283		Instance:  "host/vim/vmvisor/sfcb_aux",
12284	},
12285	{
12286		CounterId: 262152,
12287		Instance:  "host/vim/vmvisor/sfcb_aux",
12288	},
12289	{
12290		CounterId: 262163,
12291		Instance:  "host/vim",
12292	},
12293	{
12294		CounterId: 262154,
12295		Instance:  "host/vim/vmvisor/sfcb_aux",
12296	},
12297	{
12298		CounterId: 262171,
12299		Instance:  "host/vim/vimuser",
12300	},
12301	{
12302		CounterId: 262172,
12303		Instance:  "host/system/kernel/hostdstats",
12304	},
12305	{
12306		CounterId: 262156,
12307		Instance:  "host/vim/vmvisor/sfcb_aux",
12308	},
12309	{
12310		CounterId: 262172,
12311		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
12312	},
12313	{
12314		CounterId: 262152,
12315		Instance:  "host/vim/vmvisor/init",
12316	},
12317	{
12318		CounterId: 262157,
12319		Instance:  "host/vim/vmvisor/sfcb_aux",
12320	},
12321	{
12322		CounterId: 262157,
12323		Instance:  "host/system/kernel/opt",
12324	},
12325	{
12326		CounterId: 262172,
12327		Instance:  "host/vim/vmvisor/sioc",
12328	},
12329	{
12330		CounterId: 262155,
12331		Instance:  "host/iofilters/vmwarevmcrypt",
12332	},
12333	{
12334		CounterId: 262157,
12335		Instance:  "host/vim/vmvisor/hostdCgiServer",
12336	},
12337	{
12338		CounterId: 262151,
12339		Instance:  "host/vim/vmvisor/sioc",
12340	},
12341	{
12342		CounterId: 262171,
12343		Instance:  "host/system/kernel",
12344	},
12345	{
12346		CounterId: 262152,
12347		Instance:  "host/vim/vmvisor/sioc",
12348	},
12349	{
12350		CounterId: 262160,
12351		Instance:  "host/system/vmotion",
12352	},
12353	{
12354		CounterId: 262153,
12355		Instance:  "host/vim/vmvisor/sioc",
12356	},
12357	{
12358		CounterId: 262154,
12359		Instance:  "host/vim/vmvisor/lbt",
12360	},
12361	{
12362		CounterId: 262156,
12363		Instance:  "host/vim/vmvisor/aam",
12364	},
12365	{
12366		CounterId: 262151,
12367		Instance:  "host/system",
12368	},
12369	{
12370		CounterId: 262155,
12371		Instance:  "host/vim/vmvisor/sioc",
12372	},
12373	{
12374		CounterId: 262155,
12375		Instance:  "host/system/kernel/etc",
12376	},
12377	{
12378		CounterId: 262156,
12379		Instance:  "host/vim/vmvisor/sioc",
12380	},
12381	{
12382		CounterId: 262151,
12383		Instance:  "host/vim/vmvisor/memScrubber",
12384	},
12385	{
12386		CounterId: 262153,
12387		Instance:  "host/vim/vmvisor/vmfstraced",
12388	},
12389	{
12390		CounterId: 262153,
12391		Instance:  "host/vim/vmvisor/hostd-probe",
12392	},
12393	{
12394		CounterId: 262154,
12395		Instance:  "host/vim/vmvisor/vmkdevmgr",
12396	},
12397	{
12398		CounterId: 262157,
12399		Instance:  "host/vim/vmvisor/sioc",
12400	},
12401	{
12402		CounterId: 262154,
12403		Instance:  "host/vim/vmvisor/init",
12404	},
12405	{
12406		CounterId: 262155,
12407		Instance:  "host/user",
12408	},
12409	{
12410		CounterId: 262154,
12411		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
12412	},
12413	{
12414		CounterId: 262172,
12415		Instance:  "host/vim/vmvisor/slp",
12416	},
12417	{
12418		CounterId: 262157,
12419		Instance:  "host/vim/vmvisor/smartd",
12420	},
12421	{
12422		CounterId: 262148,
12423		Instance:  "host/vim/vmvisor/slp",
12424	},
12425	{
12426		CounterId: 262154,
12427		Instance:  "host/vim/vmvisor/nscd",
12428	},
12429	{
12430		CounterId: 262156,
12431		Instance:  "host/vim/vmvisor/osfsd",
12432	},
12433	{
12434		CounterId: 262160,
12435		Instance:  "host/system",
12436	},
12437	{
12438		CounterId: 262172,
12439		Instance:  "host/vim/vmvisor/lbt",
12440	},
12441	{
12442		CounterId: 262148,
12443		Instance:  "host/vim/vmvisor/sensord",
12444	},
12445	{
12446		CounterId: 262151,
12447		Instance:  "host/vim/vmvisor/slp",
12448	},
12449	{
12450		CounterId: 262153,
12451		Instance:  "host/vim/vmvisor/slp",
12452	},
12453	{
12454		CounterId: 262148,
12455		Instance:  "host/iofilters/iofiltervpd",
12456	},
12457	{
12458		CounterId: 262156,
12459		Instance:  "host/vim/vmvisor/slp",
12460	},
12461	{
12462		CounterId: 262156,
12463		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
12464	},
12465	{
12466		CounterId: 262157,
12467		Instance:  "host/vim/vmvisor/slp",
12468	},
12469	{
12470		CounterId: 262171,
12471		Instance:  "host/vim/vmvisor/slp",
12472	},
12473	{
12474		CounterId: 262172,
12475		Instance:  "host/vim/vmvisor/smartd",
12476	},
12477	{
12478		CounterId: 262151,
12479		Instance:  "host/vim/vmvisor/smartd",
12480	},
12481	{
12482		CounterId: 262155,
12483		Instance:  "host/system/svmotion",
12484	},
12485	{
12486		CounterId: 262153,
12487		Instance:  "host/vim/vmvisor/smartd",
12488	},
12489	{
12490		CounterId: 262156,
12491		Instance:  "host/vim/vmvisor/smartd",
12492	},
12493	{
12494		CounterId: 262171,
12495		Instance:  "host/vim/vmvisor/smartd",
12496	},
12497	{
12498		CounterId: 262157,
12499		Instance:  "host/vim/vmvisor",
12500	},
12501	{
12502		CounterId: 262155,
12503		Instance:  "host/system",
12504	},
12505	{
12506		CounterId: 262172,
12507		Instance:  "host/vim/vmvisor/osfsd",
12508	},
12509	{
12510		CounterId: 262167,
12511		Instance:  "host/system",
12512	},
12513	{
12514		CounterId: 262153,
12515		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
12516	},
12517	{
12518		CounterId: 262172,
12519		Instance:  "host/vim/vmvisor/snmpd",
12520	},
12521	{
12522		CounterId: 262153,
12523		Instance:  "host/vim/vmvisor/snmpd",
12524	},
12525	{
12526		CounterId: 262154,
12527		Instance:  "host/vim/vmvisor/snmpd",
12528	},
12529	{
12530		CounterId: 262152,
12531		Instance:  "host/vim/vmvisor",
12532	},
12533	{
12534		CounterId: 262156,
12535		Instance:  "host/vim/vmvisor/snmpd",
12536	},
12537	{
12538		CounterId: 262157,
12539		Instance:  "host/vim/vmvisor/logging",
12540	},
12541	{
12542		CounterId: 262156,
12543		Instance:  "host/system/kernel/tmp",
12544	},
12545	{
12546		CounterId: 262157,
12547		Instance:  "host/vim/vmvisor/snmpd",
12548	},
12549	{
12550		CounterId: 262148,
12551		Instance:  "host/vim/vmvisor/swapobjd",
12552	},
12553	{
12554		CounterId: 262153,
12555		Instance:  "host/vim/vmvisor/vmkiscsid",
12556	},
12557	{
12558		CounterId: 262156,
12559		Instance:  "host/vim/vmvisor/swapobjd",
12560	},
12561	{
12562		CounterId: 262157,
12563		Instance:  "host/vim/vmvisor/swapobjd",
12564	},
12565	{
12566		CounterId: 262171,
12567		Instance:  "host/vim/vmvisor/swapobjd",
12568	},
12569	{
12570		CounterId: 262171,
12571		Instance:  "host/vim/vmvisor/lbt",
12572	},
12573	{
12574		CounterId: 262148,
12575		Instance:  "host/vim/vmvisor/upitd",
12576	},
12577	{
12578		CounterId: 262148,
12579		Instance:  "host/vim/vmci",
12580	},
12581	{
12582		CounterId: 262151,
12583		Instance:  "host/vim/vmvisor/upitd",
12584	},
12585	{
12586		CounterId: 262155,
12587		Instance:  "host/vim/vmvisor/snmpd",
12588	},
12589	{
12590		CounterId: 262152,
12591		Instance:  "host/vim/vmvisor/upitd",
12592	},
12593	{
12594		CounterId: 262152,
12595		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
12596	},
12597	{
12598		CounterId: 262148,
12599		Instance:  "host/vim/vmvisor/vvoltraced",
12600	},
12601	{
12602		CounterId: 262156,
12603		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
12604	},
12605	{
12606		CounterId: 262156,
12607		Instance:  "host/system/drivers",
12608	},
12609	{
12610		CounterId: 262153,
12611		Instance:  "host/vim/vmvisor/upitd",
12612	},
12613	{
12614		CounterId: 262154,
12615		Instance:  "host/vim/vmvisor/upitd",
12616	},
12617	{
12618		CounterId: 262157,
12619		Instance:  "host/vim/vmvisor/upitd",
12620	},
12621	{
12622		CounterId: 262171,
12623		Instance:  "host/vim/vmvisor/upitd",
12624	},
12625	{
12626		CounterId: 262152,
12627		Instance:  "host/vim/vmvisor/hostd",
12628	},
12629	{
12630		CounterId: 262156,
12631		Instance:  "host/vim/vmvisor/pktcap-agent",
12632	},
12633	{
12634		CounterId: 262172,
12635		Instance:  "host/vim/vmvisor/upittraced",
12636	},
12637	{
12638		CounterId: 262157,
12639		Instance:  "host/system/kernel/etc",
12640	},
12641	{
12642		CounterId: 262155,
12643		Instance:  "host/vim/vmvisor/likewise",
12644	},
12645	{
12646		CounterId: 262148,
12647		Instance:  "host/vim/vmvisor/upittraced",
12648	},
12649	{
12650		CounterId: 262151,
12651		Instance:  "host/vim/vmvisor/vsanperfsvc",
12652	},
12653	{
12654		CounterId: 262151,
12655		Instance:  "host/vim/vmvisor/upittraced",
12656	},
12657	{
12658		CounterId: 262172,
12659		Instance:  "host/vim/vmvisor/pcscd",
12660	},
12661	{
12662		CounterId: 262148,
12663		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
12664	},
12665	{
12666		CounterId: 262171,
12667		Instance:  "host/vim/vmvisor/vvold",
12668	},
12669	{
12670		CounterId: 262152,
12671		Instance:  "host/vim/vmvisor/upittraced",
12672	},
12673	{
12674		CounterId: 262172,
12675		Instance:  "host/vim/vmvisor/hostd",
12676	},
12677	{
12678		CounterId: 262153,
12679		Instance:  "host/vim/vmvisor/upittraced",
12680	},
12681	{
12682		CounterId: 262156,
12683		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
12684	},
12685	{
12686		CounterId: 262152,
12687		Instance:  "host/vim/vmvisor/dhclientrelease",
12688	},
12689	{
12690		CounterId: 262154,
12691		Instance:  "host/vim/vmvisor/upittraced",
12692	},
12693	{
12694		CounterId: 262155,
12695		Instance:  "host/vim/vmvisor/upittraced",
12696	},
12697	{
12698		CounterId: 262157,
12699		Instance:  "host/vim/vmvisor/upittraced",
12700	},
12701	{
12702		CounterId: 262165,
12703		Instance:  "host/vim",
12704	},
12705	{
12706		CounterId: 262152,
12707		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
12708	},
12709	{
12710		CounterId: 262172,
12711		Instance:  "host/vim/vmvisor/lacpd",
12712	},
12713	{
12714		CounterId: 262172,
12715		Instance:  "host/vim/vmvisor/usbArbitrator",
12716	},
12717	{
12718		CounterId: 262148,
12719		Instance:  "host/vim/vmvisor/usbArbitrator",
12720	},
12721	{
12722		CounterId: 262153,
12723		Instance:  "host/vim/vmvisor/usbArbitrator",
12724	},
12725	{
12726		CounterId: 262154,
12727		Instance:  "host/vim/vmvisor/usbArbitrator",
12728	},
12729	{
12730		CounterId: 262159,
12731		Instance:  "host/system",
12732	},
12733	{
12734		CounterId: 262171,
12735		Instance:  "host/vim/vmvisor/snmpd",
12736	},
12737	{
12738		CounterId: 262172,
12739		Instance:  "host/vim/vmci",
12740	},
12741	{
12742		CounterId: 262151,
12743		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
12744	},
12745	{
12746		CounterId: 262157,
12747		Instance:  "host/vim/vmvisor/usbArbitrator",
12748	},
12749	{
12750		CounterId: 262172,
12751		Instance:  "host/vim/vmvisor/uwdaemons",
12752	},
12753	{
12754		CounterId: 262156,
12755		Instance:  "host/vim/vmvisor/vmkdevmgr",
12756	},
12757	{
12758		CounterId: 262153,
12759		Instance:  "host/vim/vmvisor/pktcap-agent",
12760	},
12761	{
12762		CounterId: 262154,
12763		Instance:  "host/vim/vmvisor/nfcd",
12764	},
12765	{
12766		CounterId: 262148,
12767		Instance:  "host/vim/vmvisor/uwdaemons",
12768	},
12769	{
12770		CounterId: 262151,
12771		Instance:  "host/vim/vmvisor/uwdaemons",
12772	},
12773	{
12774		CounterId: 262157,
12775		Instance:  "host/iofilters/spm",
12776	},
12777	{
12778		CounterId: 262148,
12779		Instance:  "host/vim/vmvisor/vmkdevmgr",
12780	},
12781	{
12782		CounterId: 262153,
12783		Instance:  "host/system/helper",
12784	},
12785	{
12786		CounterId: 262153,
12787		Instance:  "host/vim/vmvisor/uwdaemons",
12788	},
12789	{
12790		CounterId: 262156,
12791		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
12792	},
12793	{
12794		CounterId: 262156,
12795		Instance:  "host/vim/vmvisor/uwdaemons",
12796	},
12797	{
12798		CounterId: 262163,
12799		Instance:  "host/system/vmotion",
12800	},
12801	{
12802		CounterId: 262151,
12803		Instance:  "host/user",
12804	},
12805	{
12806		CounterId: 262157,
12807		Instance:  "host/vim/vmvisor/netcpa",
12808	},
12809	{
12810		CounterId: 262155,
12811		Instance:  "host/vim/vmvisor/uwdaemons",
12812	},
12813	{
12814		CounterId: 262171,
12815		Instance:  "host/vim/vmvisor/uwdaemons",
12816	},
12817	{
12818		CounterId: 262151,
12819		Instance:  "host/vim/vmvisor/vmfstraced",
12820	},
12821	{
12822		CounterId: 262152,
12823		Instance:  "host/vim/vmvisor/vmfstraced",
12824	},
12825	{
12826		CounterId: 262155,
12827		Instance:  "host/iofilters",
12828	},
12829	{
12830		CounterId: 262157,
12831		Instance:  "host/vim/vmvisor/osfsd",
12832	},
12833	{
12834		CounterId: 262171,
12835		Instance:  "host/vim/tmp",
12836	},
12837	{
12838		CounterId: 262155,
12839		Instance:  "host/vim/vmvisor/vmfstraced",
12840	},
12841	{
12842		CounterId: 262156,
12843		Instance:  "host/vim/vmvisor/vmfstraced",
12844	},
12845	{
12846		CounterId: 262157,
12847		Instance:  "host/vim/vmvisor/vmfstraced",
12848	},
12849	{
12850		CounterId: 262155,
12851		Instance:  "host/vim/vmvisor",
12852	},
12853	{
12854		CounterId: 262172,
12855		Instance:  "host/vim/vmvisor/vmkdevmgr",
12856	},
12857	{
12858		CounterId: 262172,
12859		Instance:  "host/vim/vmvisor/likewise",
12860	},
12861	{
12862		CounterId: 262151,
12863		Instance:  "host/vim/vmvisor/vmkdevmgr",
12864	},
12865	{
12866		CounterId: 262153,
12867		Instance:  "host/vim/vmvisor/vmkdevmgr",
12868	},
12869	{
12870		CounterId: 262157,
12871		Instance:  "host/vim/vmvisor/vmkdevmgr",
12872	},
12873	{
12874		CounterId: 262171,
12875		Instance:  "host/vim/vmvisor/vmkdevmgr",
12876	},
12877	{
12878		CounterId: 262172,
12879		Instance:  "host/vim/vmvisor/vmkeventd",
12880	},
12881	{
12882		CounterId: 262148,
12883		Instance:  "host/vim/vmvisor/vmkeventd",
12884	},
12885	{
12886		CounterId: 262151,
12887		Instance:  "host/vim/vmvisor/vmkeventd",
12888	},
12889	{
12890		CounterId: 262171,
12891		Instance:  "host/vim/vmvisor/likewise",
12892	},
12893	{
12894		CounterId: 262153,
12895		Instance:  "host/vim/vmvisor/memScrubber",
12896	},
12897	{
12898		CounterId: 262155,
12899		Instance:  "host/vim/vmvisor/vmkeventd",
12900	},
12901	{
12902		CounterId: 262153,
12903		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
12904	},
12905	{
12906		CounterId: 262152,
12907		Instance:  "host/vim/vmvisor/likewise",
12908	},
12909	{
12910		CounterId: 262157,
12911		Instance:  "host/vim/vmvisor/vmkeventd",
12912	},
12913	{
12914		CounterId: 262172,
12915		Instance:  "host/vim/vmvisor/vmkiscsid",
12916	},
12917	{
12918		CounterId: 262154,
12919		Instance:  "host/iofilters/spm",
12920	},
12921	{
12922		CounterId: 262171,
12923		Instance:  "host/system",
12924	},
12925	{
12926		CounterId: 262156,
12927		Instance:  "host/system/kernel/etc",
12928	},
12929	{
12930		CounterId: 262153,
12931		Instance:  "host/system/kernel/hostdstats",
12932	},
12933	{
12934		CounterId: 262148,
12935		Instance:  "host/vim/vmvisor/hostdCgiServer",
12936	},
12937	{
12938		CounterId: 262154,
12939		Instance:  "host/vim/vmvisor/hostdCgiServer",
12940	},
12941	{
12942		CounterId: 262152,
12943		Instance:  "host/vim/vmvisor/logging",
12944	},
12945	{
12946		CounterId: 262151,
12947		Instance:  "host/vim/vmvisor/vmkiscsid",
12948	},
12949	{
12950		CounterId: 262152,
12951		Instance:  "host/vim/vmvisor/pcscd",
12952	},
12953	{
12954		CounterId: 262154,
12955		Instance:  "host/vim/vmvisor/vmkiscsid",
12956	},
12957	{
12958		CounterId: 262151,
12959		Instance:  "host/vim/vmvisor/netcpa",
12960	},
12961	{
12962		CounterId: 262155,
12963		Instance:  "host/vim/vmvisor/vmkiscsid",
12964	},
12965	{
12966		CounterId: 262171,
12967		Instance:  "host/vim/vmvisor/vmkiscsid",
12968	},
12969	{
12970		CounterId: 262172,
12971		Instance:  "host/vim/vmvisor/vobd",
12972	},
12973	{
12974		CounterId: 262148,
12975		Instance:  "host/vim/vmvisor/vobd",
12976	},
12977	{
12978		CounterId: 262153,
12979		Instance:  "host/iofilters",
12980	},
12981	{
12982		CounterId: 262148,
12983		Instance:  "host/system/kernel/iofilters",
12984	},
12985	{
12986		CounterId: 262171,
12987		Instance:  "host/system/kernel/root",
12988	},
12989	{
12990		CounterId: 262151,
12991		Instance:  "host/vim/vmvisor/vobd",
12992	},
12993	{
12994		CounterId: 262151,
12995		Instance:  "host/vim/tmp",
12996	},
12997	{
12998		CounterId: 262152,
12999		Instance:  "host/vim/vmvisor/vobd",
13000	},
13001	{
13002		CounterId: 262153,
13003		Instance:  "host/vim/vmvisor/vobd",
13004	},
13005	{
13006		CounterId: 262157,
13007		Instance:  "host/vim/vmvisor/vdpi",
13008	},
13009	{
13010		CounterId: 262154,
13011		Instance:  "host/vim/vmvisor/vobd",
13012	},
13013	{
13014		CounterId: 262156,
13015		Instance:  "host/vim/vmvisor/wsman",
13016	},
13017	{
13018		CounterId: 262148,
13019		Instance:  "host/system/vmotion",
13020	},
13021	{
13022		CounterId: 262155,
13023		Instance:  "host/vim/vmvisor/vobd",
13024	},
13025	{
13026		CounterId: 262157,
13027		Instance:  "host/iofilters",
13028	},
13029	{
13030		CounterId: 262157,
13031		Instance:  "host/vim/vmvisor/vobd",
13032	},
13033	{
13034		CounterId: 262157,
13035		Instance:  "host",
13036	},
13037	{
13038		CounterId: 262155,
13039		Instance:  "host/vim/vmvisor/hostd",
13040	},
13041	{
13042		CounterId: 262148,
13043		Instance:  "host/vim/vmvisor/memScrubber",
13044	},
13045	{
13046		CounterId: 262152,
13047		Instance:  "host/vim/vmvisor/usbArbitrator",
13048	},
13049	{
13050		CounterId: 262151,
13051		Instance:  "host/vim/vmvisor/vpxa",
13052	},
13053	{
13054		CounterId: 262171,
13055		Instance:  "host/system/helper",
13056	},
13057	{
13058		CounterId: 262153,
13059		Instance:  "host/vim/vmvisor/vpxa",
13060	},
13061	{
13062		CounterId: 262156,
13063		Instance:  "host/vim/vimuser",
13064	},
13065	{
13066		CounterId: 262154,
13067		Instance:  "host/vim/vmvisor/vpxa",
13068	},
13069	{
13070		CounterId: 262155,
13071		Instance:  "host/vim/vmvisor/vpxa",
13072	},
13073	{
13074		CounterId: 262156,
13075		Instance:  "host/vim/vmvisor/vpxa",
13076	},
13077	{
13078		CounterId: 262157,
13079		Instance:  "host/vim/vmvisor/vpxa",
13080	},
13081	{
13082		CounterId: 262153,
13083		Instance:  "host/vim/vmvisor/dcui",
13084	},
13085	{
13086		CounterId: 262148,
13087		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
13088	},
13089	{
13090		CounterId: 262171,
13091		Instance:  "host/vim/vmvisor/vpxa",
13092	},
13093	{
13094		CounterId: 262155,
13095		Instance:  "host/vim/vmvisor/logging",
13096	},
13097	{
13098		CounterId: 262152,
13099		Instance:  "host/vim/vmvisor/nfcd",
13100	},
13101	{
13102		CounterId: 262172,
13103		Instance:  "host/vim/vmvisor/vvold",
13104	},
13105	{
13106		CounterId: 262148,
13107		Instance:  "host/vim/vmvisor/vvold",
13108	},
13109	{
13110		CounterId: 262153,
13111		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
13112	},
13113	{
13114		CounterId: 262171,
13115		Instance:  "host/system/kernel/var",
13116	},
13117	{
13118		CounterId: 262151,
13119		Instance:  "host/vim/vmvisor/vvold",
13120	},
13121	{
13122		CounterId: 262171,
13123		Instance:  "host/vim/vmvisor/vmkeventd",
13124	},
13125	{
13126		CounterId: 262152,
13127		Instance:  "host/vim/vmvisor/vvold",
13128	},
13129	{
13130		CounterId: 262154,
13131		Instance:  "host/vim/vmvisor/vvold",
13132	},
13133	{
13134		CounterId: 262157,
13135		Instance:  "host/vim/vmvisor/rabbitmqproxy",
13136	},
13137	{
13138		CounterId: 262155,
13139		Instance:  "host/vim/vmvisor/aam",
13140	},
13141	{
13142		CounterId: 262172,
13143		Instance:  "host/vim/vmvisor/netcpa",
13144	},
13145	{
13146		CounterId: 262151,
13147		Instance:  "host/vim/vmvisor/nfcd",
13148	},
13149	{
13150		CounterId: 262172,
13151		Instance:  "host/system/kernel/root",
13152	},
13153	{
13154		CounterId: 262155,
13155		Instance:  "host/vim/vmvisor/vvold",
13156	},
13157	{
13158		CounterId: 262157,
13159		Instance:  "host/system/helper",
13160	},
13161	{
13162		CounterId: 262154,
13163		Instance:  "host/vim/vmvisor/nfsgssd",
13164	},
13165	{
13166		CounterId: 262157,
13167		Instance:  "host/vim/vmvisor/uwdaemons",
13168	},
13169	{
13170		CounterId: 262156,
13171		Instance:  "host/vim/vmvisor/vvold",
13172	},
13173	{
13174		CounterId: 262157,
13175		Instance:  "host/vim/vmvisor/vvold",
13176	},
13177	{
13178		CounterId: 262151,
13179		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
13180	},
13181	{
13182		CounterId: 262154,
13183		Instance:  "host/vim/vmvisor/swapobjd",
13184	},
13185	{
13186		CounterId: 262172,
13187		Instance:  "host/vim/vmvisor/vvoltraced",
13188	},
13189	{
13190		CounterId: 262153,
13191		Instance:  "host/vim/vmvisor/vvoltraced",
13192	},
13193	{
13194		CounterId: 262171,
13195		Instance:  "host/vim/vmvisor/vmfstraced",
13196	},
13197	{
13198		CounterId: 262152,
13199		Instance:  "host/vim/vmvisor/lacpd",
13200	},
13201	{
13202		CounterId: 262157,
13203		Instance:  "host/system/kernel/tmp",
13204	},
13205	{
13206		CounterId: 262152,
13207		Instance:  "host/vim/tmp",
13208	},
13209	{
13210		CounterId: 262154,
13211		Instance:  "host/vim/vimuser/terminal",
13212	},
13213	{
13214		CounterId: 262154,
13215		Instance:  "host/vim/vmvisor/vvoltraced",
13216	},
13217	{
13218		CounterId: 262156,
13219		Instance:  "host/vim/vmvisor/vvoltraced",
13220	},
13221	{
13222		CounterId: 262168,
13223		Instance:  "host/system/vmotion",
13224	},
13225	{
13226		CounterId: 262171,
13227		Instance:  "host/vim/vmvisor/vvoltraced",
13228	},
13229	{
13230		CounterId: 262172,
13231		Instance:  "host/vim/vmvisor/wsman",
13232	},
13233	{
13234		CounterId: 262155,
13235		Instance:  "host/vim/vmvisor/dhclient",
13236	},
13237	{
13238		CounterId: 262152,
13239		Instance:  "host/vim/vmvisor/wsman",
13240	},
13241	{
13242		CounterId: 262155,
13243		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
13244	},
13245	{
13246		CounterId: 262155,
13247		Instance:  "host/vim/vmvisor/slp",
13248	},
13249	{
13250		CounterId: 262153,
13251		Instance:  "host/vim/vmvisor/wsman",
13252	},
13253	{
13254		CounterId: 262154,
13255		Instance:  "host/vim/vmvisor/wsman",
13256	},
13257	{
13258		CounterId: 262155,
13259		Instance:  "host/vim/vmvisor/wsman",
13260	},
13261	{
13262		CounterId: 262148,
13263		Instance:  "host/vim/vmvisor/vdpi",
13264	},
13265	{
13266		CounterId: 262157,
13267		Instance:  "host/vim/vmvisor/wsman",
13268	},
13269	{
13270		CounterId: 262171,
13271		Instance:  "host/vim/vmvisor/wsman",
13272	},
13273	{
13274		CounterId: 262154,
13275		Instance:  "host/vim/vmvisor/hostd",
13276	},
13277	{
13278		CounterId: 262155,
13279		Instance:  "host/vim/vmvisor/vmkdevmgr",
13280	},
13281	{
13282		CounterId: 262172,
13283		Instance:  "host/vim/vmvisor/vsanperfsvc",
13284	},
13285	{
13286		CounterId: 262172,
13287		Instance:  "host/user",
13288	},
13289	{
13290		CounterId: 262156,
13291		Instance:  "host/vim/vmvisor/ntpd",
13292	},
13293	{
13294		CounterId: 262148,
13295		Instance:  "host/vim/vmvisor/vsanperfsvc",
13296	},
13297	{
13298		CounterId: 262153,
13299		Instance:  "host/vim/vmvisor/vsanperfsvc",
13300	},
13301	{
13302		CounterId: 262155,
13303		Instance:  "host/vim/vmvisor/vdpi",
13304	},
13305	{
13306		CounterId: 262154,
13307		Instance:  "host/vim/vmvisor/vsanperfsvc",
13308	},
13309	{
13310		CounterId: 262171,
13311		Instance:  "host/vim/vmvisor/aam",
13312	},
13313	{
13314		CounterId: 262154,
13315		Instance:  "host/system/kernel/opt",
13316	},
13317	{
13318		CounterId: 262156,
13319		Instance:  "host/vim/vmvisor/vsanperfsvc",
13320	},
13321	{
13322		CounterId: 262171,
13323		Instance:  "host/vim/vmvisor/vsanperfsvc",
13324	},
13325	{
13326		CounterId: 262156,
13327		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
13328	},
13329	{
13330		CounterId: 262152,
13331		Instance:  "host/user",
13332	},
13333	{
13334		CounterId: 262157,
13335		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
13336	},
13337	{
13338		CounterId: 262148,
13339		Instance:  "host/vim/vmvisor/pktcap-agent",
13340	},
13341	{
13342		CounterId: 262152,
13343		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
13344	},
13345	{
13346		CounterId: 262153,
13347		Instance:  "host/vim/vmvisor/plugins",
13348	},
13349	{
13350		CounterId: 262152,
13351		Instance:  "host/system",
13352	},
13353	{
13354		CounterId: 262153,
13355		Instance:  "host/vim/vmvisor/lacpd",
13356	},
13357	{
13358		CounterId: 262152,
13359		Instance:  "host/vim/vmvisor/pktcap-agent",
13360	},
13361	{
13362		CounterId: 262154,
13363		Instance:  "host/vim/vmvisor/pktcap-agent",
13364	},
13365	{
13366		CounterId: 262155,
13367		Instance:  "host/vim/vmvisor/pktcap-agent",
13368	},
13369	{
13370		CounterId: 262171,
13371		Instance:  "host/vim/vmvisor/pktcap-agent",
13372	},
13373	{
13374		CounterId: 262172,
13375		Instance:  "host/vim/vmvisor/vdpi",
13376	},
13377	{
13378		CounterId: 262153,
13379		Instance:  "host/vim/vmvisor/hostdCgiServer",
13380	},
13381	{
13382		CounterId: 262152,
13383		Instance:  "host/vim/vmvisor/vdpi",
13384	},
13385	{
13386		CounterId: 262154,
13387		Instance:  "host/vim/vmvisor/vdpi",
13388	},
13389	{
13390		CounterId: 262151,
13391		Instance:  "host/vim/vmvisor/hostd",
13392	},
13393	{
13394		CounterId: 262156,
13395		Instance:  "host/vim/vmvisor/vdpi",
13396	},
13397	{
13398		CounterId: 262157,
13399		Instance:  "host/vim/vimuser/terminal",
13400	},
13401	{
13402		CounterId: 262171,
13403		Instance:  "host/vim/vmvisor/vdpi",
13404	},
13405	{
13406		CounterId: 262153,
13407		Instance:  "host/system/drivers",
13408	},
13409	{
13410		CounterId: 262153,
13411		Instance:  "host/system/kernel/opt",
13412	},
13413	{
13414		CounterId: 262162,
13415		Instance:  "host/system",
13416	},
13417	{
13418		CounterId: 262154,
13419		Instance:  "host/system/drivers",
13420	},
13421	{
13422		CounterId: 262151,
13423		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
13424	},
13425	{
13426		CounterId: 262172,
13427		Instance:  "host/system/ft",
13428	},
13429	{
13430		CounterId: 262171,
13431		Instance:  "host/vim/vmvisor/memScrubber",
13432	},
13433	{
13434		CounterId: 262153,
13435		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
13436	},
13437	{
13438		CounterId: 262148,
13439		Instance:  "host/system/ft",
13440	},
13441	{
13442		CounterId: 262154,
13443		Instance:  "host/vim/vmvisor/sioc",
13444	},
13445	{
13446		CounterId: 262152,
13447		Instance:  "host/system/ft",
13448	},
13449	{
13450		CounterId: 262155,
13451		Instance:  "host/system/ft",
13452	},
13453	{
13454		CounterId: 262156,
13455		Instance:  "host/system/ft",
13456	},
13457	{
13458		CounterId: 262148,
13459		Instance:  "host/iofilters/spm",
13460	},
13461	{
13462		CounterId: 262157,
13463		Instance:  "host/system/ft",
13464	},
13465	{
13466		CounterId: 262172,
13467		Instance:  "host/vim/vmvisor/vsfwd",
13468	},
13469	{
13470		CounterId: 262172,
13471		Instance:  "host/vim/vmvisor/hbrca",
13472	},
13473	{
13474		CounterId: 262148,
13475		Instance:  "host/vim/vimuser/terminal/ssh",
13476	},
13477	{
13478		CounterId: 262151,
13479		Instance:  "host/vim/vmvisor/vsfwd",
13480	},
13481	{
13482		CounterId: 262172,
13483		Instance:  "host/system/vmotion",
13484	},
13485	{
13486		CounterId: 262151,
13487		Instance:  "host/vim/vmvisor/hostdCgiServer",
13488	},
13489	{
13490		CounterId: 262152,
13491		Instance:  "host/system/vmotion",
13492	},
13493	{
13494		CounterId: 262152,
13495		Instance:  "host/vim/vmvisor/vsfwd",
13496	},
13497	{
13498		CounterId: 262151,
13499		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
13500	},
13501	{
13502		CounterId: 262153,
13503		Instance:  "host/vim/vmvisor/vsfwd",
13504	},
13505	{
13506		CounterId: 262154,
13507		Instance:  "host/system/vmotion",
13508	},
13509	{
13510		CounterId: 262155,
13511		Instance:  "host/system/kernel",
13512	},
13513	{
13514		CounterId: 262155,
13515		Instance:  "host/system/vmotion",
13516	},
13517	{
13518		CounterId: 262151,
13519		Instance:  "host/vim/vmvisor/pcscd",
13520	},
13521	{
13522		CounterId: 262156,
13523		Instance:  "host/system/vmotion",
13524	},
13525	{
13526		CounterId: 262151,
13527		Instance:  "host/vim/vmvisor/net-daemons",
13528	},
13529	{
13530		CounterId: 262148,
13531		Instance:  "host/vim/vmvisor/hostd-probe/stats",
13532	},
13533	{
13534		CounterId: 262157,
13535		Instance:  "host/system/vmotion",
13536	},
13537	{
13538		CounterId: 262148,
13539		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
13540	},
13541	{
13542		CounterId: 262171,
13543		Instance:  "host/system/vmotion",
13544	},
13545	{
13546		CounterId: 262154,
13547		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
13548	},
13549	{
13550		CounterId: 262154,
13551		Instance:  "host/vim/vmvisor/vsfwd",
13552	},
13553	{
13554		CounterId: 262159,
13555		Instance:  "host/system/vmotion",
13556	},
13557	{
13558		CounterId: 262156,
13559		Instance:  "host/vim/vmvisor/dcui",
13560	},
13561	{
13562		CounterId: 262153,
13563		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
13564	},
13565	{
13566		CounterId: 262164,
13567		Instance:  "host/system/vmotion",
13568	},
13569	{
13570		CounterId: 262167,
13571		Instance:  "host/system/vmotion",
13572	},
13573	{
13574		CounterId: 262153,
13575		Instance:  "host/vim/vimuser/terminal",
13576	},
13577	{
13578		CounterId: 262167,
13579		Instance:  "host/vim",
13580	},
13581	{
13582		CounterId: 262171,
13583		Instance:  "host/vim/vmvisor/rabbitmqproxy",
13584	},
13585	{
13586		CounterId: 262169,
13587		Instance:  "host/system/vmotion",
13588	},
13589	{
13590		CounterId: 262155,
13591		Instance:  "host/vim/vmvisor/vsfwd",
13592	},
13593	{
13594		CounterId: 262151,
13595		Instance:  "host/vim/vmvisor/dhclientrelease",
13596	},
13597	{
13598		CounterId: 262166,
13599		Instance:  "host/system/vmotion",
13600	},
13601	{
13602		CounterId: 262171,
13603		Instance:  "host/vim/vmvisor/osfsd",
13604	},
13605	{
13606		CounterId: 262172,
13607		Instance:  "host/system/svmotion",
13608	},
13609	{
13610		CounterId: 262156,
13611		Instance:  "host/vim/vmvisor/rabbitmqproxy",
13612	},
13613	{
13614		CounterId: 262156,
13615		Instance:  "host/vim/vmvisor/vsfwd",
13616	},
13617	{
13618		CounterId: 262157,
13619		Instance:  "host/vim/vmvisor/vsfwd",
13620	},
13621	{
13622		CounterId: 262151,
13623		Instance:  "host/system/svmotion",
13624	},
13625	{
13626		CounterId: 262156,
13627		Instance:  "host/system/helper",
13628	},
13629	{
13630		CounterId: 262153,
13631		Instance:  "host/system/svmotion",
13632	},
13633	{
13634		CounterId: 262171,
13635		Instance:  "host/system/svmotion",
13636	},
13637	{
13638		CounterId: 262148,
13639		Instance:  "host/vim",
13640	},
13641	{
13642		CounterId: 262165,
13643		Instance:  "host/system",
13644	},
13645	{
13646		CounterId: 262156,
13647		Instance:  "host/vim/vmvisor/hostd-probe/stats",
13648	},
13649	{
13650		CounterId: 262148,
13651		Instance:  "host/vim/vmvisor/hbrca",
13652	},
13653	{
13654		CounterId: 262151,
13655		Instance:  "host/vim",
13656	},
13657	{
13658		CounterId: 262172,
13659		Instance:  "host/vim/vmvisor/logging",
13660	},
13661	{
13662		CounterId: 262171,
13663		Instance:  "host/vim/vmvisor/vsfwd",
13664	},
13665	{
13666		CounterId: 262154,
13667		Instance:  "host/vim",
13668	},
13669	{
13670		CounterId: 262169,
13671		Instance:  "host/system",
13672	},
13673	{
13674		CounterId: 262172,
13675		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
13676	},
13677	{
13678		CounterId: 262155,
13679		Instance:  "host/vim",
13680	},
13681	{
13682		CounterId: 262152,
13683		Instance:  "host/vim/vmvisor/plugins",
13684	},
13685	{
13686		CounterId: 262172,
13687		Instance:  "host/vim/vmvisor/boot",
13688	},
13689	{
13690		CounterId: 262154,
13691		Instance:  "host/vim/vimuser/terminal/shell",
13692	},
13693	{
13694		CounterId: 262155,
13695		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
13696	},
13697	{
13698		CounterId: 262154,
13699		Instance:  "host/system/kernel",
13700	},
13701	{
13702		CounterId: 262154,
13703		Instance:  "host/vim/vmvisor/lacpd",
13704	},
13705	{
13706		CounterId: 262157,
13707		Instance:  "host/vim",
13708	},
13709	{
13710		CounterId: 262171,
13711		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
13712	},
13713	{
13714		CounterId: 262171,
13715		Instance:  "host/vim",
13716	},
13717	{
13718		CounterId: 262156,
13719		Instance:  "host/vim/vmvisor",
13720	},
13721	{
13722		CounterId: 262158,
13723		Instance:  "host/vim",
13724	},
13725	{
13726		CounterId: 262159,
13727		Instance:  "host/vim",
13728	},
13729	{
13730		CounterId: 262160,
13731		Instance:  "host/vim",
13732	},
13733	{
13734		CounterId: 262161,
13735		Instance:  "host/vim",
13736	},
13737	{
13738		CounterId: 262151,
13739		Instance:  "host/vim/vmvisor/sfcb_aux",
13740	},
13741	{
13742		CounterId: 262148,
13743		Instance:  "host/vim/vmvisor/osfsd",
13744	},
13745	{
13746		CounterId: 262172,
13747		Instance:  "host/vim/vimuser",
13748	},
13749	{
13750		CounterId: 262164,
13751		Instance:  "host/vim",
13752	},
13753	{
13754		CounterId: 262157,
13755		Instance:  "host/vim/vimuser/terminal/ssh",
13756	},
13757	{
13758		CounterId: 262166,
13759		Instance:  "host/vim",
13760	},
13761	{
13762		CounterId: 262168,
13763		Instance:  "host/vim",
13764	},
13765	{
13766		CounterId: 262169,
13767		Instance:  "host/vim",
13768	},
13769	{
13770		CounterId: 262153,
13771		Instance:  "host/vim/vimuser",
13772	},
13773	{
13774		CounterId: 262155,
13775		Instance:  "host/system/kernel/iofilters",
13776	},
13777	{
13778		CounterId: 262151,
13779		Instance:  "host/vim/vmci",
13780	},
13781	{
13782		CounterId: 262152,
13783		Instance:  "host/vim/vmci",
13784	},
13785	{
13786		CounterId: 262152,
13787		Instance:  "host/vim/vimuser",
13788	},
13789	{
13790		CounterId: 262152,
13791		Instance:  "host/vim/vmvisor/vmkeventd",
13792	},
13793	{
13794		CounterId: 262154,
13795		Instance:  "host/vim/vmci",
13796	},
13797	{
13798		CounterId: 262156,
13799		Instance:  "host/vim/vmvisor/boot",
13800	},
13801	{
13802		CounterId: 262155,
13803		Instance:  "host/vim/vmci",
13804	},
13805	{
13806		CounterId: 262157,
13807		Instance:  "host/vim/vimuser",
13808	},
13809	{
13810		CounterId: 262171,
13811		Instance:  "host/vim/vmvisor/dhclient",
13812	},
13813	{
13814		CounterId: 262172,
13815		Instance:  "host/vim/vimuser/terminal",
13816	},
13817	{
13818		CounterId: 262157,
13819		Instance:  "host/vim/vmvisor/ntpd",
13820	},
13821	{
13822		CounterId: 262148,
13823		Instance:  "host/vim/vimuser/terminal",
13824	},
13825	{
13826		CounterId: 262156,
13827		Instance:  "host/vim/vmci",
13828	},
13829	{
13830		CounterId: 262152,
13831		Instance:  "host/vim/vimuser/terminal",
13832	},
13833	{
13834		CounterId: 262157,
13835		Instance:  "host/vim/vmci",
13836	},
13837	{
13838		CounterId: 262148,
13839		Instance:  "host/vim/vmvisor",
13840	},
13841	{
13842		CounterId: 262172,
13843		Instance:  "host/vim/vmvisor/init",
13844	},
13845	{
13846		CounterId: 262154,
13847		Instance:  "host/vim/vmvisor",
13848	},
13849	{
13850		CounterId: 262172,
13851		Instance:  "host/vim/vmvisor/aam",
13852	},
13853	{
13854		CounterId: 262152,
13855		Instance:  "host/vim/vmvisor/smartd",
13856	},
13857	{
13858		CounterId: 262151,
13859		Instance:  "host/vim/vmvisor/aam",
13860	},
13861	{
13862		CounterId: 262148,
13863		Instance:  "host/system/kernel/root",
13864	},
13865	{
13866		CounterId: 262171,
13867		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
13868	},
13869	{
13870		CounterId: 262155,
13871		Instance:  "host/vim/vimuser/terminal",
13872	},
13873	{
13874		CounterId: 262152,
13875		Instance:  "host/vim/vmvisor/aam",
13876	},
13877	{
13878		CounterId: 262172,
13879		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
13880	},
13881	{
13882		CounterId: 262171,
13883		Instance:  "host/vim/vmvisor/init",
13884	},
13885	{
13886		CounterId: 262171,
13887		Instance:  "host/user",
13888	},
13889	{
13890		CounterId: 262154,
13891		Instance:  "host/vim/vmvisor/aam",
13892	},
13893	{
13894		CounterId: 262171,
13895		Instance:  "host/system/ft",
13896	},
13897	{
13898		CounterId: 262157,
13899		Instance:  "host/vim/vmvisor/aam",
13900	},
13901	{
13902		CounterId: 262151,
13903		Instance:  "host/vim/vmvisor/boot",
13904	},
13905	{
13906		CounterId: 262152,
13907		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
13908	},
13909	{
13910		CounterId: 262152,
13911		Instance:  "host/vim/vmvisor/boot",
13912	},
13913	{
13914		CounterId: 262156,
13915		Instance:  "host/vim/vmvisor/upitd",
13916	},
13917	{
13918		CounterId: 262153,
13919		Instance:  "host/vim/vmvisor/boot",
13920	},
13921	{
13922		CounterId: 262151,
13923		Instance:  "host/vim/vimuser/terminal",
13924	},
13925	{
13926		CounterId: 262156,
13927		Instance:  "host/vim/vimuser/terminal",
13928	},
13929	{
13930		CounterId: 262171,
13931		Instance:  "host/vim/vimuser/terminal",
13932	},
13933	{
13934		CounterId: 262154,
13935		Instance:  "host/vim/vmvisor/boot",
13936	},
13937	{
13938		CounterId: 262148,
13939		Instance:  "host/vim/vmvisor/vmkiscsid",
13940	},
13941	{
13942		CounterId: 262172,
13943		Instance:  "host/vim/vimuser/terminal/shell",
13944	},
13945	{
13946		CounterId: 262157,
13947		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
13948	},
13949	{
13950		CounterId: 262155,
13951		Instance:  "host/vim/vmvisor/boot",
13952	},
13953	{
13954		CounterId: 262157,
13955		Instance:  "host/vim/vmvisor/boot",
13956	},
13957	{
13958		CounterId: 262172,
13959		Instance:  "host/vim/vmvisor/dcui",
13960	},
13961	{
13962		CounterId: 262148,
13963		Instance:  "host/vim/vmvisor/smartd",
13964	},
13965	{
13966		CounterId: 262148,
13967		Instance:  "host",
13968	},
13969	{
13970		CounterId: 262148,
13971		Instance:  "host/vim/vmvisor/dcui",
13972	},
13973	{
13974		CounterId: 262148,
13975		Instance:  "host/system/svmotion",
13976	},
13977	{
13978		CounterId: 262148,
13979		Instance:  "host/vim/vimuser/terminal/shell",
13980	},
13981	{
13982		CounterId: 262171,
13983		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
13984	},
13985	{
13986		CounterId: 262156,
13987		Instance:  "host/system/svmotion",
13988	},
13989	{
13990		CounterId: 262151,
13991		Instance:  "host/vim/vmvisor/dcui",
13992	},
13993	{
13994		CounterId: 262157,
13995		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
13996	},
13997	{
13998		CounterId: 262151,
13999		Instance:  "host/vim/vimuser/terminal/shell",
14000	},
14001	{
14002		CounterId: 262152,
14003		Instance:  "host/vim/vmvisor/dcui",
14004	},
14005	{
14006		CounterId: 262172,
14007		Instance:  "host/vim/vmvisor",
14008	},
14009	{
14010		CounterId: 262155,
14011		Instance:  "host/vim/vmvisor/dcui",
14012	},
14013	{
14014		CounterId: 262151,
14015		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
14016	},
14017	{
14018		CounterId: 262171,
14019		Instance:  "host/vim/vmvisor/dcui",
14020	},
14021	{
14022		CounterId: 262153,
14023		Instance:  "host/vim/vimuser/terminal/shell",
14024	},
14025	{
14026		CounterId: 262157,
14027		Instance:  "host/vim/vmvisor/hbrca",
14028	},
14029	{
14030		CounterId: 262155,
14031		Instance:  "host/vim/vimuser/terminal/shell",
14032	},
14033	{
14034		CounterId: 262172,
14035		Instance:  "host/vim/vmvisor/dhclient",
14036	},
14037	{
14038		CounterId: 262155,
14039		Instance:  "host",
14040	},
14041	{
14042		CounterId: 262151,
14043		Instance:  "host/vim/vmvisor/dhclient",
14044	},
14045	{
14046		CounterId: 262154,
14047		Instance:  "host/vim/vmvisor/osfsd",
14048	},
14049	{
14050		CounterId: 262153,
14051		Instance:  "host/vim/vmvisor/dhclient",
14052	},
14053	{
14054		CounterId: 262151,
14055		Instance:  "host/vim/vimuser/terminal/ssh",
14056	},
14057	{
14058		CounterId: 262154,
14059		Instance:  "host/vim/vmvisor/dhclient",
14060	},
14061	{
14062		CounterId: 262162,
14063		Instance:  "host/system/vmotion",
14064	},
14065	{
14066		CounterId: 262156,
14067		Instance:  "host/vim/vmvisor/dhclient",
14068	},
14069	{
14070		CounterId: 262157,
14071		Instance:  "host/vim/vmvisor/dhclient",
14072	},
14073	{
14074		CounterId: 262151,
14075		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
14076	},
14077	{
14078		CounterId: 262172,
14079		Instance:  "host/vim/vmvisor/dhclientrelease",
14080	},
14081	{
14082		CounterId: 262157,
14083		Instance:  "host/vim/vmvisor/vmkiscsid",
14084	},
14085	{
14086		CounterId: 262148,
14087		Instance:  "host/vim/vmvisor/dhclientrelease",
14088	},
14089	{
14090		CounterId: 262153,
14091		Instance:  "host/vim/vmvisor/dhclientrelease",
14092	},
14093	{
14094		CounterId: 262155,
14095		Instance:  "host/iofilters/spm",
14096	},
14097	{
14098		CounterId: 262155,
14099		Instance:  "host/vim/vmvisor/dhclientrelease",
14100	},
14101	{
14102		CounterId: 262151,
14103		Instance:  "host/vim/vmvisor",
14104	},
14105	{
14106		CounterId: 262157,
14107		Instance:  "host/vim/vmvisor/dhclientrelease",
14108	},
14109	{
14110		CounterId: 262171,
14111		Instance:  "host/vim/vmvisor/sioc",
14112	},
14113	{
14114		CounterId: 262152,
14115		Instance:  "host/vim/vmvisor/hbrca",
14116	},
14117	{
14118		CounterId: 262153,
14119		Instance:  "host/vim/vmvisor/hbrca",
14120	},
14121	{
14122		CounterId: 262152,
14123		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
14124	},
14125	{
14126		CounterId: 262155,
14127		Instance:  "host/vim/vmvisor/hbrca",
14128	},
14129	{
14130		CounterId: 262171,
14131		Instance:  "host/vim/vmvisor/ntpd",
14132	},
14133	{
14134		CounterId: 262156,
14135		Instance:  "host/vim/vmvisor/hbrca",
14136	},
14137	{
14138		CounterId: 262152,
14139		Instance:  "host/system/kernel/etc",
14140	},
14141	{
14142		CounterId: 262171,
14143		Instance:  "host/vim/vmvisor/hbrca",
14144	},
14145	{
14146		CounterId: 262152,
14147		Instance:  "host/vim/vmvisor/vmkdevmgr",
14148	},
14149	{
14150		CounterId: 262148,
14151		Instance:  "host/vim/vmvisor/hostd",
14152	},
14153	{
14154		CounterId: 262153,
14155		Instance:  "host/vim/vmvisor/hostd",
14156	},
14157	{
14158		CounterId: 262154,
14159		Instance:  "host/vim/vimuser/terminal/ssh",
14160	},
14161	{
14162		CounterId: 262156,
14163		Instance:  "host/vim/vmvisor/dhclientrelease",
14164	},
14165	{
14166		CounterId: 262156,
14167		Instance:  "host/vim/vmvisor/hostd",
14168	},
14169	{
14170		CounterId: 262171,
14171		Instance:  "host/vim/vmvisor/hostd",
14172	},
14173	{
14174		CounterId: 262157,
14175		Instance:  "host/vim/vmvisor/pktcap-agent",
14176	},
14177	{
14178		CounterId: 262148,
14179		Instance:  "host/vim/vmvisor/hostd-probe",
14180	},
14181	{
14182		CounterId: 262151,
14183		Instance:  "host/vim/vmvisor/init",
14184	},
14185	{
14186		CounterId: 262151,
14187		Instance:  "host/system/helper",
14188	},
14189	{
14190		CounterId: 262172,
14191		Instance:  "host/vim/tmp",
14192	},
14193	{
14194		CounterId: 262151,
14195		Instance:  "host/vim/vmvisor/hostd-probe",
14196	},
14197	{
14198		CounterId: 262154,
14199		Instance:  "host/vim/vmvisor/hostd-probe",
14200	},
14201	{
14202		CounterId: 262153,
14203		Instance:  "host/vim/vmvisor/rabbitmqproxy",
14204	},
14205	{
14206		CounterId: 262148,
14207		Instance:  "host/vim/tmp",
14208	},
14209	{
14210		CounterId: 262153,
14211		Instance:  "host/vim/tmp",
14212	},
14213	{
14214		CounterId: 262157,
14215		Instance:  "host/vim/vmvisor/hostd-probe",
14216	},
14217	{
14218		CounterId: 262171,
14219		Instance:  "host/vim/vmvisor/hostd-probe",
14220	},
14221	{
14222		CounterId: 262151,
14223		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14224	},
14225	{
14226		CounterId: 262172,
14227		Instance:  "host/system",
14228	},
14229	{
14230		CounterId: 262152,
14231		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14232	},
14233	{
14234		CounterId: 262153,
14235		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14236	},
14237	{
14238		CounterId: 262153,
14239		Instance:  "host/vim/vmvisor/init",
14240	},
14241	{
14242		CounterId: 262152,
14243		Instance:  "host/vim/vmvisor/netcpa",
14244	},
14245	{
14246		CounterId: 262154,
14247		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14248	},
14249	{
14250		CounterId: 262153,
14251		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
14252	},
14253	{
14254		CounterId: 262172,
14255		Instance:  "host/vim/vmvisor/vmfstraced",
14256	},
14257	{
14258		CounterId: 262157,
14259		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14260	},
14261	{
14262		CounterId: 262155,
14263		Instance:  "host/vim/tmp",
14264	},
14265	{
14266		CounterId: 262157,
14267		Instance:  "host/vim/tmp",
14268	},
14269	{
14270		CounterId: 262172,
14271		Instance:  "host/vim/vmvisor/net-daemons",
14272	},
14273	{
14274		CounterId: 262156,
14275		Instance:  "host/iofilters/spm",
14276	},
14277	{
14278		CounterId: 262153,
14279		Instance:  "host/vim/vmvisor/nfsgssd",
14280	},
14281	{
14282		CounterId: 262172,
14283		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
14284	},
14285	{
14286		CounterId: 262171,
14287		Instance:  "host/system/drivers",
14288	},
14289	{
14290		CounterId: 262172,
14291		Instance:  "host/iofilters",
14292	},
14293	{
14294		CounterId: 262154,
14295		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
14296	},
14297	{
14298		CounterId: 262155,
14299		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14300	},
14301	{
14302		CounterId: 262154,
14303		Instance:  "host/system",
14304	},
14305	{
14306		CounterId: 262155,
14307		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
14308	},
14309	{
14310		CounterId: 262151,
14311		Instance:  "host/iofilters",
14312	},
14313	{
14314		CounterId: 262171,
14315		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
14316	},
14317	{
14318		CounterId: 262172,
14319		Instance:  "host/vim/vmvisor/nscd",
14320	},
14321	{
14322		CounterId: 262151,
14323		Instance:  "host/vim/vmvisor/pktcap-agent",
14324	},
14325	{
14326		CounterId: 262152,
14327		Instance:  "host/vim/vmvisor/osfsd",
14328	},
14329	{
14330		CounterId: 262156,
14331		Instance:  "host/vim/vimuser/terminal/ssh",
14332	},
14333	{
14334		CounterId: 262152,
14335		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
14336	},
14337	{
14338		CounterId: 262154,
14339		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
14340	},
14341	{
14342		CounterId: 262148,
14343		Instance:  "host/vim/vmvisor/dhclient",
14344	},
14345	{
14346		CounterId: 262155,
14347		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
14348	},
14349	{
14350		CounterId: 262156,
14351		Instance:  "host/iofilters/iofiltervpd",
14352	},
14353	{
14354		CounterId: 262156,
14355		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
14356	},
14357	{
14358		CounterId: 262152,
14359		Instance:  "host/iofilters",
14360	},
14361	{
14362		CounterId: 262157,
14363		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
14364	},
14365	{
14366		CounterId: 262156,
14367		Instance:  "host/vim/vmvisor/plugins",
14368	},
14369	{
14370		CounterId: 262171,
14371		Instance:  "host/vim/vmvisor/nfcd",
14372	},
14373	{
14374		CounterId: 262155,
14375		Instance:  "host/system/kernel/tmp",
14376	},
14377	{
14378		CounterId: 262171,
14379		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
14380	},
14381	{
14382		CounterId: 262172,
14383		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
14384	},
14385	{
14386		CounterId: 262172,
14387		Instance:  "host/vim/vmvisor/vpxa",
14388	},
14389	{
14390		CounterId: 262157,
14391		Instance:  "host/vim/vmvisor/lacpd",
14392	},
14393	{
14394		CounterId: 262153,
14395		Instance:  "host/vim/vmvisor/sfcb_aux",
14396	},
14397	{
14398		CounterId: 262154,
14399		Instance:  "host/iofilters",
14400	},
14401	{
14402		CounterId: 262156,
14403		Instance:  "host/iofilters",
14404	},
14405	{
14406		CounterId: 262148,
14407		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
14408	},
14409	{
14410		CounterId: 262172,
14411		Instance:  "host/iofilters/iofiltervpd",
14412	},
14413	{
14414		CounterId: 262155,
14415		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
14416	},
14417	{
14418		CounterId: 262172,
14419		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14420	},
14421	{
14422		CounterId: 262154,
14423		Instance:  "host/system/ft",
14424	},
14425	{
14426		CounterId: 262148,
14427		Instance:  "host/vim/vmvisor/net-daemons",
14428	},
14429	{
14430		CounterId: 262151,
14431		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14432	},
14433	{
14434		CounterId: 262153,
14435		Instance:  "host/vim/vmvisor",
14436	},
14437	{
14438		CounterId: 262151,
14439		Instance:  "host/iofilters/iofiltervpd",
14440	},
14441	{
14442		CounterId: 262152,
14443		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14444	},
14445	{
14446		CounterId: 262153,
14447		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14448	},
14449	{
14450		CounterId: 262155,
14451		Instance:  "host/vim/vmvisor/usbArbitrator",
14452	},
14453	{
14454		CounterId: 262154,
14455		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14456	},
14457	{
14458		CounterId: 262156,
14459		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14460	},
14461	{
14462		CounterId: 262152,
14463		Instance:  "host/iofilters/iofiltervpd",
14464	},
14465	{
14466		CounterId: 262157,
14467		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
14468	},
14469	{
14470		CounterId: 262151,
14471		Instance:  "host/vim/vmvisor/vsanmgmtdWatchdog",
14472	},
14473	{
14474		CounterId: 262148,
14475		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
14476	},
14477	{
14478		CounterId: 262153,
14479		Instance:  "host/iofilters/iofiltervpd",
14480	},
14481	{
14482		CounterId: 262154,
14483		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
14484	},
14485	{
14486		CounterId: 262154,
14487		Instance:  "host/iofilters/iofiltervpd",
14488	},
14489	{
14490		CounterId: 262172,
14491		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14492	},
14493	{
14494		CounterId: 262151,
14495		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14496	},
14497	{
14498		CounterId: 262153,
14499		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14500	},
14501	{
14502		CounterId: 262151,
14503		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14504	},
14505	{
14506		CounterId: 262154,
14507		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14508	},
14509	{
14510		CounterId: 262172,
14511		Instance:  "host/system/kernel/etc",
14512	},
14513	{
14514		CounterId: 262155,
14515		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14516	},
14517	{
14518		CounterId: 262155,
14519		Instance:  "host/iofilters/iofiltervpd",
14520	},
14521	{
14522		CounterId: 262157,
14523		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
14524	},
14525	{
14526		CounterId: 262152,
14527		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14528	},
14529	{
14530		CounterId: 262157,
14531		Instance:  "host/iofilters/iofiltervpd",
14532	},
14533	{
14534		CounterId: 262153,
14535		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14536	},
14537	{
14538		CounterId: 262151,
14539		Instance:  "host/iofilters/vmwarevmcrypt",
14540	},
14541	{
14542		CounterId: 262172,
14543		Instance:  "host/vim/vmvisor/pktcap-agent",
14544	},
14545	{
14546		CounterId: 262154,
14547		Instance:  "host/vim/vmvisor/netcpa",
14548	},
14549	{
14550		CounterId: 262152,
14551		Instance:  "host/vim/vmvisor/vvoltraced",
14552	},
14553	{
14554		CounterId: 262153,
14555		Instance:  "host/system/kernel",
14556	},
14557	{
14558		CounterId: 262155,
14559		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14560	},
14561	{
14562		CounterId: 262152,
14563		Instance:  "host/iofilters/vmwarevmcrypt",
14564	},
14565	{
14566		CounterId: 262157,
14567		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14568	},
14569	{
14570		CounterId: 262171,
14571		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14572	},
14573	{
14574		CounterId: 262172,
14575		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
14576	},
14577	{
14578		CounterId: 262148,
14579		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
14580	},
14581	{
14582		CounterId: 262154,
14583		Instance:  "host/vim/tmp",
14584	},
14585	{
14586		CounterId: 262155,
14587		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
14588	},
14589	{
14590		CounterId: 262155,
14591		Instance:  "host/vim/vimuser/terminal/ssh",
14592	},
14593	{
14594		CounterId: 262148,
14595		Instance:  "host/vim/vmvisor/vmfstraced",
14596	},
14597	{
14598		CounterId: 262171,
14599		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
14600	},
14601	{
14602		CounterId: 262148,
14603		Instance:  "host/vim/vmvisor/nfsgssd",
14604	},
14605	{
14606		CounterId: 262153,
14607		Instance:  "host/vim/vmvisor/vdpi",
14608	},
14609	{
14610		CounterId: 262152,
14611		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
14612	},
14613	{
14614		CounterId: 262151,
14615		Instance:  "host/vim/vmvisor/vdpi",
14616	},
14617	{
14618		CounterId: 262154,
14619		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
14620	},
14621	{
14622		CounterId: 262152,
14623		Instance:  "host/vim/vimuser/terminal/ssh",
14624	},
14625	{
14626		CounterId: 262155,
14627		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
14628	},
14629	{
14630		CounterId: 262171,
14631		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
14632	},
14633	{
14634		CounterId: 262171,
14635		Instance:  "host/vim/vmvisor/hostdCgiServer",
14636	},
14637	{
14638		CounterId: 262154,
14639		Instance:  "host/vim/vmvisor/hbrca",
14640	},
14641	{
14642		CounterId: 262155,
14643		Instance:  "host/vim/vmvisor/init",
14644	},
14645	{
14646		CounterId: 262148,
14647		Instance:  "host/vim/vmvisor/lacpd",
14648	},
14649	{
14650		CounterId: 262151,
14651		Instance:  "host/vim/vmvisor/lacpd",
14652	},
14653	{
14654		CounterId: 262152,
14655		Instance:  "host/vim/vmvisor/nscd",
14656	},
14657	{
14658		CounterId: 262155,
14659		Instance:  "host/vim/vmvisor/lacpd",
14660	},
14661	{
14662		CounterId: 262154,
14663		Instance:  "host/vim/vmvisor/uwdaemons",
14664	},
14665	{
14666		CounterId: 262156,
14667		Instance:  "host/vim/vmvisor/lacpd",
14668	},
14669	{
14670		CounterId: 262172,
14671		Instance:  "host/system/drivers",
14672	},
14673	{
14674		CounterId: 262171,
14675		Instance:  "host/vim/vmvisor/lacpd",
14676	},
14677	{
14678		CounterId: 262148,
14679		Instance:  "host/vim/vmvisor/lbt",
14680	},
14681	{
14682		CounterId: 262171,
14683		Instance:  "host/system/kernel/opt",
14684	},
14685	{
14686		CounterId: 262153,
14687		Instance:  "host/vim/vmvisor/lbt",
14688	},
14689	{
14690		CounterId: 262155,
14691		Instance:  "host/vim/vmvisor/lbt",
14692	},
14693	{
14694		CounterId: 262153,
14695		Instance:  "host/iofilters/vmwarevmcrypt",
14696	},
14697	{
14698		CounterId: 262157,
14699		Instance:  "host/vim/vmvisor/lbt",
14700	},
14701	{
14702		CounterId: 262148,
14703		Instance:  "host/vim/vmvisor/likewise",
14704	},
14705	{
14706		CounterId: 262154,
14707		Instance:  "host/iofilters/vmwarevmcrypt",
14708	},
14709	{
14710		CounterId: 262148,
14711		Instance:  "host/vim/vmvisor/aam",
14712	},
14713	{
14714		CounterId: 262148,
14715		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
14716	},
14717	{
14718		CounterId: 262151,
14719		Instance:  "host/vim/vmvisor/likewise",
14720	},
14721	{
14722		CounterId: 262154,
14723		Instance:  "host/vim/vmvisor/likewise",
14724	},
14725	{
14726		CounterId: 262156,
14727		Instance:  "host/vim/vmvisor/likewise",
14728	},
14729	{
14730		CounterId: 262156,
14731		Instance:  "host/iofilters/vmwarevmcrypt",
14732	},
14733	{
14734		CounterId: 262157,
14735		Instance:  "host/vim/vmvisor/memScrubber",
14736	},
14737	{
14738		CounterId: 262172,
14739		Instance:  "host/vim/vmvisor/hostd-probe/stats",
14740	},
14741	{
14742		CounterId: 262154,
14743		Instance:  "host/system/kernel/iofilters",
14744	},
14745	{
14746		CounterId: 262148,
14747		Instance:  "host/vim/vmvisor/logging",
14748	},
14749	{
14750		CounterId: 262151,
14751		Instance:  "host/vim/vmvisor/logging",
14752	},
14753	{
14754		CounterId: 262156,
14755		Instance:  "host/vim/vmvisor/logging",
14756	},
14757	{
14758		CounterId: 262156,
14759		Instance:  "host/system/kernel/iofilters",
14760	},
14761	{
14762		CounterId: 262172,
14763		Instance:  "host/vim/vmvisor/memScrubber",
14764	},
14765	{
14766		CounterId: 262172,
14767		Instance:  "host/vim/vmvisor/hostd-probe",
14768	},
14769	{
14770		CounterId: 262154,
14771		Instance:  "host/vim/vmvisor/memScrubber",
14772	},
14773	{
14774		CounterId: 262151,
14775		Instance:  "host/vim/vmvisor/osfsd",
14776	},
14777	{
14778		CounterId: 262155,
14779		Instance:  "host/vim/vmvisor/memScrubber",
14780	},
14781	{
14782		CounterId: 262153,
14783		Instance:  "host/vim/vmvisor/likewise",
14784	},
14785	{
14786		CounterId: 262157,
14787		Instance:  "host/iofilters/vmwarevmcrypt",
14788	},
14789	{
14790		CounterId: 262171,
14791		Instance:  "host/iofilters/vmwarevmcrypt",
14792	},
14793	{
14794		CounterId: 262156,
14795		Instance:  "host/vim",
14796	},
14797	{
14798		CounterId: 262152,
14799		Instance:  "host/vim/vmvisor/net-daemons",
14800	},
14801	{
14802		CounterId: 262172,
14803		Instance:  "host/iofilters/spm",
14804	},
14805	{
14806		CounterId: 262172,
14807		Instance:  "host/vim/vmvisor/ntpd",
14808	},
14809	{
14810		CounterId: 262153,
14811		Instance:  "host/vim/vmvisor/net-daemons",
14812	},
14813	{
14814		CounterId: 262152,
14815		Instance:  "host/system/kernel/root",
14816	},
14817	{
14818		CounterId: 262154,
14819		Instance:  "host/vim/vmvisor/net-daemons",
14820	},
14821	{
14822		CounterId: 262156,
14823		Instance:  "host/vim/vmvisor/net-daemons",
14824	},
14825	{
14826		CounterId: 262157,
14827		Instance:  "host/vim/vmvisor/net-daemons",
14828	},
14829	{
14830		CounterId: 262171,
14831		Instance:  "host/vim/vmvisor/net-daemons",
14832	},
14833	{
14834		CounterId: 262152,
14835		Instance:  "host/iofilters/spm",
14836	},
14837	{
14838		CounterId: 262153,
14839		Instance:  "host/vim/vmvisor/netcpa",
14840	},
14841	{
14842		CounterId: 262156,
14843		Instance:  "host/vim/vimuser/terminal/shell",
14844	},
14845	{
14846		CounterId: 262155,
14847		Instance:  "host/vim/vmvisor/netcpa",
14848	},
14849	{
14850		CounterId: 262151,
14851		Instance:  "host/vim/vmvisor/sfcb",
14852	},
14853	{
14854		CounterId: 262151,
14855		Instance:  "host/system/ft",
14856	},
14857	{
14858		CounterId: 262153,
14859		Instance:  "host/vim/vmvisor/osfsd",
14860	},
14861	{
14862		CounterId: 262156,
14863		Instance:  "host/vim/vmvisor/netcpa",
14864	},
14865	{
14866		CounterId: 262171,
14867		Instance:  "host/vim/vmvisor/netcpa",
14868	},
14869	{
14870		CounterId: 262151,
14871		Instance:  "host/vim/vmvisor/swapobjd",
14872	},
14873	{
14874		CounterId: 262172,
14875		Instance:  "host/vim/vmvisor/nfcd",
14876	},
14877	{
14878		CounterId: 262148,
14879		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
14880	},
14881	{
14882		CounterId: 262151,
14883		Instance:  "host",
14884	},
14885	{
14886		CounterId: 262148,
14887		Instance:  "host/vim/vmvisor/nfcd",
14888	},
14889	{
14890		CounterId: 262157,
14891		Instance:  "host/vim/vmvisor/vvoltraced",
14892	},
14893	{
14894		CounterId: 262148,
14895		Instance:  "host/system/kernel/etc",
14896	},
14897	{
14898		CounterId: 262153,
14899		Instance:  "host/vim/vmvisor/nfcd",
14900	},
14901	{
14902		CounterId: 262148,
14903		Instance:  "host/user",
14904	},
14905	{
14906		CounterId: 262155,
14907		Instance:  "host/vim/vmvisor/nfcd",
14908	},
14909	{
14910		CounterId: 262154,
14911		Instance:  "host/vim/vmvisor/dcui",
14912	},
14913	{
14914		CounterId: 262157,
14915		Instance:  "host/vim/vmvisor/nfcd",
14916	},
14917	{
14918		CounterId: 262172,
14919		Instance:  "host/vim/vmvisor/nfsgssd",
14920	},
14921	{
14922		CounterId: 262151,
14923		Instance:  "host/vim/vmvisor/nfsgssd",
14924	},
14925	{
14926		CounterId: 262153,
14927		Instance:  "host/user",
14928	},
14929	{
14930		CounterId: 262152,
14931		Instance:  "host/vim/vmvisor/nfsgssd",
14932	},
14933	{
14934		CounterId: 262155,
14935		Instance:  "host/vim/vmvisor/nfsgssd",
14936	},
14937	{
14938		CounterId: 262156,
14939		Instance:  "host/vim/vmvisor/upittraced",
14940	},
14941	{
14942		CounterId: 262156,
14943		Instance:  "host/vim/vmvisor/nfsgssd",
14944	},
14945	{
14946		CounterId: 262154,
14947		Instance:  "host/user",
14948	},
14949	{
14950		CounterId: 262157,
14951		Instance:  "host/vim/vmvisor/nfsgssd",
14952	},
14953	{
14954		CounterId: 262156,
14955		Instance:  "host/user",
14956	},
14957	{
14958		CounterId: 262171,
14959		Instance:  "host/vim/vmvisor/nfsgssd",
14960	},
14961	{
14962		CounterId: 262148,
14963		Instance:  "host/vim/vmvisor/nscd",
14964	},
14965	{
14966		CounterId: 262153,
14967		Instance:  "host/vim/vmvisor/nscd",
14968	},
14969	{
14970		CounterId: 262156,
14971		Instance:  "host/vim/vmvisor/nscd",
14972	},
14973	{
14974		CounterId: 262172,
14975		Instance:  "host/system/kernel/iofilters",
14976	},
14977	{
14978		CounterId: 262157,
14979		Instance:  "host/user",
14980	},
14981	{
14982		CounterId: 262157,
14983		Instance:  "host/vim/vmvisor/nscd",
14984	},
14985	{
14986		CounterId: 262171,
14987		Instance:  "host/vim/vmvisor/nscd",
14988	},
14989	{
14990		CounterId: 262148,
14991		Instance:  "host/vim/vmvisor/ntpd",
14992	},
14993	{
14994		CounterId: 262151,
14995		Instance:  "host/vim/vmvisor/ntpd",
14996	},
14997	{
14998		CounterId: 262152,
14999		Instance:  "host/vim/vmvisor/ntpd",
15000	},
15001	{
15002		CounterId: 262153,
15003		Instance:  "host/vim/vmvisor/ntpd",
15004	},
15005	{
15006		CounterId: 262171,
15007		Instance:  "host/vim/vmvisor/boot",
15008	},
15009	{
15010		CounterId: 262155,
15011		Instance:  "host/vim/vmvisor/ntpd",
15012	},
15013	{
15014		CounterId: 262148,
15015		Instance:  "host/vim/vmvisor/pcscd",
15016	},
15017	{
15018		CounterId: 851968,
15019		Instance:  "vfc",
15020	},
15021}
15022
15023// ********************************* Resource pool metrics **********************************
15024var ResourcePoolMetrics = []types.PerfMetricId{
15025	{
15026		CounterId: 5,
15027		Instance:  "",
15028	},
15029	{
15030		CounterId: 65586,
15031		Instance:  "",
15032	},
15033	{
15034		CounterId: 65591,
15035		Instance:  "",
15036	},
15037	{
15038		CounterId: 65545,
15039		Instance:  "",
15040	},
15041	{
15042		CounterId: 65553,
15043		Instance:  "",
15044	},
15045	{
15046		CounterId: 65541,
15047		Instance:  "",
15048	},
15049	{
15050		CounterId: 65549,
15051		Instance:  "",
15052	},
15053	{
15054		CounterId: 65582,
15055		Instance:  "",
15056	},
15057}
15058