github.com/vmware/govmomi@v0.51.0/simulator/esx/performance_manager.go (about)

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