github.com/vmware/govmomi@v0.51.0/simulator/vpx/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 vpx
     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:Perfmgr historicalInterval
    13  var HistoricalInterval = []types.PerfInterval{
    14  	{
    15  		Enabled:        true,
    16  		Key:            1,
    17  		Length:         86400,
    18  		Level:          1,
    19  		Name:           "Past Day",
    20  		SamplingPeriod: 300,
    21  	},
    22  	{
    23  		Enabled:        true,
    24  		Key:            2,
    25  		Length:         604800,
    26  		Level:          1,
    27  		Name:           "Past Week",
    28  		SamplingPeriod: 1800,
    29  	},
    30  	{
    31  		Enabled:        true,
    32  		Key:            1,
    33  		Length:         2592000,
    34  		Level:          1,
    35  		Name:           "Past Month",
    36  		SamplingPeriod: 7200,
    37  	},
    38  	{
    39  		Enabled:        true,
    40  		Key:            1,
    41  		Length:         31536000,
    42  		Level:          1,
    43  		Name:           "Past Year",
    44  		SamplingPeriod: 86400,
    45  	},
    46  }
    47  
    48  // PerfCounter is the default template for the PerformanceManager perfCounter property.
    49  // Capture method:
    50  //   govc object.collect -s -dump PerformanceManager:PerfMgr perfCounter
    51  
    52  var PerfCounter = []types.PerfCounterInfo{
    53  	{
    54  		Key: 1,
    55  		NameInfo: &types.ElementDescription{
    56  			Description: types.Description{
    57  				Label:   "Usage",
    58  				Summary: "CPU usage as a percentage during the interval",
    59  			},
    60  			Key: "usage",
    61  		},
    62  		GroupInfo: &types.ElementDescription{
    63  			Description: types.Description{
    64  				Label:   "CPU",
    65  				Summary: "CPU",
    66  			},
    67  			Key: "cpu",
    68  		},
    69  		UnitInfo: &types.ElementDescription{
    70  			Description: types.Description{
    71  				Label:   "%",
    72  				Summary: "Percentage",
    73  			},
    74  			Key: "percent",
    75  		},
    76  		RollupType:          "none",
    77  		StatsType:           "rate",
    78  		Level:               4,
    79  		PerDeviceLevel:      4,
    80  		AssociatedCounterId: nil,
    81  	},
    82  	{
    83  		Key: 2,
    84  		NameInfo: &types.ElementDescription{
    85  			Description: types.Description{
    86  				Label:   "Usage",
    87  				Summary: "CPU usage as a percentage during the interval",
    88  			},
    89  			Key: "usage",
    90  		},
    91  		GroupInfo: &types.ElementDescription{
    92  			Description: types.Description{
    93  				Label:   "CPU",
    94  				Summary: "CPU",
    95  			},
    96  			Key: "cpu",
    97  		},
    98  		UnitInfo: &types.ElementDescription{
    99  			Description: types.Description{
   100  				Label:   "%",
   101  				Summary: "Percentage",
   102  			},
   103  			Key: "percent",
   104  		},
   105  		RollupType:          "average",
   106  		StatsType:           "rate",
   107  		Level:               1,
   108  		PerDeviceLevel:      3,
   109  		AssociatedCounterId: nil,
   110  	},
   111  	{
   112  		Key: 3,
   113  		NameInfo: &types.ElementDescription{
   114  			Description: types.Description{
   115  				Label:   "Usage",
   116  				Summary: "CPU usage as a percentage during the interval",
   117  			},
   118  			Key: "usage",
   119  		},
   120  		GroupInfo: &types.ElementDescription{
   121  			Description: types.Description{
   122  				Label:   "CPU",
   123  				Summary: "CPU",
   124  			},
   125  			Key: "cpu",
   126  		},
   127  		UnitInfo: &types.ElementDescription{
   128  			Description: types.Description{
   129  				Label:   "%",
   130  				Summary: "Percentage",
   131  			},
   132  			Key: "percent",
   133  		},
   134  		RollupType:          "minimum",
   135  		StatsType:           "rate",
   136  		Level:               4,
   137  		PerDeviceLevel:      4,
   138  		AssociatedCounterId: nil,
   139  	},
   140  	{
   141  		Key: 4,
   142  		NameInfo: &types.ElementDescription{
   143  			Description: types.Description{
   144  				Label:   "Usage",
   145  				Summary: "CPU usage as a percentage during the interval",
   146  			},
   147  			Key: "usage",
   148  		},
   149  		GroupInfo: &types.ElementDescription{
   150  			Description: types.Description{
   151  				Label:   "CPU",
   152  				Summary: "CPU",
   153  			},
   154  			Key: "cpu",
   155  		},
   156  		UnitInfo: &types.ElementDescription{
   157  			Description: types.Description{
   158  				Label:   "%",
   159  				Summary: "Percentage",
   160  			},
   161  			Key: "percent",
   162  		},
   163  		RollupType:          "maximum",
   164  		StatsType:           "rate",
   165  		Level:               4,
   166  		PerDeviceLevel:      4,
   167  		AssociatedCounterId: nil,
   168  	},
   169  	{
   170  		Key: 5,
   171  		NameInfo: &types.ElementDescription{
   172  			Description: types.Description{
   173  				Label:   "Usage in MHz",
   174  				Summary: "CPU usage in megahertz during the interval",
   175  			},
   176  			Key: "usagemhz",
   177  		},
   178  		GroupInfo: &types.ElementDescription{
   179  			Description: types.Description{
   180  				Label:   "CPU",
   181  				Summary: "CPU",
   182  			},
   183  			Key: "cpu",
   184  		},
   185  		UnitInfo: &types.ElementDescription{
   186  			Description: types.Description{
   187  				Label:   "MHz",
   188  				Summary: "Megahertz",
   189  			},
   190  			Key: "megaHertz",
   191  		},
   192  		RollupType:          "none",
   193  		StatsType:           "rate",
   194  		Level:               4,
   195  		PerDeviceLevel:      4,
   196  		AssociatedCounterId: nil,
   197  	},
   198  	{
   199  		Key: 6,
   200  		NameInfo: &types.ElementDescription{
   201  			Description: types.Description{
   202  				Label:   "Usage in MHz",
   203  				Summary: "CPU usage in megahertz during the interval",
   204  			},
   205  			Key: "usagemhz",
   206  		},
   207  		GroupInfo: &types.ElementDescription{
   208  			Description: types.Description{
   209  				Label:   "CPU",
   210  				Summary: "CPU",
   211  			},
   212  			Key: "cpu",
   213  		},
   214  		UnitInfo: &types.ElementDescription{
   215  			Description: types.Description{
   216  				Label:   "MHz",
   217  				Summary: "Megahertz",
   218  			},
   219  			Key: "megaHertz",
   220  		},
   221  		RollupType:          "average",
   222  		StatsType:           "rate",
   223  		Level:               1,
   224  		PerDeviceLevel:      3,
   225  		AssociatedCounterId: nil,
   226  	},
   227  	{
   228  		Key: 7,
   229  		NameInfo: &types.ElementDescription{
   230  			Description: types.Description{
   231  				Label:   "Usage in MHz",
   232  				Summary: "CPU usage in megahertz during the interval",
   233  			},
   234  			Key: "usagemhz",
   235  		},
   236  		GroupInfo: &types.ElementDescription{
   237  			Description: types.Description{
   238  				Label:   "CPU",
   239  				Summary: "CPU",
   240  			},
   241  			Key: "cpu",
   242  		},
   243  		UnitInfo: &types.ElementDescription{
   244  			Description: types.Description{
   245  				Label:   "MHz",
   246  				Summary: "Megahertz",
   247  			},
   248  			Key: "megaHertz",
   249  		},
   250  		RollupType:          "minimum",
   251  		StatsType:           "rate",
   252  		Level:               4,
   253  		PerDeviceLevel:      4,
   254  		AssociatedCounterId: nil,
   255  	},
   256  	{
   257  		Key: 8,
   258  		NameInfo: &types.ElementDescription{
   259  			Description: types.Description{
   260  				Label:   "Usage in MHz",
   261  				Summary: "CPU usage in megahertz during the interval",
   262  			},
   263  			Key: "usagemhz",
   264  		},
   265  		GroupInfo: &types.ElementDescription{
   266  			Description: types.Description{
   267  				Label:   "CPU",
   268  				Summary: "CPU",
   269  			},
   270  			Key: "cpu",
   271  		},
   272  		UnitInfo: &types.ElementDescription{
   273  			Description: types.Description{
   274  				Label:   "MHz",
   275  				Summary: "Megahertz",
   276  			},
   277  			Key: "megaHertz",
   278  		},
   279  		RollupType:          "maximum",
   280  		StatsType:           "rate",
   281  		Level:               4,
   282  		PerDeviceLevel:      4,
   283  		AssociatedCounterId: nil,
   284  	},
   285  	{
   286  		Key: 9,
   287  		NameInfo: &types.ElementDescription{
   288  			Description: types.Description{
   289  				Label:   "Reserved capacity",
   290  				Summary: "Total CPU capacity reserved by virtual machines",
   291  			},
   292  			Key: "reservedCapacity",
   293  		},
   294  		GroupInfo: &types.ElementDescription{
   295  			Description: types.Description{
   296  				Label:   "CPU",
   297  				Summary: "CPU",
   298  			},
   299  			Key: "cpu",
   300  		},
   301  		UnitInfo: &types.ElementDescription{
   302  			Description: types.Description{
   303  				Label:   "MHz",
   304  				Summary: "Megahertz",
   305  			},
   306  			Key: "megaHertz",
   307  		},
   308  		RollupType:          "average",
   309  		StatsType:           "absolute",
   310  		Level:               2,
   311  		PerDeviceLevel:      3,
   312  		AssociatedCounterId: nil,
   313  	},
   314  	{
   315  		Key: 10,
   316  		NameInfo: &types.ElementDescription{
   317  			Description: types.Description{
   318  				Label:   "System",
   319  				Summary: "Amount of time spent on system processes on each virtual CPU in the virtual machine",
   320  			},
   321  			Key: "system",
   322  		},
   323  		GroupInfo: &types.ElementDescription{
   324  			Description: types.Description{
   325  				Label:   "CPU",
   326  				Summary: "CPU",
   327  			},
   328  			Key: "cpu",
   329  		},
   330  		UnitInfo: &types.ElementDescription{
   331  			Description: types.Description{
   332  				Label:   "ms",
   333  				Summary: "Millisecond",
   334  			},
   335  			Key: "millisecond",
   336  		},
   337  		RollupType:          "summation",
   338  		StatsType:           "delta",
   339  		Level:               3,
   340  		PerDeviceLevel:      3,
   341  		AssociatedCounterId: nil,
   342  	},
   343  	{
   344  		Key: 11,
   345  		NameInfo: &types.ElementDescription{
   346  			Description: types.Description{
   347  				Label:   "Wait",
   348  				Summary: "Total CPU time spent in wait state",
   349  			},
   350  			Key: "wait",
   351  		},
   352  		GroupInfo: &types.ElementDescription{
   353  			Description: types.Description{
   354  				Label:   "CPU",
   355  				Summary: "CPU",
   356  			},
   357  			Key: "cpu",
   358  		},
   359  		UnitInfo: &types.ElementDescription{
   360  			Description: types.Description{
   361  				Label:   "ms",
   362  				Summary: "Millisecond",
   363  			},
   364  			Key: "millisecond",
   365  		},
   366  		RollupType:          "summation",
   367  		StatsType:           "delta",
   368  		Level:               3,
   369  		PerDeviceLevel:      3,
   370  		AssociatedCounterId: nil,
   371  	},
   372  	{
   373  		Key: 12,
   374  		NameInfo: &types.ElementDescription{
   375  			Description: types.Description{
   376  				Label:   "Ready",
   377  				Summary: "Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval",
   378  			},
   379  			Key: "ready",
   380  		},
   381  		GroupInfo: &types.ElementDescription{
   382  			Description: types.Description{
   383  				Label:   "CPU",
   384  				Summary: "CPU",
   385  			},
   386  			Key: "cpu",
   387  		},
   388  		UnitInfo: &types.ElementDescription{
   389  			Description: types.Description{
   390  				Label:   "ms",
   391  				Summary: "Millisecond",
   392  			},
   393  			Key: "millisecond",
   394  		},
   395  		RollupType:          "summation",
   396  		StatsType:           "delta",
   397  		Level:               1,
   398  		PerDeviceLevel:      3,
   399  		AssociatedCounterId: nil,
   400  	},
   401  	{
   402  		Key: 13,
   403  		NameInfo: &types.ElementDescription{
   404  			Description: types.Description{
   405  				Label:   "Idle",
   406  				Summary: "Total time that the CPU spent in an idle state",
   407  			},
   408  			Key: "idle",
   409  		},
   410  		GroupInfo: &types.ElementDescription{
   411  			Description: types.Description{
   412  				Label:   "CPU",
   413  				Summary: "CPU",
   414  			},
   415  			Key: "cpu",
   416  		},
   417  		UnitInfo: &types.ElementDescription{
   418  			Description: types.Description{
   419  				Label:   "ms",
   420  				Summary: "Millisecond",
   421  			},
   422  			Key: "millisecond",
   423  		},
   424  		RollupType:          "summation",
   425  		StatsType:           "delta",
   426  		Level:               2,
   427  		PerDeviceLevel:      3,
   428  		AssociatedCounterId: nil,
   429  	},
   430  	{
   431  		Key: 14,
   432  		NameInfo: &types.ElementDescription{
   433  			Description: types.Description{
   434  				Label:   "Used",
   435  				Summary: "Total CPU usage",
   436  			},
   437  			Key: "used",
   438  		},
   439  		GroupInfo: &types.ElementDescription{
   440  			Description: types.Description{
   441  				Label:   "CPU",
   442  				Summary: "CPU",
   443  			},
   444  			Key: "cpu",
   445  		},
   446  		UnitInfo: &types.ElementDescription{
   447  			Description: types.Description{
   448  				Label:   "ms",
   449  				Summary: "Millisecond",
   450  			},
   451  			Key: "millisecond",
   452  		},
   453  		RollupType:          "summation",
   454  		StatsType:           "delta",
   455  		Level:               3,
   456  		PerDeviceLevel:      3,
   457  		AssociatedCounterId: nil,
   458  	},
   459  	{
   460  		Key: 15,
   461  		NameInfo: &types.ElementDescription{
   462  			Description: types.Description{
   463  				Label:   "CPU Capacity Provisioned",
   464  				Summary: "Capacity in MHz of the physical CPU cores",
   465  			},
   466  			Key: "capacity.provisioned",
   467  		},
   468  		GroupInfo: &types.ElementDescription{
   469  			Description: types.Description{
   470  				Label:   "CPU",
   471  				Summary: "CPU",
   472  			},
   473  			Key: "cpu",
   474  		},
   475  		UnitInfo: &types.ElementDescription{
   476  			Description: types.Description{
   477  				Label:   "MHz",
   478  				Summary: "Megahertz",
   479  			},
   480  			Key: "megaHertz",
   481  		},
   482  		RollupType:          "average",
   483  		StatsType:           "absolute",
   484  		Level:               4,
   485  		PerDeviceLevel:      4,
   486  		AssociatedCounterId: nil,
   487  	},
   488  	{
   489  		Key: 16,
   490  		NameInfo: &types.ElementDescription{
   491  			Description: types.Description{
   492  				Label:   "CPU Capacity Entitlement",
   493  				Summary: "CPU resources devoted by the ESXi scheduler to the virtual machines and resource pools",
   494  			},
   495  			Key: "capacity.entitlement",
   496  		},
   497  		GroupInfo: &types.ElementDescription{
   498  			Description: types.Description{
   499  				Label:   "CPU",
   500  				Summary: "CPU",
   501  			},
   502  			Key: "cpu",
   503  		},
   504  		UnitInfo: &types.ElementDescription{
   505  			Description: types.Description{
   506  				Label:   "MHz",
   507  				Summary: "Megahertz",
   508  			},
   509  			Key: "megaHertz",
   510  		},
   511  		RollupType:          "average",
   512  		StatsType:           "absolute",
   513  		Level:               4,
   514  		PerDeviceLevel:      4,
   515  		AssociatedCounterId: nil,
   516  	},
   517  	{
   518  		Key: 17,
   519  		NameInfo: &types.ElementDescription{
   520  			Description: types.Description{
   521  				Label:   "CPU Capacity Usage",
   522  				Summary: "CPU usage as a percent during the interval.",
   523  			},
   524  			Key: "capacity.usage",
   525  		},
   526  		GroupInfo: &types.ElementDescription{
   527  			Description: types.Description{
   528  				Label:   "CPU",
   529  				Summary: "CPU",
   530  			},
   531  			Key: "cpu",
   532  		},
   533  		UnitInfo: &types.ElementDescription{
   534  			Description: types.Description{
   535  				Label:   "MHz",
   536  				Summary: "Megahertz",
   537  			},
   538  			Key: "megaHertz",
   539  		},
   540  		RollupType:          "average",
   541  		StatsType:           "rate",
   542  		Level:               4,
   543  		PerDeviceLevel:      4,
   544  		AssociatedCounterId: nil,
   545  	},
   546  	{
   547  		Key: 18,
   548  		NameInfo: &types.ElementDescription{
   549  			Description: types.Description{
   550  				Label:   "CPU Capacity Demand",
   551  				Summary: "The amount of CPU resources a VM would use if there were no CPU contention or CPU limit",
   552  			},
   553  			Key: "capacity.demand",
   554  		},
   555  		GroupInfo: &types.ElementDescription{
   556  			Description: types.Description{
   557  				Label:   "CPU",
   558  				Summary: "CPU",
   559  			},
   560  			Key: "cpu",
   561  		},
   562  		UnitInfo: &types.ElementDescription{
   563  			Description: types.Description{
   564  				Label:   "MHz",
   565  				Summary: "Megahertz",
   566  			},
   567  			Key: "megaHertz",
   568  		},
   569  		RollupType:          "average",
   570  		StatsType:           "absolute",
   571  		Level:               4,
   572  		PerDeviceLevel:      4,
   573  		AssociatedCounterId: nil,
   574  	},
   575  	{
   576  		Key: 19,
   577  		NameInfo: &types.ElementDescription{
   578  			Description: types.Description{
   579  				Label:   "CPU Capacity Contention",
   580  				Summary: "Percent of time the VM is unable to run because it is contending for access to the physical CPU(s)",
   581  			},
   582  			Key: "capacity.contention",
   583  		},
   584  		GroupInfo: &types.ElementDescription{
   585  			Description: types.Description{
   586  				Label:   "CPU",
   587  				Summary: "CPU",
   588  			},
   589  			Key: "cpu",
   590  		},
   591  		UnitInfo: &types.ElementDescription{
   592  			Description: types.Description{
   593  				Label:   "%",
   594  				Summary: "Percentage",
   595  			},
   596  			Key: "percent",
   597  		},
   598  		RollupType:          "average",
   599  		StatsType:           "rate",
   600  		Level:               4,
   601  		PerDeviceLevel:      4,
   602  		AssociatedCounterId: nil,
   603  	},
   604  	{
   605  		Key: 20,
   606  		NameInfo: &types.ElementDescription{
   607  			Description: types.Description{
   608  				Label:   "CPU Core Count Provisioned",
   609  				Summary: "The number of virtual processors provisioned to the entity.",
   610  			},
   611  			Key: "corecount.provisioned",
   612  		},
   613  		GroupInfo: &types.ElementDescription{
   614  			Description: types.Description{
   615  				Label:   "CPU",
   616  				Summary: "CPU",
   617  			},
   618  			Key: "cpu",
   619  		},
   620  		UnitInfo: &types.ElementDescription{
   621  			Description: types.Description{
   622  				Label:   "num",
   623  				Summary: "Number",
   624  			},
   625  			Key: "number",
   626  		},
   627  		RollupType:          "average",
   628  		StatsType:           "absolute",
   629  		Level:               4,
   630  		PerDeviceLevel:      4,
   631  		AssociatedCounterId: nil,
   632  	},
   633  	{
   634  		Key: 21,
   635  		NameInfo: &types.ElementDescription{
   636  			Description: types.Description{
   637  				Label:   "CPU Core Count Usage",
   638  				Summary: "The number of virtual processors running on the host.",
   639  			},
   640  			Key: "corecount.usage",
   641  		},
   642  		GroupInfo: &types.ElementDescription{
   643  			Description: types.Description{
   644  				Label:   "CPU",
   645  				Summary: "CPU",
   646  			},
   647  			Key: "cpu",
   648  		},
   649  		UnitInfo: &types.ElementDescription{
   650  			Description: types.Description{
   651  				Label:   "num",
   652  				Summary: "Number",
   653  			},
   654  			Key: "number",
   655  		},
   656  		RollupType:          "average",
   657  		StatsType:           "absolute",
   658  		Level:               4,
   659  		PerDeviceLevel:      4,
   660  		AssociatedCounterId: nil,
   661  	},
   662  	{
   663  		Key: 22,
   664  		NameInfo: &types.ElementDescription{
   665  			Description: types.Description{
   666  				Label:   "CPU Core Count Contention",
   667  				Summary: "Time the VM vCPU is ready to run, but is unable to run due to co-scheduling constraints",
   668  			},
   669  			Key: "corecount.contention",
   670  		},
   671  		GroupInfo: &types.ElementDescription{
   672  			Description: types.Description{
   673  				Label:   "CPU",
   674  				Summary: "CPU",
   675  			},
   676  			Key: "cpu",
   677  		},
   678  		UnitInfo: &types.ElementDescription{
   679  			Description: types.Description{
   680  				Label:   "%",
   681  				Summary: "Percentage",
   682  			},
   683  			Key: "percent",
   684  		},
   685  		RollupType:          "average",
   686  		StatsType:           "rate",
   687  		Level:               4,
   688  		PerDeviceLevel:      4,
   689  		AssociatedCounterId: nil,
   690  	},
   691  	{
   692  		Key: 23,
   693  		NameInfo: &types.ElementDescription{
   694  			Description: types.Description{
   695  				Label:   "Host consumed %",
   696  				Summary: "Percentage of host physical memory that has been consumed",
   697  			},
   698  			Key: "usage",
   699  		},
   700  		GroupInfo: &types.ElementDescription{
   701  			Description: types.Description{
   702  				Label:   "Memory",
   703  				Summary: "Memory",
   704  			},
   705  			Key: "mem",
   706  		},
   707  		UnitInfo: &types.ElementDescription{
   708  			Description: types.Description{
   709  				Label:   "%",
   710  				Summary: "Percentage",
   711  			},
   712  			Key: "percent",
   713  		},
   714  		RollupType:          "none",
   715  		StatsType:           "absolute",
   716  		Level:               4,
   717  		PerDeviceLevel:      4,
   718  		AssociatedCounterId: nil,
   719  	},
   720  	{
   721  		Key: 24,
   722  		NameInfo: &types.ElementDescription{
   723  			Description: types.Description{
   724  				Label:   "Host consumed %",
   725  				Summary: "Percentage of host physical memory that has been consumed",
   726  			},
   727  			Key: "usage",
   728  		},
   729  		GroupInfo: &types.ElementDescription{
   730  			Description: types.Description{
   731  				Label:   "Memory",
   732  				Summary: "Memory",
   733  			},
   734  			Key: "mem",
   735  		},
   736  		UnitInfo: &types.ElementDescription{
   737  			Description: types.Description{
   738  				Label:   "%",
   739  				Summary: "Percentage",
   740  			},
   741  			Key: "percent",
   742  		},
   743  		RollupType:          "average",
   744  		StatsType:           "absolute",
   745  		Level:               1,
   746  		PerDeviceLevel:      3,
   747  		AssociatedCounterId: nil,
   748  	},
   749  	{
   750  		Key: 25,
   751  		NameInfo: &types.ElementDescription{
   752  			Description: types.Description{
   753  				Label:   "Host consumed %",
   754  				Summary: "Percentage of host physical memory that has been consumed",
   755  			},
   756  			Key: "usage",
   757  		},
   758  		GroupInfo: &types.ElementDescription{
   759  			Description: types.Description{
   760  				Label:   "Memory",
   761  				Summary: "Memory",
   762  			},
   763  			Key: "mem",
   764  		},
   765  		UnitInfo: &types.ElementDescription{
   766  			Description: types.Description{
   767  				Label:   "%",
   768  				Summary: "Percentage",
   769  			},
   770  			Key: "percent",
   771  		},
   772  		RollupType:          "minimum",
   773  		StatsType:           "absolute",
   774  		Level:               4,
   775  		PerDeviceLevel:      4,
   776  		AssociatedCounterId: nil,
   777  	},
   778  	{
   779  		Key: 26,
   780  		NameInfo: &types.ElementDescription{
   781  			Description: types.Description{
   782  				Label:   "Host consumed %",
   783  				Summary: "Percentage of host physical memory that has been consumed",
   784  			},
   785  			Key: "usage",
   786  		},
   787  		GroupInfo: &types.ElementDescription{
   788  			Description: types.Description{
   789  				Label:   "Memory",
   790  				Summary: "Memory",
   791  			},
   792  			Key: "mem",
   793  		},
   794  		UnitInfo: &types.ElementDescription{
   795  			Description: types.Description{
   796  				Label:   "%",
   797  				Summary: "Percentage",
   798  			},
   799  			Key: "percent",
   800  		},
   801  		RollupType:          "maximum",
   802  		StatsType:           "absolute",
   803  		Level:               4,
   804  		PerDeviceLevel:      4,
   805  		AssociatedCounterId: nil,
   806  	},
   807  	{
   808  		Key: 27,
   809  		NameInfo: &types.ElementDescription{
   810  			Description: types.Description{
   811  				Label:   "Reservation consumed",
   812  				Summary: "Memory reservation consumed by powered-on virtual machines",
   813  			},
   814  			Key: "reservedCapacity",
   815  		},
   816  		GroupInfo: &types.ElementDescription{
   817  			Description: types.Description{
   818  				Label:   "Memory",
   819  				Summary: "Memory",
   820  			},
   821  			Key: "mem",
   822  		},
   823  		UnitInfo: &types.ElementDescription{
   824  			Description: types.Description{
   825  				Label:   "MB",
   826  				Summary: "Megabyte",
   827  			},
   828  			Key: "megaBytes",
   829  		},
   830  		RollupType:          "average",
   831  		StatsType:           "absolute",
   832  		Level:               2,
   833  		PerDeviceLevel:      3,
   834  		AssociatedCounterId: nil,
   835  	},
   836  	{
   837  		Key: 28,
   838  		NameInfo: &types.ElementDescription{
   839  			Description: types.Description{
   840  				Label:   "Granted",
   841  				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
   842  			},
   843  			Key: "granted",
   844  		},
   845  		GroupInfo: &types.ElementDescription{
   846  			Description: types.Description{
   847  				Label:   "Memory",
   848  				Summary: "Memory",
   849  			},
   850  			Key: "mem",
   851  		},
   852  		UnitInfo: &types.ElementDescription{
   853  			Description: types.Description{
   854  				Label:   "KB",
   855  				Summary: "Kilobyte",
   856  			},
   857  			Key: "kiloBytes",
   858  		},
   859  		RollupType:          "none",
   860  		StatsType:           "absolute",
   861  		Level:               4,
   862  		PerDeviceLevel:      4,
   863  		AssociatedCounterId: nil,
   864  	},
   865  	{
   866  		Key: 29,
   867  		NameInfo: &types.ElementDescription{
   868  			Description: types.Description{
   869  				Label:   "Granted",
   870  				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
   871  			},
   872  			Key: "granted",
   873  		},
   874  		GroupInfo: &types.ElementDescription{
   875  			Description: types.Description{
   876  				Label:   "Memory",
   877  				Summary: "Memory",
   878  			},
   879  			Key: "mem",
   880  		},
   881  		UnitInfo: &types.ElementDescription{
   882  			Description: types.Description{
   883  				Label:   "KB",
   884  				Summary: "Kilobyte",
   885  			},
   886  			Key: "kiloBytes",
   887  		},
   888  		RollupType:          "average",
   889  		StatsType:           "absolute",
   890  		Level:               2,
   891  		PerDeviceLevel:      3,
   892  		AssociatedCounterId: nil,
   893  	},
   894  	{
   895  		Key: 30,
   896  		NameInfo: &types.ElementDescription{
   897  			Description: types.Description{
   898  				Label:   "Granted",
   899  				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
   900  			},
   901  			Key: "granted",
   902  		},
   903  		GroupInfo: &types.ElementDescription{
   904  			Description: types.Description{
   905  				Label:   "Memory",
   906  				Summary: "Memory",
   907  			},
   908  			Key: "mem",
   909  		},
   910  		UnitInfo: &types.ElementDescription{
   911  			Description: types.Description{
   912  				Label:   "KB",
   913  				Summary: "Kilobyte",
   914  			},
   915  			Key: "kiloBytes",
   916  		},
   917  		RollupType:          "minimum",
   918  		StatsType:           "absolute",
   919  		Level:               4,
   920  		PerDeviceLevel:      4,
   921  		AssociatedCounterId: nil,
   922  	},
   923  	{
   924  		Key: 31,
   925  		NameInfo: &types.ElementDescription{
   926  			Description: types.Description{
   927  				Label:   "Granted",
   928  				Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host",
   929  			},
   930  			Key: "granted",
   931  		},
   932  		GroupInfo: &types.ElementDescription{
   933  			Description: types.Description{
   934  				Label:   "Memory",
   935  				Summary: "Memory",
   936  			},
   937  			Key: "mem",
   938  		},
   939  		UnitInfo: &types.ElementDescription{
   940  			Description: types.Description{
   941  				Label:   "KB",
   942  				Summary: "Kilobyte",
   943  			},
   944  			Key: "kiloBytes",
   945  		},
   946  		RollupType:          "maximum",
   947  		StatsType:           "absolute",
   948  		Level:               4,
   949  		PerDeviceLevel:      4,
   950  		AssociatedCounterId: nil,
   951  	},
   952  	{
   953  		Key: 32,
   954  		NameInfo: &types.ElementDescription{
   955  			Description: types.Description{
   956  				Label:   "Active",
   957  				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
   958  			},
   959  			Key: "active",
   960  		},
   961  		GroupInfo: &types.ElementDescription{
   962  			Description: types.Description{
   963  				Label:   "Memory",
   964  				Summary: "Memory",
   965  			},
   966  			Key: "mem",
   967  		},
   968  		UnitInfo: &types.ElementDescription{
   969  			Description: types.Description{
   970  				Label:   "KB",
   971  				Summary: "Kilobyte",
   972  			},
   973  			Key: "kiloBytes",
   974  		},
   975  		RollupType:          "none",
   976  		StatsType:           "absolute",
   977  		Level:               4,
   978  		PerDeviceLevel:      4,
   979  		AssociatedCounterId: nil,
   980  	},
   981  	{
   982  		Key: 33,
   983  		NameInfo: &types.ElementDescription{
   984  			Description: types.Description{
   985  				Label:   "Active",
   986  				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
   987  			},
   988  			Key: "active",
   989  		},
   990  		GroupInfo: &types.ElementDescription{
   991  			Description: types.Description{
   992  				Label:   "Memory",
   993  				Summary: "Memory",
   994  			},
   995  			Key: "mem",
   996  		},
   997  		UnitInfo: &types.ElementDescription{
   998  			Description: types.Description{
   999  				Label:   "KB",
  1000  				Summary: "Kilobyte",
  1001  			},
  1002  			Key: "kiloBytes",
  1003  		},
  1004  		RollupType:          "average",
  1005  		StatsType:           "absolute",
  1006  		Level:               2,
  1007  		PerDeviceLevel:      3,
  1008  		AssociatedCounterId: nil,
  1009  	},
  1010  	{
  1011  		Key: 34,
  1012  		NameInfo: &types.ElementDescription{
  1013  			Description: types.Description{
  1014  				Label:   "Active",
  1015  				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
  1016  			},
  1017  			Key: "active",
  1018  		},
  1019  		GroupInfo: &types.ElementDescription{
  1020  			Description: types.Description{
  1021  				Label:   "Memory",
  1022  				Summary: "Memory",
  1023  			},
  1024  			Key: "mem",
  1025  		},
  1026  		UnitInfo: &types.ElementDescription{
  1027  			Description: types.Description{
  1028  				Label:   "KB",
  1029  				Summary: "Kilobyte",
  1030  			},
  1031  			Key: "kiloBytes",
  1032  		},
  1033  		RollupType:          "minimum",
  1034  		StatsType:           "absolute",
  1035  		Level:               4,
  1036  		PerDeviceLevel:      4,
  1037  		AssociatedCounterId: nil,
  1038  	},
  1039  	{
  1040  		Key: 35,
  1041  		NameInfo: &types.ElementDescription{
  1042  			Description: types.Description{
  1043  				Label:   "Active",
  1044  				Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi",
  1045  			},
  1046  			Key: "active",
  1047  		},
  1048  		GroupInfo: &types.ElementDescription{
  1049  			Description: types.Description{
  1050  				Label:   "Memory",
  1051  				Summary: "Memory",
  1052  			},
  1053  			Key: "mem",
  1054  		},
  1055  		UnitInfo: &types.ElementDescription{
  1056  			Description: types.Description{
  1057  				Label:   "KB",
  1058  				Summary: "Kilobyte",
  1059  			},
  1060  			Key: "kiloBytes",
  1061  		},
  1062  		RollupType:          "maximum",
  1063  		StatsType:           "absolute",
  1064  		Level:               4,
  1065  		PerDeviceLevel:      4,
  1066  		AssociatedCounterId: nil,
  1067  	},
  1068  	{
  1069  		Key: 36,
  1070  		NameInfo: &types.ElementDescription{
  1071  			Description: types.Description{
  1072  				Label:   "Shared",
  1073  				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
  1074  			},
  1075  			Key: "shared",
  1076  		},
  1077  		GroupInfo: &types.ElementDescription{
  1078  			Description: types.Description{
  1079  				Label:   "Memory",
  1080  				Summary: "Memory",
  1081  			},
  1082  			Key: "mem",
  1083  		},
  1084  		UnitInfo: &types.ElementDescription{
  1085  			Description: types.Description{
  1086  				Label:   "KB",
  1087  				Summary: "Kilobyte",
  1088  			},
  1089  			Key: "kiloBytes",
  1090  		},
  1091  		RollupType:          "none",
  1092  		StatsType:           "absolute",
  1093  		Level:               4,
  1094  		PerDeviceLevel:      4,
  1095  		AssociatedCounterId: nil,
  1096  	},
  1097  	{
  1098  		Key: 37,
  1099  		NameInfo: &types.ElementDescription{
  1100  			Description: types.Description{
  1101  				Label:   "Shared",
  1102  				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
  1103  			},
  1104  			Key: "shared",
  1105  		},
  1106  		GroupInfo: &types.ElementDescription{
  1107  			Description: types.Description{
  1108  				Label:   "Memory",
  1109  				Summary: "Memory",
  1110  			},
  1111  			Key: "mem",
  1112  		},
  1113  		UnitInfo: &types.ElementDescription{
  1114  			Description: types.Description{
  1115  				Label:   "KB",
  1116  				Summary: "Kilobyte",
  1117  			},
  1118  			Key: "kiloBytes",
  1119  		},
  1120  		RollupType:          "average",
  1121  		StatsType:           "absolute",
  1122  		Level:               2,
  1123  		PerDeviceLevel:      3,
  1124  		AssociatedCounterId: nil,
  1125  	},
  1126  	{
  1127  		Key: 38,
  1128  		NameInfo: &types.ElementDescription{
  1129  			Description: types.Description{
  1130  				Label:   "Shared",
  1131  				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
  1132  			},
  1133  			Key: "shared",
  1134  		},
  1135  		GroupInfo: &types.ElementDescription{
  1136  			Description: types.Description{
  1137  				Label:   "Memory",
  1138  				Summary: "Memory",
  1139  			},
  1140  			Key: "mem",
  1141  		},
  1142  		UnitInfo: &types.ElementDescription{
  1143  			Description: types.Description{
  1144  				Label:   "KB",
  1145  				Summary: "Kilobyte",
  1146  			},
  1147  			Key: "kiloBytes",
  1148  		},
  1149  		RollupType:          "minimum",
  1150  		StatsType:           "absolute",
  1151  		Level:               4,
  1152  		PerDeviceLevel:      4,
  1153  		AssociatedCounterId: nil,
  1154  	},
  1155  	{
  1156  		Key: 39,
  1157  		NameInfo: &types.ElementDescription{
  1158  			Description: types.Description{
  1159  				Label:   "Shared",
  1160  				Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines",
  1161  			},
  1162  			Key: "shared",
  1163  		},
  1164  		GroupInfo: &types.ElementDescription{
  1165  			Description: types.Description{
  1166  				Label:   "Memory",
  1167  				Summary: "Memory",
  1168  			},
  1169  			Key: "mem",
  1170  		},
  1171  		UnitInfo: &types.ElementDescription{
  1172  			Description: types.Description{
  1173  				Label:   "KB",
  1174  				Summary: "Kilobyte",
  1175  			},
  1176  			Key: "kiloBytes",
  1177  		},
  1178  		RollupType:          "maximum",
  1179  		StatsType:           "absolute",
  1180  		Level:               4,
  1181  		PerDeviceLevel:      4,
  1182  		AssociatedCounterId: nil,
  1183  	},
  1184  	{
  1185  		Key: 40,
  1186  		NameInfo: &types.ElementDescription{
  1187  			Description: types.Description{
  1188  				Label:   "Zero pages",
  1189  				Summary: "Guest physical memory pages whose content is 0x00",
  1190  			},
  1191  			Key: "zero",
  1192  		},
  1193  		GroupInfo: &types.ElementDescription{
  1194  			Description: types.Description{
  1195  				Label:   "Memory",
  1196  				Summary: "Memory",
  1197  			},
  1198  			Key: "mem",
  1199  		},
  1200  		UnitInfo: &types.ElementDescription{
  1201  			Description: types.Description{
  1202  				Label:   "KB",
  1203  				Summary: "Kilobyte",
  1204  			},
  1205  			Key: "kiloBytes",
  1206  		},
  1207  		RollupType:          "none",
  1208  		StatsType:           "absolute",
  1209  		Level:               4,
  1210  		PerDeviceLevel:      4,
  1211  		AssociatedCounterId: nil,
  1212  	},
  1213  	{
  1214  		Key: 41,
  1215  		NameInfo: &types.ElementDescription{
  1216  			Description: types.Description{
  1217  				Label:   "Zero pages",
  1218  				Summary: "Guest physical memory pages whose content is 0x00",
  1219  			},
  1220  			Key: "zero",
  1221  		},
  1222  		GroupInfo: &types.ElementDescription{
  1223  			Description: types.Description{
  1224  				Label:   "Memory",
  1225  				Summary: "Memory",
  1226  			},
  1227  			Key: "mem",
  1228  		},
  1229  		UnitInfo: &types.ElementDescription{
  1230  			Description: types.Description{
  1231  				Label:   "KB",
  1232  				Summary: "Kilobyte",
  1233  			},
  1234  			Key: "kiloBytes",
  1235  		},
  1236  		RollupType:          "average",
  1237  		StatsType:           "absolute",
  1238  		Level:               2,
  1239  		PerDeviceLevel:      3,
  1240  		AssociatedCounterId: nil,
  1241  	},
  1242  	{
  1243  		Key: 42,
  1244  		NameInfo: &types.ElementDescription{
  1245  			Description: types.Description{
  1246  				Label:   "Zero pages",
  1247  				Summary: "Guest physical memory pages whose content is 0x00",
  1248  			},
  1249  			Key: "zero",
  1250  		},
  1251  		GroupInfo: &types.ElementDescription{
  1252  			Description: types.Description{
  1253  				Label:   "Memory",
  1254  				Summary: "Memory",
  1255  			},
  1256  			Key: "mem",
  1257  		},
  1258  		UnitInfo: &types.ElementDescription{
  1259  			Description: types.Description{
  1260  				Label:   "KB",
  1261  				Summary: "Kilobyte",
  1262  			},
  1263  			Key: "kiloBytes",
  1264  		},
  1265  		RollupType:          "minimum",
  1266  		StatsType:           "absolute",
  1267  		Level:               4,
  1268  		PerDeviceLevel:      4,
  1269  		AssociatedCounterId: nil,
  1270  	},
  1271  	{
  1272  		Key: 43,
  1273  		NameInfo: &types.ElementDescription{
  1274  			Description: types.Description{
  1275  				Label:   "Zero pages",
  1276  				Summary: "Guest physical memory pages whose content is 0x00",
  1277  			},
  1278  			Key: "zero",
  1279  		},
  1280  		GroupInfo: &types.ElementDescription{
  1281  			Description: types.Description{
  1282  				Label:   "Memory",
  1283  				Summary: "Memory",
  1284  			},
  1285  			Key: "mem",
  1286  		},
  1287  		UnitInfo: &types.ElementDescription{
  1288  			Description: types.Description{
  1289  				Label:   "KB",
  1290  				Summary: "Kilobyte",
  1291  			},
  1292  			Key: "kiloBytes",
  1293  		},
  1294  		RollupType:          "maximum",
  1295  		StatsType:           "absolute",
  1296  		Level:               4,
  1297  		PerDeviceLevel:      4,
  1298  		AssociatedCounterId: nil,
  1299  	},
  1300  	{
  1301  		Key: 44,
  1302  		NameInfo: &types.ElementDescription{
  1303  			Description: types.Description{
  1304  				Label:   "Reservation available",
  1305  				Summary: "Amount by which reservation can be raised",
  1306  			},
  1307  			Key: "unreserved",
  1308  		},
  1309  		GroupInfo: &types.ElementDescription{
  1310  			Description: types.Description{
  1311  				Label:   "Memory",
  1312  				Summary: "Memory",
  1313  			},
  1314  			Key: "mem",
  1315  		},
  1316  		UnitInfo: &types.ElementDescription{
  1317  			Description: types.Description{
  1318  				Label:   "KB",
  1319  				Summary: "Kilobyte",
  1320  			},
  1321  			Key: "kiloBytes",
  1322  		},
  1323  		RollupType:          "none",
  1324  		StatsType:           "absolute",
  1325  		Level:               4,
  1326  		PerDeviceLevel:      4,
  1327  		AssociatedCounterId: nil,
  1328  	},
  1329  	{
  1330  		Key: 45,
  1331  		NameInfo: &types.ElementDescription{
  1332  			Description: types.Description{
  1333  				Label:   "Reservation available",
  1334  				Summary: "Amount by which reservation can be raised",
  1335  			},
  1336  			Key: "unreserved",
  1337  		},
  1338  		GroupInfo: &types.ElementDescription{
  1339  			Description: types.Description{
  1340  				Label:   "Memory",
  1341  				Summary: "Memory",
  1342  			},
  1343  			Key: "mem",
  1344  		},
  1345  		UnitInfo: &types.ElementDescription{
  1346  			Description: types.Description{
  1347  				Label:   "KB",
  1348  				Summary: "Kilobyte",
  1349  			},
  1350  			Key: "kiloBytes",
  1351  		},
  1352  		RollupType:          "average",
  1353  		StatsType:           "absolute",
  1354  		Level:               2,
  1355  		PerDeviceLevel:      3,
  1356  		AssociatedCounterId: nil,
  1357  	},
  1358  	{
  1359  		Key: 46,
  1360  		NameInfo: &types.ElementDescription{
  1361  			Description: types.Description{
  1362  				Label:   "Reservation available",
  1363  				Summary: "Amount by which reservation can be raised",
  1364  			},
  1365  			Key: "unreserved",
  1366  		},
  1367  		GroupInfo: &types.ElementDescription{
  1368  			Description: types.Description{
  1369  				Label:   "Memory",
  1370  				Summary: "Memory",
  1371  			},
  1372  			Key: "mem",
  1373  		},
  1374  		UnitInfo: &types.ElementDescription{
  1375  			Description: types.Description{
  1376  				Label:   "KB",
  1377  				Summary: "Kilobyte",
  1378  			},
  1379  			Key: "kiloBytes",
  1380  		},
  1381  		RollupType:          "minimum",
  1382  		StatsType:           "absolute",
  1383  		Level:               4,
  1384  		PerDeviceLevel:      4,
  1385  		AssociatedCounterId: nil,
  1386  	},
  1387  	{
  1388  		Key: 47,
  1389  		NameInfo: &types.ElementDescription{
  1390  			Description: types.Description{
  1391  				Label:   "Reservation available",
  1392  				Summary: "Amount by which reservation can be raised",
  1393  			},
  1394  			Key: "unreserved",
  1395  		},
  1396  		GroupInfo: &types.ElementDescription{
  1397  			Description: types.Description{
  1398  				Label:   "Memory",
  1399  				Summary: "Memory",
  1400  			},
  1401  			Key: "mem",
  1402  		},
  1403  		UnitInfo: &types.ElementDescription{
  1404  			Description: types.Description{
  1405  				Label:   "KB",
  1406  				Summary: "Kilobyte",
  1407  			},
  1408  			Key: "kiloBytes",
  1409  		},
  1410  		RollupType:          "maximum",
  1411  		StatsType:           "absolute",
  1412  		Level:               4,
  1413  		PerDeviceLevel:      4,
  1414  		AssociatedCounterId: nil,
  1415  	},
  1416  	{
  1417  		Key: 48,
  1418  		NameInfo: &types.ElementDescription{
  1419  			Description: types.Description{
  1420  				Label:   "Swap consumed",
  1421  				Summary: "Swap storage space consumed",
  1422  			},
  1423  			Key: "swapused",
  1424  		},
  1425  		GroupInfo: &types.ElementDescription{
  1426  			Description: types.Description{
  1427  				Label:   "Memory",
  1428  				Summary: "Memory",
  1429  			},
  1430  			Key: "mem",
  1431  		},
  1432  		UnitInfo: &types.ElementDescription{
  1433  			Description: types.Description{
  1434  				Label:   "KB",
  1435  				Summary: "Kilobyte",
  1436  			},
  1437  			Key: "kiloBytes",
  1438  		},
  1439  		RollupType:          "none",
  1440  		StatsType:           "absolute",
  1441  		Level:               4,
  1442  		PerDeviceLevel:      4,
  1443  		AssociatedCounterId: nil,
  1444  	},
  1445  	{
  1446  		Key: 49,
  1447  		NameInfo: &types.ElementDescription{
  1448  			Description: types.Description{
  1449  				Label:   "Swap consumed",
  1450  				Summary: "Swap storage space consumed",
  1451  			},
  1452  			Key: "swapused",
  1453  		},
  1454  		GroupInfo: &types.ElementDescription{
  1455  			Description: types.Description{
  1456  				Label:   "Memory",
  1457  				Summary: "Memory",
  1458  			},
  1459  			Key: "mem",
  1460  		},
  1461  		UnitInfo: &types.ElementDescription{
  1462  			Description: types.Description{
  1463  				Label:   "KB",
  1464  				Summary: "Kilobyte",
  1465  			},
  1466  			Key: "kiloBytes",
  1467  		},
  1468  		RollupType:          "average",
  1469  		StatsType:           "absolute",
  1470  		Level:               2,
  1471  		PerDeviceLevel:      3,
  1472  		AssociatedCounterId: nil,
  1473  	},
  1474  	{
  1475  		Key: 50,
  1476  		NameInfo: &types.ElementDescription{
  1477  			Description: types.Description{
  1478  				Label:   "Swap consumed",
  1479  				Summary: "Swap storage space consumed",
  1480  			},
  1481  			Key: "swapused",
  1482  		},
  1483  		GroupInfo: &types.ElementDescription{
  1484  			Description: types.Description{
  1485  				Label:   "Memory",
  1486  				Summary: "Memory",
  1487  			},
  1488  			Key: "mem",
  1489  		},
  1490  		UnitInfo: &types.ElementDescription{
  1491  			Description: types.Description{
  1492  				Label:   "KB",
  1493  				Summary: "Kilobyte",
  1494  			},
  1495  			Key: "kiloBytes",
  1496  		},
  1497  		RollupType:          "minimum",
  1498  		StatsType:           "absolute",
  1499  		Level:               4,
  1500  		PerDeviceLevel:      4,
  1501  		AssociatedCounterId: nil,
  1502  	},
  1503  	{
  1504  		Key: 51,
  1505  		NameInfo: &types.ElementDescription{
  1506  			Description: types.Description{
  1507  				Label:   "Swap consumed",
  1508  				Summary: "Swap storage space consumed",
  1509  			},
  1510  			Key: "swapused",
  1511  		},
  1512  		GroupInfo: &types.ElementDescription{
  1513  			Description: types.Description{
  1514  				Label:   "Memory",
  1515  				Summary: "Memory",
  1516  			},
  1517  			Key: "mem",
  1518  		},
  1519  		UnitInfo: &types.ElementDescription{
  1520  			Description: types.Description{
  1521  				Label:   "KB",
  1522  				Summary: "Kilobyte",
  1523  			},
  1524  			Key: "kiloBytes",
  1525  		},
  1526  		RollupType:          "maximum",
  1527  		StatsType:           "absolute",
  1528  		Level:               4,
  1529  		PerDeviceLevel:      4,
  1530  		AssociatedCounterId: nil,
  1531  	},
  1532  	{
  1533  		Key: 52,
  1534  		NameInfo: &types.ElementDescription{
  1535  			Description: types.Description{
  1536  				Label:   "swapunreserved",
  1537  				Summary: "swapunreserved",
  1538  			},
  1539  			Key: "swapunreserved",
  1540  		},
  1541  		GroupInfo: &types.ElementDescription{
  1542  			Description: types.Description{
  1543  				Label:   "Memory",
  1544  				Summary: "Memory",
  1545  			},
  1546  			Key: "mem",
  1547  		},
  1548  		UnitInfo: &types.ElementDescription{
  1549  			Description: types.Description{
  1550  				Label:   "KB",
  1551  				Summary: "Kilobyte",
  1552  			},
  1553  			Key: "kiloBytes",
  1554  		},
  1555  		RollupType:          "none",
  1556  		StatsType:           "absolute",
  1557  		Level:               4,
  1558  		PerDeviceLevel:      4,
  1559  		AssociatedCounterId: nil,
  1560  	},
  1561  	{
  1562  		Key: 53,
  1563  		NameInfo: &types.ElementDescription{
  1564  			Description: types.Description{
  1565  				Label:   "swapunreserved",
  1566  				Summary: "swapunreserved",
  1567  			},
  1568  			Key: "swapunreserved",
  1569  		},
  1570  		GroupInfo: &types.ElementDescription{
  1571  			Description: types.Description{
  1572  				Label:   "Memory",
  1573  				Summary: "Memory",
  1574  			},
  1575  			Key: "mem",
  1576  		},
  1577  		UnitInfo: &types.ElementDescription{
  1578  			Description: types.Description{
  1579  				Label:   "KB",
  1580  				Summary: "Kilobyte",
  1581  			},
  1582  			Key: "kiloBytes",
  1583  		},
  1584  		RollupType:          "average",
  1585  		StatsType:           "absolute",
  1586  		Level:               4,
  1587  		PerDeviceLevel:      4,
  1588  		AssociatedCounterId: nil,
  1589  	},
  1590  	{
  1591  		Key: 54,
  1592  		NameInfo: &types.ElementDescription{
  1593  			Description: types.Description{
  1594  				Label:   "swapunreserved",
  1595  				Summary: "swapunreserved",
  1596  			},
  1597  			Key: "swapunreserved",
  1598  		},
  1599  		GroupInfo: &types.ElementDescription{
  1600  			Description: types.Description{
  1601  				Label:   "Memory",
  1602  				Summary: "Memory",
  1603  			},
  1604  			Key: "mem",
  1605  		},
  1606  		UnitInfo: &types.ElementDescription{
  1607  			Description: types.Description{
  1608  				Label:   "KB",
  1609  				Summary: "Kilobyte",
  1610  			},
  1611  			Key: "kiloBytes",
  1612  		},
  1613  		RollupType:          "minimum",
  1614  		StatsType:           "absolute",
  1615  		Level:               4,
  1616  		PerDeviceLevel:      4,
  1617  		AssociatedCounterId: nil,
  1618  	},
  1619  	{
  1620  		Key: 55,
  1621  		NameInfo: &types.ElementDescription{
  1622  			Description: types.Description{
  1623  				Label:   "swapunreserved",
  1624  				Summary: "swapunreserved",
  1625  			},
  1626  			Key: "swapunreserved",
  1627  		},
  1628  		GroupInfo: &types.ElementDescription{
  1629  			Description: types.Description{
  1630  				Label:   "Memory",
  1631  				Summary: "Memory",
  1632  			},
  1633  			Key: "mem",
  1634  		},
  1635  		UnitInfo: &types.ElementDescription{
  1636  			Description: types.Description{
  1637  				Label:   "KB",
  1638  				Summary: "Kilobyte",
  1639  			},
  1640  			Key: "kiloBytes",
  1641  		},
  1642  		RollupType:          "maximum",
  1643  		StatsType:           "absolute",
  1644  		Level:               4,
  1645  		PerDeviceLevel:      4,
  1646  		AssociatedCounterId: nil,
  1647  	},
  1648  	{
  1649  		Key: 56,
  1650  		NameInfo: &types.ElementDescription{
  1651  			Description: types.Description{
  1652  				Label:   "Shared common",
  1653  				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
  1654  			},
  1655  			Key: "sharedcommon",
  1656  		},
  1657  		GroupInfo: &types.ElementDescription{
  1658  			Description: types.Description{
  1659  				Label:   "Memory",
  1660  				Summary: "Memory",
  1661  			},
  1662  			Key: "mem",
  1663  		},
  1664  		UnitInfo: &types.ElementDescription{
  1665  			Description: types.Description{
  1666  				Label:   "KB",
  1667  				Summary: "Kilobyte",
  1668  			},
  1669  			Key: "kiloBytes",
  1670  		},
  1671  		RollupType:          "none",
  1672  		StatsType:           "absolute",
  1673  		Level:               4,
  1674  		PerDeviceLevel:      4,
  1675  		AssociatedCounterId: nil,
  1676  	},
  1677  	{
  1678  		Key: 57,
  1679  		NameInfo: &types.ElementDescription{
  1680  			Description: types.Description{
  1681  				Label:   "Shared common",
  1682  				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
  1683  			},
  1684  			Key: "sharedcommon",
  1685  		},
  1686  		GroupInfo: &types.ElementDescription{
  1687  			Description: types.Description{
  1688  				Label:   "Memory",
  1689  				Summary: "Memory",
  1690  			},
  1691  			Key: "mem",
  1692  		},
  1693  		UnitInfo: &types.ElementDescription{
  1694  			Description: types.Description{
  1695  				Label:   "KB",
  1696  				Summary: "Kilobyte",
  1697  			},
  1698  			Key: "kiloBytes",
  1699  		},
  1700  		RollupType:          "average",
  1701  		StatsType:           "absolute",
  1702  		Level:               2,
  1703  		PerDeviceLevel:      3,
  1704  		AssociatedCounterId: nil,
  1705  	},
  1706  	{
  1707  		Key: 58,
  1708  		NameInfo: &types.ElementDescription{
  1709  			Description: types.Description{
  1710  				Label:   "Shared common",
  1711  				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
  1712  			},
  1713  			Key: "sharedcommon",
  1714  		},
  1715  		GroupInfo: &types.ElementDescription{
  1716  			Description: types.Description{
  1717  				Label:   "Memory",
  1718  				Summary: "Memory",
  1719  			},
  1720  			Key: "mem",
  1721  		},
  1722  		UnitInfo: &types.ElementDescription{
  1723  			Description: types.Description{
  1724  				Label:   "KB",
  1725  				Summary: "Kilobyte",
  1726  			},
  1727  			Key: "kiloBytes",
  1728  		},
  1729  		RollupType:          "minimum",
  1730  		StatsType:           "absolute",
  1731  		Level:               4,
  1732  		PerDeviceLevel:      4,
  1733  		AssociatedCounterId: nil,
  1734  	},
  1735  	{
  1736  		Key: 59,
  1737  		NameInfo: &types.ElementDescription{
  1738  			Description: types.Description{
  1739  				Label:   "Shared common",
  1740  				Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)",
  1741  			},
  1742  			Key: "sharedcommon",
  1743  		},
  1744  		GroupInfo: &types.ElementDescription{
  1745  			Description: types.Description{
  1746  				Label:   "Memory",
  1747  				Summary: "Memory",
  1748  			},
  1749  			Key: "mem",
  1750  		},
  1751  		UnitInfo: &types.ElementDescription{
  1752  			Description: types.Description{
  1753  				Label:   "KB",
  1754  				Summary: "Kilobyte",
  1755  			},
  1756  			Key: "kiloBytes",
  1757  		},
  1758  		RollupType:          "maximum",
  1759  		StatsType:           "absolute",
  1760  		Level:               4,
  1761  		PerDeviceLevel:      4,
  1762  		AssociatedCounterId: nil,
  1763  	},
  1764  	{
  1765  		Key: 60,
  1766  		NameInfo: &types.ElementDescription{
  1767  			Description: types.Description{
  1768  				Label:   "Heap",
  1769  				Summary: "Virtual address space of ESXi that is dedicated to its heap",
  1770  			},
  1771  			Key: "heap",
  1772  		},
  1773  		GroupInfo: &types.ElementDescription{
  1774  			Description: types.Description{
  1775  				Label:   "Memory",
  1776  				Summary: "Memory",
  1777  			},
  1778  			Key: "mem",
  1779  		},
  1780  		UnitInfo: &types.ElementDescription{
  1781  			Description: types.Description{
  1782  				Label:   "KB",
  1783  				Summary: "Kilobyte",
  1784  			},
  1785  			Key: "kiloBytes",
  1786  		},
  1787  		RollupType:          "none",
  1788  		StatsType:           "absolute",
  1789  		Level:               4,
  1790  		PerDeviceLevel:      4,
  1791  		AssociatedCounterId: nil,
  1792  	},
  1793  	{
  1794  		Key: 61,
  1795  		NameInfo: &types.ElementDescription{
  1796  			Description: types.Description{
  1797  				Label:   "Heap",
  1798  				Summary: "Virtual address space of ESXi that is dedicated to its heap",
  1799  			},
  1800  			Key: "heap",
  1801  		},
  1802  		GroupInfo: &types.ElementDescription{
  1803  			Description: types.Description{
  1804  				Label:   "Memory",
  1805  				Summary: "Memory",
  1806  			},
  1807  			Key: "mem",
  1808  		},
  1809  		UnitInfo: &types.ElementDescription{
  1810  			Description: types.Description{
  1811  				Label:   "KB",
  1812  				Summary: "Kilobyte",
  1813  			},
  1814  			Key: "kiloBytes",
  1815  		},
  1816  		RollupType:          "average",
  1817  		StatsType:           "absolute",
  1818  		Level:               4,
  1819  		PerDeviceLevel:      4,
  1820  		AssociatedCounterId: nil,
  1821  	},
  1822  	{
  1823  		Key: 62,
  1824  		NameInfo: &types.ElementDescription{
  1825  			Description: types.Description{
  1826  				Label:   "Heap",
  1827  				Summary: "Virtual address space of ESXi that is dedicated to its heap",
  1828  			},
  1829  			Key: "heap",
  1830  		},
  1831  		GroupInfo: &types.ElementDescription{
  1832  			Description: types.Description{
  1833  				Label:   "Memory",
  1834  				Summary: "Memory",
  1835  			},
  1836  			Key: "mem",
  1837  		},
  1838  		UnitInfo: &types.ElementDescription{
  1839  			Description: types.Description{
  1840  				Label:   "KB",
  1841  				Summary: "Kilobyte",
  1842  			},
  1843  			Key: "kiloBytes",
  1844  		},
  1845  		RollupType:          "minimum",
  1846  		StatsType:           "absolute",
  1847  		Level:               4,
  1848  		PerDeviceLevel:      4,
  1849  		AssociatedCounterId: nil,
  1850  	},
  1851  	{
  1852  		Key: 63,
  1853  		NameInfo: &types.ElementDescription{
  1854  			Description: types.Description{
  1855  				Label:   "Heap",
  1856  				Summary: "Virtual address space of ESXi that is dedicated to its heap",
  1857  			},
  1858  			Key: "heap",
  1859  		},
  1860  		GroupInfo: &types.ElementDescription{
  1861  			Description: types.Description{
  1862  				Label:   "Memory",
  1863  				Summary: "Memory",
  1864  			},
  1865  			Key: "mem",
  1866  		},
  1867  		UnitInfo: &types.ElementDescription{
  1868  			Description: types.Description{
  1869  				Label:   "KB",
  1870  				Summary: "Kilobyte",
  1871  			},
  1872  			Key: "kiloBytes",
  1873  		},
  1874  		RollupType:          "maximum",
  1875  		StatsType:           "absolute",
  1876  		Level:               4,
  1877  		PerDeviceLevel:      4,
  1878  		AssociatedCounterId: nil,
  1879  	},
  1880  	{
  1881  		Key: 64,
  1882  		NameInfo: &types.ElementDescription{
  1883  			Description: types.Description{
  1884  				Label:   "Heap free",
  1885  				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
  1886  			},
  1887  			Key: "heapfree",
  1888  		},
  1889  		GroupInfo: &types.ElementDescription{
  1890  			Description: types.Description{
  1891  				Label:   "Memory",
  1892  				Summary: "Memory",
  1893  			},
  1894  			Key: "mem",
  1895  		},
  1896  		UnitInfo: &types.ElementDescription{
  1897  			Description: types.Description{
  1898  				Label:   "KB",
  1899  				Summary: "Kilobyte",
  1900  			},
  1901  			Key: "kiloBytes",
  1902  		},
  1903  		RollupType:          "none",
  1904  		StatsType:           "absolute",
  1905  		Level:               4,
  1906  		PerDeviceLevel:      4,
  1907  		AssociatedCounterId: nil,
  1908  	},
  1909  	{
  1910  		Key: 65,
  1911  		NameInfo: &types.ElementDescription{
  1912  			Description: types.Description{
  1913  				Label:   "Heap free",
  1914  				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
  1915  			},
  1916  			Key: "heapfree",
  1917  		},
  1918  		GroupInfo: &types.ElementDescription{
  1919  			Description: types.Description{
  1920  				Label:   "Memory",
  1921  				Summary: "Memory",
  1922  			},
  1923  			Key: "mem",
  1924  		},
  1925  		UnitInfo: &types.ElementDescription{
  1926  			Description: types.Description{
  1927  				Label:   "KB",
  1928  				Summary: "Kilobyte",
  1929  			},
  1930  			Key: "kiloBytes",
  1931  		},
  1932  		RollupType:          "average",
  1933  		StatsType:           "absolute",
  1934  		Level:               4,
  1935  		PerDeviceLevel:      4,
  1936  		AssociatedCounterId: nil,
  1937  	},
  1938  	{
  1939  		Key: 66,
  1940  		NameInfo: &types.ElementDescription{
  1941  			Description: types.Description{
  1942  				Label:   "Heap free",
  1943  				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
  1944  			},
  1945  			Key: "heapfree",
  1946  		},
  1947  		GroupInfo: &types.ElementDescription{
  1948  			Description: types.Description{
  1949  				Label:   "Memory",
  1950  				Summary: "Memory",
  1951  			},
  1952  			Key: "mem",
  1953  		},
  1954  		UnitInfo: &types.ElementDescription{
  1955  			Description: types.Description{
  1956  				Label:   "KB",
  1957  				Summary: "Kilobyte",
  1958  			},
  1959  			Key: "kiloBytes",
  1960  		},
  1961  		RollupType:          "minimum",
  1962  		StatsType:           "absolute",
  1963  		Level:               4,
  1964  		PerDeviceLevel:      4,
  1965  		AssociatedCounterId: nil,
  1966  	},
  1967  	{
  1968  		Key: 67,
  1969  		NameInfo: &types.ElementDescription{
  1970  			Description: types.Description{
  1971  				Label:   "Heap free",
  1972  				Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap",
  1973  			},
  1974  			Key: "heapfree",
  1975  		},
  1976  		GroupInfo: &types.ElementDescription{
  1977  			Description: types.Description{
  1978  				Label:   "Memory",
  1979  				Summary: "Memory",
  1980  			},
  1981  			Key: "mem",
  1982  		},
  1983  		UnitInfo: &types.ElementDescription{
  1984  			Description: types.Description{
  1985  				Label:   "KB",
  1986  				Summary: "Kilobyte",
  1987  			},
  1988  			Key: "kiloBytes",
  1989  		},
  1990  		RollupType:          "maximum",
  1991  		StatsType:           "absolute",
  1992  		Level:               4,
  1993  		PerDeviceLevel:      4,
  1994  		AssociatedCounterId: nil,
  1995  	},
  1996  	{
  1997  		Key: 68,
  1998  		NameInfo: &types.ElementDescription{
  1999  			Description: types.Description{
  2000  				Label:   "Free state",
  2001  				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",
  2002  			},
  2003  			Key: "state",
  2004  		},
  2005  		GroupInfo: &types.ElementDescription{
  2006  			Description: types.Description{
  2007  				Label:   "Memory",
  2008  				Summary: "Memory",
  2009  			},
  2010  			Key: "mem",
  2011  		},
  2012  		UnitInfo: &types.ElementDescription{
  2013  			Description: types.Description{
  2014  				Label:   "num",
  2015  				Summary: "Number",
  2016  			},
  2017  			Key: "number",
  2018  		},
  2019  		RollupType:          "latest",
  2020  		StatsType:           "absolute",
  2021  		Level:               2,
  2022  		PerDeviceLevel:      3,
  2023  		AssociatedCounterId: nil,
  2024  	},
  2025  	{
  2026  		Key: 69,
  2027  		NameInfo: &types.ElementDescription{
  2028  			Description: types.Description{
  2029  				Label:   "Swapped",
  2030  				Summary: "Amount of guest physical memory that is swapped out to the swap space",
  2031  			},
  2032  			Key: "swapped",
  2033  		},
  2034  		GroupInfo: &types.ElementDescription{
  2035  			Description: types.Description{
  2036  				Label:   "Memory",
  2037  				Summary: "Memory",
  2038  			},
  2039  			Key: "mem",
  2040  		},
  2041  		UnitInfo: &types.ElementDescription{
  2042  			Description: types.Description{
  2043  				Label:   "KB",
  2044  				Summary: "Kilobyte",
  2045  			},
  2046  			Key: "kiloBytes",
  2047  		},
  2048  		RollupType:          "none",
  2049  		StatsType:           "absolute",
  2050  		Level:               4,
  2051  		PerDeviceLevel:      4,
  2052  		AssociatedCounterId: nil,
  2053  	},
  2054  	{
  2055  		Key: 70,
  2056  		NameInfo: &types.ElementDescription{
  2057  			Description: types.Description{
  2058  				Label:   "Swapped",
  2059  				Summary: "Amount of guest physical memory that is swapped out to the swap space",
  2060  			},
  2061  			Key: "swapped",
  2062  		},
  2063  		GroupInfo: &types.ElementDescription{
  2064  			Description: types.Description{
  2065  				Label:   "Memory",
  2066  				Summary: "Memory",
  2067  			},
  2068  			Key: "mem",
  2069  		},
  2070  		UnitInfo: &types.ElementDescription{
  2071  			Description: types.Description{
  2072  				Label:   "KB",
  2073  				Summary: "Kilobyte",
  2074  			},
  2075  			Key: "kiloBytes",
  2076  		},
  2077  		RollupType:          "average",
  2078  		StatsType:           "absolute",
  2079  		Level:               2,
  2080  		PerDeviceLevel:      3,
  2081  		AssociatedCounterId: nil,
  2082  	},
  2083  	{
  2084  		Key: 71,
  2085  		NameInfo: &types.ElementDescription{
  2086  			Description: types.Description{
  2087  				Label:   "Swapped",
  2088  				Summary: "Amount of guest physical memory that is swapped out to the swap space",
  2089  			},
  2090  			Key: "swapped",
  2091  		},
  2092  		GroupInfo: &types.ElementDescription{
  2093  			Description: types.Description{
  2094  				Label:   "Memory",
  2095  				Summary: "Memory",
  2096  			},
  2097  			Key: "mem",
  2098  		},
  2099  		UnitInfo: &types.ElementDescription{
  2100  			Description: types.Description{
  2101  				Label:   "KB",
  2102  				Summary: "Kilobyte",
  2103  			},
  2104  			Key: "kiloBytes",
  2105  		},
  2106  		RollupType:          "minimum",
  2107  		StatsType:           "absolute",
  2108  		Level:               4,
  2109  		PerDeviceLevel:      4,
  2110  		AssociatedCounterId: nil,
  2111  	},
  2112  	{
  2113  		Key: 72,
  2114  		NameInfo: &types.ElementDescription{
  2115  			Description: types.Description{
  2116  				Label:   "Swapped",
  2117  				Summary: "Amount of guest physical memory that is swapped out to the swap space",
  2118  			},
  2119  			Key: "swapped",
  2120  		},
  2121  		GroupInfo: &types.ElementDescription{
  2122  			Description: types.Description{
  2123  				Label:   "Memory",
  2124  				Summary: "Memory",
  2125  			},
  2126  			Key: "mem",
  2127  		},
  2128  		UnitInfo: &types.ElementDescription{
  2129  			Description: types.Description{
  2130  				Label:   "KB",
  2131  				Summary: "Kilobyte",
  2132  			},
  2133  			Key: "kiloBytes",
  2134  		},
  2135  		RollupType:          "maximum",
  2136  		StatsType:           "absolute",
  2137  		Level:               4,
  2138  		PerDeviceLevel:      4,
  2139  		AssociatedCounterId: nil,
  2140  	},
  2141  	{
  2142  		Key: 73,
  2143  		NameInfo: &types.ElementDescription{
  2144  			Description: types.Description{
  2145  				Label:   "Swap target",
  2146  				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
  2147  			},
  2148  			Key: "swaptarget",
  2149  		},
  2150  		GroupInfo: &types.ElementDescription{
  2151  			Description: types.Description{
  2152  				Label:   "Memory",
  2153  				Summary: "Memory",
  2154  			},
  2155  			Key: "mem",
  2156  		},
  2157  		UnitInfo: &types.ElementDescription{
  2158  			Description: types.Description{
  2159  				Label:   "KB",
  2160  				Summary: "Kilobyte",
  2161  			},
  2162  			Key: "kiloBytes",
  2163  		},
  2164  		RollupType:          "none",
  2165  		StatsType:           "absolute",
  2166  		Level:               4,
  2167  		PerDeviceLevel:      4,
  2168  		AssociatedCounterId: nil,
  2169  	},
  2170  	{
  2171  		Key: 74,
  2172  		NameInfo: &types.ElementDescription{
  2173  			Description: types.Description{
  2174  				Label:   "Swap target",
  2175  				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
  2176  			},
  2177  			Key: "swaptarget",
  2178  		},
  2179  		GroupInfo: &types.ElementDescription{
  2180  			Description: types.Description{
  2181  				Label:   "Memory",
  2182  				Summary: "Memory",
  2183  			},
  2184  			Key: "mem",
  2185  		},
  2186  		UnitInfo: &types.ElementDescription{
  2187  			Description: types.Description{
  2188  				Label:   "KB",
  2189  				Summary: "Kilobyte",
  2190  			},
  2191  			Key: "kiloBytes",
  2192  		},
  2193  		RollupType:          "average",
  2194  		StatsType:           "absolute",
  2195  		Level:               2,
  2196  		PerDeviceLevel:      3,
  2197  		AssociatedCounterId: nil,
  2198  	},
  2199  	{
  2200  		Key: 75,
  2201  		NameInfo: &types.ElementDescription{
  2202  			Description: types.Description{
  2203  				Label:   "Swap target",
  2204  				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
  2205  			},
  2206  			Key: "swaptarget",
  2207  		},
  2208  		GroupInfo: &types.ElementDescription{
  2209  			Description: types.Description{
  2210  				Label:   "Memory",
  2211  				Summary: "Memory",
  2212  			},
  2213  			Key: "mem",
  2214  		},
  2215  		UnitInfo: &types.ElementDescription{
  2216  			Description: types.Description{
  2217  				Label:   "KB",
  2218  				Summary: "Kilobyte",
  2219  			},
  2220  			Key: "kiloBytes",
  2221  		},
  2222  		RollupType:          "minimum",
  2223  		StatsType:           "absolute",
  2224  		Level:               4,
  2225  		PerDeviceLevel:      4,
  2226  		AssociatedCounterId: nil,
  2227  	},
  2228  	{
  2229  		Key: 76,
  2230  		NameInfo: &types.ElementDescription{
  2231  			Description: types.Description{
  2232  				Label:   "Swap target",
  2233  				Summary: "Amount of memory that ESXi needs to reclaim by swapping",
  2234  			},
  2235  			Key: "swaptarget",
  2236  		},
  2237  		GroupInfo: &types.ElementDescription{
  2238  			Description: types.Description{
  2239  				Label:   "Memory",
  2240  				Summary: "Memory",
  2241  			},
  2242  			Key: "mem",
  2243  		},
  2244  		UnitInfo: &types.ElementDescription{
  2245  			Description: types.Description{
  2246  				Label:   "KB",
  2247  				Summary: "Kilobyte",
  2248  			},
  2249  			Key: "kiloBytes",
  2250  		},
  2251  		RollupType:          "maximum",
  2252  		StatsType:           "absolute",
  2253  		Level:               4,
  2254  		PerDeviceLevel:      4,
  2255  		AssociatedCounterId: nil,
  2256  	},
  2257  	{
  2258  		Key: 77,
  2259  		NameInfo: &types.ElementDescription{
  2260  			Description: types.Description{
  2261  				Label:   "swapIn",
  2262  				Summary: "swapIn",
  2263  			},
  2264  			Key: "swapIn",
  2265  		},
  2266  		GroupInfo: &types.ElementDescription{
  2267  			Description: types.Description{
  2268  				Label:   "Memory",
  2269  				Summary: "Memory",
  2270  			},
  2271  			Key: "mem",
  2272  		},
  2273  		UnitInfo: &types.ElementDescription{
  2274  			Description: types.Description{
  2275  				Label:   "KB",
  2276  				Summary: "Kilobyte",
  2277  			},
  2278  			Key: "kiloBytes",
  2279  		},
  2280  		RollupType:          "none",
  2281  		StatsType:           "absolute",
  2282  		Level:               4,
  2283  		PerDeviceLevel:      4,
  2284  		AssociatedCounterId: nil,
  2285  	},
  2286  	{
  2287  		Key: 78,
  2288  		NameInfo: &types.ElementDescription{
  2289  			Description: types.Description{
  2290  				Label:   "swapIn",
  2291  				Summary: "swapIn",
  2292  			},
  2293  			Key: "swapIn",
  2294  		},
  2295  		GroupInfo: &types.ElementDescription{
  2296  			Description: types.Description{
  2297  				Label:   "Memory",
  2298  				Summary: "Memory",
  2299  			},
  2300  			Key: "mem",
  2301  		},
  2302  		UnitInfo: &types.ElementDescription{
  2303  			Description: types.Description{
  2304  				Label:   "KB",
  2305  				Summary: "Kilobyte",
  2306  			},
  2307  			Key: "kiloBytes",
  2308  		},
  2309  		RollupType:          "average",
  2310  		StatsType:           "absolute",
  2311  		Level:               2,
  2312  		PerDeviceLevel:      3,
  2313  		AssociatedCounterId: nil,
  2314  	},
  2315  	{
  2316  		Key: 79,
  2317  		NameInfo: &types.ElementDescription{
  2318  			Description: types.Description{
  2319  				Label:   "swapIn",
  2320  				Summary: "swapIn",
  2321  			},
  2322  			Key: "swapIn",
  2323  		},
  2324  		GroupInfo: &types.ElementDescription{
  2325  			Description: types.Description{
  2326  				Label:   "Memory",
  2327  				Summary: "Memory",
  2328  			},
  2329  			Key: "mem",
  2330  		},
  2331  		UnitInfo: &types.ElementDescription{
  2332  			Description: types.Description{
  2333  				Label:   "KB",
  2334  				Summary: "Kilobyte",
  2335  			},
  2336  			Key: "kiloBytes",
  2337  		},
  2338  		RollupType:          "minimum",
  2339  		StatsType:           "absolute",
  2340  		Level:               4,
  2341  		PerDeviceLevel:      4,
  2342  		AssociatedCounterId: nil,
  2343  	},
  2344  	{
  2345  		Key: 80,
  2346  		NameInfo: &types.ElementDescription{
  2347  			Description: types.Description{
  2348  				Label:   "swapIn",
  2349  				Summary: "swapIn",
  2350  			},
  2351  			Key: "swapIn",
  2352  		},
  2353  		GroupInfo: &types.ElementDescription{
  2354  			Description: types.Description{
  2355  				Label:   "Memory",
  2356  				Summary: "Memory",
  2357  			},
  2358  			Key: "mem",
  2359  		},
  2360  		UnitInfo: &types.ElementDescription{
  2361  			Description: types.Description{
  2362  				Label:   "KB",
  2363  				Summary: "Kilobyte",
  2364  			},
  2365  			Key: "kiloBytes",
  2366  		},
  2367  		RollupType:          "maximum",
  2368  		StatsType:           "absolute",
  2369  		Level:               4,
  2370  		PerDeviceLevel:      4,
  2371  		AssociatedCounterId: nil,
  2372  	},
  2373  	{
  2374  		Key: 81,
  2375  		NameInfo: &types.ElementDescription{
  2376  			Description: types.Description{
  2377  				Label:   "swapOut",
  2378  				Summary: "swapOut",
  2379  			},
  2380  			Key: "swapOut",
  2381  		},
  2382  		GroupInfo: &types.ElementDescription{
  2383  			Description: types.Description{
  2384  				Label:   "Memory",
  2385  				Summary: "Memory",
  2386  			},
  2387  			Key: "mem",
  2388  		},
  2389  		UnitInfo: &types.ElementDescription{
  2390  			Description: types.Description{
  2391  				Label:   "KB",
  2392  				Summary: "Kilobyte",
  2393  			},
  2394  			Key: "kiloBytes",
  2395  		},
  2396  		RollupType:          "none",
  2397  		StatsType:           "absolute",
  2398  		Level:               4,
  2399  		PerDeviceLevel:      4,
  2400  		AssociatedCounterId: nil,
  2401  	},
  2402  	{
  2403  		Key: 82,
  2404  		NameInfo: &types.ElementDescription{
  2405  			Description: types.Description{
  2406  				Label:   "swapOut",
  2407  				Summary: "swapOut",
  2408  			},
  2409  			Key: "swapOut",
  2410  		},
  2411  		GroupInfo: &types.ElementDescription{
  2412  			Description: types.Description{
  2413  				Label:   "Memory",
  2414  				Summary: "Memory",
  2415  			},
  2416  			Key: "mem",
  2417  		},
  2418  		UnitInfo: &types.ElementDescription{
  2419  			Description: types.Description{
  2420  				Label:   "KB",
  2421  				Summary: "Kilobyte",
  2422  			},
  2423  			Key: "kiloBytes",
  2424  		},
  2425  		RollupType:          "average",
  2426  		StatsType:           "absolute",
  2427  		Level:               2,
  2428  		PerDeviceLevel:      3,
  2429  		AssociatedCounterId: nil,
  2430  	},
  2431  	{
  2432  		Key: 83,
  2433  		NameInfo: &types.ElementDescription{
  2434  			Description: types.Description{
  2435  				Label:   "swapOut",
  2436  				Summary: "swapOut",
  2437  			},
  2438  			Key: "swapOut",
  2439  		},
  2440  		GroupInfo: &types.ElementDescription{
  2441  			Description: types.Description{
  2442  				Label:   "Memory",
  2443  				Summary: "Memory",
  2444  			},
  2445  			Key: "mem",
  2446  		},
  2447  		UnitInfo: &types.ElementDescription{
  2448  			Description: types.Description{
  2449  				Label:   "KB",
  2450  				Summary: "Kilobyte",
  2451  			},
  2452  			Key: "kiloBytes",
  2453  		},
  2454  		RollupType:          "minimum",
  2455  		StatsType:           "absolute",
  2456  		Level:               4,
  2457  		PerDeviceLevel:      4,
  2458  		AssociatedCounterId: nil,
  2459  	},
  2460  	{
  2461  		Key: 84,
  2462  		NameInfo: &types.ElementDescription{
  2463  			Description: types.Description{
  2464  				Label:   "swapOut",
  2465  				Summary: "swapOut",
  2466  			},
  2467  			Key: "swapOut",
  2468  		},
  2469  		GroupInfo: &types.ElementDescription{
  2470  			Description: types.Description{
  2471  				Label:   "Memory",
  2472  				Summary: "Memory",
  2473  			},
  2474  			Key: "mem",
  2475  		},
  2476  		UnitInfo: &types.ElementDescription{
  2477  			Description: types.Description{
  2478  				Label:   "KB",
  2479  				Summary: "Kilobyte",
  2480  			},
  2481  			Key: "kiloBytes",
  2482  		},
  2483  		RollupType:          "maximum",
  2484  		StatsType:           "absolute",
  2485  		Level:               4,
  2486  		PerDeviceLevel:      4,
  2487  		AssociatedCounterId: nil,
  2488  	},
  2489  	{
  2490  		Key: 85,
  2491  		NameInfo: &types.ElementDescription{
  2492  			Description: types.Description{
  2493  				Label:   "Swap in rate",
  2494  				Summary: "Rate at which guest physical memory is swapped in from the swap space",
  2495  			},
  2496  			Key: "swapinRate",
  2497  		},
  2498  		GroupInfo: &types.ElementDescription{
  2499  			Description: types.Description{
  2500  				Label:   "Memory",
  2501  				Summary: "Memory",
  2502  			},
  2503  			Key: "mem",
  2504  		},
  2505  		UnitInfo: &types.ElementDescription{
  2506  			Description: types.Description{
  2507  				Label:   "KBps",
  2508  				Summary: "Kilobytes per second",
  2509  			},
  2510  			Key: "kiloBytesPerSecond",
  2511  		},
  2512  		RollupType:          "average",
  2513  		StatsType:           "rate",
  2514  		Level:               1,
  2515  		PerDeviceLevel:      3,
  2516  		AssociatedCounterId: nil,
  2517  	},
  2518  	{
  2519  		Key: 86,
  2520  		NameInfo: &types.ElementDescription{
  2521  			Description: types.Description{
  2522  				Label:   "Swap out rate",
  2523  				Summary: "Rate at which guest physical memory is swapped out to the swap space",
  2524  			},
  2525  			Key: "swapoutRate",
  2526  		},
  2527  		GroupInfo: &types.ElementDescription{
  2528  			Description: types.Description{
  2529  				Label:   "Memory",
  2530  				Summary: "Memory",
  2531  			},
  2532  			Key: "mem",
  2533  		},
  2534  		UnitInfo: &types.ElementDescription{
  2535  			Description: types.Description{
  2536  				Label:   "KBps",
  2537  				Summary: "Kilobytes per second",
  2538  			},
  2539  			Key: "kiloBytesPerSecond",
  2540  		},
  2541  		RollupType:          "average",
  2542  		StatsType:           "rate",
  2543  		Level:               1,
  2544  		PerDeviceLevel:      3,
  2545  		AssociatedCounterId: nil,
  2546  	},
  2547  	{
  2548  		Key: 87,
  2549  		NameInfo: &types.ElementDescription{
  2550  			Description: types.Description{
  2551  				Label:   "Memory swap out",
  2552  				Summary: "Amount of memory that is swapped out for the Service Console",
  2553  			},
  2554  			Key: "swapOut",
  2555  		},
  2556  		GroupInfo: &types.ElementDescription{
  2557  			Description: types.Description{
  2558  				Label:   "Management agent",
  2559  				Summary: "Management agent",
  2560  			},
  2561  			Key: "managementAgent",
  2562  		},
  2563  		UnitInfo: &types.ElementDescription{
  2564  			Description: types.Description{
  2565  				Label:   "KBps",
  2566  				Summary: "Kilobytes per second",
  2567  			},
  2568  			Key: "kiloBytesPerSecond",
  2569  		},
  2570  		RollupType:          "average",
  2571  		StatsType:           "rate",
  2572  		Level:               3,
  2573  		PerDeviceLevel:      3,
  2574  		AssociatedCounterId: nil,
  2575  	},
  2576  	{
  2577  		Key: 88,
  2578  		NameInfo: &types.ElementDescription{
  2579  			Description: types.Description{
  2580  				Label:   "Memory swap in",
  2581  				Summary: "Amount of memory that is swapped in for the Service Console",
  2582  			},
  2583  			Key: "swapIn",
  2584  		},
  2585  		GroupInfo: &types.ElementDescription{
  2586  			Description: types.Description{
  2587  				Label:   "Management agent",
  2588  				Summary: "Management agent",
  2589  			},
  2590  			Key: "managementAgent",
  2591  		},
  2592  		UnitInfo: &types.ElementDescription{
  2593  			Description: types.Description{
  2594  				Label:   "KBps",
  2595  				Summary: "Kilobytes per second",
  2596  			},
  2597  			Key: "kiloBytesPerSecond",
  2598  		},
  2599  		RollupType:          "average",
  2600  		StatsType:           "rate",
  2601  		Level:               3,
  2602  		PerDeviceLevel:      3,
  2603  		AssociatedCounterId: nil,
  2604  	},
  2605  	{
  2606  		Key: 89,
  2607  		NameInfo: &types.ElementDescription{
  2608  			Description: types.Description{
  2609  				Label:   "Ballooned memory",
  2610  				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
  2611  			},
  2612  			Key: "vmmemctl",
  2613  		},
  2614  		GroupInfo: &types.ElementDescription{
  2615  			Description: types.Description{
  2616  				Label:   "Memory",
  2617  				Summary: "Memory",
  2618  			},
  2619  			Key: "mem",
  2620  		},
  2621  		UnitInfo: &types.ElementDescription{
  2622  			Description: types.Description{
  2623  				Label:   "KB",
  2624  				Summary: "Kilobyte",
  2625  			},
  2626  			Key: "kiloBytes",
  2627  		},
  2628  		RollupType:          "none",
  2629  		StatsType:           "absolute",
  2630  		Level:               4,
  2631  		PerDeviceLevel:      4,
  2632  		AssociatedCounterId: nil,
  2633  	},
  2634  	{
  2635  		Key: 90,
  2636  		NameInfo: &types.ElementDescription{
  2637  			Description: types.Description{
  2638  				Label:   "Ballooned memory",
  2639  				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
  2640  			},
  2641  			Key: "vmmemctl",
  2642  		},
  2643  		GroupInfo: &types.ElementDescription{
  2644  			Description: types.Description{
  2645  				Label:   "Memory",
  2646  				Summary: "Memory",
  2647  			},
  2648  			Key: "mem",
  2649  		},
  2650  		UnitInfo: &types.ElementDescription{
  2651  			Description: types.Description{
  2652  				Label:   "KB",
  2653  				Summary: "Kilobyte",
  2654  			},
  2655  			Key: "kiloBytes",
  2656  		},
  2657  		RollupType:          "average",
  2658  		StatsType:           "absolute",
  2659  		Level:               1,
  2660  		PerDeviceLevel:      3,
  2661  		AssociatedCounterId: nil,
  2662  	},
  2663  	{
  2664  		Key: 91,
  2665  		NameInfo: &types.ElementDescription{
  2666  			Description: types.Description{
  2667  				Label:   "Ballooned memory",
  2668  				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
  2669  			},
  2670  			Key: "vmmemctl",
  2671  		},
  2672  		GroupInfo: &types.ElementDescription{
  2673  			Description: types.Description{
  2674  				Label:   "Memory",
  2675  				Summary: "Memory",
  2676  			},
  2677  			Key: "mem",
  2678  		},
  2679  		UnitInfo: &types.ElementDescription{
  2680  			Description: types.Description{
  2681  				Label:   "KB",
  2682  				Summary: "Kilobyte",
  2683  			},
  2684  			Key: "kiloBytes",
  2685  		},
  2686  		RollupType:          "minimum",
  2687  		StatsType:           "absolute",
  2688  		Level:               4,
  2689  		PerDeviceLevel:      4,
  2690  		AssociatedCounterId: nil,
  2691  	},
  2692  	{
  2693  		Key: 92,
  2694  		NameInfo: &types.ElementDescription{
  2695  			Description: types.Description{
  2696  				Label:   "Ballooned memory",
  2697  				Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest",
  2698  			},
  2699  			Key: "vmmemctl",
  2700  		},
  2701  		GroupInfo: &types.ElementDescription{
  2702  			Description: types.Description{
  2703  				Label:   "Memory",
  2704  				Summary: "Memory",
  2705  			},
  2706  			Key: "mem",
  2707  		},
  2708  		UnitInfo: &types.ElementDescription{
  2709  			Description: types.Description{
  2710  				Label:   "KB",
  2711  				Summary: "Kilobyte",
  2712  			},
  2713  			Key: "kiloBytes",
  2714  		},
  2715  		RollupType:          "maximum",
  2716  		StatsType:           "absolute",
  2717  		Level:               4,
  2718  		PerDeviceLevel:      4,
  2719  		AssociatedCounterId: nil,
  2720  	},
  2721  	{
  2722  		Key: 93,
  2723  		NameInfo: &types.ElementDescription{
  2724  			Description: types.Description{
  2725  				Label:   "Balloon target",
  2726  				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
  2727  			},
  2728  			Key: "vmmemctltarget",
  2729  		},
  2730  		GroupInfo: &types.ElementDescription{
  2731  			Description: types.Description{
  2732  				Label:   "Memory",
  2733  				Summary: "Memory",
  2734  			},
  2735  			Key: "mem",
  2736  		},
  2737  		UnitInfo: &types.ElementDescription{
  2738  			Description: types.Description{
  2739  				Label:   "KB",
  2740  				Summary: "Kilobyte",
  2741  			},
  2742  			Key: "kiloBytes",
  2743  		},
  2744  		RollupType:          "none",
  2745  		StatsType:           "absolute",
  2746  		Level:               4,
  2747  		PerDeviceLevel:      4,
  2748  		AssociatedCounterId: nil,
  2749  	},
  2750  	{
  2751  		Key: 94,
  2752  		NameInfo: &types.ElementDescription{
  2753  			Description: types.Description{
  2754  				Label:   "Balloon target",
  2755  				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
  2756  			},
  2757  			Key: "vmmemctltarget",
  2758  		},
  2759  		GroupInfo: &types.ElementDescription{
  2760  			Description: types.Description{
  2761  				Label:   "Memory",
  2762  				Summary: "Memory",
  2763  			},
  2764  			Key: "mem",
  2765  		},
  2766  		UnitInfo: &types.ElementDescription{
  2767  			Description: types.Description{
  2768  				Label:   "KB",
  2769  				Summary: "Kilobyte",
  2770  			},
  2771  			Key: "kiloBytes",
  2772  		},
  2773  		RollupType:          "average",
  2774  		StatsType:           "absolute",
  2775  		Level:               2,
  2776  		PerDeviceLevel:      3,
  2777  		AssociatedCounterId: nil,
  2778  	},
  2779  	{
  2780  		Key: 95,
  2781  		NameInfo: &types.ElementDescription{
  2782  			Description: types.Description{
  2783  				Label:   "Balloon target",
  2784  				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
  2785  			},
  2786  			Key: "vmmemctltarget",
  2787  		},
  2788  		GroupInfo: &types.ElementDescription{
  2789  			Description: types.Description{
  2790  				Label:   "Memory",
  2791  				Summary: "Memory",
  2792  			},
  2793  			Key: "mem",
  2794  		},
  2795  		UnitInfo: &types.ElementDescription{
  2796  			Description: types.Description{
  2797  				Label:   "KB",
  2798  				Summary: "Kilobyte",
  2799  			},
  2800  			Key: "kiloBytes",
  2801  		},
  2802  		RollupType:          "minimum",
  2803  		StatsType:           "absolute",
  2804  		Level:               4,
  2805  		PerDeviceLevel:      4,
  2806  		AssociatedCounterId: nil,
  2807  	},
  2808  	{
  2809  		Key: 96,
  2810  		NameInfo: &types.ElementDescription{
  2811  			Description: types.Description{
  2812  				Label:   "Balloon target",
  2813  				Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi",
  2814  			},
  2815  			Key: "vmmemctltarget",
  2816  		},
  2817  		GroupInfo: &types.ElementDescription{
  2818  			Description: types.Description{
  2819  				Label:   "Memory",
  2820  				Summary: "Memory",
  2821  			},
  2822  			Key: "mem",
  2823  		},
  2824  		UnitInfo: &types.ElementDescription{
  2825  			Description: types.Description{
  2826  				Label:   "KB",
  2827  				Summary: "Kilobyte",
  2828  			},
  2829  			Key: "kiloBytes",
  2830  		},
  2831  		RollupType:          "maximum",
  2832  		StatsType:           "absolute",
  2833  		Level:               4,
  2834  		PerDeviceLevel:      4,
  2835  		AssociatedCounterId: nil,
  2836  	},
  2837  	{
  2838  		Key: 97,
  2839  		NameInfo: &types.ElementDescription{
  2840  			Description: types.Description{
  2841  				Label:   "Consumed",
  2842  				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
  2843  			},
  2844  			Key: "consumed",
  2845  		},
  2846  		GroupInfo: &types.ElementDescription{
  2847  			Description: types.Description{
  2848  				Label:   "Memory",
  2849  				Summary: "Memory",
  2850  			},
  2851  			Key: "mem",
  2852  		},
  2853  		UnitInfo: &types.ElementDescription{
  2854  			Description: types.Description{
  2855  				Label:   "KB",
  2856  				Summary: "Kilobyte",
  2857  			},
  2858  			Key: "kiloBytes",
  2859  		},
  2860  		RollupType:          "none",
  2861  		StatsType:           "absolute",
  2862  		Level:               4,
  2863  		PerDeviceLevel:      4,
  2864  		AssociatedCounterId: nil,
  2865  	},
  2866  	{
  2867  		Key: 98,
  2868  		NameInfo: &types.ElementDescription{
  2869  			Description: types.Description{
  2870  				Label:   "Consumed",
  2871  				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
  2872  			},
  2873  			Key: "consumed",
  2874  		},
  2875  		GroupInfo: &types.ElementDescription{
  2876  			Description: types.Description{
  2877  				Label:   "Memory",
  2878  				Summary: "Memory",
  2879  			},
  2880  			Key: "mem",
  2881  		},
  2882  		UnitInfo: &types.ElementDescription{
  2883  			Description: types.Description{
  2884  				Label:   "KB",
  2885  				Summary: "Kilobyte",
  2886  			},
  2887  			Key: "kiloBytes",
  2888  		},
  2889  		RollupType:          "average",
  2890  		StatsType:           "absolute",
  2891  		Level:               1,
  2892  		PerDeviceLevel:      3,
  2893  		AssociatedCounterId: nil,
  2894  	},
  2895  	{
  2896  		Key: 99,
  2897  		NameInfo: &types.ElementDescription{
  2898  			Description: types.Description{
  2899  				Label:   "Consumed",
  2900  				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
  2901  			},
  2902  			Key: "consumed",
  2903  		},
  2904  		GroupInfo: &types.ElementDescription{
  2905  			Description: types.Description{
  2906  				Label:   "Memory",
  2907  				Summary: "Memory",
  2908  			},
  2909  			Key: "mem",
  2910  		},
  2911  		UnitInfo: &types.ElementDescription{
  2912  			Description: types.Description{
  2913  				Label:   "KB",
  2914  				Summary: "Kilobyte",
  2915  			},
  2916  			Key: "kiloBytes",
  2917  		},
  2918  		RollupType:          "minimum",
  2919  		StatsType:           "absolute",
  2920  		Level:               4,
  2921  		PerDeviceLevel:      4,
  2922  		AssociatedCounterId: nil,
  2923  	},
  2924  	{
  2925  		Key: 100,
  2926  		NameInfo: &types.ElementDescription{
  2927  			Description: types.Description{
  2928  				Label:   "Consumed",
  2929  				Summary: "Amount of host physical memory consumed for backing up guest physical memory pages",
  2930  			},
  2931  			Key: "consumed",
  2932  		},
  2933  		GroupInfo: &types.ElementDescription{
  2934  			Description: types.Description{
  2935  				Label:   "Memory",
  2936  				Summary: "Memory",
  2937  			},
  2938  			Key: "mem",
  2939  		},
  2940  		UnitInfo: &types.ElementDescription{
  2941  			Description: types.Description{
  2942  				Label:   "KB",
  2943  				Summary: "Kilobyte",
  2944  			},
  2945  			Key: "kiloBytes",
  2946  		},
  2947  		RollupType:          "maximum",
  2948  		StatsType:           "absolute",
  2949  		Level:               4,
  2950  		PerDeviceLevel:      4,
  2951  		AssociatedCounterId: nil,
  2952  	},
  2953  	{
  2954  		Key: 101,
  2955  		NameInfo: &types.ElementDescription{
  2956  			Description: types.Description{
  2957  				Label:   "Overhead consumed",
  2958  				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
  2959  			},
  2960  			Key: "overhead",
  2961  		},
  2962  		GroupInfo: &types.ElementDescription{
  2963  			Description: types.Description{
  2964  				Label:   "Memory",
  2965  				Summary: "Memory",
  2966  			},
  2967  			Key: "mem",
  2968  		},
  2969  		UnitInfo: &types.ElementDescription{
  2970  			Description: types.Description{
  2971  				Label:   "KB",
  2972  				Summary: "Kilobyte",
  2973  			},
  2974  			Key: "kiloBytes",
  2975  		},
  2976  		RollupType:          "none",
  2977  		StatsType:           "absolute",
  2978  		Level:               4,
  2979  		PerDeviceLevel:      4,
  2980  		AssociatedCounterId: nil,
  2981  	},
  2982  	{
  2983  		Key: 102,
  2984  		NameInfo: &types.ElementDescription{
  2985  			Description: types.Description{
  2986  				Label:   "Overhead consumed",
  2987  				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
  2988  			},
  2989  			Key: "overhead",
  2990  		},
  2991  		GroupInfo: &types.ElementDescription{
  2992  			Description: types.Description{
  2993  				Label:   "Memory",
  2994  				Summary: "Memory",
  2995  			},
  2996  			Key: "mem",
  2997  		},
  2998  		UnitInfo: &types.ElementDescription{
  2999  			Description: types.Description{
  3000  				Label:   "KB",
  3001  				Summary: "Kilobyte",
  3002  			},
  3003  			Key: "kiloBytes",
  3004  		},
  3005  		RollupType:          "average",
  3006  		StatsType:           "absolute",
  3007  		Level:               1,
  3008  		PerDeviceLevel:      1,
  3009  		AssociatedCounterId: nil,
  3010  	},
  3011  	{
  3012  		Key: 103,
  3013  		NameInfo: &types.ElementDescription{
  3014  			Description: types.Description{
  3015  				Label:   "Overhead consumed",
  3016  				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
  3017  			},
  3018  			Key: "overhead",
  3019  		},
  3020  		GroupInfo: &types.ElementDescription{
  3021  			Description: types.Description{
  3022  				Label:   "Memory",
  3023  				Summary: "Memory",
  3024  			},
  3025  			Key: "mem",
  3026  		},
  3027  		UnitInfo: &types.ElementDescription{
  3028  			Description: types.Description{
  3029  				Label:   "KB",
  3030  				Summary: "Kilobyte",
  3031  			},
  3032  			Key: "kiloBytes",
  3033  		},
  3034  		RollupType:          "minimum",
  3035  		StatsType:           "absolute",
  3036  		Level:               4,
  3037  		PerDeviceLevel:      4,
  3038  		AssociatedCounterId: nil,
  3039  	},
  3040  	{
  3041  		Key: 104,
  3042  		NameInfo: &types.ElementDescription{
  3043  			Description: types.Description{
  3044  				Label:   "Overhead consumed",
  3045  				Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines",
  3046  			},
  3047  			Key: "overhead",
  3048  		},
  3049  		GroupInfo: &types.ElementDescription{
  3050  			Description: types.Description{
  3051  				Label:   "Memory",
  3052  				Summary: "Memory",
  3053  			},
  3054  			Key: "mem",
  3055  		},
  3056  		UnitInfo: &types.ElementDescription{
  3057  			Description: types.Description{
  3058  				Label:   "KB",
  3059  				Summary: "Kilobyte",
  3060  			},
  3061  			Key: "kiloBytes",
  3062  		},
  3063  		RollupType:          "maximum",
  3064  		StatsType:           "absolute",
  3065  		Level:               4,
  3066  		PerDeviceLevel:      4,
  3067  		AssociatedCounterId: nil,
  3068  	},
  3069  	{
  3070  		Key: 105,
  3071  		NameInfo: &types.ElementDescription{
  3072  			Description: types.Description{
  3073  				Label:   "Compressed",
  3074  				Summary: "Guest physical memory pages that have undergone memory compression",
  3075  			},
  3076  			Key: "compressed",
  3077  		},
  3078  		GroupInfo: &types.ElementDescription{
  3079  			Description: types.Description{
  3080  				Label:   "Memory",
  3081  				Summary: "Memory",
  3082  			},
  3083  			Key: "mem",
  3084  		},
  3085  		UnitInfo: &types.ElementDescription{
  3086  			Description: types.Description{
  3087  				Label:   "KB",
  3088  				Summary: "Kilobyte",
  3089  			},
  3090  			Key: "kiloBytes",
  3091  		},
  3092  		RollupType:          "average",
  3093  		StatsType:           "absolute",
  3094  		Level:               2,
  3095  		PerDeviceLevel:      3,
  3096  		AssociatedCounterId: nil,
  3097  	},
  3098  	{
  3099  		Key: 106,
  3100  		NameInfo: &types.ElementDescription{
  3101  			Description: types.Description{
  3102  				Label:   "Compression rate",
  3103  				Summary: "Rate of guest physical memory page compression by ESXi",
  3104  			},
  3105  			Key: "compressionRate",
  3106  		},
  3107  		GroupInfo: &types.ElementDescription{
  3108  			Description: types.Description{
  3109  				Label:   "Memory",
  3110  				Summary: "Memory",
  3111  			},
  3112  			Key: "mem",
  3113  		},
  3114  		UnitInfo: &types.ElementDescription{
  3115  			Description: types.Description{
  3116  				Label:   "KBps",
  3117  				Summary: "Kilobytes per second",
  3118  			},
  3119  			Key: "kiloBytesPerSecond",
  3120  		},
  3121  		RollupType:          "average",
  3122  		StatsType:           "rate",
  3123  		Level:               2,
  3124  		PerDeviceLevel:      3,
  3125  		AssociatedCounterId: nil,
  3126  	},
  3127  	{
  3128  		Key: 107,
  3129  		NameInfo: &types.ElementDescription{
  3130  			Description: types.Description{
  3131  				Label:   "Decompression rate",
  3132  				Summary: "Rate of guest physical memory decompression",
  3133  			},
  3134  			Key: "decompressionRate",
  3135  		},
  3136  		GroupInfo: &types.ElementDescription{
  3137  			Description: types.Description{
  3138  				Label:   "Memory",
  3139  				Summary: "Memory",
  3140  			},
  3141  			Key: "mem",
  3142  		},
  3143  		UnitInfo: &types.ElementDescription{
  3144  			Description: types.Description{
  3145  				Label:   "KBps",
  3146  				Summary: "Kilobytes per second",
  3147  			},
  3148  			Key: "kiloBytesPerSecond",
  3149  		},
  3150  		RollupType:          "average",
  3151  		StatsType:           "rate",
  3152  		Level:               2,
  3153  		PerDeviceLevel:      3,
  3154  		AssociatedCounterId: nil,
  3155  	},
  3156  	{
  3157  		Key: 108,
  3158  		NameInfo: &types.ElementDescription{
  3159  			Description: types.Description{
  3160  				Label:   "Memory Capacity Provisioned",
  3161  				Summary: "Total amount of memory available to the host",
  3162  			},
  3163  			Key: "capacity.provisioned",
  3164  		},
  3165  		GroupInfo: &types.ElementDescription{
  3166  			Description: types.Description{
  3167  				Label:   "Memory",
  3168  				Summary: "Memory",
  3169  			},
  3170  			Key: "mem",
  3171  		},
  3172  		UnitInfo: &types.ElementDescription{
  3173  			Description: types.Description{
  3174  				Label:   "KB",
  3175  				Summary: "Kilobyte",
  3176  			},
  3177  			Key: "kiloBytes",
  3178  		},
  3179  		RollupType:          "average",
  3180  		StatsType:           "absolute",
  3181  		Level:               4,
  3182  		PerDeviceLevel:      4,
  3183  		AssociatedCounterId: nil,
  3184  	},
  3185  	{
  3186  		Key: 109,
  3187  		NameInfo: &types.ElementDescription{
  3188  			Description: types.Description{
  3189  				Label:   "Memory Capacity Entitlement",
  3190  				Summary: "Amount of host physical memory the VM is entitled to, as determined by the ESXi scheduler",
  3191  			},
  3192  			Key: "capacity.entitlement",
  3193  		},
  3194  		GroupInfo: &types.ElementDescription{
  3195  			Description: types.Description{
  3196  				Label:   "Memory",
  3197  				Summary: "Memory",
  3198  			},
  3199  			Key: "mem",
  3200  		},
  3201  		UnitInfo: &types.ElementDescription{
  3202  			Description: types.Description{
  3203  				Label:   "KB",
  3204  				Summary: "Kilobyte",
  3205  			},
  3206  			Key: "kiloBytes",
  3207  		},
  3208  		RollupType:          "average",
  3209  		StatsType:           "absolute",
  3210  		Level:               4,
  3211  		PerDeviceLevel:      4,
  3212  		AssociatedCounterId: nil,
  3213  	},
  3214  	{
  3215  		Key: 110,
  3216  		NameInfo: &types.ElementDescription{
  3217  			Description: types.Description{
  3218  				Label:   "Memory Capacity Usable",
  3219  				Summary: "Amount of physical memory available for use by virtual machines on this host",
  3220  			},
  3221  			Key: "capacity.usable",
  3222  		},
  3223  		GroupInfo: &types.ElementDescription{
  3224  			Description: types.Description{
  3225  				Label:   "Memory",
  3226  				Summary: "Memory",
  3227  			},
  3228  			Key: "mem",
  3229  		},
  3230  		UnitInfo: &types.ElementDescription{
  3231  			Description: types.Description{
  3232  				Label:   "KB",
  3233  				Summary: "Kilobyte",
  3234  			},
  3235  			Key: "kiloBytes",
  3236  		},
  3237  		RollupType:          "average",
  3238  		StatsType:           "absolute",
  3239  		Level:               4,
  3240  		PerDeviceLevel:      4,
  3241  		AssociatedCounterId: nil,
  3242  	},
  3243  	{
  3244  		Key: 111,
  3245  		NameInfo: &types.ElementDescription{
  3246  			Description: types.Description{
  3247  				Label:   "Memory Capacity Usage",
  3248  				Summary: "Amount of physical memory actively used",
  3249  			},
  3250  			Key: "capacity.usage",
  3251  		},
  3252  		GroupInfo: &types.ElementDescription{
  3253  			Description: types.Description{
  3254  				Label:   "Memory",
  3255  				Summary: "Memory",
  3256  			},
  3257  			Key: "mem",
  3258  		},
  3259  		UnitInfo: &types.ElementDescription{
  3260  			Description: types.Description{
  3261  				Label:   "KB",
  3262  				Summary: "Kilobyte",
  3263  			},
  3264  			Key: "kiloBytes",
  3265  		},
  3266  		RollupType:          "average",
  3267  		StatsType:           "absolute",
  3268  		Level:               4,
  3269  		PerDeviceLevel:      4,
  3270  		AssociatedCounterId: nil,
  3271  	},
  3272  	{
  3273  		Key: 112,
  3274  		NameInfo: &types.ElementDescription{
  3275  			Description: types.Description{
  3276  				Label:   "Memory Capacity Contention",
  3277  				Summary: "Percentage of time VMs are waiting to access swapped, compressed or ballooned memory",
  3278  			},
  3279  			Key: "capacity.contention",
  3280  		},
  3281  		GroupInfo: &types.ElementDescription{
  3282  			Description: types.Description{
  3283  				Label:   "Memory",
  3284  				Summary: "Memory",
  3285  			},
  3286  			Key: "mem",
  3287  		},
  3288  		UnitInfo: &types.ElementDescription{
  3289  			Description: types.Description{
  3290  				Label:   "%",
  3291  				Summary: "Percentage",
  3292  			},
  3293  			Key: "percent",
  3294  		},
  3295  		RollupType:          "average",
  3296  		StatsType:           "rate",
  3297  		Level:               4,
  3298  		PerDeviceLevel:      4,
  3299  		AssociatedCounterId: nil,
  3300  	},
  3301  	{
  3302  		Key: 113,
  3303  		NameInfo: &types.ElementDescription{
  3304  			Description: types.Description{
  3305  				Label:   "vm",
  3306  				Summary: "vm",
  3307  			},
  3308  			Key: "capacity.usage.vm",
  3309  		},
  3310  		GroupInfo: &types.ElementDescription{
  3311  			Description: types.Description{
  3312  				Label:   "Memory",
  3313  				Summary: "Memory",
  3314  			},
  3315  			Key: "mem",
  3316  		},
  3317  		UnitInfo: &types.ElementDescription{
  3318  			Description: types.Description{
  3319  				Label:   "KB",
  3320  				Summary: "Kilobyte",
  3321  			},
  3322  			Key: "kiloBytes",
  3323  		},
  3324  		RollupType:          "average",
  3325  		StatsType:           "absolute",
  3326  		Level:               2,
  3327  		PerDeviceLevel:      4,
  3328  		AssociatedCounterId: nil,
  3329  	},
  3330  	{
  3331  		Key: 114,
  3332  		NameInfo: &types.ElementDescription{
  3333  			Description: types.Description{
  3334  				Label:   "vmOvrhd",
  3335  				Summary: "vmOvrhd",
  3336  			},
  3337  			Key: "capacity.usage.vmOvrhd",
  3338  		},
  3339  		GroupInfo: &types.ElementDescription{
  3340  			Description: types.Description{
  3341  				Label:   "Memory",
  3342  				Summary: "Memory",
  3343  			},
  3344  			Key: "mem",
  3345  		},
  3346  		UnitInfo: &types.ElementDescription{
  3347  			Description: types.Description{
  3348  				Label:   "KB",
  3349  				Summary: "Kilobyte",
  3350  			},
  3351  			Key: "kiloBytes",
  3352  		},
  3353  		RollupType:          "average",
  3354  		StatsType:           "absolute",
  3355  		Level:               2,
  3356  		PerDeviceLevel:      4,
  3357  		AssociatedCounterId: nil,
  3358  	},
  3359  	{
  3360  		Key: 115,
  3361  		NameInfo: &types.ElementDescription{
  3362  			Description: types.Description{
  3363  				Label:   "vmkOvrhd",
  3364  				Summary: "vmkOvrhd",
  3365  			},
  3366  			Key: "capacity.usage.vmkOvrhd",
  3367  		},
  3368  		GroupInfo: &types.ElementDescription{
  3369  			Description: types.Description{
  3370  				Label:   "Memory",
  3371  				Summary: "Memory",
  3372  			},
  3373  			Key: "mem",
  3374  		},
  3375  		UnitInfo: &types.ElementDescription{
  3376  			Description: types.Description{
  3377  				Label:   "KB",
  3378  				Summary: "Kilobyte",
  3379  			},
  3380  			Key: "kiloBytes",
  3381  		},
  3382  		RollupType:          "average",
  3383  		StatsType:           "absolute",
  3384  		Level:               2,
  3385  		PerDeviceLevel:      4,
  3386  		AssociatedCounterId: nil,
  3387  	},
  3388  	{
  3389  		Key: 116,
  3390  		NameInfo: &types.ElementDescription{
  3391  			Description: types.Description{
  3392  				Label:   "userworld",
  3393  				Summary: "userworld",
  3394  			},
  3395  			Key: "capacity.usage.userworld",
  3396  		},
  3397  		GroupInfo: &types.ElementDescription{
  3398  			Description: types.Description{
  3399  				Label:   "Memory",
  3400  				Summary: "Memory",
  3401  			},
  3402  			Key: "mem",
  3403  		},
  3404  		UnitInfo: &types.ElementDescription{
  3405  			Description: types.Description{
  3406  				Label:   "KB",
  3407  				Summary: "Kilobyte",
  3408  			},
  3409  			Key: "kiloBytes",
  3410  		},
  3411  		RollupType:          "average",
  3412  		StatsType:           "absolute",
  3413  		Level:               2,
  3414  		PerDeviceLevel:      4,
  3415  		AssociatedCounterId: nil,
  3416  	},
  3417  	{
  3418  		Key: 117,
  3419  		NameInfo: &types.ElementDescription{
  3420  			Description: types.Description{
  3421  				Label:   "vm",
  3422  				Summary: "vm",
  3423  			},
  3424  			Key: "reservedCapacity.vm",
  3425  		},
  3426  		GroupInfo: &types.ElementDescription{
  3427  			Description: types.Description{
  3428  				Label:   "Memory",
  3429  				Summary: "Memory",
  3430  			},
  3431  			Key: "mem",
  3432  		},
  3433  		UnitInfo: &types.ElementDescription{
  3434  			Description: types.Description{
  3435  				Label:   "KB",
  3436  				Summary: "Kilobyte",
  3437  			},
  3438  			Key: "kiloBytes",
  3439  		},
  3440  		RollupType:          "average",
  3441  		StatsType:           "absolute",
  3442  		Level:               2,
  3443  		PerDeviceLevel:      4,
  3444  		AssociatedCounterId: nil,
  3445  	},
  3446  	{
  3447  		Key: 118,
  3448  		NameInfo: &types.ElementDescription{
  3449  			Description: types.Description{
  3450  				Label:   "vmOvhd",
  3451  				Summary: "vmOvhd",
  3452  			},
  3453  			Key: "reservedCapacity.vmOvhd",
  3454  		},
  3455  		GroupInfo: &types.ElementDescription{
  3456  			Description: types.Description{
  3457  				Label:   "Memory",
  3458  				Summary: "Memory",
  3459  			},
  3460  			Key: "mem",
  3461  		},
  3462  		UnitInfo: &types.ElementDescription{
  3463  			Description: types.Description{
  3464  				Label:   "KB",
  3465  				Summary: "Kilobyte",
  3466  			},
  3467  			Key: "kiloBytes",
  3468  		},
  3469  		RollupType:          "average",
  3470  		StatsType:           "absolute",
  3471  		Level:               2,
  3472  		PerDeviceLevel:      4,
  3473  		AssociatedCounterId: nil,
  3474  	},
  3475  	{
  3476  		Key: 119,
  3477  		NameInfo: &types.ElementDescription{
  3478  			Description: types.Description{
  3479  				Label:   "vmkOvrhd",
  3480  				Summary: "vmkOvrhd",
  3481  			},
  3482  			Key: "reservedCapacity.vmkOvrhd",
  3483  		},
  3484  		GroupInfo: &types.ElementDescription{
  3485  			Description: types.Description{
  3486  				Label:   "Memory",
  3487  				Summary: "Memory",
  3488  			},
  3489  			Key: "mem",
  3490  		},
  3491  		UnitInfo: &types.ElementDescription{
  3492  			Description: types.Description{
  3493  				Label:   "KB",
  3494  				Summary: "Kilobyte",
  3495  			},
  3496  			Key: "kiloBytes",
  3497  		},
  3498  		RollupType:          "average",
  3499  		StatsType:           "absolute",
  3500  		Level:               2,
  3501  		PerDeviceLevel:      4,
  3502  		AssociatedCounterId: nil,
  3503  	},
  3504  	{
  3505  		Key: 120,
  3506  		NameInfo: &types.ElementDescription{
  3507  			Description: types.Description{
  3508  				Label:   "userworld",
  3509  				Summary: "userworld",
  3510  			},
  3511  			Key: "reservedCapacity.userworld",
  3512  		},
  3513  		GroupInfo: &types.ElementDescription{
  3514  			Description: types.Description{
  3515  				Label:   "Memory",
  3516  				Summary: "Memory",
  3517  			},
  3518  			Key: "mem",
  3519  		},
  3520  		UnitInfo: &types.ElementDescription{
  3521  			Description: types.Description{
  3522  				Label:   "KB",
  3523  				Summary: "Kilobyte",
  3524  			},
  3525  			Key: "kiloBytes",
  3526  		},
  3527  		RollupType:          "average",
  3528  		StatsType:           "absolute",
  3529  		Level:               2,
  3530  		PerDeviceLevel:      4,
  3531  		AssociatedCounterId: nil,
  3532  	},
  3533  	{
  3534  		Key: 121,
  3535  		NameInfo: &types.ElementDescription{
  3536  			Description: types.Description{
  3537  				Label:   "Memory Reserved Capacity %",
  3538  				Summary: "Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations",
  3539  			},
  3540  			Key: "reservedCapacityPct",
  3541  		},
  3542  		GroupInfo: &types.ElementDescription{
  3543  			Description: types.Description{
  3544  				Label:   "Memory",
  3545  				Summary: "Memory",
  3546  			},
  3547  			Key: "mem",
  3548  		},
  3549  		UnitInfo: &types.ElementDescription{
  3550  			Description: types.Description{
  3551  				Label:   "%",
  3552  				Summary: "Percentage",
  3553  			},
  3554  			Key: "percent",
  3555  		},
  3556  		RollupType:          "average",
  3557  		StatsType:           "absolute",
  3558  		Level:               4,
  3559  		PerDeviceLevel:      4,
  3560  		AssociatedCounterId: nil,
  3561  	},
  3562  	{
  3563  		Key: 122,
  3564  		NameInfo: &types.ElementDescription{
  3565  			Description: types.Description{
  3566  				Label:   "Memory Consumed by VMs",
  3567  				Summary: "Amount of physical memory consumed by VMs on this host",
  3568  			},
  3569  			Key: "consumed.vms",
  3570  		},
  3571  		GroupInfo: &types.ElementDescription{
  3572  			Description: types.Description{
  3573  				Label:   "Memory",
  3574  				Summary: "Memory",
  3575  			},
  3576  			Key: "mem",
  3577  		},
  3578  		UnitInfo: &types.ElementDescription{
  3579  			Description: types.Description{
  3580  				Label:   "KB",
  3581  				Summary: "Kilobyte",
  3582  			},
  3583  			Key: "kiloBytes",
  3584  		},
  3585  		RollupType:          "average",
  3586  		StatsType:           "absolute",
  3587  		Level:               2,
  3588  		PerDeviceLevel:      4,
  3589  		AssociatedCounterId: nil,
  3590  	},
  3591  	{
  3592  		Key: 123,
  3593  		NameInfo: &types.ElementDescription{
  3594  			Description: types.Description{
  3595  				Label:   "Memory Consumed by userworlds",
  3596  				Summary: "Amount of physical memory consumed by userworlds on this host",
  3597  			},
  3598  			Key: "consumed.userworlds",
  3599  		},
  3600  		GroupInfo: &types.ElementDescription{
  3601  			Description: types.Description{
  3602  				Label:   "Memory",
  3603  				Summary: "Memory",
  3604  			},
  3605  			Key: "mem",
  3606  		},
  3607  		UnitInfo: &types.ElementDescription{
  3608  			Description: types.Description{
  3609  				Label:   "KB",
  3610  				Summary: "Kilobyte",
  3611  			},
  3612  			Key: "kiloBytes",
  3613  		},
  3614  		RollupType:          "average",
  3615  		StatsType:           "absolute",
  3616  		Level:               2,
  3617  		PerDeviceLevel:      4,
  3618  		AssociatedCounterId: nil,
  3619  	},
  3620  	{
  3621  		Key: 124,
  3622  		NameInfo: &types.ElementDescription{
  3623  			Description: types.Description{
  3624  				Label:   "Usage",
  3625  				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.",
  3626  			},
  3627  			Key: "usage",
  3628  		},
  3629  		GroupInfo: &types.ElementDescription{
  3630  			Description: types.Description{
  3631  				Label:   "Disk",
  3632  				Summary: "Disk",
  3633  			},
  3634  			Key: "disk",
  3635  		},
  3636  		UnitInfo: &types.ElementDescription{
  3637  			Description: types.Description{
  3638  				Label:   "KBps",
  3639  				Summary: "Kilobytes per second",
  3640  			},
  3641  			Key: "kiloBytesPerSecond",
  3642  		},
  3643  		RollupType:          "none",
  3644  		StatsType:           "rate",
  3645  		Level:               4,
  3646  		PerDeviceLevel:      4,
  3647  		AssociatedCounterId: nil,
  3648  	},
  3649  	{
  3650  		Key: 125,
  3651  		NameInfo: &types.ElementDescription{
  3652  			Description: types.Description{
  3653  				Label:   "Usage",
  3654  				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.",
  3655  			},
  3656  			Key: "usage",
  3657  		},
  3658  		GroupInfo: &types.ElementDescription{
  3659  			Description: types.Description{
  3660  				Label:   "Disk",
  3661  				Summary: "Disk",
  3662  			},
  3663  			Key: "disk",
  3664  		},
  3665  		UnitInfo: &types.ElementDescription{
  3666  			Description: types.Description{
  3667  				Label:   "KBps",
  3668  				Summary: "Kilobytes per second",
  3669  			},
  3670  			Key: "kiloBytesPerSecond",
  3671  		},
  3672  		RollupType:          "average",
  3673  		StatsType:           "rate",
  3674  		Level:               1,
  3675  		PerDeviceLevel:      3,
  3676  		AssociatedCounterId: nil,
  3677  	},
  3678  	{
  3679  		Key: 126,
  3680  		NameInfo: &types.ElementDescription{
  3681  			Description: types.Description{
  3682  				Label:   "Usage",
  3683  				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.",
  3684  			},
  3685  			Key: "usage",
  3686  		},
  3687  		GroupInfo: &types.ElementDescription{
  3688  			Description: types.Description{
  3689  				Label:   "Disk",
  3690  				Summary: "Disk",
  3691  			},
  3692  			Key: "disk",
  3693  		},
  3694  		UnitInfo: &types.ElementDescription{
  3695  			Description: types.Description{
  3696  				Label:   "KBps",
  3697  				Summary: "Kilobytes per second",
  3698  			},
  3699  			Key: "kiloBytesPerSecond",
  3700  		},
  3701  		RollupType:          "minimum",
  3702  		StatsType:           "rate",
  3703  		Level:               4,
  3704  		PerDeviceLevel:      4,
  3705  		AssociatedCounterId: nil,
  3706  	},
  3707  	{
  3708  		Key: 127,
  3709  		NameInfo: &types.ElementDescription{
  3710  			Description: types.Description{
  3711  				Label:   "Usage",
  3712  				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.",
  3713  			},
  3714  			Key: "usage",
  3715  		},
  3716  		GroupInfo: &types.ElementDescription{
  3717  			Description: types.Description{
  3718  				Label:   "Disk",
  3719  				Summary: "Disk",
  3720  			},
  3721  			Key: "disk",
  3722  		},
  3723  		UnitInfo: &types.ElementDescription{
  3724  			Description: types.Description{
  3725  				Label:   "KBps",
  3726  				Summary: "Kilobytes per second",
  3727  			},
  3728  			Key: "kiloBytesPerSecond",
  3729  		},
  3730  		RollupType:          "maximum",
  3731  		StatsType:           "rate",
  3732  		Level:               4,
  3733  		PerDeviceLevel:      4,
  3734  		AssociatedCounterId: nil,
  3735  	},
  3736  	{
  3737  		Key: 128,
  3738  		NameInfo: &types.ElementDescription{
  3739  			Description: types.Description{
  3740  				Label:   "Read requests",
  3741  				Summary: "Number of disk reads during the collection interval",
  3742  			},
  3743  			Key: "numberRead",
  3744  		},
  3745  		GroupInfo: &types.ElementDescription{
  3746  			Description: types.Description{
  3747  				Label:   "Disk",
  3748  				Summary: "Disk",
  3749  			},
  3750  			Key: "disk",
  3751  		},
  3752  		UnitInfo: &types.ElementDescription{
  3753  			Description: types.Description{
  3754  				Label:   "num",
  3755  				Summary: "Number",
  3756  			},
  3757  			Key: "number",
  3758  		},
  3759  		RollupType:          "summation",
  3760  		StatsType:           "delta",
  3761  		Level:               3,
  3762  		PerDeviceLevel:      3,
  3763  		AssociatedCounterId: nil,
  3764  	},
  3765  	{
  3766  		Key: 129,
  3767  		NameInfo: &types.ElementDescription{
  3768  			Description: types.Description{
  3769  				Label:   "Write requests",
  3770  				Summary: "Number of disk writes during the collection interval",
  3771  			},
  3772  			Key: "numberWrite",
  3773  		},
  3774  		GroupInfo: &types.ElementDescription{
  3775  			Description: types.Description{
  3776  				Label:   "Disk",
  3777  				Summary: "Disk",
  3778  			},
  3779  			Key: "disk",
  3780  		},
  3781  		UnitInfo: &types.ElementDescription{
  3782  			Description: types.Description{
  3783  				Label:   "num",
  3784  				Summary: "Number",
  3785  			},
  3786  			Key: "number",
  3787  		},
  3788  		RollupType:          "summation",
  3789  		StatsType:           "delta",
  3790  		Level:               3,
  3791  		PerDeviceLevel:      3,
  3792  		AssociatedCounterId: nil,
  3793  	},
  3794  	{
  3795  		Key: 130,
  3796  		NameInfo: &types.ElementDescription{
  3797  			Description: types.Description{
  3798  				Label:   "Read rate",
  3799  				Summary: "Average number of kilobytes read from the disk each second during the collection interval",
  3800  			},
  3801  			Key: "read",
  3802  		},
  3803  		GroupInfo: &types.ElementDescription{
  3804  			Description: types.Description{
  3805  				Label:   "Disk",
  3806  				Summary: "Disk",
  3807  			},
  3808  			Key: "disk",
  3809  		},
  3810  		UnitInfo: &types.ElementDescription{
  3811  			Description: types.Description{
  3812  				Label:   "KBps",
  3813  				Summary: "Kilobytes per second",
  3814  			},
  3815  			Key: "kiloBytesPerSecond",
  3816  		},
  3817  		RollupType:          "average",
  3818  		StatsType:           "rate",
  3819  		Level:               2,
  3820  		PerDeviceLevel:      3,
  3821  		AssociatedCounterId: nil,
  3822  	},
  3823  	{
  3824  		Key: 131,
  3825  		NameInfo: &types.ElementDescription{
  3826  			Description: types.Description{
  3827  				Label:   "Write rate",
  3828  				Summary: "Average number of kilobytes written to disk each second during the collection interval",
  3829  			},
  3830  			Key: "write",
  3831  		},
  3832  		GroupInfo: &types.ElementDescription{
  3833  			Description: types.Description{
  3834  				Label:   "Disk",
  3835  				Summary: "Disk",
  3836  			},
  3837  			Key: "disk",
  3838  		},
  3839  		UnitInfo: &types.ElementDescription{
  3840  			Description: types.Description{
  3841  				Label:   "KBps",
  3842  				Summary: "Kilobytes per second",
  3843  			},
  3844  			Key: "kiloBytesPerSecond",
  3845  		},
  3846  		RollupType:          "average",
  3847  		StatsType:           "rate",
  3848  		Level:               2,
  3849  		PerDeviceLevel:      3,
  3850  		AssociatedCounterId: nil,
  3851  	},
  3852  	{
  3853  		Key: 132,
  3854  		NameInfo: &types.ElementDescription{
  3855  			Description: types.Description{
  3856  				Label:   "Command latency",
  3857  				Summary: "Average amount of time taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine",
  3858  			},
  3859  			Key: "totalLatency",
  3860  		},
  3861  		GroupInfo: &types.ElementDescription{
  3862  			Description: types.Description{
  3863  				Label:   "Disk",
  3864  				Summary: "Disk",
  3865  			},
  3866  			Key: "disk",
  3867  		},
  3868  		UnitInfo: &types.ElementDescription{
  3869  			Description: types.Description{
  3870  				Label:   "ms",
  3871  				Summary: "Millisecond",
  3872  			},
  3873  			Key: "millisecond",
  3874  		},
  3875  		RollupType:          "average",
  3876  		StatsType:           "absolute",
  3877  		Level:               3,
  3878  		PerDeviceLevel:      3,
  3879  		AssociatedCounterId: nil,
  3880  	},
  3881  	{
  3882  		Key: 133,
  3883  		NameInfo: &types.ElementDescription{
  3884  			Description: types.Description{
  3885  				Label:   "Highest latency",
  3886  				Summary: "Highest latency value across all disks used by the host",
  3887  			},
  3888  			Key: "maxTotalLatency",
  3889  		},
  3890  		GroupInfo: &types.ElementDescription{
  3891  			Description: types.Description{
  3892  				Label:   "Disk",
  3893  				Summary: "Disk",
  3894  			},
  3895  			Key: "disk",
  3896  		},
  3897  		UnitInfo: &types.ElementDescription{
  3898  			Description: types.Description{
  3899  				Label:   "ms",
  3900  				Summary: "Millisecond",
  3901  			},
  3902  			Key: "millisecond",
  3903  		},
  3904  		RollupType:          "latest",
  3905  		StatsType:           "absolute",
  3906  		Level:               1,
  3907  		PerDeviceLevel:      3,
  3908  		AssociatedCounterId: nil,
  3909  	},
  3910  	{
  3911  		Key: 134,
  3912  		NameInfo: &types.ElementDescription{
  3913  			Description: types.Description{
  3914  				Label:   "Commands aborted",
  3915  				Summary: "Number of SCSI commands aborted during the collection interval",
  3916  			},
  3917  			Key: "commandsAborted",
  3918  		},
  3919  		GroupInfo: &types.ElementDescription{
  3920  			Description: types.Description{
  3921  				Label:   "Disk",
  3922  				Summary: "Disk",
  3923  			},
  3924  			Key: "disk",
  3925  		},
  3926  		UnitInfo: &types.ElementDescription{
  3927  			Description: types.Description{
  3928  				Label:   "num",
  3929  				Summary: "Number",
  3930  			},
  3931  			Key: "number",
  3932  		},
  3933  		RollupType:          "summation",
  3934  		StatsType:           "delta",
  3935  		Level:               2,
  3936  		PerDeviceLevel:      3,
  3937  		AssociatedCounterId: nil,
  3938  	},
  3939  	{
  3940  		Key: 135,
  3941  		NameInfo: &types.ElementDescription{
  3942  			Description: types.Description{
  3943  				Label:   "Bus resets",
  3944  				Summary: "Number of SCSI-bus reset commands issued during the collection interval",
  3945  			},
  3946  			Key: "busResets",
  3947  		},
  3948  		GroupInfo: &types.ElementDescription{
  3949  			Description: types.Description{
  3950  				Label:   "Disk",
  3951  				Summary: "Disk",
  3952  			},
  3953  			Key: "disk",
  3954  		},
  3955  		UnitInfo: &types.ElementDescription{
  3956  			Description: types.Description{
  3957  				Label:   "num",
  3958  				Summary: "Number",
  3959  			},
  3960  			Key: "number",
  3961  		},
  3962  		RollupType:          "summation",
  3963  		StatsType:           "delta",
  3964  		Level:               2,
  3965  		PerDeviceLevel:      3,
  3966  		AssociatedCounterId: nil,
  3967  	},
  3968  	{
  3969  		Key: 136,
  3970  		NameInfo: &types.ElementDescription{
  3971  			Description: types.Description{
  3972  				Label:   "Average read requests per second",
  3973  				Summary: "Average number of disk reads per second during the collection interval",
  3974  			},
  3975  			Key: "numberReadAveraged",
  3976  		},
  3977  		GroupInfo: &types.ElementDescription{
  3978  			Description: types.Description{
  3979  				Label:   "Disk",
  3980  				Summary: "Disk",
  3981  			},
  3982  			Key: "disk",
  3983  		},
  3984  		UnitInfo: &types.ElementDescription{
  3985  			Description: types.Description{
  3986  				Label:   "num",
  3987  				Summary: "Number",
  3988  			},
  3989  			Key: "number",
  3990  		},
  3991  		RollupType:          "average",
  3992  		StatsType:           "rate",
  3993  		Level:               1,
  3994  		PerDeviceLevel:      3,
  3995  		AssociatedCounterId: nil,
  3996  	},
  3997  	{
  3998  		Key: 137,
  3999  		NameInfo: &types.ElementDescription{
  4000  			Description: types.Description{
  4001  				Label:   "Average write requests per second",
  4002  				Summary: "Average number of disk writes per second during the collection interval",
  4003  			},
  4004  			Key: "numberWriteAveraged",
  4005  		},
  4006  		GroupInfo: &types.ElementDescription{
  4007  			Description: types.Description{
  4008  				Label:   "Disk",
  4009  				Summary: "Disk",
  4010  			},
  4011  			Key: "disk",
  4012  		},
  4013  		UnitInfo: &types.ElementDescription{
  4014  			Description: types.Description{
  4015  				Label:   "num",
  4016  				Summary: "Number",
  4017  			},
  4018  			Key: "number",
  4019  		},
  4020  		RollupType:          "average",
  4021  		StatsType:           "rate",
  4022  		Level:               1,
  4023  		PerDeviceLevel:      3,
  4024  		AssociatedCounterId: nil,
  4025  	},
  4026  	{
  4027  		Key: 138,
  4028  		NameInfo: &types.ElementDescription{
  4029  			Description: types.Description{
  4030  				Label:   "Disk Throughput Usage",
  4031  				Summary: "Aggregated disk I/O rate, including the rates for all virtual machines running on the host during the collection interval",
  4032  			},
  4033  			Key: "throughput.usage",
  4034  		},
  4035  		GroupInfo: &types.ElementDescription{
  4036  			Description: types.Description{
  4037  				Label:   "Disk",
  4038  				Summary: "Disk",
  4039  			},
  4040  			Key: "disk",
  4041  		},
  4042  		UnitInfo: &types.ElementDescription{
  4043  			Description: types.Description{
  4044  				Label:   "KBps",
  4045  				Summary: "Kilobytes per second",
  4046  			},
  4047  			Key: "kiloBytesPerSecond",
  4048  		},
  4049  		RollupType:          "average",
  4050  		StatsType:           "rate",
  4051  		Level:               4,
  4052  		PerDeviceLevel:      4,
  4053  		AssociatedCounterId: nil,
  4054  	},
  4055  	{
  4056  		Key: 139,
  4057  		NameInfo: &types.ElementDescription{
  4058  			Description: types.Description{
  4059  				Label:   "Disk Throughput Contention",
  4060  				Summary: "Average amount of time for an I/O operation to complete successfully",
  4061  			},
  4062  			Key: "throughput.contention",
  4063  		},
  4064  		GroupInfo: &types.ElementDescription{
  4065  			Description: types.Description{
  4066  				Label:   "Disk",
  4067  				Summary: "Disk",
  4068  			},
  4069  			Key: "disk",
  4070  		},
  4071  		UnitInfo: &types.ElementDescription{
  4072  			Description: types.Description{
  4073  				Label:   "ms",
  4074  				Summary: "Millisecond",
  4075  			},
  4076  			Key: "millisecond",
  4077  		},
  4078  		RollupType:          "average",
  4079  		StatsType:           "absolute",
  4080  		Level:               4,
  4081  		PerDeviceLevel:      4,
  4082  		AssociatedCounterId: nil,
  4083  	},
  4084  	{
  4085  		Key: 140,
  4086  		NameInfo: &types.ElementDescription{
  4087  			Description: types.Description{
  4088  				Label:   "Disk SCSI Reservation Conflicts",
  4089  				Summary: "Number of SCSI reservation conflicts for the LUN during the collection interval",
  4090  			},
  4091  			Key: "scsiReservationConflicts",
  4092  		},
  4093  		GroupInfo: &types.ElementDescription{
  4094  			Description: types.Description{
  4095  				Label:   "Disk",
  4096  				Summary: "Disk",
  4097  			},
  4098  			Key: "disk",
  4099  		},
  4100  		UnitInfo: &types.ElementDescription{
  4101  			Description: types.Description{
  4102  				Label:   "num",
  4103  				Summary: "Number",
  4104  			},
  4105  			Key: "number",
  4106  		},
  4107  		RollupType:          "summation",
  4108  		StatsType:           "delta",
  4109  		Level:               2,
  4110  		PerDeviceLevel:      2,
  4111  		AssociatedCounterId: nil,
  4112  	},
  4113  	{
  4114  		Key: 141,
  4115  		NameInfo: &types.ElementDescription{
  4116  			Description: types.Description{
  4117  				Label:   "Disk SCSI Reservation Conflicts %",
  4118  				Summary: "Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval",
  4119  			},
  4120  			Key: "scsiReservationCnflctsPct",
  4121  		},
  4122  		GroupInfo: &types.ElementDescription{
  4123  			Description: types.Description{
  4124  				Label:   "Disk",
  4125  				Summary: "Disk",
  4126  			},
  4127  			Key: "disk",
  4128  		},
  4129  		UnitInfo: &types.ElementDescription{
  4130  			Description: types.Description{
  4131  				Label:   "%",
  4132  				Summary: "Percentage",
  4133  			},
  4134  			Key: "percent",
  4135  		},
  4136  		RollupType:          "average",
  4137  		StatsType:           "absolute",
  4138  		Level:               4,
  4139  		PerDeviceLevel:      4,
  4140  		AssociatedCounterId: nil,
  4141  	},
  4142  	{
  4143  		Key: 142,
  4144  		NameInfo: &types.ElementDescription{
  4145  			Description: types.Description{
  4146  				Label:   "Usage",
  4147  				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
  4148  			},
  4149  			Key: "usage",
  4150  		},
  4151  		GroupInfo: &types.ElementDescription{
  4152  			Description: types.Description{
  4153  				Label:   "Network",
  4154  				Summary: "Network",
  4155  			},
  4156  			Key: "net",
  4157  		},
  4158  		UnitInfo: &types.ElementDescription{
  4159  			Description: types.Description{
  4160  				Label:   "KBps",
  4161  				Summary: "Kilobytes per second",
  4162  			},
  4163  			Key: "kiloBytesPerSecond",
  4164  		},
  4165  		RollupType:          "none",
  4166  		StatsType:           "rate",
  4167  		Level:               4,
  4168  		PerDeviceLevel:      4,
  4169  		AssociatedCounterId: nil,
  4170  	},
  4171  	{
  4172  		Key: 143,
  4173  		NameInfo: &types.ElementDescription{
  4174  			Description: types.Description{
  4175  				Label:   "Usage",
  4176  				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
  4177  			},
  4178  			Key: "usage",
  4179  		},
  4180  		GroupInfo: &types.ElementDescription{
  4181  			Description: types.Description{
  4182  				Label:   "Network",
  4183  				Summary: "Network",
  4184  			},
  4185  			Key: "net",
  4186  		},
  4187  		UnitInfo: &types.ElementDescription{
  4188  			Description: types.Description{
  4189  				Label:   "KBps",
  4190  				Summary: "Kilobytes per second",
  4191  			},
  4192  			Key: "kiloBytesPerSecond",
  4193  		},
  4194  		RollupType:          "average",
  4195  		StatsType:           "rate",
  4196  		Level:               1,
  4197  		PerDeviceLevel:      3,
  4198  		AssociatedCounterId: nil,
  4199  	},
  4200  	{
  4201  		Key: 144,
  4202  		NameInfo: &types.ElementDescription{
  4203  			Description: types.Description{
  4204  				Label:   "Usage",
  4205  				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
  4206  			},
  4207  			Key: "usage",
  4208  		},
  4209  		GroupInfo: &types.ElementDescription{
  4210  			Description: types.Description{
  4211  				Label:   "Network",
  4212  				Summary: "Network",
  4213  			},
  4214  			Key: "net",
  4215  		},
  4216  		UnitInfo: &types.ElementDescription{
  4217  			Description: types.Description{
  4218  				Label:   "KBps",
  4219  				Summary: "Kilobytes per second",
  4220  			},
  4221  			Key: "kiloBytesPerSecond",
  4222  		},
  4223  		RollupType:          "minimum",
  4224  		StatsType:           "rate",
  4225  		Level:               4,
  4226  		PerDeviceLevel:      4,
  4227  		AssociatedCounterId: nil,
  4228  	},
  4229  	{
  4230  		Key: 145,
  4231  		NameInfo: &types.ElementDescription{
  4232  			Description: types.Description{
  4233  				Label:   "Usage",
  4234  				Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval",
  4235  			},
  4236  			Key: "usage",
  4237  		},
  4238  		GroupInfo: &types.ElementDescription{
  4239  			Description: types.Description{
  4240  				Label:   "Network",
  4241  				Summary: "Network",
  4242  			},
  4243  			Key: "net",
  4244  		},
  4245  		UnitInfo: &types.ElementDescription{
  4246  			Description: types.Description{
  4247  				Label:   "KBps",
  4248  				Summary: "Kilobytes per second",
  4249  			},
  4250  			Key: "kiloBytesPerSecond",
  4251  		},
  4252  		RollupType:          "maximum",
  4253  		StatsType:           "rate",
  4254  		Level:               4,
  4255  		PerDeviceLevel:      4,
  4256  		AssociatedCounterId: nil,
  4257  	},
  4258  	{
  4259  		Key: 146,
  4260  		NameInfo: &types.ElementDescription{
  4261  			Description: types.Description{
  4262  				Label:   "Packets received",
  4263  				Summary: "Number of packets received during the interval",
  4264  			},
  4265  			Key: "packetsRx",
  4266  		},
  4267  		GroupInfo: &types.ElementDescription{
  4268  			Description: types.Description{
  4269  				Label:   "Network",
  4270  				Summary: "Network",
  4271  			},
  4272  			Key: "net",
  4273  		},
  4274  		UnitInfo: &types.ElementDescription{
  4275  			Description: types.Description{
  4276  				Label:   "num",
  4277  				Summary: "Number",
  4278  			},
  4279  			Key: "number",
  4280  		},
  4281  		RollupType:          "summation",
  4282  		StatsType:           "delta",
  4283  		Level:               2,
  4284  		PerDeviceLevel:      3,
  4285  		AssociatedCounterId: nil,
  4286  	},
  4287  	{
  4288  		Key: 147,
  4289  		NameInfo: &types.ElementDescription{
  4290  			Description: types.Description{
  4291  				Label:   "Packets transmitted",
  4292  				Summary: "Number of packets transmitted during the interval",
  4293  			},
  4294  			Key: "packetsTx",
  4295  		},
  4296  		GroupInfo: &types.ElementDescription{
  4297  			Description: types.Description{
  4298  				Label:   "Network",
  4299  				Summary: "Network",
  4300  			},
  4301  			Key: "net",
  4302  		},
  4303  		UnitInfo: &types.ElementDescription{
  4304  			Description: types.Description{
  4305  				Label:   "num",
  4306  				Summary: "Number",
  4307  			},
  4308  			Key: "number",
  4309  		},
  4310  		RollupType:          "summation",
  4311  		StatsType:           "delta",
  4312  		Level:               2,
  4313  		PerDeviceLevel:      3,
  4314  		AssociatedCounterId: nil,
  4315  	},
  4316  	{
  4317  		Key: 148,
  4318  		NameInfo: &types.ElementDescription{
  4319  			Description: types.Description{
  4320  				Label:   "Data receive rate",
  4321  				Summary: "Average rate at which data was received during the interval",
  4322  			},
  4323  			Key: "received",
  4324  		},
  4325  		GroupInfo: &types.ElementDescription{
  4326  			Description: types.Description{
  4327  				Label:   "Network",
  4328  				Summary: "Network",
  4329  			},
  4330  			Key: "net",
  4331  		},
  4332  		UnitInfo: &types.ElementDescription{
  4333  			Description: types.Description{
  4334  				Label:   "KBps",
  4335  				Summary: "Kilobytes per second",
  4336  			},
  4337  			Key: "kiloBytesPerSecond",
  4338  		},
  4339  		RollupType:          "average",
  4340  		StatsType:           "rate",
  4341  		Level:               2,
  4342  		PerDeviceLevel:      3,
  4343  		AssociatedCounterId: nil,
  4344  	},
  4345  	{
  4346  		Key: 149,
  4347  		NameInfo: &types.ElementDescription{
  4348  			Description: types.Description{
  4349  				Label:   "Data transmit rate",
  4350  				Summary: "Average rate at which data was transmitted during the interval",
  4351  			},
  4352  			Key: "transmitted",
  4353  		},
  4354  		GroupInfo: &types.ElementDescription{
  4355  			Description: types.Description{
  4356  				Label:   "Network",
  4357  				Summary: "Network",
  4358  			},
  4359  			Key: "net",
  4360  		},
  4361  		UnitInfo: &types.ElementDescription{
  4362  			Description: types.Description{
  4363  				Label:   "KBps",
  4364  				Summary: "Kilobytes per second",
  4365  			},
  4366  			Key: "kiloBytesPerSecond",
  4367  		},
  4368  		RollupType:          "average",
  4369  		StatsType:           "rate",
  4370  		Level:               2,
  4371  		PerDeviceLevel:      3,
  4372  		AssociatedCounterId: nil,
  4373  	},
  4374  	{
  4375  		Key: 150,
  4376  		NameInfo: &types.ElementDescription{
  4377  			Description: types.Description{
  4378  				Label:   "Net Throughput Provisioned",
  4379  				Summary: "The maximum network bandwidth for the host",
  4380  			},
  4381  			Key: "throughput.provisioned",
  4382  		},
  4383  		GroupInfo: &types.ElementDescription{
  4384  			Description: types.Description{
  4385  				Label:   "Network",
  4386  				Summary: "Network",
  4387  			},
  4388  			Key: "net",
  4389  		},
  4390  		UnitInfo: &types.ElementDescription{
  4391  			Description: types.Description{
  4392  				Label:   "KBps",
  4393  				Summary: "Kilobytes per second",
  4394  			},
  4395  			Key: "kiloBytesPerSecond",
  4396  		},
  4397  		RollupType:          "average",
  4398  		StatsType:           "absolute",
  4399  		Level:               4,
  4400  		PerDeviceLevel:      4,
  4401  		AssociatedCounterId: nil,
  4402  	},
  4403  	{
  4404  		Key: 151,
  4405  		NameInfo: &types.ElementDescription{
  4406  			Description: types.Description{
  4407  				Label:   "Net Throughput Usable",
  4408  				Summary: "The current available network bandwidth for the host",
  4409  			},
  4410  			Key: "throughput.usable",
  4411  		},
  4412  		GroupInfo: &types.ElementDescription{
  4413  			Description: types.Description{
  4414  				Label:   "Network",
  4415  				Summary: "Network",
  4416  			},
  4417  			Key: "net",
  4418  		},
  4419  		UnitInfo: &types.ElementDescription{
  4420  			Description: types.Description{
  4421  				Label:   "KBps",
  4422  				Summary: "Kilobytes per second",
  4423  			},
  4424  			Key: "kiloBytesPerSecond",
  4425  		},
  4426  		RollupType:          "average",
  4427  		StatsType:           "absolute",
  4428  		Level:               4,
  4429  		PerDeviceLevel:      4,
  4430  		AssociatedCounterId: nil,
  4431  	},
  4432  	{
  4433  		Key: 152,
  4434  		NameInfo: &types.ElementDescription{
  4435  			Description: types.Description{
  4436  				Label:   "Net Throughput Usage",
  4437  				Summary: "The current network bandwidth usage for the host",
  4438  			},
  4439  			Key: "throughput.usage",
  4440  		},
  4441  		GroupInfo: &types.ElementDescription{
  4442  			Description: types.Description{
  4443  				Label:   "Network",
  4444  				Summary: "Network",
  4445  			},
  4446  			Key: "net",
  4447  		},
  4448  		UnitInfo: &types.ElementDescription{
  4449  			Description: types.Description{
  4450  				Label:   "KBps",
  4451  				Summary: "Kilobytes per second",
  4452  			},
  4453  			Key: "kiloBytesPerSecond",
  4454  		},
  4455  		RollupType:          "average",
  4456  		StatsType:           "rate",
  4457  		Level:               4,
  4458  		PerDeviceLevel:      4,
  4459  		AssociatedCounterId: nil,
  4460  	},
  4461  	{
  4462  		Key: 153,
  4463  		NameInfo: &types.ElementDescription{
  4464  			Description: types.Description{
  4465  				Label:   "Net Throughput Contention",
  4466  				Summary: "The aggregate network dropped packets for the host",
  4467  			},
  4468  			Key: "throughput.contention",
  4469  		},
  4470  		GroupInfo: &types.ElementDescription{
  4471  			Description: types.Description{
  4472  				Label:   "Network",
  4473  				Summary: "Network",
  4474  			},
  4475  			Key: "net",
  4476  		},
  4477  		UnitInfo: &types.ElementDescription{
  4478  			Description: types.Description{
  4479  				Label:   "num",
  4480  				Summary: "Number",
  4481  			},
  4482  			Key: "number",
  4483  		},
  4484  		RollupType:          "summation",
  4485  		StatsType:           "delta",
  4486  		Level:               4,
  4487  		PerDeviceLevel:      4,
  4488  		AssociatedCounterId: nil,
  4489  	},
  4490  	{
  4491  		Key: 154,
  4492  		NameInfo: &types.ElementDescription{
  4493  			Description: types.Description{
  4494  				Label:   "pNic Packets Received and Transmitted per Second",
  4495  				Summary: "Average rate of packets received and transmitted per second",
  4496  			},
  4497  			Key: "throughput.packetsPerSec",
  4498  		},
  4499  		GroupInfo: &types.ElementDescription{
  4500  			Description: types.Description{
  4501  				Label:   "Network",
  4502  				Summary: "Network",
  4503  			},
  4504  			Key: "net",
  4505  		},
  4506  		UnitInfo: &types.ElementDescription{
  4507  			Description: types.Description{
  4508  				Label:   "num",
  4509  				Summary: "Number",
  4510  			},
  4511  			Key: "number",
  4512  		},
  4513  		RollupType:          "average",
  4514  		StatsType:           "rate",
  4515  		Level:               4,
  4516  		PerDeviceLevel:      4,
  4517  		AssociatedCounterId: nil,
  4518  	},
  4519  	{
  4520  		Key: 155,
  4521  		NameInfo: &types.ElementDescription{
  4522  			Description: types.Description{
  4523  				Label:   "Uptime",
  4524  				Summary: "Total time elapsed, in seconds, since last system startup",
  4525  			},
  4526  			Key: "uptime",
  4527  		},
  4528  		GroupInfo: &types.ElementDescription{
  4529  			Description: types.Description{
  4530  				Label:   "System",
  4531  				Summary: "System",
  4532  			},
  4533  			Key: "sys",
  4534  		},
  4535  		UnitInfo: &types.ElementDescription{
  4536  			Description: types.Description{
  4537  				Label:   "s",
  4538  				Summary: "Second",
  4539  			},
  4540  			Key: "second",
  4541  		},
  4542  		RollupType:          "latest",
  4543  		StatsType:           "absolute",
  4544  		Level:               1,
  4545  		PerDeviceLevel:      3,
  4546  		AssociatedCounterId: nil,
  4547  	},
  4548  	{
  4549  		Key: 156,
  4550  		NameInfo: &types.ElementDescription{
  4551  			Description: types.Description{
  4552  				Label:   "Heartbeat",
  4553  				Summary: "Number of heartbeats issued per virtual machine during the interval",
  4554  			},
  4555  			Key: "heartbeat",
  4556  		},
  4557  		GroupInfo: &types.ElementDescription{
  4558  			Description: types.Description{
  4559  				Label:   "System",
  4560  				Summary: "System",
  4561  			},
  4562  			Key: "sys",
  4563  		},
  4564  		UnitInfo: &types.ElementDescription{
  4565  			Description: types.Description{
  4566  				Label:   "num",
  4567  				Summary: "Number",
  4568  			},
  4569  			Key: "number",
  4570  		},
  4571  		RollupType:          "summation",
  4572  		StatsType:           "delta",
  4573  		Level:               1,
  4574  		PerDeviceLevel:      3,
  4575  		AssociatedCounterId: nil,
  4576  	},
  4577  	{
  4578  		Key: 157,
  4579  		NameInfo: &types.ElementDescription{
  4580  			Description: types.Description{
  4581  				Label:   "Usage",
  4582  				Summary: "Current power usage",
  4583  			},
  4584  			Key: "power",
  4585  		},
  4586  		GroupInfo: &types.ElementDescription{
  4587  			Description: types.Description{
  4588  				Label:   "Power",
  4589  				Summary: "Power",
  4590  			},
  4591  			Key: "power",
  4592  		},
  4593  		UnitInfo: &types.ElementDescription{
  4594  			Description: types.Description{
  4595  				Label:   "W",
  4596  				Summary: "Watt",
  4597  			},
  4598  			Key: "watt",
  4599  		},
  4600  		RollupType:          "average",
  4601  		StatsType:           "rate",
  4602  		Level:               2,
  4603  		PerDeviceLevel:      3,
  4604  		AssociatedCounterId: nil,
  4605  	},
  4606  	{
  4607  		Key: 158,
  4608  		NameInfo: &types.ElementDescription{
  4609  			Description: types.Description{
  4610  				Label:   "Cap",
  4611  				Summary: "Maximum allowed power usage",
  4612  			},
  4613  			Key: "powerCap",
  4614  		},
  4615  		GroupInfo: &types.ElementDescription{
  4616  			Description: types.Description{
  4617  				Label:   "Power",
  4618  				Summary: "Power",
  4619  			},
  4620  			Key: "power",
  4621  		},
  4622  		UnitInfo: &types.ElementDescription{
  4623  			Description: types.Description{
  4624  				Label:   "W",
  4625  				Summary: "Watt",
  4626  			},
  4627  			Key: "watt",
  4628  		},
  4629  		RollupType:          "average",
  4630  		StatsType:           "absolute",
  4631  		Level:               3,
  4632  		PerDeviceLevel:      3,
  4633  		AssociatedCounterId: nil,
  4634  	},
  4635  	{
  4636  		Key: 159,
  4637  		NameInfo: &types.ElementDescription{
  4638  			Description: types.Description{
  4639  				Label:   "Energy usage",
  4640  				Summary: "Total energy used since last stats reset",
  4641  			},
  4642  			Key: "energy",
  4643  		},
  4644  		GroupInfo: &types.ElementDescription{
  4645  			Description: types.Description{
  4646  				Label:   "Power",
  4647  				Summary: "Power",
  4648  			},
  4649  			Key: "power",
  4650  		},
  4651  		UnitInfo: &types.ElementDescription{
  4652  			Description: types.Description{
  4653  				Label:   "J",
  4654  				Summary: "Joule",
  4655  			},
  4656  			Key: "joule",
  4657  		},
  4658  		RollupType:          "summation",
  4659  		StatsType:           "delta",
  4660  		Level:               3,
  4661  		PerDeviceLevel:      3,
  4662  		AssociatedCounterId: nil,
  4663  	},
  4664  	{
  4665  		Key: 160,
  4666  		NameInfo: &types.ElementDescription{
  4667  			Description: types.Description{
  4668  				Label:   "Host Power Capacity Provisioned",
  4669  				Summary: "Current power usage as a percentage of maximum allowed power.",
  4670  			},
  4671  			Key: "capacity.usagePct",
  4672  		},
  4673  		GroupInfo: &types.ElementDescription{
  4674  			Description: types.Description{
  4675  				Label:   "Power",
  4676  				Summary: "Power",
  4677  			},
  4678  			Key: "power",
  4679  		},
  4680  		UnitInfo: &types.ElementDescription{
  4681  			Description: types.Description{
  4682  				Label:   "%",
  4683  				Summary: "Percentage",
  4684  			},
  4685  			Key: "percent",
  4686  		},
  4687  		RollupType:          "average",
  4688  		StatsType:           "absolute",
  4689  		Level:               4,
  4690  		PerDeviceLevel:      4,
  4691  		AssociatedCounterId: nil,
  4692  	},
  4693  	{
  4694  		Key: 161,
  4695  		NameInfo: &types.ElementDescription{
  4696  			Description: types.Description{
  4697  				Label:   "Average commands issued per second",
  4698  				Summary: "Average number of commands issued per second by the storage adapter during the collection interval",
  4699  			},
  4700  			Key: "commandsAveraged",
  4701  		},
  4702  		GroupInfo: &types.ElementDescription{
  4703  			Description: types.Description{
  4704  				Label:   "Storage adapter",
  4705  				Summary: "Storage adapter",
  4706  			},
  4707  			Key: "storageAdapter",
  4708  		},
  4709  		UnitInfo: &types.ElementDescription{
  4710  			Description: types.Description{
  4711  				Label:   "num",
  4712  				Summary: "Number",
  4713  			},
  4714  			Key: "number",
  4715  		},
  4716  		RollupType:          "average",
  4717  		StatsType:           "rate",
  4718  		Level:               2,
  4719  		PerDeviceLevel:      2,
  4720  		AssociatedCounterId: nil,
  4721  	},
  4722  	{
  4723  		Key: 162,
  4724  		NameInfo: &types.ElementDescription{
  4725  			Description: types.Description{
  4726  				Label:   "Average read requests per second",
  4727  				Summary: "Average number of read commands issued per second by the storage adapter during the collection interval",
  4728  			},
  4729  			Key: "numberReadAveraged",
  4730  		},
  4731  		GroupInfo: &types.ElementDescription{
  4732  			Description: types.Description{
  4733  				Label:   "Storage adapter",
  4734  				Summary: "Storage adapter",
  4735  			},
  4736  			Key: "storageAdapter",
  4737  		},
  4738  		UnitInfo: &types.ElementDescription{
  4739  			Description: types.Description{
  4740  				Label:   "num",
  4741  				Summary: "Number",
  4742  			},
  4743  			Key: "number",
  4744  		},
  4745  		RollupType:          "average",
  4746  		StatsType:           "rate",
  4747  		Level:               2,
  4748  		PerDeviceLevel:      2,
  4749  		AssociatedCounterId: nil,
  4750  	},
  4751  	{
  4752  		Key: 163,
  4753  		NameInfo: &types.ElementDescription{
  4754  			Description: types.Description{
  4755  				Label:   "Average write requests per second",
  4756  				Summary: "Average number of write commands issued per second by the storage adapter during the collection interval",
  4757  			},
  4758  			Key: "numberWriteAveraged",
  4759  		},
  4760  		GroupInfo: &types.ElementDescription{
  4761  			Description: types.Description{
  4762  				Label:   "Storage adapter",
  4763  				Summary: "Storage adapter",
  4764  			},
  4765  			Key: "storageAdapter",
  4766  		},
  4767  		UnitInfo: &types.ElementDescription{
  4768  			Description: types.Description{
  4769  				Label:   "num",
  4770  				Summary: "Number",
  4771  			},
  4772  			Key: "number",
  4773  		},
  4774  		RollupType:          "average",
  4775  		StatsType:           "rate",
  4776  		Level:               2,
  4777  		PerDeviceLevel:      2,
  4778  		AssociatedCounterId: nil,
  4779  	},
  4780  	{
  4781  		Key: 164,
  4782  		NameInfo: &types.ElementDescription{
  4783  			Description: types.Description{
  4784  				Label:   "Read rate",
  4785  				Summary: "Rate of reading data by the storage adapter",
  4786  			},
  4787  			Key: "read",
  4788  		},
  4789  		GroupInfo: &types.ElementDescription{
  4790  			Description: types.Description{
  4791  				Label:   "Storage adapter",
  4792  				Summary: "Storage adapter",
  4793  			},
  4794  			Key: "storageAdapter",
  4795  		},
  4796  		UnitInfo: &types.ElementDescription{
  4797  			Description: types.Description{
  4798  				Label:   "KBps",
  4799  				Summary: "Kilobytes per second",
  4800  			},
  4801  			Key: "kiloBytesPerSecond",
  4802  		},
  4803  		RollupType:          "average",
  4804  		StatsType:           "rate",
  4805  		Level:               2,
  4806  		PerDeviceLevel:      2,
  4807  		AssociatedCounterId: nil,
  4808  	},
  4809  	{
  4810  		Key: 165,
  4811  		NameInfo: &types.ElementDescription{
  4812  			Description: types.Description{
  4813  				Label:   "Write rate",
  4814  				Summary: "Rate of writing data by the storage adapter",
  4815  			},
  4816  			Key: "write",
  4817  		},
  4818  		GroupInfo: &types.ElementDescription{
  4819  			Description: types.Description{
  4820  				Label:   "Storage adapter",
  4821  				Summary: "Storage adapter",
  4822  			},
  4823  			Key: "storageAdapter",
  4824  		},
  4825  		UnitInfo: &types.ElementDescription{
  4826  			Description: types.Description{
  4827  				Label:   "KBps",
  4828  				Summary: "Kilobytes per second",
  4829  			},
  4830  			Key: "kiloBytesPerSecond",
  4831  		},
  4832  		RollupType:          "average",
  4833  		StatsType:           "rate",
  4834  		Level:               2,
  4835  		PerDeviceLevel:      2,
  4836  		AssociatedCounterId: nil,
  4837  	},
  4838  	{
  4839  		Key: 166,
  4840  		NameInfo: &types.ElementDescription{
  4841  			Description: types.Description{
  4842  				Label:   "Read latency",
  4843  				Summary: "The average time a read by the storage adapter takes",
  4844  			},
  4845  			Key: "totalReadLatency",
  4846  		},
  4847  		GroupInfo: &types.ElementDescription{
  4848  			Description: types.Description{
  4849  				Label:   "Storage adapter",
  4850  				Summary: "Storage adapter",
  4851  			},
  4852  			Key: "storageAdapter",
  4853  		},
  4854  		UnitInfo: &types.ElementDescription{
  4855  			Description: types.Description{
  4856  				Label:   "ms",
  4857  				Summary: "Millisecond",
  4858  			},
  4859  			Key: "millisecond",
  4860  		},
  4861  		RollupType:          "average",
  4862  		StatsType:           "absolute",
  4863  		Level:               2,
  4864  		PerDeviceLevel:      2,
  4865  		AssociatedCounterId: nil,
  4866  	},
  4867  	{
  4868  		Key: 167,
  4869  		NameInfo: &types.ElementDescription{
  4870  			Description: types.Description{
  4871  				Label:   "Write latency",
  4872  				Summary: "The average time a write by the storage adapter takes",
  4873  			},
  4874  			Key: "totalWriteLatency",
  4875  		},
  4876  		GroupInfo: &types.ElementDescription{
  4877  			Description: types.Description{
  4878  				Label:   "Storage adapter",
  4879  				Summary: "Storage adapter",
  4880  			},
  4881  			Key: "storageAdapter",
  4882  		},
  4883  		UnitInfo: &types.ElementDescription{
  4884  			Description: types.Description{
  4885  				Label:   "ms",
  4886  				Summary: "Millisecond",
  4887  			},
  4888  			Key: "millisecond",
  4889  		},
  4890  		RollupType:          "average",
  4891  		StatsType:           "absolute",
  4892  		Level:               2,
  4893  		PerDeviceLevel:      2,
  4894  		AssociatedCounterId: nil,
  4895  	},
  4896  	{
  4897  		Key: 168,
  4898  		NameInfo: &types.ElementDescription{
  4899  			Description: types.Description{
  4900  				Label:   "Highest latency",
  4901  				Summary: "Highest latency value across all storage adapters used by the host",
  4902  			},
  4903  			Key: "maxTotalLatency",
  4904  		},
  4905  		GroupInfo: &types.ElementDescription{
  4906  			Description: types.Description{
  4907  				Label:   "Storage adapter",
  4908  				Summary: "Storage adapter",
  4909  			},
  4910  			Key: "storageAdapter",
  4911  		},
  4912  		UnitInfo: &types.ElementDescription{
  4913  			Description: types.Description{
  4914  				Label:   "ms",
  4915  				Summary: "Millisecond",
  4916  			},
  4917  			Key: "millisecond",
  4918  		},
  4919  		RollupType:          "latest",
  4920  		StatsType:           "absolute",
  4921  		Level:               3,
  4922  		PerDeviceLevel:      3,
  4923  		AssociatedCounterId: nil,
  4924  	},
  4925  	{
  4926  		Key: 169,
  4927  		NameInfo: &types.ElementDescription{
  4928  			Description: types.Description{
  4929  				Label:   "Storage Adapter Throughput Contention",
  4930  				Summary: "Average amount of time for an I/O operation to complete successfully",
  4931  			},
  4932  			Key: "throughput.cont",
  4933  		},
  4934  		GroupInfo: &types.ElementDescription{
  4935  			Description: types.Description{
  4936  				Label:   "Storage adapter",
  4937  				Summary: "Storage adapter",
  4938  			},
  4939  			Key: "storageAdapter",
  4940  		},
  4941  		UnitInfo: &types.ElementDescription{
  4942  			Description: types.Description{
  4943  				Label:   "ms",
  4944  				Summary: "Millisecond",
  4945  			},
  4946  			Key: "millisecond",
  4947  		},
  4948  		RollupType:          "average",
  4949  		StatsType:           "absolute",
  4950  		Level:               4,
  4951  		PerDeviceLevel:      4,
  4952  		AssociatedCounterId: nil,
  4953  	},
  4954  	{
  4955  		Key: 170,
  4956  		NameInfo: &types.ElementDescription{
  4957  			Description: types.Description{
  4958  				Label:   "Storage Adapter Outstanding I/Os",
  4959  				Summary: "The percent of I/Os that have been issued but have not yet completed",
  4960  			},
  4961  			Key: "OIOsPct",
  4962  		},
  4963  		GroupInfo: &types.ElementDescription{
  4964  			Description: types.Description{
  4965  				Label:   "Storage adapter",
  4966  				Summary: "Storage adapter",
  4967  			},
  4968  			Key: "storageAdapter",
  4969  		},
  4970  		UnitInfo: &types.ElementDescription{
  4971  			Description: types.Description{
  4972  				Label:   "%",
  4973  				Summary: "Percentage",
  4974  			},
  4975  			Key: "percent",
  4976  		},
  4977  		RollupType:          "average",
  4978  		StatsType:           "absolute",
  4979  		Level:               4,
  4980  		PerDeviceLevel:      4,
  4981  		AssociatedCounterId: nil,
  4982  	},
  4983  	{
  4984  		Key: 171,
  4985  		NameInfo: &types.ElementDescription{
  4986  			Description: types.Description{
  4987  				Label:   "Average read requests per second",
  4988  				Summary: "Average number of read commands issued per second to the virtual disk during the collection interval",
  4989  			},
  4990  			Key: "numberReadAveraged",
  4991  		},
  4992  		GroupInfo: &types.ElementDescription{
  4993  			Description: types.Description{
  4994  				Label:   "Virtual disk",
  4995  				Summary: "Virtual disk",
  4996  			},
  4997  			Key: "virtualDisk",
  4998  		},
  4999  		UnitInfo: &types.ElementDescription{
  5000  			Description: types.Description{
  5001  				Label:   "num",
  5002  				Summary: "Number",
  5003  			},
  5004  			Key: "number",
  5005  		},
  5006  		RollupType:          "average",
  5007  		StatsType:           "rate",
  5008  		Level:               1,
  5009  		PerDeviceLevel:      3,
  5010  		AssociatedCounterId: nil,
  5011  	},
  5012  	{
  5013  		Key: 172,
  5014  		NameInfo: &types.ElementDescription{
  5015  			Description: types.Description{
  5016  				Label:   "Average write requests per second",
  5017  				Summary: "Average number of write commands issued per second to the virtual disk during the collection interval",
  5018  			},
  5019  			Key: "numberWriteAveraged",
  5020  		},
  5021  		GroupInfo: &types.ElementDescription{
  5022  			Description: types.Description{
  5023  				Label:   "Virtual disk",
  5024  				Summary: "Virtual disk",
  5025  			},
  5026  			Key: "virtualDisk",
  5027  		},
  5028  		UnitInfo: &types.ElementDescription{
  5029  			Description: types.Description{
  5030  				Label:   "num",
  5031  				Summary: "Number",
  5032  			},
  5033  			Key: "number",
  5034  		},
  5035  		RollupType:          "average",
  5036  		StatsType:           "rate",
  5037  		Level:               1,
  5038  		PerDeviceLevel:      3,
  5039  		AssociatedCounterId: nil,
  5040  	},
  5041  	{
  5042  		Key: 173,
  5043  		NameInfo: &types.ElementDescription{
  5044  			Description: types.Description{
  5045  				Label:   "Read rate",
  5046  				Summary: "Rate of reading data from the virtual disk",
  5047  			},
  5048  			Key: "read",
  5049  		},
  5050  		GroupInfo: &types.ElementDescription{
  5051  			Description: types.Description{
  5052  				Label:   "Virtual disk",
  5053  				Summary: "Virtual disk",
  5054  			},
  5055  			Key: "virtualDisk",
  5056  		},
  5057  		UnitInfo: &types.ElementDescription{
  5058  			Description: types.Description{
  5059  				Label:   "KBps",
  5060  				Summary: "Kilobytes per second",
  5061  			},
  5062  			Key: "kiloBytesPerSecond",
  5063  		},
  5064  		RollupType:          "average",
  5065  		StatsType:           "rate",
  5066  		Level:               2,
  5067  		PerDeviceLevel:      2,
  5068  		AssociatedCounterId: nil,
  5069  	},
  5070  	{
  5071  		Key: 174,
  5072  		NameInfo: &types.ElementDescription{
  5073  			Description: types.Description{
  5074  				Label:   "Write rate",
  5075  				Summary: "Rate of writing data to the virtual disk",
  5076  			},
  5077  			Key: "write",
  5078  		},
  5079  		GroupInfo: &types.ElementDescription{
  5080  			Description: types.Description{
  5081  				Label:   "Virtual disk",
  5082  				Summary: "Virtual disk",
  5083  			},
  5084  			Key: "virtualDisk",
  5085  		},
  5086  		UnitInfo: &types.ElementDescription{
  5087  			Description: types.Description{
  5088  				Label:   "KBps",
  5089  				Summary: "Kilobytes per second",
  5090  			},
  5091  			Key: "kiloBytesPerSecond",
  5092  		},
  5093  		RollupType:          "average",
  5094  		StatsType:           "rate",
  5095  		Level:               2,
  5096  		PerDeviceLevel:      2,
  5097  		AssociatedCounterId: nil,
  5098  	},
  5099  	{
  5100  		Key: 175,
  5101  		NameInfo: &types.ElementDescription{
  5102  			Description: types.Description{
  5103  				Label:   "Read latency",
  5104  				Summary: "The average time a read from the virtual disk takes",
  5105  			},
  5106  			Key: "totalReadLatency",
  5107  		},
  5108  		GroupInfo: &types.ElementDescription{
  5109  			Description: types.Description{
  5110  				Label:   "Virtual disk",
  5111  				Summary: "Virtual disk",
  5112  			},
  5113  			Key: "virtualDisk",
  5114  		},
  5115  		UnitInfo: &types.ElementDescription{
  5116  			Description: types.Description{
  5117  				Label:   "ms",
  5118  				Summary: "Millisecond",
  5119  			},
  5120  			Key: "millisecond",
  5121  		},
  5122  		RollupType:          "average",
  5123  		StatsType:           "absolute",
  5124  		Level:               1,
  5125  		PerDeviceLevel:      3,
  5126  		AssociatedCounterId: nil,
  5127  	},
  5128  	{
  5129  		Key: 176,
  5130  		NameInfo: &types.ElementDescription{
  5131  			Description: types.Description{
  5132  				Label:   "Write latency",
  5133  				Summary: "The average time a write to the virtual disk takes",
  5134  			},
  5135  			Key: "totalWriteLatency",
  5136  		},
  5137  		GroupInfo: &types.ElementDescription{
  5138  			Description: types.Description{
  5139  				Label:   "Virtual disk",
  5140  				Summary: "Virtual disk",
  5141  			},
  5142  			Key: "virtualDisk",
  5143  		},
  5144  		UnitInfo: &types.ElementDescription{
  5145  			Description: types.Description{
  5146  				Label:   "ms",
  5147  				Summary: "Millisecond",
  5148  			},
  5149  			Key: "millisecond",
  5150  		},
  5151  		RollupType:          "average",
  5152  		StatsType:           "absolute",
  5153  		Level:               1,
  5154  		PerDeviceLevel:      3,
  5155  		AssociatedCounterId: nil,
  5156  	},
  5157  	{
  5158  		Key: 177,
  5159  		NameInfo: &types.ElementDescription{
  5160  			Description: types.Description{
  5161  				Label:   "Virtual Disk Throughput Contention",
  5162  				Summary: "Average amount of time for an I/O operation to complete successfully",
  5163  			},
  5164  			Key: "throughput.cont",
  5165  		},
  5166  		GroupInfo: &types.ElementDescription{
  5167  			Description: types.Description{
  5168  				Label:   "Virtual disk",
  5169  				Summary: "Virtual disk",
  5170  			},
  5171  			Key: "virtualDisk",
  5172  		},
  5173  		UnitInfo: &types.ElementDescription{
  5174  			Description: types.Description{
  5175  				Label:   "ms",
  5176  				Summary: "Millisecond",
  5177  			},
  5178  			Key: "millisecond",
  5179  		},
  5180  		RollupType:          "average",
  5181  		StatsType:           "absolute",
  5182  		Level:               4,
  5183  		PerDeviceLevel:      4,
  5184  		AssociatedCounterId: nil,
  5185  	},
  5186  	{
  5187  		Key: 178,
  5188  		NameInfo: &types.ElementDescription{
  5189  			Description: types.Description{
  5190  				Label:   "Average read requests per second",
  5191  				Summary: "Average number of read commands issued per second to the datastore during the collection interval",
  5192  			},
  5193  			Key: "numberReadAveraged",
  5194  		},
  5195  		GroupInfo: &types.ElementDescription{
  5196  			Description: types.Description{
  5197  				Label:   "Datastore",
  5198  				Summary: "Datastore",
  5199  			},
  5200  			Key: "datastore",
  5201  		},
  5202  		UnitInfo: &types.ElementDescription{
  5203  			Description: types.Description{
  5204  				Label:   "num",
  5205  				Summary: "Number",
  5206  			},
  5207  			Key: "number",
  5208  		},
  5209  		RollupType:          "average",
  5210  		StatsType:           "rate",
  5211  		Level:               1,
  5212  		PerDeviceLevel:      3,
  5213  		AssociatedCounterId: nil,
  5214  	},
  5215  	{
  5216  		Key: 179,
  5217  		NameInfo: &types.ElementDescription{
  5218  			Description: types.Description{
  5219  				Label:   "Average write requests per second",
  5220  				Summary: "Average number of write commands issued per second to the datastore during the collection interval",
  5221  			},
  5222  			Key: "numberWriteAveraged",
  5223  		},
  5224  		GroupInfo: &types.ElementDescription{
  5225  			Description: types.Description{
  5226  				Label:   "Datastore",
  5227  				Summary: "Datastore",
  5228  			},
  5229  			Key: "datastore",
  5230  		},
  5231  		UnitInfo: &types.ElementDescription{
  5232  			Description: types.Description{
  5233  				Label:   "num",
  5234  				Summary: "Number",
  5235  			},
  5236  			Key: "number",
  5237  		},
  5238  		RollupType:          "average",
  5239  		StatsType:           "rate",
  5240  		Level:               1,
  5241  		PerDeviceLevel:      3,
  5242  		AssociatedCounterId: nil,
  5243  	},
  5244  	{
  5245  		Key: 180,
  5246  		NameInfo: &types.ElementDescription{
  5247  			Description: types.Description{
  5248  				Label:   "Read rate",
  5249  				Summary: "Rate of reading data from the datastore",
  5250  			},
  5251  			Key: "read",
  5252  		},
  5253  		GroupInfo: &types.ElementDescription{
  5254  			Description: types.Description{
  5255  				Label:   "Datastore",
  5256  				Summary: "Datastore",
  5257  			},
  5258  			Key: "datastore",
  5259  		},
  5260  		UnitInfo: &types.ElementDescription{
  5261  			Description: types.Description{
  5262  				Label:   "KBps",
  5263  				Summary: "Kilobytes per second",
  5264  			},
  5265  			Key: "kiloBytesPerSecond",
  5266  		},
  5267  		RollupType:          "average",
  5268  		StatsType:           "rate",
  5269  		Level:               2,
  5270  		PerDeviceLevel:      2,
  5271  		AssociatedCounterId: nil,
  5272  	},
  5273  	{
  5274  		Key: 181,
  5275  		NameInfo: &types.ElementDescription{
  5276  			Description: types.Description{
  5277  				Label:   "Write rate",
  5278  				Summary: "Rate of writing data to the datastore",
  5279  			},
  5280  			Key: "write",
  5281  		},
  5282  		GroupInfo: &types.ElementDescription{
  5283  			Description: types.Description{
  5284  				Label:   "Datastore",
  5285  				Summary: "Datastore",
  5286  			},
  5287  			Key: "datastore",
  5288  		},
  5289  		UnitInfo: &types.ElementDescription{
  5290  			Description: types.Description{
  5291  				Label:   "KBps",
  5292  				Summary: "Kilobytes per second",
  5293  			},
  5294  			Key: "kiloBytesPerSecond",
  5295  		},
  5296  		RollupType:          "average",
  5297  		StatsType:           "rate",
  5298  		Level:               2,
  5299  		PerDeviceLevel:      2,
  5300  		AssociatedCounterId: nil,
  5301  	},
  5302  	{
  5303  		Key: 182,
  5304  		NameInfo: &types.ElementDescription{
  5305  			Description: types.Description{
  5306  				Label:   "Read latency",
  5307  				Summary: "The average time a read from the datastore takes",
  5308  			},
  5309  			Key: "totalReadLatency",
  5310  		},
  5311  		GroupInfo: &types.ElementDescription{
  5312  			Description: types.Description{
  5313  				Label:   "Datastore",
  5314  				Summary: "Datastore",
  5315  			},
  5316  			Key: "datastore",
  5317  		},
  5318  		UnitInfo: &types.ElementDescription{
  5319  			Description: types.Description{
  5320  				Label:   "ms",
  5321  				Summary: "Millisecond",
  5322  			},
  5323  			Key: "millisecond",
  5324  		},
  5325  		RollupType:          "average",
  5326  		StatsType:           "absolute",
  5327  		Level:               1,
  5328  		PerDeviceLevel:      3,
  5329  		AssociatedCounterId: nil,
  5330  	},
  5331  	{
  5332  		Key: 183,
  5333  		NameInfo: &types.ElementDescription{
  5334  			Description: types.Description{
  5335  				Label:   "Write latency",
  5336  				Summary: "The average time a write to the datastore takes",
  5337  			},
  5338  			Key: "totalWriteLatency",
  5339  		},
  5340  		GroupInfo: &types.ElementDescription{
  5341  			Description: types.Description{
  5342  				Label:   "Datastore",
  5343  				Summary: "Datastore",
  5344  			},
  5345  			Key: "datastore",
  5346  		},
  5347  		UnitInfo: &types.ElementDescription{
  5348  			Description: types.Description{
  5349  				Label:   "ms",
  5350  				Summary: "Millisecond",
  5351  			},
  5352  			Key: "millisecond",
  5353  		},
  5354  		RollupType:          "average",
  5355  		StatsType:           "absolute",
  5356  		Level:               1,
  5357  		PerDeviceLevel:      3,
  5358  		AssociatedCounterId: nil,
  5359  	},
  5360  	{
  5361  		Key: 184,
  5362  		NameInfo: &types.ElementDescription{
  5363  			Description: types.Description{
  5364  				Label:   "Highest latency",
  5365  				Summary: "Highest latency value across all datastores used by the host",
  5366  			},
  5367  			Key: "maxTotalLatency",
  5368  		},
  5369  		GroupInfo: &types.ElementDescription{
  5370  			Description: types.Description{
  5371  				Label:   "Datastore",
  5372  				Summary: "Datastore",
  5373  			},
  5374  			Key: "datastore",
  5375  		},
  5376  		UnitInfo: &types.ElementDescription{
  5377  			Description: types.Description{
  5378  				Label:   "ms",
  5379  				Summary: "Millisecond",
  5380  			},
  5381  			Key: "millisecond",
  5382  		},
  5383  		RollupType:          "latest",
  5384  		StatsType:           "absolute",
  5385  		Level:               3,
  5386  		PerDeviceLevel:      3,
  5387  		AssociatedCounterId: nil,
  5388  	},
  5389  	{
  5390  		Key: 185,
  5391  		NameInfo: &types.ElementDescription{
  5392  			Description: types.Description{
  5393  				Label:   "Storage I/O Control aggregated IOPS",
  5394  				Summary: "Storage I/O Control aggregated IOPS",
  5395  			},
  5396  			Key: "datastoreIops",
  5397  		},
  5398  		GroupInfo: &types.ElementDescription{
  5399  			Description: types.Description{
  5400  				Label:   "Datastore",
  5401  				Summary: "Datastore",
  5402  			},
  5403  			Key: "datastore",
  5404  		},
  5405  		UnitInfo: &types.ElementDescription{
  5406  			Description: types.Description{
  5407  				Label:   "num",
  5408  				Summary: "Number",
  5409  			},
  5410  			Key: "number",
  5411  		},
  5412  		RollupType:          "average",
  5413  		StatsType:           "absolute",
  5414  		Level:               1,
  5415  		PerDeviceLevel:      3,
  5416  		AssociatedCounterId: nil,
  5417  	},
  5418  	{
  5419  		Key: 186,
  5420  		NameInfo: &types.ElementDescription{
  5421  			Description: types.Description{
  5422  				Label:   "Storage I/O Control normalized latency",
  5423  				Summary: "Storage I/O Control size-normalized I/O latency",
  5424  			},
  5425  			Key: "sizeNormalizedDatastoreLatency",
  5426  		},
  5427  		GroupInfo: &types.ElementDescription{
  5428  			Description: types.Description{
  5429  				Label:   "Datastore",
  5430  				Summary: "Datastore",
  5431  			},
  5432  			Key: "datastore",
  5433  		},
  5434  		UnitInfo: &types.ElementDescription{
  5435  			Description: types.Description{
  5436  				Label:   "µs",
  5437  				Summary: "Microsecond",
  5438  			},
  5439  			Key: "microsecond",
  5440  		},
  5441  		RollupType:          "average",
  5442  		StatsType:           "absolute",
  5443  		Level:               1,
  5444  		PerDeviceLevel:      3,
  5445  		AssociatedCounterId: nil,
  5446  	},
  5447  	{
  5448  		Key: 187,
  5449  		NameInfo: &types.ElementDescription{
  5450  			Description: types.Description{
  5451  				Label:   "usage",
  5452  				Summary: "usage",
  5453  			},
  5454  			Key: "throughput.usage",
  5455  		},
  5456  		GroupInfo: &types.ElementDescription{
  5457  			Description: types.Description{
  5458  				Label:   "Datastore",
  5459  				Summary: "Datastore",
  5460  			},
  5461  			Key: "datastore",
  5462  		},
  5463  		UnitInfo: &types.ElementDescription{
  5464  			Description: types.Description{
  5465  				Label:   "KBps",
  5466  				Summary: "Kilobytes per second",
  5467  			},
  5468  			Key: "kiloBytesPerSecond",
  5469  		},
  5470  		RollupType:          "average",
  5471  		StatsType:           "absolute",
  5472  		Level:               4,
  5473  		PerDeviceLevel:      4,
  5474  		AssociatedCounterId: nil,
  5475  	},
  5476  	{
  5477  		Key: 188,
  5478  		NameInfo: &types.ElementDescription{
  5479  			Description: types.Description{
  5480  				Label:   "contention",
  5481  				Summary: "contention",
  5482  			},
  5483  			Key: "throughput.contention",
  5484  		},
  5485  		GroupInfo: &types.ElementDescription{
  5486  			Description: types.Description{
  5487  				Label:   "Datastore",
  5488  				Summary: "Datastore",
  5489  			},
  5490  			Key: "datastore",
  5491  		},
  5492  		UnitInfo: &types.ElementDescription{
  5493  			Description: types.Description{
  5494  				Label:   "ms",
  5495  				Summary: "Millisecond",
  5496  			},
  5497  			Key: "millisecond",
  5498  		},
  5499  		RollupType:          "average",
  5500  		StatsType:           "absolute",
  5501  		Level:               4,
  5502  		PerDeviceLevel:      4,
  5503  		AssociatedCounterId: nil,
  5504  	},
  5505  	{
  5506  		Key: 189,
  5507  		NameInfo: &types.ElementDescription{
  5508  			Description: types.Description{
  5509  				Label:   "busResets",
  5510  				Summary: "busResets",
  5511  			},
  5512  			Key: "busResets",
  5513  		},
  5514  		GroupInfo: &types.ElementDescription{
  5515  			Description: types.Description{
  5516  				Label:   "Datastore",
  5517  				Summary: "Datastore",
  5518  			},
  5519  			Key: "datastore",
  5520  		},
  5521  		UnitInfo: &types.ElementDescription{
  5522  			Description: types.Description{
  5523  				Label:   "num",
  5524  				Summary: "Number",
  5525  			},
  5526  			Key: "number",
  5527  		},
  5528  		RollupType:          "summation",
  5529  		StatsType:           "delta",
  5530  		Level:               2,
  5531  		PerDeviceLevel:      2,
  5532  		AssociatedCounterId: nil,
  5533  	},
  5534  	{
  5535  		Key: 190,
  5536  		NameInfo: &types.ElementDescription{
  5537  			Description: types.Description{
  5538  				Label:   "commandsAborted",
  5539  				Summary: "commandsAborted",
  5540  			},
  5541  			Key: "commandsAborted",
  5542  		},
  5543  		GroupInfo: &types.ElementDescription{
  5544  			Description: types.Description{
  5545  				Label:   "Datastore",
  5546  				Summary: "Datastore",
  5547  			},
  5548  			Key: "datastore",
  5549  		},
  5550  		UnitInfo: &types.ElementDescription{
  5551  			Description: types.Description{
  5552  				Label:   "num",
  5553  				Summary: "Number",
  5554  			},
  5555  			Key: "number",
  5556  		},
  5557  		RollupType:          "summation",
  5558  		StatsType:           "delta",
  5559  		Level:               2,
  5560  		PerDeviceLevel:      2,
  5561  		AssociatedCounterId: nil,
  5562  	},
  5563  	{
  5564  		Key: 191,
  5565  		NameInfo: &types.ElementDescription{
  5566  			Description: types.Description{
  5567  				Label:   "Storage I/O Control active time percentage",
  5568  				Summary: "Percentage of time Storage I/O Control actively controlled datastore latency",
  5569  			},
  5570  			Key: "siocActiveTimePercentage",
  5571  		},
  5572  		GroupInfo: &types.ElementDescription{
  5573  			Description: types.Description{
  5574  				Label:   "Datastore",
  5575  				Summary: "Datastore",
  5576  			},
  5577  			Key: "datastore",
  5578  		},
  5579  		UnitInfo: &types.ElementDescription{
  5580  			Description: types.Description{
  5581  				Label:   "%",
  5582  				Summary: "Percentage",
  5583  			},
  5584  			Key: "percent",
  5585  		},
  5586  		RollupType:          "average",
  5587  		StatsType:           "absolute",
  5588  		Level:               1,
  5589  		PerDeviceLevel:      3,
  5590  		AssociatedCounterId: nil,
  5591  	},
  5592  	{
  5593  		Key: 192,
  5594  		NameInfo: &types.ElementDescription{
  5595  			Description: types.Description{
  5596  				Label:   "Storage Path Throughput Contention",
  5597  				Summary: "Average amount of time for an I/O operation to complete successfully",
  5598  			},
  5599  			Key: "throughput.cont",
  5600  		},
  5601  		GroupInfo: &types.ElementDescription{
  5602  			Description: types.Description{
  5603  				Label:   "Storage path",
  5604  				Summary: "Storage path",
  5605  			},
  5606  			Key: "storagePath",
  5607  		},
  5608  		UnitInfo: &types.ElementDescription{
  5609  			Description: types.Description{
  5610  				Label:   "ms",
  5611  				Summary: "Millisecond",
  5612  			},
  5613  			Key: "millisecond",
  5614  		},
  5615  		RollupType:          "average",
  5616  		StatsType:           "absolute",
  5617  		Level:               4,
  5618  		PerDeviceLevel:      4,
  5619  		AssociatedCounterId: nil,
  5620  	},
  5621  	{
  5622  		Key: 193,
  5623  		NameInfo: &types.ElementDescription{
  5624  			Description: types.Description{
  5625  				Label:   "Highest latency",
  5626  				Summary: "Highest latency value across all storage paths used by the host",
  5627  			},
  5628  			Key: "maxTotalLatency",
  5629  		},
  5630  		GroupInfo: &types.ElementDescription{
  5631  			Description: types.Description{
  5632  				Label:   "Storage path",
  5633  				Summary: "Storage path",
  5634  			},
  5635  			Key: "storagePath",
  5636  		},
  5637  		UnitInfo: &types.ElementDescription{
  5638  			Description: types.Description{
  5639  				Label:   "ms",
  5640  				Summary: "Millisecond",
  5641  			},
  5642  			Key: "millisecond",
  5643  		},
  5644  		RollupType:          "latest",
  5645  		StatsType:           "absolute",
  5646  		Level:               3,
  5647  		PerDeviceLevel:      3,
  5648  		AssociatedCounterId: nil,
  5649  	},
  5650  	{
  5651  		Key: 194,
  5652  		NameInfo: &types.ElementDescription{
  5653  			Description: types.Description{
  5654  				Label:   "Virtual Disk Throughput Usage",
  5655  				Summary: "Virtual disk I/O rate",
  5656  			},
  5657  			Key: "throughput.usage",
  5658  		},
  5659  		GroupInfo: &types.ElementDescription{
  5660  			Description: types.Description{
  5661  				Label:   "Virtual disk",
  5662  				Summary: "Virtual disk",
  5663  			},
  5664  			Key: "virtualDisk",
  5665  		},
  5666  		UnitInfo: &types.ElementDescription{
  5667  			Description: types.Description{
  5668  				Label:   "KBps",
  5669  				Summary: "Kilobytes per second",
  5670  			},
  5671  			Key: "kiloBytesPerSecond",
  5672  		},
  5673  		RollupType:          "average",
  5674  		StatsType:           "rate",
  5675  		Level:               4,
  5676  		PerDeviceLevel:      4,
  5677  		AssociatedCounterId: nil,
  5678  	},
  5679  	{
  5680  		Key: 195,
  5681  		NameInfo: &types.ElementDescription{
  5682  			Description: types.Description{
  5683  				Label:   "Virtual Disk Number of Terminations",
  5684  				Summary: "Number of terminations to a virtual disk",
  5685  			},
  5686  			Key: "commandsAborted",
  5687  		},
  5688  		GroupInfo: &types.ElementDescription{
  5689  			Description: types.Description{
  5690  				Label:   "Virtual disk",
  5691  				Summary: "Virtual disk",
  5692  			},
  5693  			Key: "virtualDisk",
  5694  		},
  5695  		UnitInfo: &types.ElementDescription{
  5696  			Description: types.Description{
  5697  				Label:   "num",
  5698  				Summary: "Number",
  5699  			},
  5700  			Key: "number",
  5701  		},
  5702  		RollupType:          "summation",
  5703  		StatsType:           "delta",
  5704  		Level:               2,
  5705  		PerDeviceLevel:      4,
  5706  		AssociatedCounterId: nil,
  5707  	},
  5708  	{
  5709  		Key: 196,
  5710  		NameInfo: &types.ElementDescription{
  5711  			Description: types.Description{
  5712  				Label:   "Virtual Disk Number of Resets",
  5713  				Summary: "Number of resets to a virtual disk",
  5714  			},
  5715  			Key: "busResets",
  5716  		},
  5717  		GroupInfo: &types.ElementDescription{
  5718  			Description: types.Description{
  5719  				Label:   "Virtual disk",
  5720  				Summary: "Virtual disk",
  5721  			},
  5722  			Key: "virtualDisk",
  5723  		},
  5724  		UnitInfo: &types.ElementDescription{
  5725  			Description: types.Description{
  5726  				Label:   "num",
  5727  				Summary: "Number",
  5728  			},
  5729  			Key: "number",
  5730  		},
  5731  		RollupType:          "summation",
  5732  		StatsType:           "delta",
  5733  		Level:               2,
  5734  		PerDeviceLevel:      4,
  5735  		AssociatedCounterId: nil,
  5736  	},
  5737  	{
  5738  		Key: 197,
  5739  		NameInfo: &types.ElementDescription{
  5740  			Description: types.Description{
  5741  				Label:   "Storage Adapter Outstanding I/Os",
  5742  				Summary: "The number of I/Os that have been issued but have not yet completed",
  5743  			},
  5744  			Key: "outstandingIOs",
  5745  		},
  5746  		GroupInfo: &types.ElementDescription{
  5747  			Description: types.Description{
  5748  				Label:   "Storage adapter",
  5749  				Summary: "Storage adapter",
  5750  			},
  5751  			Key: "storageAdapter",
  5752  		},
  5753  		UnitInfo: &types.ElementDescription{
  5754  			Description: types.Description{
  5755  				Label:   "num",
  5756  				Summary: "Number",
  5757  			},
  5758  			Key: "number",
  5759  		},
  5760  		RollupType:          "average",
  5761  		StatsType:           "absolute",
  5762  		Level:               2,
  5763  		PerDeviceLevel:      2,
  5764  		AssociatedCounterId: nil,
  5765  	},
  5766  	{
  5767  		Key: 198,
  5768  		NameInfo: &types.ElementDescription{
  5769  			Description: types.Description{
  5770  				Label:   "Storage Adapter Number Queued",
  5771  				Summary: "The current number of I/Os that are waiting to be issued",
  5772  			},
  5773  			Key: "queued",
  5774  		},
  5775  		GroupInfo: &types.ElementDescription{
  5776  			Description: types.Description{
  5777  				Label:   "Storage adapter",
  5778  				Summary: "Storage adapter",
  5779  			},
  5780  			Key: "storageAdapter",
  5781  		},
  5782  		UnitInfo: &types.ElementDescription{
  5783  			Description: types.Description{
  5784  				Label:   "num",
  5785  				Summary: "Number",
  5786  			},
  5787  			Key: "number",
  5788  		},
  5789  		RollupType:          "average",
  5790  		StatsType:           "absolute",
  5791  		Level:               2,
  5792  		PerDeviceLevel:      2,
  5793  		AssociatedCounterId: nil,
  5794  	},
  5795  	{
  5796  		Key: 199,
  5797  		NameInfo: &types.ElementDescription{
  5798  			Description: types.Description{
  5799  				Label:   "Storage Adapter Queue Depth",
  5800  				Summary: "The maximum number of I/Os that can be outstanding at a given time",
  5801  			},
  5802  			Key: "queueDepth",
  5803  		},
  5804  		GroupInfo: &types.ElementDescription{
  5805  			Description: types.Description{
  5806  				Label:   "Storage adapter",
  5807  				Summary: "Storage adapter",
  5808  			},
  5809  			Key: "storageAdapter",
  5810  		},
  5811  		UnitInfo: &types.ElementDescription{
  5812  			Description: types.Description{
  5813  				Label:   "num",
  5814  				Summary: "Number",
  5815  			},
  5816  			Key: "number",
  5817  		},
  5818  		RollupType:          "average",
  5819  		StatsType:           "absolute",
  5820  		Level:               2,
  5821  		PerDeviceLevel:      2,
  5822  		AssociatedCounterId: nil,
  5823  	},
  5824  	{
  5825  		Key: 200,
  5826  		NameInfo: &types.ElementDescription{
  5827  			Description: types.Description{
  5828  				Label:   "Storage Adapter Queue Command Latency",
  5829  				Summary: "Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval",
  5830  			},
  5831  			Key: "queueLatency",
  5832  		},
  5833  		GroupInfo: &types.ElementDescription{
  5834  			Description: types.Description{
  5835  				Label:   "Storage adapter",
  5836  				Summary: "Storage adapter",
  5837  			},
  5838  			Key: "storageAdapter",
  5839  		},
  5840  		UnitInfo: &types.ElementDescription{
  5841  			Description: types.Description{
  5842  				Label:   "ms",
  5843  				Summary: "Millisecond",
  5844  			},
  5845  			Key: "millisecond",
  5846  		},
  5847  		RollupType:          "average",
  5848  		StatsType:           "absolute",
  5849  		Level:               2,
  5850  		PerDeviceLevel:      2,
  5851  		AssociatedCounterId: nil,
  5852  	},
  5853  	{
  5854  		Key: 201,
  5855  		NameInfo: &types.ElementDescription{
  5856  			Description: types.Description{
  5857  				Label:   "Storage Adapter Throughput Usage",
  5858  				Summary: "The storage adapter's I/O rate",
  5859  			},
  5860  			Key: "throughput.usag",
  5861  		},
  5862  		GroupInfo: &types.ElementDescription{
  5863  			Description: types.Description{
  5864  				Label:   "Storage adapter",
  5865  				Summary: "Storage adapter",
  5866  			},
  5867  			Key: "storageAdapter",
  5868  		},
  5869  		UnitInfo: &types.ElementDescription{
  5870  			Description: types.Description{
  5871  				Label:   "KBps",
  5872  				Summary: "Kilobytes per second",
  5873  			},
  5874  			Key: "kiloBytesPerSecond",
  5875  		},
  5876  		RollupType:          "average",
  5877  		StatsType:           "rate",
  5878  		Level:               4,
  5879  		PerDeviceLevel:      4,
  5880  		AssociatedCounterId: nil,
  5881  	},
  5882  	{
  5883  		Key: 202,
  5884  		NameInfo: &types.ElementDescription{
  5885  			Description: types.Description{
  5886  				Label:   "Storage Path Bus Resets",
  5887  				Summary: "Number of SCSI-bus reset commands issued during the collection interval",
  5888  			},
  5889  			Key: "busResets",
  5890  		},
  5891  		GroupInfo: &types.ElementDescription{
  5892  			Description: types.Description{
  5893  				Label:   "Storage path",
  5894  				Summary: "Storage path",
  5895  			},
  5896  			Key: "storagePath",
  5897  		},
  5898  		UnitInfo: &types.ElementDescription{
  5899  			Description: types.Description{
  5900  				Label:   "num",
  5901  				Summary: "Number",
  5902  			},
  5903  			Key: "number",
  5904  		},
  5905  		RollupType:          "summation",
  5906  		StatsType:           "delta",
  5907  		Level:               2,
  5908  		PerDeviceLevel:      3,
  5909  		AssociatedCounterId: nil,
  5910  	},
  5911  	{
  5912  		Key: 203,
  5913  		NameInfo: &types.ElementDescription{
  5914  			Description: types.Description{
  5915  				Label:   "Storage Path Command Terminations",
  5916  				Summary: "Number of SCSI commands terminated during the collection interval",
  5917  			},
  5918  			Key: "commandsAborted",
  5919  		},
  5920  		GroupInfo: &types.ElementDescription{
  5921  			Description: types.Description{
  5922  				Label:   "Storage path",
  5923  				Summary: "Storage path",
  5924  			},
  5925  			Key: "storagePath",
  5926  		},
  5927  		UnitInfo: &types.ElementDescription{
  5928  			Description: types.Description{
  5929  				Label:   "num",
  5930  				Summary: "Number",
  5931  			},
  5932  			Key: "number",
  5933  		},
  5934  		RollupType:          "summation",
  5935  		StatsType:           "delta",
  5936  		Level:               2,
  5937  		PerDeviceLevel:      3,
  5938  		AssociatedCounterId: nil,
  5939  	},
  5940  	{
  5941  		Key: 204,
  5942  		NameInfo: &types.ElementDescription{
  5943  			Description: types.Description{
  5944  				Label:   "Storage Path Throughput Usage",
  5945  				Summary: "Storage path I/O rate",
  5946  			},
  5947  			Key: "throughput.usage",
  5948  		},
  5949  		GroupInfo: &types.ElementDescription{
  5950  			Description: types.Description{
  5951  				Label:   "Storage path",
  5952  				Summary: "Storage path",
  5953  			},
  5954  			Key: "storagePath",
  5955  		},
  5956  		UnitInfo: &types.ElementDescription{
  5957  			Description: types.Description{
  5958  				Label:   "KBps",
  5959  				Summary: "Kilobytes per second",
  5960  			},
  5961  			Key: "kiloBytesPerSecond",
  5962  		},
  5963  		RollupType:          "average",
  5964  		StatsType:           "rate",
  5965  		Level:               4,
  5966  		PerDeviceLevel:      4,
  5967  		AssociatedCounterId: nil,
  5968  	},
  5969  	{
  5970  		Key: 205,
  5971  		NameInfo: &types.ElementDescription{
  5972  			Description: types.Description{
  5973  				Label:   "pNic Throughput Usage for VMs",
  5974  				Summary: "Average pNic I/O rate for VMs",
  5975  			},
  5976  			Key: "throughput.usage.vm",
  5977  		},
  5978  		GroupInfo: &types.ElementDescription{
  5979  			Description: types.Description{
  5980  				Label:   "Network",
  5981  				Summary: "Network",
  5982  			},
  5983  			Key: "net",
  5984  		},
  5985  		UnitInfo: &types.ElementDescription{
  5986  			Description: types.Description{
  5987  				Label:   "KBps",
  5988  				Summary: "Kilobytes per second",
  5989  			},
  5990  			Key: "kiloBytesPerSecond",
  5991  		},
  5992  		RollupType:          "average",
  5993  		StatsType:           "rate",
  5994  		Level:               3,
  5995  		PerDeviceLevel:      3,
  5996  		AssociatedCounterId: nil,
  5997  	},
  5998  	{
  5999  		Key: 206,
  6000  		NameInfo: &types.ElementDescription{
  6001  			Description: types.Description{
  6002  				Label:   "pNic Throughput Usage for NFS",
  6003  				Summary: "Average pNic I/O rate for NFS",
  6004  			},
  6005  			Key: "throughput.usage.nfs",
  6006  		},
  6007  		GroupInfo: &types.ElementDescription{
  6008  			Description: types.Description{
  6009  				Label:   "Network",
  6010  				Summary: "Network",
  6011  			},
  6012  			Key: "net",
  6013  		},
  6014  		UnitInfo: &types.ElementDescription{
  6015  			Description: types.Description{
  6016  				Label:   "KBps",
  6017  				Summary: "Kilobytes per second",
  6018  			},
  6019  			Key: "kiloBytesPerSecond",
  6020  		},
  6021  		RollupType:          "average",
  6022  		StatsType:           "rate",
  6023  		Level:               3,
  6024  		PerDeviceLevel:      3,
  6025  		AssociatedCounterId: nil,
  6026  	},
  6027  	{
  6028  		Key: 207,
  6029  		NameInfo: &types.ElementDescription{
  6030  			Description: types.Description{
  6031  				Label:   "pNic Throughput Usage for vMotion",
  6032  				Summary: "Average pNic I/O rate for vMotion",
  6033  			},
  6034  			Key: "throughput.usage.vmotion",
  6035  		},
  6036  		GroupInfo: &types.ElementDescription{
  6037  			Description: types.Description{
  6038  				Label:   "Network",
  6039  				Summary: "Network",
  6040  			},
  6041  			Key: "net",
  6042  		},
  6043  		UnitInfo: &types.ElementDescription{
  6044  			Description: types.Description{
  6045  				Label:   "KBps",
  6046  				Summary: "Kilobytes per second",
  6047  			},
  6048  			Key: "kiloBytesPerSecond",
  6049  		},
  6050  		RollupType:          "average",
  6051  		StatsType:           "rate",
  6052  		Level:               3,
  6053  		PerDeviceLevel:      3,
  6054  		AssociatedCounterId: nil,
  6055  	},
  6056  	{
  6057  		Key: 208,
  6058  		NameInfo: &types.ElementDescription{
  6059  			Description: types.Description{
  6060  				Label:   "pNic Throughput Usage for FT",
  6061  				Summary: "Average pNic I/O rate for FT",
  6062  			},
  6063  			Key: "throughput.usage.ft",
  6064  		},
  6065  		GroupInfo: &types.ElementDescription{
  6066  			Description: types.Description{
  6067  				Label:   "Network",
  6068  				Summary: "Network",
  6069  			},
  6070  			Key: "net",
  6071  		},
  6072  		UnitInfo: &types.ElementDescription{
  6073  			Description: types.Description{
  6074  				Label:   "KBps",
  6075  				Summary: "Kilobytes per second",
  6076  			},
  6077  			Key: "kiloBytesPerSecond",
  6078  		},
  6079  		RollupType:          "average",
  6080  		StatsType:           "rate",
  6081  		Level:               3,
  6082  		PerDeviceLevel:      3,
  6083  		AssociatedCounterId: nil,
  6084  	},
  6085  	{
  6086  		Key: 209,
  6087  		NameInfo: &types.ElementDescription{
  6088  			Description: types.Description{
  6089  				Label:   "pNic Throughput Usage for iSCSI",
  6090  				Summary: "Average pNic I/O rate for iSCSI",
  6091  			},
  6092  			Key: "throughput.usage.iscsi",
  6093  		},
  6094  		GroupInfo: &types.ElementDescription{
  6095  			Description: types.Description{
  6096  				Label:   "Network",
  6097  				Summary: "Network",
  6098  			},
  6099  			Key: "net",
  6100  		},
  6101  		UnitInfo: &types.ElementDescription{
  6102  			Description: types.Description{
  6103  				Label:   "KBps",
  6104  				Summary: "Kilobytes per second",
  6105  			},
  6106  			Key: "kiloBytesPerSecond",
  6107  		},
  6108  		RollupType:          "average",
  6109  		StatsType:           "rate",
  6110  		Level:               3,
  6111  		PerDeviceLevel:      3,
  6112  		AssociatedCounterId: nil,
  6113  	},
  6114  	{
  6115  		Key: 210,
  6116  		NameInfo: &types.ElementDescription{
  6117  			Description: types.Description{
  6118  				Label:   "pNic Throughput Usage for HBR",
  6119  				Summary: "Average pNic I/O rate for HBR",
  6120  			},
  6121  			Key: "throughput.usage.hbr",
  6122  		},
  6123  		GroupInfo: &types.ElementDescription{
  6124  			Description: types.Description{
  6125  				Label:   "Network",
  6126  				Summary: "Network",
  6127  			},
  6128  			Key: "net",
  6129  		},
  6130  		UnitInfo: &types.ElementDescription{
  6131  			Description: types.Description{
  6132  				Label:   "KBps",
  6133  				Summary: "Kilobytes per second",
  6134  			},
  6135  			Key: "kiloBytesPerSecond",
  6136  		},
  6137  		RollupType:          "average",
  6138  		StatsType:           "rate",
  6139  		Level:               3,
  6140  		PerDeviceLevel:      3,
  6141  		AssociatedCounterId: nil,
  6142  	},
  6143  	{
  6144  		Key: 211,
  6145  		NameInfo: &types.ElementDescription{
  6146  			Description: types.Description{
  6147  				Label:   "Host Power Capacity Usable",
  6148  				Summary: "Current maximum allowed power usage.",
  6149  			},
  6150  			Key: "capacity.usable",
  6151  		},
  6152  		GroupInfo: &types.ElementDescription{
  6153  			Description: types.Description{
  6154  				Label:   "Power",
  6155  				Summary: "Power",
  6156  			},
  6157  			Key: "power",
  6158  		},
  6159  		UnitInfo: &types.ElementDescription{
  6160  			Description: types.Description{
  6161  				Label:   "W",
  6162  				Summary: "Watt",
  6163  			},
  6164  			Key: "watt",
  6165  		},
  6166  		RollupType:          "average",
  6167  		StatsType:           "absolute",
  6168  		Level:               4,
  6169  		PerDeviceLevel:      4,
  6170  		AssociatedCounterId: nil,
  6171  	},
  6172  	{
  6173  		Key: 212,
  6174  		NameInfo: &types.ElementDescription{
  6175  			Description: types.Description{
  6176  				Label:   "Host Power Capacity Usage",
  6177  				Summary: "Current power usage",
  6178  			},
  6179  			Key: "capacity.usage",
  6180  		},
  6181  		GroupInfo: &types.ElementDescription{
  6182  			Description: types.Description{
  6183  				Label:   "Power",
  6184  				Summary: "Power",
  6185  			},
  6186  			Key: "power",
  6187  		},
  6188  		UnitInfo: &types.ElementDescription{
  6189  			Description: types.Description{
  6190  				Label:   "W",
  6191  				Summary: "Watt",
  6192  			},
  6193  			Key: "watt",
  6194  		},
  6195  		RollupType:          "average",
  6196  		StatsType:           "absolute",
  6197  		Level:               4,
  6198  		PerDeviceLevel:      4,
  6199  		AssociatedCounterId: nil,
  6200  	},
  6201  	{
  6202  		Key: 213,
  6203  		NameInfo: &types.ElementDescription{
  6204  			Description: types.Description{
  6205  				Label:   "Worst case allocation",
  6206  				Summary: "Amount of CPU resources allocated to the virtual machine or resource pool, based on the total cluster capacity and the resource configuration of the resource hierarchy",
  6207  			},
  6208  			Key: "cpuentitlement",
  6209  		},
  6210  		GroupInfo: &types.ElementDescription{
  6211  			Description: types.Description{
  6212  				Label:   "CPU",
  6213  				Summary: "CPU",
  6214  			},
  6215  			Key: "cpu",
  6216  		},
  6217  		UnitInfo: &types.ElementDescription{
  6218  			Description: types.Description{
  6219  				Label:   "MHz",
  6220  				Summary: "Megahertz",
  6221  			},
  6222  			Key: "megaHertz",
  6223  		},
  6224  		RollupType:          "latest",
  6225  		StatsType:           "absolute",
  6226  		Level:               2,
  6227  		PerDeviceLevel:      3,
  6228  		AssociatedCounterId: nil,
  6229  	},
  6230  	{
  6231  		Key: 214,
  6232  		NameInfo: &types.ElementDescription{
  6233  			Description: types.Description{
  6234  				Label:   "Entitlement",
  6235  				Summary: "Memory allocation as calculated by the VMkernel scheduler based on current estimated demand and reservation, limit, and shares policies set for all virtual machines and resource pools in the host or cluster",
  6236  			},
  6237  			Key: "mementitlement",
  6238  		},
  6239  		GroupInfo: &types.ElementDescription{
  6240  			Description: types.Description{
  6241  				Label:   "Memory",
  6242  				Summary: "Memory",
  6243  			},
  6244  			Key: "mem",
  6245  		},
  6246  		UnitInfo: &types.ElementDescription{
  6247  			Description: types.Description{
  6248  				Label:   "MB",
  6249  				Summary: "Megabyte",
  6250  			},
  6251  			Key: "megaBytes",
  6252  		},
  6253  		RollupType:          "latest",
  6254  		StatsType:           "absolute",
  6255  		Level:               2,
  6256  		PerDeviceLevel:      3,
  6257  		AssociatedCounterId: nil,
  6258  	},
  6259  	{
  6260  		Key: 215,
  6261  		NameInfo: &types.ElementDescription{
  6262  			Description: types.Description{
  6263  				Label:   "CPU fairness",
  6264  				Summary: "Fairness of distributed CPU resource allocation",
  6265  			},
  6266  			Key: "cpufairness",
  6267  		},
  6268  		GroupInfo: &types.ElementDescription{
  6269  			Description: types.Description{
  6270  				Label:   "Cluster services",
  6271  				Summary: "Cluster services",
  6272  			},
  6273  			Key: "clusterServices",
  6274  		},
  6275  		UnitInfo: &types.ElementDescription{
  6276  			Description: types.Description{
  6277  				Label:   "num",
  6278  				Summary: "Number",
  6279  			},
  6280  			Key: "number",
  6281  		},
  6282  		RollupType:          "latest",
  6283  		StatsType:           "absolute",
  6284  		Level:               1,
  6285  		PerDeviceLevel:      3,
  6286  		AssociatedCounterId: nil,
  6287  	},
  6288  	{
  6289  		Key: 216,
  6290  		NameInfo: &types.ElementDescription{
  6291  			Description: types.Description{
  6292  				Label:   "Memory fairness",
  6293  				Summary: "Aggregate available memory resources of all the hosts within a cluster",
  6294  			},
  6295  			Key: "memfairness",
  6296  		},
  6297  		GroupInfo: &types.ElementDescription{
  6298  			Description: types.Description{
  6299  				Label:   "Cluster services",
  6300  				Summary: "Cluster services",
  6301  			},
  6302  			Key: "clusterServices",
  6303  		},
  6304  		UnitInfo: &types.ElementDescription{
  6305  			Description: types.Description{
  6306  				Label:   "num",
  6307  				Summary: "Number",
  6308  			},
  6309  			Key: "number",
  6310  		},
  6311  		RollupType:          "latest",
  6312  		StatsType:           "absolute",
  6313  		Level:               1,
  6314  		PerDeviceLevel:      3,
  6315  		AssociatedCounterId: nil,
  6316  	},
  6317  	{
  6318  		Key: 217,
  6319  		NameInfo: &types.ElementDescription{
  6320  			Description: types.Description{
  6321  				Label:   "VDS Packets Throughput Transmitted",
  6322  				Summary: "The rate of transmitted packets for this VDS",
  6323  			},
  6324  			Key: "throughput.pktsTx",
  6325  		},
  6326  		GroupInfo: &types.ElementDescription{
  6327  			Description: types.Description{
  6328  				Label:   "Network",
  6329  				Summary: "Network",
  6330  			},
  6331  			Key: "net",
  6332  		},
  6333  		UnitInfo: &types.ElementDescription{
  6334  			Description: types.Description{
  6335  				Label:   "num",
  6336  				Summary: "Number",
  6337  			},
  6338  			Key: "number",
  6339  		},
  6340  		RollupType:          "average",
  6341  		StatsType:           "absolute",
  6342  		Level:               3,
  6343  		PerDeviceLevel:      3,
  6344  		AssociatedCounterId: nil,
  6345  	},
  6346  	{
  6347  		Key: 218,
  6348  		NameInfo: &types.ElementDescription{
  6349  			Description: types.Description{
  6350  				Label:   "VDS Multicast Packets Throughput Transmitted",
  6351  				Summary: "The rate of transmitted Multicast packets for this VDS",
  6352  			},
  6353  			Key: "throughput.pktsTxMulticast",
  6354  		},
  6355  		GroupInfo: &types.ElementDescription{
  6356  			Description: types.Description{
  6357  				Label:   "Network",
  6358  				Summary: "Network",
  6359  			},
  6360  			Key: "net",
  6361  		},
  6362  		UnitInfo: &types.ElementDescription{
  6363  			Description: types.Description{
  6364  				Label:   "num",
  6365  				Summary: "Number",
  6366  			},
  6367  			Key: "number",
  6368  		},
  6369  		RollupType:          "average",
  6370  		StatsType:           "absolute",
  6371  		Level:               3,
  6372  		PerDeviceLevel:      3,
  6373  		AssociatedCounterId: nil,
  6374  	},
  6375  	{
  6376  		Key: 219,
  6377  		NameInfo: &types.ElementDescription{
  6378  			Description: types.Description{
  6379  				Label:   "VDS Broadcast Packets Throughput Transmitted",
  6380  				Summary: "The rate of transmitted Broadcast packets for this VDS",
  6381  			},
  6382  			Key: "throughput.pktsTxBroadcast",
  6383  		},
  6384  		GroupInfo: &types.ElementDescription{
  6385  			Description: types.Description{
  6386  				Label:   "Network",
  6387  				Summary: "Network",
  6388  			},
  6389  			Key: "net",
  6390  		},
  6391  		UnitInfo: &types.ElementDescription{
  6392  			Description: types.Description{
  6393  				Label:   "num",
  6394  				Summary: "Number",
  6395  			},
  6396  			Key: "number",
  6397  		},
  6398  		RollupType:          "average",
  6399  		StatsType:           "absolute",
  6400  		Level:               3,
  6401  		PerDeviceLevel:      3,
  6402  		AssociatedCounterId: nil,
  6403  	},
  6404  	{
  6405  		Key: 220,
  6406  		NameInfo: &types.ElementDescription{
  6407  			Description: types.Description{
  6408  				Label:   "VDS Packets Throughput Received",
  6409  				Summary: "The rate of received packets for this vDS",
  6410  			},
  6411  			Key: "throughput.pktsRx",
  6412  		},
  6413  		GroupInfo: &types.ElementDescription{
  6414  			Description: types.Description{
  6415  				Label:   "Network",
  6416  				Summary: "Network",
  6417  			},
  6418  			Key: "net",
  6419  		},
  6420  		UnitInfo: &types.ElementDescription{
  6421  			Description: types.Description{
  6422  				Label:   "num",
  6423  				Summary: "Number",
  6424  			},
  6425  			Key: "number",
  6426  		},
  6427  		RollupType:          "average",
  6428  		StatsType:           "absolute",
  6429  		Level:               3,
  6430  		PerDeviceLevel:      3,
  6431  		AssociatedCounterId: nil,
  6432  	},
  6433  	{
  6434  		Key: 221,
  6435  		NameInfo: &types.ElementDescription{
  6436  			Description: types.Description{
  6437  				Label:   "VDS Multicast Packets Throughput Received",
  6438  				Summary: "The rate of received Multicast packets for this VDS",
  6439  			},
  6440  			Key: "throughput.pktsRxMulticast",
  6441  		},
  6442  		GroupInfo: &types.ElementDescription{
  6443  			Description: types.Description{
  6444  				Label:   "Network",
  6445  				Summary: "Network",
  6446  			},
  6447  			Key: "net",
  6448  		},
  6449  		UnitInfo: &types.ElementDescription{
  6450  			Description: types.Description{
  6451  				Label:   "num",
  6452  				Summary: "Number",
  6453  			},
  6454  			Key: "number",
  6455  		},
  6456  		RollupType:          "average",
  6457  		StatsType:           "absolute",
  6458  		Level:               3,
  6459  		PerDeviceLevel:      3,
  6460  		AssociatedCounterId: nil,
  6461  	},
  6462  	{
  6463  		Key: 222,
  6464  		NameInfo: &types.ElementDescription{
  6465  			Description: types.Description{
  6466  				Label:   "VDS Broadcast Packets Throughput Received",
  6467  				Summary: "The rate of received Broadcast packets for this VDS",
  6468  			},
  6469  			Key: "throughput.pktsRxBroadcast",
  6470  		},
  6471  		GroupInfo: &types.ElementDescription{
  6472  			Description: types.Description{
  6473  				Label:   "Network",
  6474  				Summary: "Network",
  6475  			},
  6476  			Key: "net",
  6477  		},
  6478  		UnitInfo: &types.ElementDescription{
  6479  			Description: types.Description{
  6480  				Label:   "num",
  6481  				Summary: "Number",
  6482  			},
  6483  			Key: "number",
  6484  		},
  6485  		RollupType:          "average",
  6486  		StatsType:           "absolute",
  6487  		Level:               3,
  6488  		PerDeviceLevel:      3,
  6489  		AssociatedCounterId: nil,
  6490  	},
  6491  	{
  6492  		Key: 223,
  6493  		NameInfo: &types.ElementDescription{
  6494  			Description: types.Description{
  6495  				Label:   "VDS Dropped Transmitted Packets Throughput",
  6496  				Summary: "Count of dropped transmitted packets for this VDS",
  6497  			},
  6498  			Key: "throughput.droppedTx",
  6499  		},
  6500  		GroupInfo: &types.ElementDescription{
  6501  			Description: types.Description{
  6502  				Label:   "Network",
  6503  				Summary: "Network",
  6504  			},
  6505  			Key: "net",
  6506  		},
  6507  		UnitInfo: &types.ElementDescription{
  6508  			Description: types.Description{
  6509  				Label:   "num",
  6510  				Summary: "Number",
  6511  			},
  6512  			Key: "number",
  6513  		},
  6514  		RollupType:          "average",
  6515  		StatsType:           "absolute",
  6516  		Level:               3,
  6517  		PerDeviceLevel:      3,
  6518  		AssociatedCounterId: nil,
  6519  	},
  6520  	{
  6521  		Key: 224,
  6522  		NameInfo: &types.ElementDescription{
  6523  			Description: types.Description{
  6524  				Label:   "VDS Dropped Received Packets Throughput",
  6525  				Summary: "Count of dropped received packets for this VDS",
  6526  			},
  6527  			Key: "throughput.droppedRx",
  6528  		},
  6529  		GroupInfo: &types.ElementDescription{
  6530  			Description: types.Description{
  6531  				Label:   "Network",
  6532  				Summary: "Network",
  6533  			},
  6534  			Key: "net",
  6535  		},
  6536  		UnitInfo: &types.ElementDescription{
  6537  			Description: types.Description{
  6538  				Label:   "num",
  6539  				Summary: "Number",
  6540  			},
  6541  			Key: "number",
  6542  		},
  6543  		RollupType:          "average",
  6544  		StatsType:           "absolute",
  6545  		Level:               3,
  6546  		PerDeviceLevel:      3,
  6547  		AssociatedCounterId: nil,
  6548  	},
  6549  	{
  6550  		Key: 225,
  6551  		NameInfo: &types.ElementDescription{
  6552  			Description: types.Description{
  6553  				Label:   "DVPort Packets Throughput Transmitted",
  6554  				Summary: "The rate of transmitted packets for this DVPort",
  6555  			},
  6556  			Key: "throughput.vds.pktsTx",
  6557  		},
  6558  		GroupInfo: &types.ElementDescription{
  6559  			Description: types.Description{
  6560  				Label:   "Network",
  6561  				Summary: "Network",
  6562  			},
  6563  			Key: "net",
  6564  		},
  6565  		UnitInfo: &types.ElementDescription{
  6566  			Description: types.Description{
  6567  				Label:   "num",
  6568  				Summary: "Number",
  6569  			},
  6570  			Key: "number",
  6571  		},
  6572  		RollupType:          "average",
  6573  		StatsType:           "absolute",
  6574  		Level:               3,
  6575  		PerDeviceLevel:      3,
  6576  		AssociatedCounterId: nil,
  6577  	},
  6578  	{
  6579  		Key: 226,
  6580  		NameInfo: &types.ElementDescription{
  6581  			Description: types.Description{
  6582  				Label:   "DVPort Multicast Packets Throughput Transmitted",
  6583  				Summary: "The rate of transmitted multicast packets for this DVPort",
  6584  			},
  6585  			Key: "throughput.vds.pktsTxMcast",
  6586  		},
  6587  		GroupInfo: &types.ElementDescription{
  6588  			Description: types.Description{
  6589  				Label:   "Network",
  6590  				Summary: "Network",
  6591  			},
  6592  			Key: "net",
  6593  		},
  6594  		UnitInfo: &types.ElementDescription{
  6595  			Description: types.Description{
  6596  				Label:   "num",
  6597  				Summary: "Number",
  6598  			},
  6599  			Key: "number",
  6600  		},
  6601  		RollupType:          "average",
  6602  		StatsType:           "absolute",
  6603  		Level:               3,
  6604  		PerDeviceLevel:      3,
  6605  		AssociatedCounterId: nil,
  6606  	},
  6607  	{
  6608  		Key: 227,
  6609  		NameInfo: &types.ElementDescription{
  6610  			Description: types.Description{
  6611  				Label:   "DVPort Broadcast Packets Throughput Transmitted",
  6612  				Summary: "The rate of transmitted broadcast packets for this DVPort",
  6613  			},
  6614  			Key: "throughput.vds.pktsTxBcast",
  6615  		},
  6616  		GroupInfo: &types.ElementDescription{
  6617  			Description: types.Description{
  6618  				Label:   "Network",
  6619  				Summary: "Network",
  6620  			},
  6621  			Key: "net",
  6622  		},
  6623  		UnitInfo: &types.ElementDescription{
  6624  			Description: types.Description{
  6625  				Label:   "num",
  6626  				Summary: "Number",
  6627  			},
  6628  			Key: "number",
  6629  		},
  6630  		RollupType:          "average",
  6631  		StatsType:           "absolute",
  6632  		Level:               3,
  6633  		PerDeviceLevel:      3,
  6634  		AssociatedCounterId: nil,
  6635  	},
  6636  	{
  6637  		Key: 228,
  6638  		NameInfo: &types.ElementDescription{
  6639  			Description: types.Description{
  6640  				Label:   "DVPort Packets Throughput Received",
  6641  				Summary: "The rate of received packets for this DVPort",
  6642  			},
  6643  			Key: "throughput.vds.pktsRx",
  6644  		},
  6645  		GroupInfo: &types.ElementDescription{
  6646  			Description: types.Description{
  6647  				Label:   "Network",
  6648  				Summary: "Network",
  6649  			},
  6650  			Key: "net",
  6651  		},
  6652  		UnitInfo: &types.ElementDescription{
  6653  			Description: types.Description{
  6654  				Label:   "num",
  6655  				Summary: "Number",
  6656  			},
  6657  			Key: "number",
  6658  		},
  6659  		RollupType:          "average",
  6660  		StatsType:           "absolute",
  6661  		Level:               3,
  6662  		PerDeviceLevel:      3,
  6663  		AssociatedCounterId: nil,
  6664  	},
  6665  	{
  6666  		Key: 229,
  6667  		NameInfo: &types.ElementDescription{
  6668  			Description: types.Description{
  6669  				Label:   "DVPort Multicast Packets Throughput Received",
  6670  				Summary: "The rate of received multicast packets for this DVPort",
  6671  			},
  6672  			Key: "throughput.vds.pktsRxMcast",
  6673  		},
  6674  		GroupInfo: &types.ElementDescription{
  6675  			Description: types.Description{
  6676  				Label:   "Network",
  6677  				Summary: "Network",
  6678  			},
  6679  			Key: "net",
  6680  		},
  6681  		UnitInfo: &types.ElementDescription{
  6682  			Description: types.Description{
  6683  				Label:   "num",
  6684  				Summary: "Number",
  6685  			},
  6686  			Key: "number",
  6687  		},
  6688  		RollupType:          "average",
  6689  		StatsType:           "absolute",
  6690  		Level:               3,
  6691  		PerDeviceLevel:      3,
  6692  		AssociatedCounterId: nil,
  6693  	},
  6694  	{
  6695  		Key: 230,
  6696  		NameInfo: &types.ElementDescription{
  6697  			Description: types.Description{
  6698  				Label:   "DVPort Broadcast Packets Throughput Received",
  6699  				Summary: "The rate of received broadcast packets for this DVPort",
  6700  			},
  6701  			Key: "throughput.vds.pktsRxBcast",
  6702  		},
  6703  		GroupInfo: &types.ElementDescription{
  6704  			Description: types.Description{
  6705  				Label:   "Network",
  6706  				Summary: "Network",
  6707  			},
  6708  			Key: "net",
  6709  		},
  6710  		UnitInfo: &types.ElementDescription{
  6711  			Description: types.Description{
  6712  				Label:   "num",
  6713  				Summary: "Number",
  6714  			},
  6715  			Key: "number",
  6716  		},
  6717  		RollupType:          "average",
  6718  		StatsType:           "absolute",
  6719  		Level:               3,
  6720  		PerDeviceLevel:      3,
  6721  		AssociatedCounterId: nil,
  6722  	},
  6723  	{
  6724  		Key: 231,
  6725  		NameInfo: &types.ElementDescription{
  6726  			Description: types.Description{
  6727  				Label:   "DVPort dropped transmitted packets throughput",
  6728  				Summary: "Count of dropped transmitted packets for this DVPort",
  6729  			},
  6730  			Key: "throughput.vds.droppedTx",
  6731  		},
  6732  		GroupInfo: &types.ElementDescription{
  6733  			Description: types.Description{
  6734  				Label:   "Network",
  6735  				Summary: "Network",
  6736  			},
  6737  			Key: "net",
  6738  		},
  6739  		UnitInfo: &types.ElementDescription{
  6740  			Description: types.Description{
  6741  				Label:   "num",
  6742  				Summary: "Number",
  6743  			},
  6744  			Key: "number",
  6745  		},
  6746  		RollupType:          "average",
  6747  		StatsType:           "absolute",
  6748  		Level:               3,
  6749  		PerDeviceLevel:      3,
  6750  		AssociatedCounterId: nil,
  6751  	},
  6752  	{
  6753  		Key: 232,
  6754  		NameInfo: &types.ElementDescription{
  6755  			Description: types.Description{
  6756  				Label:   "DVPort dropped received packets throughput",
  6757  				Summary: "Count of dropped received packets for this DVPort",
  6758  			},
  6759  			Key: "throughput.vds.droppedRx",
  6760  		},
  6761  		GroupInfo: &types.ElementDescription{
  6762  			Description: types.Description{
  6763  				Label:   "Network",
  6764  				Summary: "Network",
  6765  			},
  6766  			Key: "net",
  6767  		},
  6768  		UnitInfo: &types.ElementDescription{
  6769  			Description: types.Description{
  6770  				Label:   "num",
  6771  				Summary: "Number",
  6772  			},
  6773  			Key: "number",
  6774  		},
  6775  		RollupType:          "average",
  6776  		StatsType:           "absolute",
  6777  		Level:               3,
  6778  		PerDeviceLevel:      3,
  6779  		AssociatedCounterId: nil,
  6780  	},
  6781  	{
  6782  		Key: 233,
  6783  		NameInfo: &types.ElementDescription{
  6784  			Description: types.Description{
  6785  				Label:   "LAG Packets Throughput Transmitted",
  6786  				Summary: "The rate of transmitted packets for this LAG",
  6787  			},
  6788  			Key: "throughput.vds.lagTx",
  6789  		},
  6790  		GroupInfo: &types.ElementDescription{
  6791  			Description: types.Description{
  6792  				Label:   "Network",
  6793  				Summary: "Network",
  6794  			},
  6795  			Key: "net",
  6796  		},
  6797  		UnitInfo: &types.ElementDescription{
  6798  			Description: types.Description{
  6799  				Label:   "num",
  6800  				Summary: "Number",
  6801  			},
  6802  			Key: "number",
  6803  		},
  6804  		RollupType:          "average",
  6805  		StatsType:           "absolute",
  6806  		Level:               3,
  6807  		PerDeviceLevel:      3,
  6808  		AssociatedCounterId: nil,
  6809  	},
  6810  	{
  6811  		Key: 234,
  6812  		NameInfo: &types.ElementDescription{
  6813  			Description: types.Description{
  6814  				Label:   "LAG Multicast Packets Throughput Transmitted",
  6815  				Summary: "The rate of transmitted Multicast packets for this LAG",
  6816  			},
  6817  			Key: "throughput.vds.lagTxMcast",
  6818  		},
  6819  		GroupInfo: &types.ElementDescription{
  6820  			Description: types.Description{
  6821  				Label:   "Network",
  6822  				Summary: "Network",
  6823  			},
  6824  			Key: "net",
  6825  		},
  6826  		UnitInfo: &types.ElementDescription{
  6827  			Description: types.Description{
  6828  				Label:   "num",
  6829  				Summary: "Number",
  6830  			},
  6831  			Key: "number",
  6832  		},
  6833  		RollupType:          "average",
  6834  		StatsType:           "absolute",
  6835  		Level:               3,
  6836  		PerDeviceLevel:      3,
  6837  		AssociatedCounterId: nil,
  6838  	},
  6839  	{
  6840  		Key: 235,
  6841  		NameInfo: &types.ElementDescription{
  6842  			Description: types.Description{
  6843  				Label:   "LAG Broadcast Packets Throughput Transmitted",
  6844  				Summary: "The rate of transmitted Broadcast packets for this LAG",
  6845  			},
  6846  			Key: "throughput.vds.lagTxBcast",
  6847  		},
  6848  		GroupInfo: &types.ElementDescription{
  6849  			Description: types.Description{
  6850  				Label:   "Network",
  6851  				Summary: "Network",
  6852  			},
  6853  			Key: "net",
  6854  		},
  6855  		UnitInfo: &types.ElementDescription{
  6856  			Description: types.Description{
  6857  				Label:   "num",
  6858  				Summary: "Number",
  6859  			},
  6860  			Key: "number",
  6861  		},
  6862  		RollupType:          "average",
  6863  		StatsType:           "absolute",
  6864  		Level:               3,
  6865  		PerDeviceLevel:      3,
  6866  		AssociatedCounterId: nil,
  6867  	},
  6868  	{
  6869  		Key: 236,
  6870  		NameInfo: &types.ElementDescription{
  6871  			Description: types.Description{
  6872  				Label:   "LAG packets Throughput received",
  6873  				Summary: "The rate of received packets for this LAG",
  6874  			},
  6875  			Key: "throughput.vds.lagRx",
  6876  		},
  6877  		GroupInfo: &types.ElementDescription{
  6878  			Description: types.Description{
  6879  				Label:   "Network",
  6880  				Summary: "Network",
  6881  			},
  6882  			Key: "net",
  6883  		},
  6884  		UnitInfo: &types.ElementDescription{
  6885  			Description: types.Description{
  6886  				Label:   "num",
  6887  				Summary: "Number",
  6888  			},
  6889  			Key: "number",
  6890  		},
  6891  		RollupType:          "average",
  6892  		StatsType:           "absolute",
  6893  		Level:               3,
  6894  		PerDeviceLevel:      3,
  6895  		AssociatedCounterId: nil,
  6896  	},
  6897  	{
  6898  		Key: 237,
  6899  		NameInfo: &types.ElementDescription{
  6900  			Description: types.Description{
  6901  				Label:   "LAG multicast packets throughput received",
  6902  				Summary: "The rate of received multicast packets for this LAG",
  6903  			},
  6904  			Key: "throughput.vds.lagRxMcast",
  6905  		},
  6906  		GroupInfo: &types.ElementDescription{
  6907  			Description: types.Description{
  6908  				Label:   "Network",
  6909  				Summary: "Network",
  6910  			},
  6911  			Key: "net",
  6912  		},
  6913  		UnitInfo: &types.ElementDescription{
  6914  			Description: types.Description{
  6915  				Label:   "num",
  6916  				Summary: "Number",
  6917  			},
  6918  			Key: "number",
  6919  		},
  6920  		RollupType:          "average",
  6921  		StatsType:           "absolute",
  6922  		Level:               3,
  6923  		PerDeviceLevel:      3,
  6924  		AssociatedCounterId: nil,
  6925  	},
  6926  	{
  6927  		Key: 238,
  6928  		NameInfo: &types.ElementDescription{
  6929  			Description: types.Description{
  6930  				Label:   "LAG Broadcast packets Throughput received",
  6931  				Summary: "The rate of received Broadcast packets for this LAG",
  6932  			},
  6933  			Key: "throughput.vds.lagRxBcast",
  6934  		},
  6935  		GroupInfo: &types.ElementDescription{
  6936  			Description: types.Description{
  6937  				Label:   "Network",
  6938  				Summary: "Network",
  6939  			},
  6940  			Key: "net",
  6941  		},
  6942  		UnitInfo: &types.ElementDescription{
  6943  			Description: types.Description{
  6944  				Label:   "num",
  6945  				Summary: "Number",
  6946  			},
  6947  			Key: "number",
  6948  		},
  6949  		RollupType:          "average",
  6950  		StatsType:           "absolute",
  6951  		Level:               3,
  6952  		PerDeviceLevel:      3,
  6953  		AssociatedCounterId: nil,
  6954  	},
  6955  	{
  6956  		Key: 239,
  6957  		NameInfo: &types.ElementDescription{
  6958  			Description: types.Description{
  6959  				Label:   "LAG dropped transmitted packets throughput",
  6960  				Summary: "Count of dropped transmitted packets for this LAG",
  6961  			},
  6962  			Key: "throughput.vds.lagDropTx",
  6963  		},
  6964  		GroupInfo: &types.ElementDescription{
  6965  			Description: types.Description{
  6966  				Label:   "Network",
  6967  				Summary: "Network",
  6968  			},
  6969  			Key: "net",
  6970  		},
  6971  		UnitInfo: &types.ElementDescription{
  6972  			Description: types.Description{
  6973  				Label:   "num",
  6974  				Summary: "Number",
  6975  			},
  6976  			Key: "number",
  6977  		},
  6978  		RollupType:          "average",
  6979  		StatsType:           "absolute",
  6980  		Level:               3,
  6981  		PerDeviceLevel:      3,
  6982  		AssociatedCounterId: nil,
  6983  	},
  6984  	{
  6985  		Key: 240,
  6986  		NameInfo: &types.ElementDescription{
  6987  			Description: types.Description{
  6988  				Label:   "LAG dropped received packets throughput",
  6989  				Summary: "Count of dropped received packets for this LAG",
  6990  			},
  6991  			Key: "throughput.vds.lagDropRx",
  6992  		},
  6993  		GroupInfo: &types.ElementDescription{
  6994  			Description: types.Description{
  6995  				Label:   "Network",
  6996  				Summary: "Network",
  6997  			},
  6998  			Key: "net",
  6999  		},
  7000  		UnitInfo: &types.ElementDescription{
  7001  			Description: types.Description{
  7002  				Label:   "num",
  7003  				Summary: "Number",
  7004  			},
  7005  			Key: "number",
  7006  		},
  7007  		RollupType:          "average",
  7008  		StatsType:           "absolute",
  7009  		Level:               3,
  7010  		PerDeviceLevel:      3,
  7011  		AssociatedCounterId: nil,
  7012  	},
  7013  	{
  7014  		Key: 241,
  7015  		NameInfo: &types.ElementDescription{
  7016  			Description: types.Description{
  7017  				Label:   "VXLAN network packets throughput transmitted",
  7018  				Summary: "The rate of transmitted packets for this network",
  7019  			},
  7020  			Key: "throughput.vds.txTotal",
  7021  		},
  7022  		GroupInfo: &types.ElementDescription{
  7023  			Description: types.Description{
  7024  				Label:   "Network",
  7025  				Summary: "Network",
  7026  			},
  7027  			Key: "net",
  7028  		},
  7029  		UnitInfo: &types.ElementDescription{
  7030  			Description: types.Description{
  7031  				Label:   "num",
  7032  				Summary: "Number",
  7033  			},
  7034  			Key: "number",
  7035  		},
  7036  		RollupType:          "average",
  7037  		StatsType:           "absolute",
  7038  		Level:               3,
  7039  		PerDeviceLevel:      3,
  7040  		AssociatedCounterId: nil,
  7041  	},
  7042  	{
  7043  		Key: 242,
  7044  		NameInfo: &types.ElementDescription{
  7045  			Description: types.Description{
  7046  				Label:   "VXLAN network non-unicast packets throughput transmitted",
  7047  				Summary: "The rate of transmitted non-unicast packets for this network",
  7048  			},
  7049  			Key: "throughput.vds.txNoUnicast",
  7050  		},
  7051  		GroupInfo: &types.ElementDescription{
  7052  			Description: types.Description{
  7053  				Label:   "Network",
  7054  				Summary: "Network",
  7055  			},
  7056  			Key: "net",
  7057  		},
  7058  		UnitInfo: &types.ElementDescription{
  7059  			Description: types.Description{
  7060  				Label:   "num",
  7061  				Summary: "Number",
  7062  			},
  7063  			Key: "number",
  7064  		},
  7065  		RollupType:          "average",
  7066  		StatsType:           "absolute",
  7067  		Level:               3,
  7068  		PerDeviceLevel:      3,
  7069  		AssociatedCounterId: nil,
  7070  	},
  7071  	{
  7072  		Key: 243,
  7073  		NameInfo: &types.ElementDescription{
  7074  			Description: types.Description{
  7075  				Label:   "VXLAN network cross-router packets throughput transmitted",
  7076  				Summary: "The rate of transmitted cross-router packets for this network",
  7077  			},
  7078  			Key: "throughput.vds.txCrsRouter",
  7079  		},
  7080  		GroupInfo: &types.ElementDescription{
  7081  			Description: types.Description{
  7082  				Label:   "Network",
  7083  				Summary: "Network",
  7084  			},
  7085  			Key: "net",
  7086  		},
  7087  		UnitInfo: &types.ElementDescription{
  7088  			Description: types.Description{
  7089  				Label:   "num",
  7090  				Summary: "Number",
  7091  			},
  7092  			Key: "number",
  7093  		},
  7094  		RollupType:          "average",
  7095  		StatsType:           "absolute",
  7096  		Level:               3,
  7097  		PerDeviceLevel:      3,
  7098  		AssociatedCounterId: nil,
  7099  	},
  7100  	{
  7101  		Key: 244,
  7102  		NameInfo: &types.ElementDescription{
  7103  			Description: types.Description{
  7104  				Label:   "VXLAN network dropped transmitted packets throughput",
  7105  				Summary: "Count of dropped transmitted packets for this network",
  7106  			},
  7107  			Key: "throughput.vds.txDrop",
  7108  		},
  7109  		GroupInfo: &types.ElementDescription{
  7110  			Description: types.Description{
  7111  				Label:   "Network",
  7112  				Summary: "Network",
  7113  			},
  7114  			Key: "net",
  7115  		},
  7116  		UnitInfo: &types.ElementDescription{
  7117  			Description: types.Description{
  7118  				Label:   "num",
  7119  				Summary: "Number",
  7120  			},
  7121  			Key: "number",
  7122  		},
  7123  		RollupType:          "average",
  7124  		StatsType:           "absolute",
  7125  		Level:               3,
  7126  		PerDeviceLevel:      3,
  7127  		AssociatedCounterId: nil,
  7128  	},
  7129  	{
  7130  		Key: 245,
  7131  		NameInfo: &types.ElementDescription{
  7132  			Description: types.Description{
  7133  				Label:   "VXLAN network packets throughput received",
  7134  				Summary: "The rate of received packets for this network",
  7135  			},
  7136  			Key: "throughput.vds.rxTotal",
  7137  		},
  7138  		GroupInfo: &types.ElementDescription{
  7139  			Description: types.Description{
  7140  				Label:   "Network",
  7141  				Summary: "Network",
  7142  			},
  7143  			Key: "net",
  7144  		},
  7145  		UnitInfo: &types.ElementDescription{
  7146  			Description: types.Description{
  7147  				Label:   "num",
  7148  				Summary: "Number",
  7149  			},
  7150  			Key: "number",
  7151  		},
  7152  		RollupType:          "average",
  7153  		StatsType:           "absolute",
  7154  		Level:               3,
  7155  		PerDeviceLevel:      3,
  7156  		AssociatedCounterId: nil,
  7157  	},
  7158  	{
  7159  		Key: 246,
  7160  		NameInfo: &types.ElementDescription{
  7161  			Description: types.Description{
  7162  				Label:   "VXLAN network dropped received packets due to destination IP error throughput",
  7163  				Summary: "Count of dropped received packets with destination IP error for this network",
  7164  			},
  7165  			Key: "throughput.vds.rxDestErr",
  7166  		},
  7167  		GroupInfo: &types.ElementDescription{
  7168  			Description: types.Description{
  7169  				Label:   "Network",
  7170  				Summary: "Network",
  7171  			},
  7172  			Key: "net",
  7173  		},
  7174  		UnitInfo: &types.ElementDescription{
  7175  			Description: types.Description{
  7176  				Label:   "num",
  7177  				Summary: "Number",
  7178  			},
  7179  			Key: "number",
  7180  		},
  7181  		RollupType:          "average",
  7182  		StatsType:           "absolute",
  7183  		Level:               3,
  7184  		PerDeviceLevel:      3,
  7185  		AssociatedCounterId: nil,
  7186  	},
  7187  	{
  7188  		Key: 247,
  7189  		NameInfo: &types.ElementDescription{
  7190  			Description: types.Description{
  7191  				Label:   "VXLAN network dropped received packets throughput",
  7192  				Summary: "Count of dropped received packets for this network",
  7193  			},
  7194  			Key: "throughput.vds.rxDrop",
  7195  		},
  7196  		GroupInfo: &types.ElementDescription{
  7197  			Description: types.Description{
  7198  				Label:   "Network",
  7199  				Summary: "Network",
  7200  			},
  7201  			Key: "net",
  7202  		},
  7203  		UnitInfo: &types.ElementDescription{
  7204  			Description: types.Description{
  7205  				Label:   "num",
  7206  				Summary: "Number",
  7207  			},
  7208  			Key: "number",
  7209  		},
  7210  		RollupType:          "average",
  7211  		StatsType:           "absolute",
  7212  		Level:               3,
  7213  		PerDeviceLevel:      3,
  7214  		AssociatedCounterId: nil,
  7215  	},
  7216  	{
  7217  		Key: 248,
  7218  		NameInfo: &types.ElementDescription{
  7219  			Description: types.Description{
  7220  				Label:   "VXLAN network failed to match mapping entry for a unicast MAC throughput",
  7221  				Summary: "Count of transmitted packets that cannot find matched mapping entry for this network",
  7222  			},
  7223  			Key: "throughput.vds.macFlood",
  7224  		},
  7225  		GroupInfo: &types.ElementDescription{
  7226  			Description: types.Description{
  7227  				Label:   "Network",
  7228  				Summary: "Network",
  7229  			},
  7230  			Key: "net",
  7231  		},
  7232  		UnitInfo: &types.ElementDescription{
  7233  			Description: types.Description{
  7234  				Label:   "num",
  7235  				Summary: "Number",
  7236  			},
  7237  			Key: "number",
  7238  		},
  7239  		RollupType:          "average",
  7240  		StatsType:           "absolute",
  7241  		Level:               3,
  7242  		PerDeviceLevel:      3,
  7243  		AssociatedCounterId: nil,
  7244  	},
  7245  	{
  7246  		Key: 249,
  7247  		NameInfo: &types.ElementDescription{
  7248  			Description: types.Description{
  7249  				Label:   "VXLAN network failed to allocate a new mapping entry during translation phase",
  7250  				Summary: "Count of transmitted packets that failed to acquire new mapping entry during translation phase for this network",
  7251  			},
  7252  			Key: "throughput.vds.macLKUPFull",
  7253  		},
  7254  		GroupInfo: &types.ElementDescription{
  7255  			Description: types.Description{
  7256  				Label:   "Network",
  7257  				Summary: "Network",
  7258  			},
  7259  			Key: "net",
  7260  		},
  7261  		UnitInfo: &types.ElementDescription{
  7262  			Description: types.Description{
  7263  				Label:   "num",
  7264  				Summary: "Number",
  7265  			},
  7266  			Key: "number",
  7267  		},
  7268  		RollupType:          "average",
  7269  		StatsType:           "absolute",
  7270  		Level:               3,
  7271  		PerDeviceLevel:      3,
  7272  		AssociatedCounterId: nil,
  7273  	},
  7274  	{
  7275  		Key: 250,
  7276  		NameInfo: &types.ElementDescription{
  7277  			Description: types.Description{
  7278  				Label:   "VXLAN network failed to allocate a new mapping entry during learning phase",
  7279  				Summary: "Count of transmitted packets that failed to acquire new mapping entry during learning phase for this network",
  7280  			},
  7281  			Key: "throughput.vds.macUPDTFull",
  7282  		},
  7283  		GroupInfo: &types.ElementDescription{
  7284  			Description: types.Description{
  7285  				Label:   "Network",
  7286  				Summary: "Network",
  7287  			},
  7288  			Key: "net",
  7289  		},
  7290  		UnitInfo: &types.ElementDescription{
  7291  			Description: types.Description{
  7292  				Label:   "num",
  7293  				Summary: "Number",
  7294  			},
  7295  			Key: "number",
  7296  		},
  7297  		RollupType:          "average",
  7298  		StatsType:           "absolute",
  7299  		Level:               3,
  7300  		PerDeviceLevel:      3,
  7301  		AssociatedCounterId: nil,
  7302  	},
  7303  	{
  7304  		Key: 251,
  7305  		NameInfo: &types.ElementDescription{
  7306  			Description: types.Description{
  7307  				Label:   "VXLAN Network Found Matched ARP Entry Throughput",
  7308  				Summary: "Count of transmitted packets that found matched ARP entry for this network",
  7309  			},
  7310  			Key: "throughput.vds.arpFound",
  7311  		},
  7312  		GroupInfo: &types.ElementDescription{
  7313  			Description: types.Description{
  7314  				Label:   "Network",
  7315  				Summary: "Network",
  7316  			},
  7317  			Key: "net",
  7318  		},
  7319  		UnitInfo: &types.ElementDescription{
  7320  			Description: types.Description{
  7321  				Label:   "num",
  7322  				Summary: "Number",
  7323  			},
  7324  			Key: "number",
  7325  		},
  7326  		RollupType:          "average",
  7327  		StatsType:           "absolute",
  7328  		Level:               3,
  7329  		PerDeviceLevel:      3,
  7330  		AssociatedCounterId: nil,
  7331  	},
  7332  	{
  7333  		Key: 252,
  7334  		NameInfo: &types.ElementDescription{
  7335  			Description: types.Description{
  7336  				Label:   "VXLAN Network Found Matched ARP Entry Marked as Unknown Throughput",
  7337  				Summary: "Count of transmitted packets whose matched arp entry is marked as unknown for this network",
  7338  			},
  7339  			Key: "throughput.vds.arpUnknown",
  7340  		},
  7341  		GroupInfo: &types.ElementDescription{
  7342  			Description: types.Description{
  7343  				Label:   "Network",
  7344  				Summary: "Network",
  7345  			},
  7346  			Key: "net",
  7347  		},
  7348  		UnitInfo: &types.ElementDescription{
  7349  			Description: types.Description{
  7350  				Label:   "num",
  7351  				Summary: "Number",
  7352  			},
  7353  			Key: "number",
  7354  		},
  7355  		RollupType:          "average",
  7356  		StatsType:           "absolute",
  7357  		Level:               3,
  7358  		PerDeviceLevel:      3,
  7359  		AssociatedCounterId: nil,
  7360  	},
  7361  	{
  7362  		Key: 253,
  7363  		NameInfo: &types.ElementDescription{
  7364  			Description: types.Description{
  7365  				Label:   "VXLAN Network Failed to Allocate ARP Entry During Translation Phase Throughput",
  7366  				Summary: "Count of transmitted packets that failed to acquire new ARP entry during translation phase for this network",
  7367  			},
  7368  			Key: "throughput.vds.arpLKUPFull",
  7369  		},
  7370  		GroupInfo: &types.ElementDescription{
  7371  			Description: types.Description{
  7372  				Label:   "Network",
  7373  				Summary: "Network",
  7374  			},
  7375  			Key: "net",
  7376  		},
  7377  		UnitInfo: &types.ElementDescription{
  7378  			Description: types.Description{
  7379  				Label:   "num",
  7380  				Summary: "Number",
  7381  			},
  7382  			Key: "number",
  7383  		},
  7384  		RollupType:          "average",
  7385  		StatsType:           "absolute",
  7386  		Level:               3,
  7387  		PerDeviceLevel:      3,
  7388  		AssociatedCounterId: nil,
  7389  	},
  7390  	{
  7391  		Key: 254,
  7392  		NameInfo: &types.ElementDescription{
  7393  			Description: types.Description{
  7394  				Label:   "VXLAN network found the same ARP requests have been sent into queue throughput",
  7395  				Summary: "Count of transmitted packets whose ARP requests have already been sent into queue for this network",
  7396  			},
  7397  			Key: "throughput.vds.arpWait",
  7398  		},
  7399  		GroupInfo: &types.ElementDescription{
  7400  			Description: types.Description{
  7401  				Label:   "Network",
  7402  				Summary: "Network",
  7403  			},
  7404  			Key: "net",
  7405  		},
  7406  		UnitInfo: &types.ElementDescription{
  7407  			Description: types.Description{
  7408  				Label:   "num",
  7409  				Summary: "Number",
  7410  			},
  7411  			Key: "number",
  7412  		},
  7413  		RollupType:          "average",
  7414  		StatsType:           "absolute",
  7415  		Level:               3,
  7416  		PerDeviceLevel:      3,
  7417  		AssociatedCounterId: nil,
  7418  	},
  7419  	{
  7420  		Key: 255,
  7421  		NameInfo: &types.ElementDescription{
  7422  			Description: types.Description{
  7423  				Label:   "VXLAN Network Found ARP Queries Have Been Expired Throughput",
  7424  				Summary: "Count of arp queries that have been expired for this network",
  7425  			},
  7426  			Key: "throughput.vds.arpTimeout",
  7427  		},
  7428  		GroupInfo: &types.ElementDescription{
  7429  			Description: types.Description{
  7430  				Label:   "Network",
  7431  				Summary: "Network",
  7432  			},
  7433  			Key: "net",
  7434  		},
  7435  		UnitInfo: &types.ElementDescription{
  7436  			Description: types.Description{
  7437  				Label:   "num",
  7438  				Summary: "Number",
  7439  			},
  7440  			Key: "number",
  7441  		},
  7442  		RollupType:          "average",
  7443  		StatsType:           "absolute",
  7444  		Level:               3,
  7445  		PerDeviceLevel:      3,
  7446  		AssociatedCounterId: nil,
  7447  	},
  7448  	{
  7449  		Key: 256,
  7450  		NameInfo: &types.ElementDescription{
  7451  			Description: types.Description{
  7452  				Label:   "VM power on count",
  7453  				Summary: "Number of virtual machine power on operations",
  7454  			},
  7455  			Key: "numPoweron",
  7456  		},
  7457  		GroupInfo: &types.ElementDescription{
  7458  			Description: types.Description{
  7459  				Label:   "Virtual machine operations",
  7460  				Summary: "Virtual machine operations",
  7461  			},
  7462  			Key: "vmop",
  7463  		},
  7464  		UnitInfo: &types.ElementDescription{
  7465  			Description: types.Description{
  7466  				Label:   "num",
  7467  				Summary: "Number",
  7468  			},
  7469  			Key: "number",
  7470  		},
  7471  		RollupType:          "latest",
  7472  		StatsType:           "absolute",
  7473  		Level:               1,
  7474  		PerDeviceLevel:      3,
  7475  		AssociatedCounterId: nil,
  7476  	},
  7477  	{
  7478  		Key: 257,
  7479  		NameInfo: &types.ElementDescription{
  7480  			Description: types.Description{
  7481  				Label:   "VM power off count",
  7482  				Summary: "Number of virtual machine power off operations",
  7483  			},
  7484  			Key: "numPoweroff",
  7485  		},
  7486  		GroupInfo: &types.ElementDescription{
  7487  			Description: types.Description{
  7488  				Label:   "Virtual machine operations",
  7489  				Summary: "Virtual machine operations",
  7490  			},
  7491  			Key: "vmop",
  7492  		},
  7493  		UnitInfo: &types.ElementDescription{
  7494  			Description: types.Description{
  7495  				Label:   "num",
  7496  				Summary: "Number",
  7497  			},
  7498  			Key: "number",
  7499  		},
  7500  		RollupType:          "latest",
  7501  		StatsType:           "absolute",
  7502  		Level:               1,
  7503  		PerDeviceLevel:      3,
  7504  		AssociatedCounterId: nil,
  7505  	},
  7506  	{
  7507  		Key: 258,
  7508  		NameInfo: &types.ElementDescription{
  7509  			Description: types.Description{
  7510  				Label:   "VM suspend count",
  7511  				Summary: "Number of virtual machine suspend operations",
  7512  			},
  7513  			Key: "numSuspend",
  7514  		},
  7515  		GroupInfo: &types.ElementDescription{
  7516  			Description: types.Description{
  7517  				Label:   "Virtual machine operations",
  7518  				Summary: "Virtual machine operations",
  7519  			},
  7520  			Key: "vmop",
  7521  		},
  7522  		UnitInfo: &types.ElementDescription{
  7523  			Description: types.Description{
  7524  				Label:   "num",
  7525  				Summary: "Number",
  7526  			},
  7527  			Key: "number",
  7528  		},
  7529  		RollupType:          "latest",
  7530  		StatsType:           "absolute",
  7531  		Level:               1,
  7532  		PerDeviceLevel:      3,
  7533  		AssociatedCounterId: nil,
  7534  	},
  7535  	{
  7536  		Key: 259,
  7537  		NameInfo: &types.ElementDescription{
  7538  			Description: types.Description{
  7539  				Label:   "VM reset count",
  7540  				Summary: "Number of virtual machine reset operations",
  7541  			},
  7542  			Key: "numReset",
  7543  		},
  7544  		GroupInfo: &types.ElementDescription{
  7545  			Description: types.Description{
  7546  				Label:   "Virtual machine operations",
  7547  				Summary: "Virtual machine operations",
  7548  			},
  7549  			Key: "vmop",
  7550  		},
  7551  		UnitInfo: &types.ElementDescription{
  7552  			Description: types.Description{
  7553  				Label:   "num",
  7554  				Summary: "Number",
  7555  			},
  7556  			Key: "number",
  7557  		},
  7558  		RollupType:          "latest",
  7559  		StatsType:           "absolute",
  7560  		Level:               1,
  7561  		PerDeviceLevel:      3,
  7562  		AssociatedCounterId: nil,
  7563  	},
  7564  	{
  7565  		Key: 260,
  7566  		NameInfo: &types.ElementDescription{
  7567  			Description: types.Description{
  7568  				Label:   "VM guest reboot count",
  7569  				Summary: "Number of virtual machine guest reboot operations",
  7570  			},
  7571  			Key: "numRebootGuest",
  7572  		},
  7573  		GroupInfo: &types.ElementDescription{
  7574  			Description: types.Description{
  7575  				Label:   "Virtual machine operations",
  7576  				Summary: "Virtual machine operations",
  7577  			},
  7578  			Key: "vmop",
  7579  		},
  7580  		UnitInfo: &types.ElementDescription{
  7581  			Description: types.Description{
  7582  				Label:   "num",
  7583  				Summary: "Number",
  7584  			},
  7585  			Key: "number",
  7586  		},
  7587  		RollupType:          "latest",
  7588  		StatsType:           "absolute",
  7589  		Level:               1,
  7590  		PerDeviceLevel:      3,
  7591  		AssociatedCounterId: nil,
  7592  	},
  7593  	{
  7594  		Key: 261,
  7595  		NameInfo: &types.ElementDescription{
  7596  			Description: types.Description{
  7597  				Label:   "VM standby guest count",
  7598  				Summary: "Number of virtual machine standby guest operations",
  7599  			},
  7600  			Key: "numStandbyGuest",
  7601  		},
  7602  		GroupInfo: &types.ElementDescription{
  7603  			Description: types.Description{
  7604  				Label:   "Virtual machine operations",
  7605  				Summary: "Virtual machine operations",
  7606  			},
  7607  			Key: "vmop",
  7608  		},
  7609  		UnitInfo: &types.ElementDescription{
  7610  			Description: types.Description{
  7611  				Label:   "num",
  7612  				Summary: "Number",
  7613  			},
  7614  			Key: "number",
  7615  		},
  7616  		RollupType:          "latest",
  7617  		StatsType:           "absolute",
  7618  		Level:               1,
  7619  		PerDeviceLevel:      3,
  7620  		AssociatedCounterId: nil,
  7621  	},
  7622  	{
  7623  		Key: 262,
  7624  		NameInfo: &types.ElementDescription{
  7625  			Description: types.Description{
  7626  				Label:   "VM guest shutdown count",
  7627  				Summary: "Number of virtual machine guest shutdown operations",
  7628  			},
  7629  			Key: "numShutdownGuest",
  7630  		},
  7631  		GroupInfo: &types.ElementDescription{
  7632  			Description: types.Description{
  7633  				Label:   "Virtual machine operations",
  7634  				Summary: "Virtual machine operations",
  7635  			},
  7636  			Key: "vmop",
  7637  		},
  7638  		UnitInfo: &types.ElementDescription{
  7639  			Description: types.Description{
  7640  				Label:   "num",
  7641  				Summary: "Number",
  7642  			},
  7643  			Key: "number",
  7644  		},
  7645  		RollupType:          "latest",
  7646  		StatsType:           "absolute",
  7647  		Level:               1,
  7648  		PerDeviceLevel:      3,
  7649  		AssociatedCounterId: nil,
  7650  	},
  7651  	{
  7652  		Key: 263,
  7653  		NameInfo: &types.ElementDescription{
  7654  			Description: types.Description{
  7655  				Label:   "VM create count",
  7656  				Summary: "Number of virtual machine create operations",
  7657  			},
  7658  			Key: "numCreate",
  7659  		},
  7660  		GroupInfo: &types.ElementDescription{
  7661  			Description: types.Description{
  7662  				Label:   "Virtual machine operations",
  7663  				Summary: "Virtual machine operations",
  7664  			},
  7665  			Key: "vmop",
  7666  		},
  7667  		UnitInfo: &types.ElementDescription{
  7668  			Description: types.Description{
  7669  				Label:   "num",
  7670  				Summary: "Number",
  7671  			},
  7672  			Key: "number",
  7673  		},
  7674  		RollupType:          "latest",
  7675  		StatsType:           "absolute",
  7676  		Level:               1,
  7677  		PerDeviceLevel:      3,
  7678  		AssociatedCounterId: nil,
  7679  	},
  7680  	{
  7681  		Key: 264,
  7682  		NameInfo: &types.ElementDescription{
  7683  			Description: types.Description{
  7684  				Label:   "VM delete count",
  7685  				Summary: "Number of virtual machine delete operations",
  7686  			},
  7687  			Key: "numDestroy",
  7688  		},
  7689  		GroupInfo: &types.ElementDescription{
  7690  			Description: types.Description{
  7691  				Label:   "Virtual machine operations",
  7692  				Summary: "Virtual machine operations",
  7693  			},
  7694  			Key: "vmop",
  7695  		},
  7696  		UnitInfo: &types.ElementDescription{
  7697  			Description: types.Description{
  7698  				Label:   "num",
  7699  				Summary: "Number",
  7700  			},
  7701  			Key: "number",
  7702  		},
  7703  		RollupType:          "latest",
  7704  		StatsType:           "absolute",
  7705  		Level:               1,
  7706  		PerDeviceLevel:      3,
  7707  		AssociatedCounterId: nil,
  7708  	},
  7709  	{
  7710  		Key: 265,
  7711  		NameInfo: &types.ElementDescription{
  7712  			Description: types.Description{
  7713  				Label:   "VM register count",
  7714  				Summary: "Number of virtual machine register operations",
  7715  			},
  7716  			Key: "numRegister",
  7717  		},
  7718  		GroupInfo: &types.ElementDescription{
  7719  			Description: types.Description{
  7720  				Label:   "Virtual machine operations",
  7721  				Summary: "Virtual machine operations",
  7722  			},
  7723  			Key: "vmop",
  7724  		},
  7725  		UnitInfo: &types.ElementDescription{
  7726  			Description: types.Description{
  7727  				Label:   "num",
  7728  				Summary: "Number",
  7729  			},
  7730  			Key: "number",
  7731  		},
  7732  		RollupType:          "latest",
  7733  		StatsType:           "absolute",
  7734  		Level:               1,
  7735  		PerDeviceLevel:      3,
  7736  		AssociatedCounterId: nil,
  7737  	},
  7738  	{
  7739  		Key: 266,
  7740  		NameInfo: &types.ElementDescription{
  7741  			Description: types.Description{
  7742  				Label:   "VM unregister count",
  7743  				Summary: "Number of virtual machine unregister operations",
  7744  			},
  7745  			Key: "numUnregister",
  7746  		},
  7747  		GroupInfo: &types.ElementDescription{
  7748  			Description: types.Description{
  7749  				Label:   "Virtual machine operations",
  7750  				Summary: "Virtual machine operations",
  7751  			},
  7752  			Key: "vmop",
  7753  		},
  7754  		UnitInfo: &types.ElementDescription{
  7755  			Description: types.Description{
  7756  				Label:   "num",
  7757  				Summary: "Number",
  7758  			},
  7759  			Key: "number",
  7760  		},
  7761  		RollupType:          "latest",
  7762  		StatsType:           "absolute",
  7763  		Level:               1,
  7764  		PerDeviceLevel:      3,
  7765  		AssociatedCounterId: nil,
  7766  	},
  7767  	{
  7768  		Key: 267,
  7769  		NameInfo: &types.ElementDescription{
  7770  			Description: types.Description{
  7771  				Label:   "VM reconfigure count",
  7772  				Summary: "Number of virtual machine reconfigure operations",
  7773  			},
  7774  			Key: "numReconfigure",
  7775  		},
  7776  		GroupInfo: &types.ElementDescription{
  7777  			Description: types.Description{
  7778  				Label:   "Virtual machine operations",
  7779  				Summary: "Virtual machine operations",
  7780  			},
  7781  			Key: "vmop",
  7782  		},
  7783  		UnitInfo: &types.ElementDescription{
  7784  			Description: types.Description{
  7785  				Label:   "num",
  7786  				Summary: "Number",
  7787  			},
  7788  			Key: "number",
  7789  		},
  7790  		RollupType:          "latest",
  7791  		StatsType:           "absolute",
  7792  		Level:               1,
  7793  		PerDeviceLevel:      3,
  7794  		AssociatedCounterId: nil,
  7795  	},
  7796  	{
  7797  		Key: 268,
  7798  		NameInfo: &types.ElementDescription{
  7799  			Description: types.Description{
  7800  				Label:   "VM clone count",
  7801  				Summary: "Number of virtual machine clone operations",
  7802  			},
  7803  			Key: "numClone",
  7804  		},
  7805  		GroupInfo: &types.ElementDescription{
  7806  			Description: types.Description{
  7807  				Label:   "Virtual machine operations",
  7808  				Summary: "Virtual machine operations",
  7809  			},
  7810  			Key: "vmop",
  7811  		},
  7812  		UnitInfo: &types.ElementDescription{
  7813  			Description: types.Description{
  7814  				Label:   "num",
  7815  				Summary: "Number",
  7816  			},
  7817  			Key: "number",
  7818  		},
  7819  		RollupType:          "latest",
  7820  		StatsType:           "absolute",
  7821  		Level:               1,
  7822  		PerDeviceLevel:      3,
  7823  		AssociatedCounterId: nil,
  7824  	},
  7825  	{
  7826  		Key: 269,
  7827  		NameInfo: &types.ElementDescription{
  7828  			Description: types.Description{
  7829  				Label:   "VM template deploy count",
  7830  				Summary: "Number of virtual machine template deploy operations",
  7831  			},
  7832  			Key: "numDeploy",
  7833  		},
  7834  		GroupInfo: &types.ElementDescription{
  7835  			Description: types.Description{
  7836  				Label:   "Virtual machine operations",
  7837  				Summary: "Virtual machine operations",
  7838  			},
  7839  			Key: "vmop",
  7840  		},
  7841  		UnitInfo: &types.ElementDescription{
  7842  			Description: types.Description{
  7843  				Label:   "num",
  7844  				Summary: "Number",
  7845  			},
  7846  			Key: "number",
  7847  		},
  7848  		RollupType:          "latest",
  7849  		StatsType:           "absolute",
  7850  		Level:               1,
  7851  		PerDeviceLevel:      3,
  7852  		AssociatedCounterId: nil,
  7853  	},
  7854  	{
  7855  		Key: 270,
  7856  		NameInfo: &types.ElementDescription{
  7857  			Description: types.Description{
  7858  				Label:   "VM host change count (non-powered-on VMs)",
  7859  				Summary: "Number of host change operations for powered-off and suspended VMs",
  7860  			},
  7861  			Key: "numChangeHost",
  7862  		},
  7863  		GroupInfo: &types.ElementDescription{
  7864  			Description: types.Description{
  7865  				Label:   "Virtual machine operations",
  7866  				Summary: "Virtual machine operations",
  7867  			},
  7868  			Key: "vmop",
  7869  		},
  7870  		UnitInfo: &types.ElementDescription{
  7871  			Description: types.Description{
  7872  				Label:   "num",
  7873  				Summary: "Number",
  7874  			},
  7875  			Key: "number",
  7876  		},
  7877  		RollupType:          "latest",
  7878  		StatsType:           "absolute",
  7879  		Level:               1,
  7880  		PerDeviceLevel:      3,
  7881  		AssociatedCounterId: nil,
  7882  	},
  7883  	{
  7884  		Key: 271,
  7885  		NameInfo: &types.ElementDescription{
  7886  			Description: types.Description{
  7887  				Label:   "VM datastore change count (non-powered-on VMs)",
  7888  				Summary: "Number of datastore change operations for powered-off and suspended virtual machines",
  7889  			},
  7890  			Key: "numChangeDS",
  7891  		},
  7892  		GroupInfo: &types.ElementDescription{
  7893  			Description: types.Description{
  7894  				Label:   "Virtual machine operations",
  7895  				Summary: "Virtual machine operations",
  7896  			},
  7897  			Key: "vmop",
  7898  		},
  7899  		UnitInfo: &types.ElementDescription{
  7900  			Description: types.Description{
  7901  				Label:   "num",
  7902  				Summary: "Number",
  7903  			},
  7904  			Key: "number",
  7905  		},
  7906  		RollupType:          "latest",
  7907  		StatsType:           "absolute",
  7908  		Level:               1,
  7909  		PerDeviceLevel:      3,
  7910  		AssociatedCounterId: nil,
  7911  	},
  7912  	{
  7913  		Key: 272,
  7914  		NameInfo: &types.ElementDescription{
  7915  			Description: types.Description{
  7916  				Label:   "VM host and datastore change count (non-powered-on VMs)",
  7917  				Summary: "Number of host and datastore change operations for powered-off and suspended virtual machines",
  7918  			},
  7919  			Key: "numChangeHostDS",
  7920  		},
  7921  		GroupInfo: &types.ElementDescription{
  7922  			Description: types.Description{
  7923  				Label:   "Virtual machine operations",
  7924  				Summary: "Virtual machine operations",
  7925  			},
  7926  			Key: "vmop",
  7927  		},
  7928  		UnitInfo: &types.ElementDescription{
  7929  			Description: types.Description{
  7930  				Label:   "num",
  7931  				Summary: "Number",
  7932  			},
  7933  			Key: "number",
  7934  		},
  7935  		RollupType:          "latest",
  7936  		StatsType:           "absolute",
  7937  		Level:               1,
  7938  		PerDeviceLevel:      3,
  7939  		AssociatedCounterId: nil,
  7940  	},
  7941  	{
  7942  		Key: 273,
  7943  		NameInfo: &types.ElementDescription{
  7944  			Description: types.Description{
  7945  				Label:   "vMotion count",
  7946  				Summary: "Number of migrations with vMotion (host change operations for powered-on VMs)",
  7947  			},
  7948  			Key: "numVMotion",
  7949  		},
  7950  		GroupInfo: &types.ElementDescription{
  7951  			Description: types.Description{
  7952  				Label:   "Virtual machine operations",
  7953  				Summary: "Virtual machine operations",
  7954  			},
  7955  			Key: "vmop",
  7956  		},
  7957  		UnitInfo: &types.ElementDescription{
  7958  			Description: types.Description{
  7959  				Label:   "num",
  7960  				Summary: "Number",
  7961  			},
  7962  			Key: "number",
  7963  		},
  7964  		RollupType:          "latest",
  7965  		StatsType:           "absolute",
  7966  		Level:               1,
  7967  		PerDeviceLevel:      3,
  7968  		AssociatedCounterId: nil,
  7969  	},
  7970  	{
  7971  		Key: 274,
  7972  		NameInfo: &types.ElementDescription{
  7973  			Description: types.Description{
  7974  				Label:   "Storage vMotion count",
  7975  				Summary: "Number of migrations with Storage vMotion (datastore change operations for powered-on VMs)",
  7976  			},
  7977  			Key: "numSVMotion",
  7978  		},
  7979  		GroupInfo: &types.ElementDescription{
  7980  			Description: types.Description{
  7981  				Label:   "Virtual machine operations",
  7982  				Summary: "Virtual machine operations",
  7983  			},
  7984  			Key: "vmop",
  7985  		},
  7986  		UnitInfo: &types.ElementDescription{
  7987  			Description: types.Description{
  7988  				Label:   "num",
  7989  				Summary: "Number",
  7990  			},
  7991  			Key: "number",
  7992  		},
  7993  		RollupType:          "latest",
  7994  		StatsType:           "absolute",
  7995  		Level:               1,
  7996  		PerDeviceLevel:      3,
  7997  		AssociatedCounterId: nil,
  7998  	},
  7999  	{
  8000  		Key: 275,
  8001  		NameInfo: &types.ElementDescription{
  8002  			Description: types.Description{
  8003  				Label:   "VM host and datastore change count (powered-on VMs)",
  8004  				Summary: "Number of host and datastore change operations for powered-on and suspended virtual machines",
  8005  			},
  8006  			Key: "numXVMotion",
  8007  		},
  8008  		GroupInfo: &types.ElementDescription{
  8009  			Description: types.Description{
  8010  				Label:   "Virtual machine operations",
  8011  				Summary: "Virtual machine operations",
  8012  			},
  8013  			Key: "vmop",
  8014  		},
  8015  		UnitInfo: &types.ElementDescription{
  8016  			Description: types.Description{
  8017  				Label:   "num",
  8018  				Summary: "Number",
  8019  			},
  8020  			Key: "number",
  8021  		},
  8022  		RollupType:          "latest",
  8023  		StatsType:           "absolute",
  8024  		Level:               1,
  8025  		PerDeviceLevel:      3,
  8026  		AssociatedCounterId: nil,
  8027  	},
  8028  	{
  8029  		Key: 276,
  8030  		NameInfo: &types.ElementDescription{
  8031  			Description: types.Description{
  8032  				Label:   "Effective CPU resources",
  8033  				Summary: "Total available CPU resources of all hosts within a cluster",
  8034  			},
  8035  			Key: "effectivecpu",
  8036  		},
  8037  		GroupInfo: &types.ElementDescription{
  8038  			Description: types.Description{
  8039  				Label:   "Cluster services",
  8040  				Summary: "Cluster services",
  8041  			},
  8042  			Key: "clusterServices",
  8043  		},
  8044  		UnitInfo: &types.ElementDescription{
  8045  			Description: types.Description{
  8046  				Label:   "MHz",
  8047  				Summary: "Megahertz",
  8048  			},
  8049  			Key: "megaHertz",
  8050  		},
  8051  		RollupType:          "average",
  8052  		StatsType:           "rate",
  8053  		Level:               1,
  8054  		PerDeviceLevel:      3,
  8055  		AssociatedCounterId: nil,
  8056  	},
  8057  	{
  8058  		Key: 277,
  8059  		NameInfo: &types.ElementDescription{
  8060  			Description: types.Description{
  8061  				Label:   "Effective memory resources",
  8062  				Summary: "Total amount of machine memory of all hosts in the cluster that is available for use for virtual machine memory and overhead memory",
  8063  			},
  8064  			Key: "effectivemem",
  8065  		},
  8066  		GroupInfo: &types.ElementDescription{
  8067  			Description: types.Description{
  8068  				Label:   "Cluster services",
  8069  				Summary: "Cluster services",
  8070  			},
  8071  			Key: "clusterServices",
  8072  		},
  8073  		UnitInfo: &types.ElementDescription{
  8074  			Description: types.Description{
  8075  				Label:   "MB",
  8076  				Summary: "Megabyte",
  8077  			},
  8078  			Key: "megaBytes",
  8079  		},
  8080  		RollupType:          "average",
  8081  		StatsType:           "absolute",
  8082  		Level:               1,
  8083  		PerDeviceLevel:      3,
  8084  		AssociatedCounterId: nil,
  8085  	},
  8086  	{
  8087  		Key: 278,
  8088  		NameInfo: &types.ElementDescription{
  8089  			Description: types.Description{
  8090  				Label:   "Total",
  8091  				Summary: "Total amount of CPU resources of all hosts in the cluster",
  8092  			},
  8093  			Key: "totalmhz",
  8094  		},
  8095  		GroupInfo: &types.ElementDescription{
  8096  			Description: types.Description{
  8097  				Label:   "CPU",
  8098  				Summary: "CPU",
  8099  			},
  8100  			Key: "cpu",
  8101  		},
  8102  		UnitInfo: &types.ElementDescription{
  8103  			Description: types.Description{
  8104  				Label:   "MHz",
  8105  				Summary: "Megahertz",
  8106  			},
  8107  			Key: "megaHertz",
  8108  		},
  8109  		RollupType:          "average",
  8110  		StatsType:           "rate",
  8111  		Level:               1,
  8112  		PerDeviceLevel:      3,
  8113  		AssociatedCounterId: nil,
  8114  	},
  8115  	{
  8116  		Key: 279,
  8117  		NameInfo: &types.ElementDescription{
  8118  			Description: types.Description{
  8119  				Label:   "Total",
  8120  				Summary: "Total amount of host physical memory of all hosts in the cluster that is available for virtual machine memory (physical memory for use by the guest OS) and virtual machine overhead memory",
  8121  			},
  8122  			Key: "totalmb",
  8123  		},
  8124  		GroupInfo: &types.ElementDescription{
  8125  			Description: types.Description{
  8126  				Label:   "Memory",
  8127  				Summary: "Memory",
  8128  			},
  8129  			Key: "mem",
  8130  		},
  8131  		UnitInfo: &types.ElementDescription{
  8132  			Description: types.Description{
  8133  				Label:   "MB",
  8134  				Summary: "Megabyte",
  8135  			},
  8136  			Key: "megaBytes",
  8137  		},
  8138  		RollupType:          "average",
  8139  		StatsType:           "absolute",
  8140  		Level:               1,
  8141  		PerDeviceLevel:      3,
  8142  		AssociatedCounterId: nil,
  8143  	},
  8144  	{
  8145  		Key: 280,
  8146  		NameInfo: &types.ElementDescription{
  8147  			Description: types.Description{
  8148  				Label:   "Current failover level",
  8149  				Summary: "vSphere HA number of failures that can be tolerated",
  8150  			},
  8151  			Key: "failover",
  8152  		},
  8153  		GroupInfo: &types.ElementDescription{
  8154  			Description: types.Description{
  8155  				Label:   "Cluster services",
  8156  				Summary: "Cluster services",
  8157  			},
  8158  			Key: "clusterServices",
  8159  		},
  8160  		UnitInfo: &types.ElementDescription{
  8161  			Description: types.Description{
  8162  				Label:   "num",
  8163  				Summary: "Number",
  8164  			},
  8165  			Key: "number",
  8166  		},
  8167  		RollupType:          "latest",
  8168  		StatsType:           "absolute",
  8169  		Level:               1,
  8170  		PerDeviceLevel:      3,
  8171  		AssociatedCounterId: nil,
  8172  	},
  8173  	{
  8174  		Key: 281,
  8175  		NameInfo: &types.ElementDescription{
  8176  			Description: types.Description{
  8177  				Label:   "Space actually used",
  8178  				Summary: "Amount of space actually used by the virtual machine or the datastore",
  8179  			},
  8180  			Key: "used",
  8181  		},
  8182  		GroupInfo: &types.ElementDescription{
  8183  			Description: types.Description{
  8184  				Label:   "Disk",
  8185  				Summary: "Disk",
  8186  			},
  8187  			Key: "disk",
  8188  		},
  8189  		UnitInfo: &types.ElementDescription{
  8190  			Description: types.Description{
  8191  				Label:   "KB",
  8192  				Summary: "Kilobyte",
  8193  			},
  8194  			Key: "kiloBytes",
  8195  		},
  8196  		RollupType:          "latest",
  8197  		StatsType:           "absolute",
  8198  		Level:               1,
  8199  		PerDeviceLevel:      1,
  8200  		AssociatedCounterId: nil,
  8201  	},
  8202  	{
  8203  		Key: 282,
  8204  		NameInfo: &types.ElementDescription{
  8205  			Description: types.Description{
  8206  				Label:   "Space potentially used",
  8207  				Summary: "Amount of storage set aside for use by a datastore or a virtual machine",
  8208  			},
  8209  			Key: "provisioned",
  8210  		},
  8211  		GroupInfo: &types.ElementDescription{
  8212  			Description: types.Description{
  8213  				Label:   "Disk",
  8214  				Summary: "Disk",
  8215  			},
  8216  			Key: "disk",
  8217  		},
  8218  		UnitInfo: &types.ElementDescription{
  8219  			Description: types.Description{
  8220  				Label:   "KB",
  8221  				Summary: "Kilobyte",
  8222  			},
  8223  			Key: "kiloBytes",
  8224  		},
  8225  		RollupType:          "latest",
  8226  		StatsType:           "absolute",
  8227  		Level:               1,
  8228  		PerDeviceLevel:      1,
  8229  		AssociatedCounterId: nil,
  8230  	},
  8231  	{
  8232  		Key: 283,
  8233  		NameInfo: &types.ElementDescription{
  8234  			Description: types.Description{
  8235  				Label:   "Capacity",
  8236  				Summary: "Configured size of the datastore",
  8237  			},
  8238  			Key: "capacity",
  8239  		},
  8240  		GroupInfo: &types.ElementDescription{
  8241  			Description: types.Description{
  8242  				Label:   "Disk",
  8243  				Summary: "Disk",
  8244  			},
  8245  			Key: "disk",
  8246  		},
  8247  		UnitInfo: &types.ElementDescription{
  8248  			Description: types.Description{
  8249  				Label:   "KB",
  8250  				Summary: "Kilobyte",
  8251  			},
  8252  			Key: "kiloBytes",
  8253  		},
  8254  		RollupType:          "latest",
  8255  		StatsType:           "absolute",
  8256  		Level:               1,
  8257  		PerDeviceLevel:      3,
  8258  		AssociatedCounterId: nil,
  8259  	},
  8260  	{
  8261  		Key: 284,
  8262  		NameInfo: &types.ElementDescription{
  8263  			Description: types.Description{
  8264  				Label:   "Space not shared",
  8265  				Summary: "Amount of space associated exclusively with a virtual machine",
  8266  			},
  8267  			Key: "unshared",
  8268  		},
  8269  		GroupInfo: &types.ElementDescription{
  8270  			Description: types.Description{
  8271  				Label:   "Disk",
  8272  				Summary: "Disk",
  8273  			},
  8274  			Key: "disk",
  8275  		},
  8276  		UnitInfo: &types.ElementDescription{
  8277  			Description: types.Description{
  8278  				Label:   "KB",
  8279  				Summary: "Kilobyte",
  8280  			},
  8281  			Key: "kiloBytes",
  8282  		},
  8283  		RollupType:          "latest",
  8284  		StatsType:           "absolute",
  8285  		Level:               1,
  8286  		PerDeviceLevel:      1,
  8287  		AssociatedCounterId: nil,
  8288  	},
  8289  	{
  8290  		Key: 285,
  8291  		NameInfo: &types.ElementDescription{
  8292  			Description: types.Description{
  8293  				Label:   "Overhead due to delta disk backings",
  8294  				Summary: "Storage overhead of a virtual machine or a datastore due to delta disk backings",
  8295  			},
  8296  			Key: "deltaused",
  8297  		},
  8298  		GroupInfo: &types.ElementDescription{
  8299  			Description: types.Description{
  8300  				Label:   "Disk",
  8301  				Summary: "Disk",
  8302  			},
  8303  			Key: "disk",
  8304  		},
  8305  		UnitInfo: &types.ElementDescription{
  8306  			Description: types.Description{
  8307  				Label:   "KB",
  8308  				Summary: "Kilobyte",
  8309  			},
  8310  			Key: "kiloBytes",
  8311  		},
  8312  		RollupType:          "latest",
  8313  		StatsType:           "absolute",
  8314  		Level:               2,
  8315  		PerDeviceLevel:      3,
  8316  		AssociatedCounterId: nil,
  8317  	},
  8318  	{
  8319  		Key: 286,
  8320  		NameInfo: &types.ElementDescription{
  8321  			Description: types.Description{
  8322  				Label:   "provisioned",
  8323  				Summary: "provisioned",
  8324  			},
  8325  			Key: "capacity.provisioned",
  8326  		},
  8327  		GroupInfo: &types.ElementDescription{
  8328  			Description: types.Description{
  8329  				Label:   "Disk",
  8330  				Summary: "Disk",
  8331  			},
  8332  			Key: "disk",
  8333  		},
  8334  		UnitInfo: &types.ElementDescription{
  8335  			Description: types.Description{
  8336  				Label:   "KB",
  8337  				Summary: "Kilobyte",
  8338  			},
  8339  			Key: "kiloBytes",
  8340  		},
  8341  		RollupType:          "average",
  8342  		StatsType:           "absolute",
  8343  		Level:               4,
  8344  		PerDeviceLevel:      4,
  8345  		AssociatedCounterId: nil,
  8346  	},
  8347  	{
  8348  		Key: 287,
  8349  		NameInfo: &types.ElementDescription{
  8350  			Description: types.Description{
  8351  				Label:   "usage",
  8352  				Summary: "usage",
  8353  			},
  8354  			Key: "capacity.usage",
  8355  		},
  8356  		GroupInfo: &types.ElementDescription{
  8357  			Description: types.Description{
  8358  				Label:   "Disk",
  8359  				Summary: "Disk",
  8360  			},
  8361  			Key: "disk",
  8362  		},
  8363  		UnitInfo: &types.ElementDescription{
  8364  			Description: types.Description{
  8365  				Label:   "KB",
  8366  				Summary: "Kilobyte",
  8367  			},
  8368  			Key: "kiloBytes",
  8369  		},
  8370  		RollupType:          "average",
  8371  		StatsType:           "absolute",
  8372  		Level:               4,
  8373  		PerDeviceLevel:      4,
  8374  		AssociatedCounterId: nil,
  8375  	},
  8376  	{
  8377  		Key: 288,
  8378  		NameInfo: &types.ElementDescription{
  8379  			Description: types.Description{
  8380  				Label:   "contention",
  8381  				Summary: "contention",
  8382  			},
  8383  			Key: "capacity.contention",
  8384  		},
  8385  		GroupInfo: &types.ElementDescription{
  8386  			Description: types.Description{
  8387  				Label:   "Disk",
  8388  				Summary: "Disk",
  8389  			},
  8390  			Key: "disk",
  8391  		},
  8392  		UnitInfo: &types.ElementDescription{
  8393  			Description: types.Description{
  8394  				Label:   "%",
  8395  				Summary: "Percentage",
  8396  			},
  8397  			Key: "percent",
  8398  		},
  8399  		RollupType:          "average",
  8400  		StatsType:           "absolute",
  8401  		Level:               4,
  8402  		PerDeviceLevel:      4,
  8403  		AssociatedCounterId: nil,
  8404  	},
  8405  	{
  8406  		Key: 289,
  8407  		NameInfo: &types.ElementDescription{
  8408  			Description: types.Description{
  8409  				Label:   "Activation latency",
  8410  				Summary: "The latency of an activation operation in vCenter Server",
  8411  			},
  8412  			Key: "activationlatencystats",
  8413  		},
  8414  		GroupInfo: &types.ElementDescription{
  8415  			Description: types.Description{
  8416  				Label:   "vCenter debugging information",
  8417  				Summary: "vCenter debugging information",
  8418  			},
  8419  			Key: "vcDebugInfo",
  8420  		},
  8421  		UnitInfo: &types.ElementDescription{
  8422  			Description: types.Description{
  8423  				Label:   "ms",
  8424  				Summary: "Millisecond",
  8425  			},
  8426  			Key: "millisecond",
  8427  		},
  8428  		RollupType:          "maximum",
  8429  		StatsType:           "absolute",
  8430  		Level:               4,
  8431  		PerDeviceLevel:      4,
  8432  		AssociatedCounterId: nil,
  8433  	},
  8434  	{
  8435  		Key: 290,
  8436  		NameInfo: &types.ElementDescription{
  8437  			Description: types.Description{
  8438  				Label:   "Activation latency",
  8439  				Summary: "The latency of an activation operation in vCenter Server",
  8440  			},
  8441  			Key: "activationlatencystats",
  8442  		},
  8443  		GroupInfo: &types.ElementDescription{
  8444  			Description: types.Description{
  8445  				Label:   "vCenter debugging information",
  8446  				Summary: "vCenter debugging information",
  8447  			},
  8448  			Key: "vcDebugInfo",
  8449  		},
  8450  		UnitInfo: &types.ElementDescription{
  8451  			Description: types.Description{
  8452  				Label:   "ms",
  8453  				Summary: "Millisecond",
  8454  			},
  8455  			Key: "millisecond",
  8456  		},
  8457  		RollupType:          "minimum",
  8458  		StatsType:           "absolute",
  8459  		Level:               4,
  8460  		PerDeviceLevel:      4,
  8461  		AssociatedCounterId: nil,
  8462  	},
  8463  	{
  8464  		Key: 291,
  8465  		NameInfo: &types.ElementDescription{
  8466  			Description: types.Description{
  8467  				Label:   "Activation latency",
  8468  				Summary: "The latency of an activation operation in vCenter Server",
  8469  			},
  8470  			Key: "activationlatencystats",
  8471  		},
  8472  		GroupInfo: &types.ElementDescription{
  8473  			Description: types.Description{
  8474  				Label:   "vCenter debugging information",
  8475  				Summary: "vCenter debugging information",
  8476  			},
  8477  			Key: "vcDebugInfo",
  8478  		},
  8479  		UnitInfo: &types.ElementDescription{
  8480  			Description: types.Description{
  8481  				Label:   "ms",
  8482  				Summary: "Millisecond",
  8483  			},
  8484  			Key: "millisecond",
  8485  		},
  8486  		RollupType:          "summation",
  8487  		StatsType:           "absolute",
  8488  		Level:               1,
  8489  		PerDeviceLevel:      1,
  8490  		AssociatedCounterId: nil,
  8491  	},
  8492  	{
  8493  		Key: 292,
  8494  		NameInfo: &types.ElementDescription{
  8495  			Description: types.Description{
  8496  				Label:   "Activation count",
  8497  				Summary: "Activation operations in vCenter Server",
  8498  			},
  8499  			Key: "activationstats",
  8500  		},
  8501  		GroupInfo: &types.ElementDescription{
  8502  			Description: types.Description{
  8503  				Label:   "vCenter debugging information",
  8504  				Summary: "vCenter debugging information",
  8505  			},
  8506  			Key: "vcDebugInfo",
  8507  		},
  8508  		UnitInfo: &types.ElementDescription{
  8509  			Description: types.Description{
  8510  				Label:   "num",
  8511  				Summary: "Number",
  8512  			},
  8513  			Key: "number",
  8514  		},
  8515  		RollupType:          "maximum",
  8516  		StatsType:           "absolute",
  8517  		Level:               4,
  8518  		PerDeviceLevel:      4,
  8519  		AssociatedCounterId: nil,
  8520  	},
  8521  	{
  8522  		Key: 293,
  8523  		NameInfo: &types.ElementDescription{
  8524  			Description: types.Description{
  8525  				Label:   "Activation count",
  8526  				Summary: "Activation operations in vCenter Server",
  8527  			},
  8528  			Key: "activationstats",
  8529  		},
  8530  		GroupInfo: &types.ElementDescription{
  8531  			Description: types.Description{
  8532  				Label:   "vCenter debugging information",
  8533  				Summary: "vCenter debugging information",
  8534  			},
  8535  			Key: "vcDebugInfo",
  8536  		},
  8537  		UnitInfo: &types.ElementDescription{
  8538  			Description: types.Description{
  8539  				Label:   "num",
  8540  				Summary: "Number",
  8541  			},
  8542  			Key: "number",
  8543  		},
  8544  		RollupType:          "minimum",
  8545  		StatsType:           "absolute",
  8546  		Level:               4,
  8547  		PerDeviceLevel:      4,
  8548  		AssociatedCounterId: nil,
  8549  	},
  8550  	{
  8551  		Key: 294,
  8552  		NameInfo: &types.ElementDescription{
  8553  			Description: types.Description{
  8554  				Label:   "Activation count",
  8555  				Summary: "Activation operations in vCenter Server",
  8556  			},
  8557  			Key: "activationstats",
  8558  		},
  8559  		GroupInfo: &types.ElementDescription{
  8560  			Description: types.Description{
  8561  				Label:   "vCenter debugging information",
  8562  				Summary: "vCenter debugging information",
  8563  			},
  8564  			Key: "vcDebugInfo",
  8565  		},
  8566  		UnitInfo: &types.ElementDescription{
  8567  			Description: types.Description{
  8568  				Label:   "num",
  8569  				Summary: "Number",
  8570  			},
  8571  			Key: "number",
  8572  		},
  8573  		RollupType:          "summation",
  8574  		StatsType:           "absolute",
  8575  		Level:               1,
  8576  		PerDeviceLevel:      1,
  8577  		AssociatedCounterId: nil,
  8578  	},
  8579  	{
  8580  		Key: 295,
  8581  		NameInfo: &types.ElementDescription{
  8582  			Description: types.Description{
  8583  				Label:   "buffersz",
  8584  				Summary: "buffersz",
  8585  			},
  8586  			Key: "buffersz",
  8587  		},
  8588  		GroupInfo: &types.ElementDescription{
  8589  			Description: types.Description{
  8590  				Label:   "vCenter resource usage information",
  8591  				Summary: "vCenter resource usage information",
  8592  			},
  8593  			Key: "vcResources",
  8594  		},
  8595  		UnitInfo: &types.ElementDescription{
  8596  			Description: types.Description{
  8597  				Label:   "KB",
  8598  				Summary: "Kilobyte",
  8599  			},
  8600  			Key: "kiloBytes",
  8601  		},
  8602  		RollupType:          "average",
  8603  		StatsType:           "absolute",
  8604  		Level:               4,
  8605  		PerDeviceLevel:      4,
  8606  		AssociatedCounterId: nil,
  8607  	},
  8608  	{
  8609  		Key: 296,
  8610  		NameInfo: &types.ElementDescription{
  8611  			Description: types.Description{
  8612  				Label:   "cachesz",
  8613  				Summary: "cachesz",
  8614  			},
  8615  			Key: "cachesz",
  8616  		},
  8617  		GroupInfo: &types.ElementDescription{
  8618  			Description: types.Description{
  8619  				Label:   "vCenter resource usage information",
  8620  				Summary: "vCenter resource usage information",
  8621  			},
  8622  			Key: "vcResources",
  8623  		},
  8624  		UnitInfo: &types.ElementDescription{
  8625  			Description: types.Description{
  8626  				Label:   "KB",
  8627  				Summary: "Kilobyte",
  8628  			},
  8629  			Key: "kiloBytes",
  8630  		},
  8631  		RollupType:          "average",
  8632  		StatsType:           "absolute",
  8633  		Level:               4,
  8634  		PerDeviceLevel:      4,
  8635  		AssociatedCounterId: nil,
  8636  	},
  8637  	{
  8638  		Key: 297,
  8639  		NameInfo: &types.ElementDescription{
  8640  			Description: types.Description{
  8641  				Label:   "Context switch rate",
  8642  				Summary: "Number of context switches per second on the system where vCenter Server is running",
  8643  			},
  8644  			Key: "ctxswitchesrate",
  8645  		},
  8646  		GroupInfo: &types.ElementDescription{
  8647  			Description: types.Description{
  8648  				Label:   "vCenter resource usage information",
  8649  				Summary: "vCenter resource usage information",
  8650  			},
  8651  			Key: "vcResources",
  8652  		},
  8653  		UnitInfo: &types.ElementDescription{
  8654  			Description: types.Description{
  8655  				Label:   "num",
  8656  				Summary: "Number",
  8657  			},
  8658  			Key: "number",
  8659  		},
  8660  		RollupType:          "average",
  8661  		StatsType:           "rate",
  8662  		Level:               1,
  8663  		PerDeviceLevel:      1,
  8664  		AssociatedCounterId: nil,
  8665  	},
  8666  	{
  8667  		Key: 298,
  8668  		NameInfo: &types.ElementDescription{
  8669  			Description: types.Description{
  8670  				Label:   "diskreadsectorrate",
  8671  				Summary: "diskreadsectorrate",
  8672  			},
  8673  			Key: "diskreadsectorrate",
  8674  		},
  8675  		GroupInfo: &types.ElementDescription{
  8676  			Description: types.Description{
  8677  				Label:   "vCenter resource usage information",
  8678  				Summary: "vCenter resource usage information",
  8679  			},
  8680  			Key: "vcResources",
  8681  		},
  8682  		UnitInfo: &types.ElementDescription{
  8683  			Description: types.Description{
  8684  				Label:   "num",
  8685  				Summary: "Number",
  8686  			},
  8687  			Key: "number",
  8688  		},
  8689  		RollupType:          "average",
  8690  		StatsType:           "rate",
  8691  		Level:               4,
  8692  		PerDeviceLevel:      4,
  8693  		AssociatedCounterId: nil,
  8694  	},
  8695  	{
  8696  		Key: 299,
  8697  		NameInfo: &types.ElementDescription{
  8698  			Description: types.Description{
  8699  				Label:   "Disk read rate",
  8700  				Summary: "Number of disk reads per second on the system where vCenter Server is running",
  8701  			},
  8702  			Key: "diskreadsrate",
  8703  		},
  8704  		GroupInfo: &types.ElementDescription{
  8705  			Description: types.Description{
  8706  				Label:   "vCenter resource usage information",
  8707  				Summary: "vCenter resource usage information",
  8708  			},
  8709  			Key: "vcResources",
  8710  		},
  8711  		UnitInfo: &types.ElementDescription{
  8712  			Description: types.Description{
  8713  				Label:   "num",
  8714  				Summary: "Number",
  8715  			},
  8716  			Key: "number",
  8717  		},
  8718  		RollupType:          "average",
  8719  		StatsType:           "rate",
  8720  		Level:               1,
  8721  		PerDeviceLevel:      1,
  8722  		AssociatedCounterId: nil,
  8723  	},
  8724  	{
  8725  		Key: 300,
  8726  		NameInfo: &types.ElementDescription{
  8727  			Description: types.Description{
  8728  				Label:   "diskwritesectorrate",
  8729  				Summary: "diskwritesectorrate",
  8730  			},
  8731  			Key: "diskwritesectorrate",
  8732  		},
  8733  		GroupInfo: &types.ElementDescription{
  8734  			Description: types.Description{
  8735  				Label:   "vCenter resource usage information",
  8736  				Summary: "vCenter resource usage information",
  8737  			},
  8738  			Key: "vcResources",
  8739  		},
  8740  		UnitInfo: &types.ElementDescription{
  8741  			Description: types.Description{
  8742  				Label:   "num",
  8743  				Summary: "Number",
  8744  			},
  8745  			Key: "number",
  8746  		},
  8747  		RollupType:          "average",
  8748  		StatsType:           "rate",
  8749  		Level:               4,
  8750  		PerDeviceLevel:      4,
  8751  		AssociatedCounterId: nil,
  8752  	},
  8753  	{
  8754  		Key: 301,
  8755  		NameInfo: &types.ElementDescription{
  8756  			Description: types.Description{
  8757  				Label:   "Disk write rate",
  8758  				Summary: "Number of disk writes per second on the system where vCenter Server is running",
  8759  			},
  8760  			Key: "diskwritesrate",
  8761  		},
  8762  		GroupInfo: &types.ElementDescription{
  8763  			Description: types.Description{
  8764  				Label:   "vCenter resource usage information",
  8765  				Summary: "vCenter resource usage information",
  8766  			},
  8767  			Key: "vcResources",
  8768  		},
  8769  		UnitInfo: &types.ElementDescription{
  8770  			Description: types.Description{
  8771  				Label:   "num",
  8772  				Summary: "Number",
  8773  			},
  8774  			Key: "number",
  8775  		},
  8776  		RollupType:          "average",
  8777  		StatsType:           "rate",
  8778  		Level:               1,
  8779  		PerDeviceLevel:      1,
  8780  		AssociatedCounterId: nil,
  8781  	},
  8782  	{
  8783  		Key: 302,
  8784  		NameInfo: &types.ElementDescription{
  8785  			Description: types.Description{
  8786  				Label:   "Host sync latency",
  8787  				Summary: "The latency of a host sync operation in vCenter Server",
  8788  			},
  8789  			Key: "hostsynclatencystats",
  8790  		},
  8791  		GroupInfo: &types.ElementDescription{
  8792  			Description: types.Description{
  8793  				Label:   "vCenter debugging information",
  8794  				Summary: "vCenter debugging information",
  8795  			},
  8796  			Key: "vcDebugInfo",
  8797  		},
  8798  		UnitInfo: &types.ElementDescription{
  8799  			Description: types.Description{
  8800  				Label:   "ms",
  8801  				Summary: "Millisecond",
  8802  			},
  8803  			Key: "millisecond",
  8804  		},
  8805  		RollupType:          "maximum",
  8806  		StatsType:           "absolute",
  8807  		Level:               4,
  8808  		PerDeviceLevel:      4,
  8809  		AssociatedCounterId: nil,
  8810  	},
  8811  	{
  8812  		Key: 303,
  8813  		NameInfo: &types.ElementDescription{
  8814  			Description: types.Description{
  8815  				Label:   "Host sync latency",
  8816  				Summary: "The latency of a host sync operation in vCenter Server",
  8817  			},
  8818  			Key: "hostsynclatencystats",
  8819  		},
  8820  		GroupInfo: &types.ElementDescription{
  8821  			Description: types.Description{
  8822  				Label:   "vCenter debugging information",
  8823  				Summary: "vCenter debugging information",
  8824  			},
  8825  			Key: "vcDebugInfo",
  8826  		},
  8827  		UnitInfo: &types.ElementDescription{
  8828  			Description: types.Description{
  8829  				Label:   "ms",
  8830  				Summary: "Millisecond",
  8831  			},
  8832  			Key: "millisecond",
  8833  		},
  8834  		RollupType:          "minimum",
  8835  		StatsType:           "absolute",
  8836  		Level:               4,
  8837  		PerDeviceLevel:      4,
  8838  		AssociatedCounterId: nil,
  8839  	},
  8840  	{
  8841  		Key: 304,
  8842  		NameInfo: &types.ElementDescription{
  8843  			Description: types.Description{
  8844  				Label:   "Host sync latency",
  8845  				Summary: "The latency of a host sync operation in vCenter Server",
  8846  			},
  8847  			Key: "hostsynclatencystats",
  8848  		},
  8849  		GroupInfo: &types.ElementDescription{
  8850  			Description: types.Description{
  8851  				Label:   "vCenter debugging information",
  8852  				Summary: "vCenter debugging information",
  8853  			},
  8854  			Key: "vcDebugInfo",
  8855  		},
  8856  		UnitInfo: &types.ElementDescription{
  8857  			Description: types.Description{
  8858  				Label:   "ms",
  8859  				Summary: "Millisecond",
  8860  			},
  8861  			Key: "millisecond",
  8862  		},
  8863  		RollupType:          "summation",
  8864  		StatsType:           "absolute",
  8865  		Level:               1,
  8866  		PerDeviceLevel:      1,
  8867  		AssociatedCounterId: nil,
  8868  	},
  8869  	{
  8870  		Key: 305,
  8871  		NameInfo: &types.ElementDescription{
  8872  			Description: types.Description{
  8873  				Label:   "Host sync count",
  8874  				Summary: "The number of host sync operations in vCenter Server",
  8875  			},
  8876  			Key: "hostsyncstats",
  8877  		},
  8878  		GroupInfo: &types.ElementDescription{
  8879  			Description: types.Description{
  8880  				Label:   "vCenter debugging information",
  8881  				Summary: "vCenter debugging information",
  8882  			},
  8883  			Key: "vcDebugInfo",
  8884  		},
  8885  		UnitInfo: &types.ElementDescription{
  8886  			Description: types.Description{
  8887  				Label:   "num",
  8888  				Summary: "Number",
  8889  			},
  8890  			Key: "number",
  8891  		},
  8892  		RollupType:          "maximum",
  8893  		StatsType:           "absolute",
  8894  		Level:               4,
  8895  		PerDeviceLevel:      4,
  8896  		AssociatedCounterId: nil,
  8897  	},
  8898  	{
  8899  		Key: 306,
  8900  		NameInfo: &types.ElementDescription{
  8901  			Description: types.Description{
  8902  				Label:   "Host sync count",
  8903  				Summary: "The number of host sync operations in vCenter Server",
  8904  			},
  8905  			Key: "hostsyncstats",
  8906  		},
  8907  		GroupInfo: &types.ElementDescription{
  8908  			Description: types.Description{
  8909  				Label:   "vCenter debugging information",
  8910  				Summary: "vCenter debugging information",
  8911  			},
  8912  			Key: "vcDebugInfo",
  8913  		},
  8914  		UnitInfo: &types.ElementDescription{
  8915  			Description: types.Description{
  8916  				Label:   "num",
  8917  				Summary: "Number",
  8918  			},
  8919  			Key: "number",
  8920  		},
  8921  		RollupType:          "minimum",
  8922  		StatsType:           "absolute",
  8923  		Level:               4,
  8924  		PerDeviceLevel:      4,
  8925  		AssociatedCounterId: nil,
  8926  	},
  8927  	{
  8928  		Key: 307,
  8929  		NameInfo: &types.ElementDescription{
  8930  			Description: types.Description{
  8931  				Label:   "Host sync count",
  8932  				Summary: "The number of host sync operations in vCenter Server",
  8933  			},
  8934  			Key: "hostsyncstats",
  8935  		},
  8936  		GroupInfo: &types.ElementDescription{
  8937  			Description: types.Description{
  8938  				Label:   "vCenter debugging information",
  8939  				Summary: "vCenter debugging information",
  8940  			},
  8941  			Key: "vcDebugInfo",
  8942  		},
  8943  		UnitInfo: &types.ElementDescription{
  8944  			Description: types.Description{
  8945  				Label:   "num",
  8946  				Summary: "Number",
  8947  			},
  8948  			Key: "number",
  8949  		},
  8950  		RollupType:          "summation",
  8951  		StatsType:           "absolute",
  8952  		Level:               1,
  8953  		PerDeviceLevel:      1,
  8954  		AssociatedCounterId: nil,
  8955  	},
  8956  	{
  8957  		Key: 308,
  8958  		NameInfo: &types.ElementDescription{
  8959  			Description: types.Description{
  8960  				Label:   "Inventory statistics",
  8961  				Summary: "vCenter Server inventory statistics",
  8962  			},
  8963  			Key: "inventorystats",
  8964  		},
  8965  		GroupInfo: &types.ElementDescription{
  8966  			Description: types.Description{
  8967  				Label:   "vCenter debugging information",
  8968  				Summary: "vCenter debugging information",
  8969  			},
  8970  			Key: "vcDebugInfo",
  8971  		},
  8972  		UnitInfo: &types.ElementDescription{
  8973  			Description: types.Description{
  8974  				Label:   "num",
  8975  				Summary: "Number",
  8976  			},
  8977  			Key: "number",
  8978  		},
  8979  		RollupType:          "maximum",
  8980  		StatsType:           "absolute",
  8981  		Level:               4,
  8982  		PerDeviceLevel:      4,
  8983  		AssociatedCounterId: nil,
  8984  	},
  8985  	{
  8986  		Key: 309,
  8987  		NameInfo: &types.ElementDescription{
  8988  			Description: types.Description{
  8989  				Label:   "Inventory statistics",
  8990  				Summary: "vCenter Server inventory statistics",
  8991  			},
  8992  			Key: "inventorystats",
  8993  		},
  8994  		GroupInfo: &types.ElementDescription{
  8995  			Description: types.Description{
  8996  				Label:   "vCenter debugging information",
  8997  				Summary: "vCenter debugging information",
  8998  			},
  8999  			Key: "vcDebugInfo",
  9000  		},
  9001  		UnitInfo: &types.ElementDescription{
  9002  			Description: types.Description{
  9003  				Label:   "num",
  9004  				Summary: "Number",
  9005  			},
  9006  			Key: "number",
  9007  		},
  9008  		RollupType:          "minimum",
  9009  		StatsType:           "absolute",
  9010  		Level:               4,
  9011  		PerDeviceLevel:      4,
  9012  		AssociatedCounterId: nil,
  9013  	},
  9014  	{
  9015  		Key: 310,
  9016  		NameInfo: &types.ElementDescription{
  9017  			Description: types.Description{
  9018  				Label:   "Inventory statistics",
  9019  				Summary: "vCenter Server inventory statistics",
  9020  			},
  9021  			Key: "inventorystats",
  9022  		},
  9023  		GroupInfo: &types.ElementDescription{
  9024  			Description: types.Description{
  9025  				Label:   "vCenter debugging information",
  9026  				Summary: "vCenter debugging information",
  9027  			},
  9028  			Key: "vcDebugInfo",
  9029  		},
  9030  		UnitInfo: &types.ElementDescription{
  9031  			Description: types.Description{
  9032  				Label:   "num",
  9033  				Summary: "Number",
  9034  			},
  9035  			Key: "number",
  9036  		},
  9037  		RollupType:          "summation",
  9038  		StatsType:           "absolute",
  9039  		Level:               1,
  9040  		PerDeviceLevel:      1,
  9041  		AssociatedCounterId: nil,
  9042  	},
  9043  	{
  9044  		Key: 311,
  9045  		NameInfo: &types.ElementDescription{
  9046  			Description: types.Description{
  9047  				Label:   "Locking statistics",
  9048  				Summary: "vCenter Server locking statistics",
  9049  			},
  9050  			Key: "lockstats",
  9051  		},
  9052  		GroupInfo: &types.ElementDescription{
  9053  			Description: types.Description{
  9054  				Label:   "vCenter debugging information",
  9055  				Summary: "vCenter debugging information",
  9056  			},
  9057  			Key: "vcDebugInfo",
  9058  		},
  9059  		UnitInfo: &types.ElementDescription{
  9060  			Description: types.Description{
  9061  				Label:   "num",
  9062  				Summary: "Number",
  9063  			},
  9064  			Key: "number",
  9065  		},
  9066  		RollupType:          "maximum",
  9067  		StatsType:           "absolute",
  9068  		Level:               4,
  9069  		PerDeviceLevel:      4,
  9070  		AssociatedCounterId: nil,
  9071  	},
  9072  	{
  9073  		Key: 312,
  9074  		NameInfo: &types.ElementDescription{
  9075  			Description: types.Description{
  9076  				Label:   "Locking statistics",
  9077  				Summary: "vCenter Server locking statistics",
  9078  			},
  9079  			Key: "lockstats",
  9080  		},
  9081  		GroupInfo: &types.ElementDescription{
  9082  			Description: types.Description{
  9083  				Label:   "vCenter debugging information",
  9084  				Summary: "vCenter debugging information",
  9085  			},
  9086  			Key: "vcDebugInfo",
  9087  		},
  9088  		UnitInfo: &types.ElementDescription{
  9089  			Description: types.Description{
  9090  				Label:   "num",
  9091  				Summary: "Number",
  9092  			},
  9093  			Key: "number",
  9094  		},
  9095  		RollupType:          "minimum",
  9096  		StatsType:           "absolute",
  9097  		Level:               4,
  9098  		PerDeviceLevel:      4,
  9099  		AssociatedCounterId: nil,
  9100  	},
  9101  	{
  9102  		Key: 313,
  9103  		NameInfo: &types.ElementDescription{
  9104  			Description: types.Description{
  9105  				Label:   "Locking statistics",
  9106  				Summary: "vCenter Server locking statistics",
  9107  			},
  9108  			Key: "lockstats",
  9109  		},
  9110  		GroupInfo: &types.ElementDescription{
  9111  			Description: types.Description{
  9112  				Label:   "vCenter debugging information",
  9113  				Summary: "vCenter debugging information",
  9114  			},
  9115  			Key: "vcDebugInfo",
  9116  		},
  9117  		UnitInfo: &types.ElementDescription{
  9118  			Description: types.Description{
  9119  				Label:   "num",
  9120  				Summary: "Number",
  9121  			},
  9122  			Key: "number",
  9123  		},
  9124  		RollupType:          "summation",
  9125  		StatsType:           "absolute",
  9126  		Level:               1,
  9127  		PerDeviceLevel:      1,
  9128  		AssociatedCounterId: nil,
  9129  	},
  9130  	{
  9131  		Key: 314,
  9132  		NameInfo: &types.ElementDescription{
  9133  			Description: types.Description{
  9134  				Label:   "vCenter Server LRO statistics",
  9135  				Summary: "vCenter Server LRO statistics",
  9136  			},
  9137  			Key: "lrostats",
  9138  		},
  9139  		GroupInfo: &types.ElementDescription{
  9140  			Description: types.Description{
  9141  				Label:   "vCenter debugging information",
  9142  				Summary: "vCenter debugging information",
  9143  			},
  9144  			Key: "vcDebugInfo",
  9145  		},
  9146  		UnitInfo: &types.ElementDescription{
  9147  			Description: types.Description{
  9148  				Label:   "num",
  9149  				Summary: "Number",
  9150  			},
  9151  			Key: "number",
  9152  		},
  9153  		RollupType:          "maximum",
  9154  		StatsType:           "absolute",
  9155  		Level:               4,
  9156  		PerDeviceLevel:      4,
  9157  		AssociatedCounterId: nil,
  9158  	},
  9159  	{
  9160  		Key: 315,
  9161  		NameInfo: &types.ElementDescription{
  9162  			Description: types.Description{
  9163  				Label:   "vCenter Server LRO statistics",
  9164  				Summary: "vCenter Server LRO statistics",
  9165  			},
  9166  			Key: "lrostats",
  9167  		},
  9168  		GroupInfo: &types.ElementDescription{
  9169  			Description: types.Description{
  9170  				Label:   "vCenter debugging information",
  9171  				Summary: "vCenter debugging information",
  9172  			},
  9173  			Key: "vcDebugInfo",
  9174  		},
  9175  		UnitInfo: &types.ElementDescription{
  9176  			Description: types.Description{
  9177  				Label:   "num",
  9178  				Summary: "Number",
  9179  			},
  9180  			Key: "number",
  9181  		},
  9182  		RollupType:          "minimum",
  9183  		StatsType:           "absolute",
  9184  		Level:               4,
  9185  		PerDeviceLevel:      4,
  9186  		AssociatedCounterId: nil,
  9187  	},
  9188  	{
  9189  		Key: 316,
  9190  		NameInfo: &types.ElementDescription{
  9191  			Description: types.Description{
  9192  				Label:   "vCenter Server LRO statistics",
  9193  				Summary: "vCenter Server LRO statistics",
  9194  			},
  9195  			Key: "lrostats",
  9196  		},
  9197  		GroupInfo: &types.ElementDescription{
  9198  			Description: types.Description{
  9199  				Label:   "vCenter debugging information",
  9200  				Summary: "vCenter debugging information",
  9201  			},
  9202  			Key: "vcDebugInfo",
  9203  		},
  9204  		UnitInfo: &types.ElementDescription{
  9205  			Description: types.Description{
  9206  				Label:   "num",
  9207  				Summary: "Number",
  9208  			},
  9209  			Key: "number",
  9210  		},
  9211  		RollupType:          "summation",
  9212  		StatsType:           "absolute",
  9213  		Level:               1,
  9214  		PerDeviceLevel:      1,
  9215  		AssociatedCounterId: nil,
  9216  	},
  9217  	{
  9218  		Key: 317,
  9219  		NameInfo: &types.ElementDescription{
  9220  			Description: types.Description{
  9221  				Label:   "Miscellaneous",
  9222  				Summary: "Miscellaneous statistics",
  9223  			},
  9224  			Key: "miscstats",
  9225  		},
  9226  		GroupInfo: &types.ElementDescription{
  9227  			Description: types.Description{
  9228  				Label:   "vCenter debugging information",
  9229  				Summary: "vCenter debugging information",
  9230  			},
  9231  			Key: "vcDebugInfo",
  9232  		},
  9233  		UnitInfo: &types.ElementDescription{
  9234  			Description: types.Description{
  9235  				Label:   "num",
  9236  				Summary: "Number",
  9237  			},
  9238  			Key: "number",
  9239  		},
  9240  		RollupType:          "maximum",
  9241  		StatsType:           "absolute",
  9242  		Level:               4,
  9243  		PerDeviceLevel:      4,
  9244  		AssociatedCounterId: nil,
  9245  	},
  9246  	{
  9247  		Key: 318,
  9248  		NameInfo: &types.ElementDescription{
  9249  			Description: types.Description{
  9250  				Label:   "Miscellaneous",
  9251  				Summary: "Miscellaneous statistics",
  9252  			},
  9253  			Key: "miscstats",
  9254  		},
  9255  		GroupInfo: &types.ElementDescription{
  9256  			Description: types.Description{
  9257  				Label:   "vCenter debugging information",
  9258  				Summary: "vCenter debugging information",
  9259  			},
  9260  			Key: "vcDebugInfo",
  9261  		},
  9262  		UnitInfo: &types.ElementDescription{
  9263  			Description: types.Description{
  9264  				Label:   "num",
  9265  				Summary: "Number",
  9266  			},
  9267  			Key: "number",
  9268  		},
  9269  		RollupType:          "minimum",
  9270  		StatsType:           "absolute",
  9271  		Level:               4,
  9272  		PerDeviceLevel:      4,
  9273  		AssociatedCounterId: nil,
  9274  	},
  9275  	{
  9276  		Key: 319,
  9277  		NameInfo: &types.ElementDescription{
  9278  			Description: types.Description{
  9279  				Label:   "Miscellaneous",
  9280  				Summary: "Miscellaneous statistics",
  9281  			},
  9282  			Key: "miscstats",
  9283  		},
  9284  		GroupInfo: &types.ElementDescription{
  9285  			Description: types.Description{
  9286  				Label:   "vCenter debugging information",
  9287  				Summary: "vCenter debugging information",
  9288  			},
  9289  			Key: "vcDebugInfo",
  9290  		},
  9291  		UnitInfo: &types.ElementDescription{
  9292  			Description: types.Description{
  9293  				Label:   "num",
  9294  				Summary: "Number",
  9295  			},
  9296  			Key: "number",
  9297  		},
  9298  		RollupType:          "summation",
  9299  		StatsType:           "absolute",
  9300  		Level:               1,
  9301  		PerDeviceLevel:      1,
  9302  		AssociatedCounterId: nil,
  9303  	},
  9304  	{
  9305  		Key: 320,
  9306  		NameInfo: &types.ElementDescription{
  9307  			Description: types.Description{
  9308  				Label:   "Managed object reference statistics",
  9309  				Summary: "Managed object reference counts in vCenter Server",
  9310  			},
  9311  			Key: "morefregstats",
  9312  		},
  9313  		GroupInfo: &types.ElementDescription{
  9314  			Description: types.Description{
  9315  				Label:   "vCenter debugging information",
  9316  				Summary: "vCenter debugging information",
  9317  			},
  9318  			Key: "vcDebugInfo",
  9319  		},
  9320  		UnitInfo: &types.ElementDescription{
  9321  			Description: types.Description{
  9322  				Label:   "num",
  9323  				Summary: "Number",
  9324  			},
  9325  			Key: "number",
  9326  		},
  9327  		RollupType:          "maximum",
  9328  		StatsType:           "absolute",
  9329  		Level:               4,
  9330  		PerDeviceLevel:      4,
  9331  		AssociatedCounterId: nil,
  9332  	},
  9333  	{
  9334  		Key: 321,
  9335  		NameInfo: &types.ElementDescription{
  9336  			Description: types.Description{
  9337  				Label:   "Managed object reference statistics",
  9338  				Summary: "Managed object reference counts in vCenter Server",
  9339  			},
  9340  			Key: "morefregstats",
  9341  		},
  9342  		GroupInfo: &types.ElementDescription{
  9343  			Description: types.Description{
  9344  				Label:   "vCenter debugging information",
  9345  				Summary: "vCenter debugging information",
  9346  			},
  9347  			Key: "vcDebugInfo",
  9348  		},
  9349  		UnitInfo: &types.ElementDescription{
  9350  			Description: types.Description{
  9351  				Label:   "num",
  9352  				Summary: "Number",
  9353  			},
  9354  			Key: "number",
  9355  		},
  9356  		RollupType:          "minimum",
  9357  		StatsType:           "absolute",
  9358  		Level:               4,
  9359  		PerDeviceLevel:      4,
  9360  		AssociatedCounterId: nil,
  9361  	},
  9362  	{
  9363  		Key: 322,
  9364  		NameInfo: &types.ElementDescription{
  9365  			Description: types.Description{
  9366  				Label:   "Managed object reference statistics",
  9367  				Summary: "Managed object reference counts in vCenter Server",
  9368  			},
  9369  			Key: "morefregstats",
  9370  		},
  9371  		GroupInfo: &types.ElementDescription{
  9372  			Description: types.Description{
  9373  				Label:   "vCenter debugging information",
  9374  				Summary: "vCenter debugging information",
  9375  			},
  9376  			Key: "vcDebugInfo",
  9377  		},
  9378  		UnitInfo: &types.ElementDescription{
  9379  			Description: types.Description{
  9380  				Label:   "num",
  9381  				Summary: "Number",
  9382  			},
  9383  			Key: "number",
  9384  		},
  9385  		RollupType:          "summation",
  9386  		StatsType:           "absolute",
  9387  		Level:               1,
  9388  		PerDeviceLevel:      1,
  9389  		AssociatedCounterId: nil,
  9390  	},
  9391  	{
  9392  		Key: 323,
  9393  		NameInfo: &types.ElementDescription{
  9394  			Description: types.Description{
  9395  				Label:   "Received packet rate",
  9396  				Summary: "Rate of the number of total packets received per second on the system where vCenter Server is running",
  9397  			},
  9398  			Key: "packetrecvrate",
  9399  		},
  9400  		GroupInfo: &types.ElementDescription{
  9401  			Description: types.Description{
  9402  				Label:   "vCenter resource usage information",
  9403  				Summary: "vCenter resource usage information",
  9404  			},
  9405  			Key: "vcResources",
  9406  		},
  9407  		UnitInfo: &types.ElementDescription{
  9408  			Description: types.Description{
  9409  				Label:   "num",
  9410  				Summary: "Number",
  9411  			},
  9412  			Key: "number",
  9413  		},
  9414  		RollupType:          "average",
  9415  		StatsType:           "rate",
  9416  		Level:               1,
  9417  		PerDeviceLevel:      1,
  9418  		AssociatedCounterId: nil,
  9419  	},
  9420  	{
  9421  		Key: 324,
  9422  		NameInfo: &types.ElementDescription{
  9423  			Description: types.Description{
  9424  				Label:   "Sent packet rate",
  9425  				Summary: "Number of total packets sent per second on the system where vCenter Server is running",
  9426  			},
  9427  			Key: "packetsentrate",
  9428  		},
  9429  		GroupInfo: &types.ElementDescription{
  9430  			Description: types.Description{
  9431  				Label:   "vCenter resource usage information",
  9432  				Summary: "vCenter resource usage information",
  9433  			},
  9434  			Key: "vcResources",
  9435  		},
  9436  		UnitInfo: &types.ElementDescription{
  9437  			Description: types.Description{
  9438  				Label:   "num",
  9439  				Summary: "Number",
  9440  			},
  9441  			Key: "number",
  9442  		},
  9443  		RollupType:          "average",
  9444  		StatsType:           "rate",
  9445  		Level:               1,
  9446  		PerDeviceLevel:      1,
  9447  		AssociatedCounterId: nil,
  9448  	},
  9449  	{
  9450  		Key: 325,
  9451  		NameInfo: &types.ElementDescription{
  9452  			Description: types.Description{
  9453  				Label:   "CPU system",
  9454  				Summary: "Total system CPU used on the system where vCenter Server in running",
  9455  			},
  9456  			Key: "systemcpuusage",
  9457  		},
  9458  		GroupInfo: &types.ElementDescription{
  9459  			Description: types.Description{
  9460  				Label:   "vCenter resource usage information",
  9461  				Summary: "vCenter resource usage information",
  9462  			},
  9463  			Key: "vcResources",
  9464  		},
  9465  		UnitInfo: &types.ElementDescription{
  9466  			Description: types.Description{
  9467  				Label:   "%",
  9468  				Summary: "Percentage",
  9469  			},
  9470  			Key: "percent",
  9471  		},
  9472  		RollupType:          "average",
  9473  		StatsType:           "rate",
  9474  		Level:               1,
  9475  		PerDeviceLevel:      1,
  9476  		AssociatedCounterId: nil,
  9477  	},
  9478  	{
  9479  		Key: 326,
  9480  		NameInfo: &types.ElementDescription{
  9481  			Description: types.Description{
  9482  				Label:   "Page fault rate",
  9483  				Summary: "Number of page faults per second on the system where vCenter Server is running",
  9484  			},
  9485  			Key: "pagefaultrate",
  9486  		},
  9487  		GroupInfo: &types.ElementDescription{
  9488  			Description: types.Description{
  9489  				Label:   "vCenter resource usage information",
  9490  				Summary: "vCenter resource usage information",
  9491  			},
  9492  			Key: "vcResources",
  9493  		},
  9494  		UnitInfo: &types.ElementDescription{
  9495  			Description: types.Description{
  9496  				Label:   "num",
  9497  				Summary: "Number",
  9498  			},
  9499  			Key: "number",
  9500  		},
  9501  		RollupType:          "average",
  9502  		StatsType:           "rate",
  9503  		Level:               1,
  9504  		PerDeviceLevel:      1,
  9505  		AssociatedCounterId: nil,
  9506  	},
  9507  	{
  9508  		Key: 327,
  9509  		NameInfo: &types.ElementDescription{
  9510  			Description: types.Description{
  9511  				Label:   "Physical memory",
  9512  				Summary: "Physical memory used by vCenter",
  9513  			},
  9514  			Key: "physicalmemusage",
  9515  		},
  9516  		GroupInfo: &types.ElementDescription{
  9517  			Description: types.Description{
  9518  				Label:   "vCenter resource usage information",
  9519  				Summary: "vCenter resource usage information",
  9520  			},
  9521  			Key: "vcResources",
  9522  		},
  9523  		UnitInfo: &types.ElementDescription{
  9524  			Description: types.Description{
  9525  				Label:   "KB",
  9526  				Summary: "Kilobyte",
  9527  			},
  9528  			Key: "kiloBytes",
  9529  		},
  9530  		RollupType:          "average",
  9531  		StatsType:           "absolute",
  9532  		Level:               1,
  9533  		PerDeviceLevel:      1,
  9534  		AssociatedCounterId: nil,
  9535  	},
  9536  	{
  9537  		Key: 328,
  9538  		NameInfo: &types.ElementDescription{
  9539  			Description: types.Description{
  9540  				Label:   "CPU privileged",
  9541  				Summary: "CPU used by vCenter Server in privileged mode",
  9542  			},
  9543  			Key: "priviledgedcpuusage",
  9544  		},
  9545  		GroupInfo: &types.ElementDescription{
  9546  			Description: types.Description{
  9547  				Label:   "vCenter resource usage information",
  9548  				Summary: "vCenter resource usage information",
  9549  			},
  9550  			Key: "vcResources",
  9551  		},
  9552  		UnitInfo: &types.ElementDescription{
  9553  			Description: types.Description{
  9554  				Label:   "%",
  9555  				Summary: "Percentage",
  9556  			},
  9557  			Key: "percent",
  9558  		},
  9559  		RollupType:          "average",
  9560  		StatsType:           "rate",
  9561  		Level:               1,
  9562  		PerDeviceLevel:      1,
  9563  		AssociatedCounterId: nil,
  9564  	},
  9565  	{
  9566  		Key: 329,
  9567  		NameInfo: &types.ElementDescription{
  9568  			Description: types.Description{
  9569  				Label:   "Scoreboard statistics",
  9570  				Summary: "Object counts in vCenter Server",
  9571  			},
  9572  			Key: "scoreboard",
  9573  		},
  9574  		GroupInfo: &types.ElementDescription{
  9575  			Description: types.Description{
  9576  				Label:   "vCenter debugging information",
  9577  				Summary: "vCenter debugging information",
  9578  			},
  9579  			Key: "vcDebugInfo",
  9580  		},
  9581  		UnitInfo: &types.ElementDescription{
  9582  			Description: types.Description{
  9583  				Label:   "num",
  9584  				Summary: "Number",
  9585  			},
  9586  			Key: "number",
  9587  		},
  9588  		RollupType:          "maximum",
  9589  		StatsType:           "absolute",
  9590  		Level:               4,
  9591  		PerDeviceLevel:      4,
  9592  		AssociatedCounterId: nil,
  9593  	},
  9594  	{
  9595  		Key: 330,
  9596  		NameInfo: &types.ElementDescription{
  9597  			Description: types.Description{
  9598  				Label:   "Scoreboard statistics",
  9599  				Summary: "Object counts in vCenter Server",
  9600  			},
  9601  			Key: "scoreboard",
  9602  		},
  9603  		GroupInfo: &types.ElementDescription{
  9604  			Description: types.Description{
  9605  				Label:   "vCenter debugging information",
  9606  				Summary: "vCenter debugging information",
  9607  			},
  9608  			Key: "vcDebugInfo",
  9609  		},
  9610  		UnitInfo: &types.ElementDescription{
  9611  			Description: types.Description{
  9612  				Label:   "num",
  9613  				Summary: "Number",
  9614  			},
  9615  			Key: "number",
  9616  		},
  9617  		RollupType:          "minimum",
  9618  		StatsType:           "absolute",
  9619  		Level:               4,
  9620  		PerDeviceLevel:      4,
  9621  		AssociatedCounterId: nil,
  9622  	},
  9623  	{
  9624  		Key: 331,
  9625  		NameInfo: &types.ElementDescription{
  9626  			Description: types.Description{
  9627  				Label:   "Scoreboard statistics",
  9628  				Summary: "Object counts in vCenter Server",
  9629  			},
  9630  			Key: "scoreboard",
  9631  		},
  9632  		GroupInfo: &types.ElementDescription{
  9633  			Description: types.Description{
  9634  				Label:   "vCenter debugging information",
  9635  				Summary: "vCenter debugging information",
  9636  			},
  9637  			Key: "vcDebugInfo",
  9638  		},
  9639  		UnitInfo: &types.ElementDescription{
  9640  			Description: types.Description{
  9641  				Label:   "num",
  9642  				Summary: "Number",
  9643  			},
  9644  			Key: "number",
  9645  		},
  9646  		RollupType:          "summation",
  9647  		StatsType:           "absolute",
  9648  		Level:               3,
  9649  		PerDeviceLevel:      3,
  9650  		AssociatedCounterId: nil,
  9651  	},
  9652  	{
  9653  		Key: 332,
  9654  		NameInfo: &types.ElementDescription{
  9655  			Description: types.Description{
  9656  				Label:   "Session statistics",
  9657  				Summary: "The statistics of client sessions connected to vCenter Server",
  9658  			},
  9659  			Key: "sessionstats",
  9660  		},
  9661  		GroupInfo: &types.ElementDescription{
  9662  			Description: types.Description{
  9663  				Label:   "vCenter debugging information",
  9664  				Summary: "vCenter debugging information",
  9665  			},
  9666  			Key: "vcDebugInfo",
  9667  		},
  9668  		UnitInfo: &types.ElementDescription{
  9669  			Description: types.Description{
  9670  				Label:   "num",
  9671  				Summary: "Number",
  9672  			},
  9673  			Key: "number",
  9674  		},
  9675  		RollupType:          "maximum",
  9676  		StatsType:           "absolute",
  9677  		Level:               4,
  9678  		PerDeviceLevel:      4,
  9679  		AssociatedCounterId: nil,
  9680  	},
  9681  	{
  9682  		Key: 333,
  9683  		NameInfo: &types.ElementDescription{
  9684  			Description: types.Description{
  9685  				Label:   "Session statistics",
  9686  				Summary: "The statistics of client sessions connected to vCenter Server",
  9687  			},
  9688  			Key: "sessionstats",
  9689  		},
  9690  		GroupInfo: &types.ElementDescription{
  9691  			Description: types.Description{
  9692  				Label:   "vCenter debugging information",
  9693  				Summary: "vCenter debugging information",
  9694  			},
  9695  			Key: "vcDebugInfo",
  9696  		},
  9697  		UnitInfo: &types.ElementDescription{
  9698  			Description: types.Description{
  9699  				Label:   "num",
  9700  				Summary: "Number",
  9701  			},
  9702  			Key: "number",
  9703  		},
  9704  		RollupType:          "minimum",
  9705  		StatsType:           "absolute",
  9706  		Level:               4,
  9707  		PerDeviceLevel:      4,
  9708  		AssociatedCounterId: nil,
  9709  	},
  9710  	{
  9711  		Key: 334,
  9712  		NameInfo: &types.ElementDescription{
  9713  			Description: types.Description{
  9714  				Label:   "Session statistics",
  9715  				Summary: "The statistics of client sessions connected to vCenter Server",
  9716  			},
  9717  			Key: "sessionstats",
  9718  		},
  9719  		GroupInfo: &types.ElementDescription{
  9720  			Description: types.Description{
  9721  				Label:   "vCenter debugging information",
  9722  				Summary: "vCenter debugging information",
  9723  			},
  9724  			Key: "vcDebugInfo",
  9725  		},
  9726  		UnitInfo: &types.ElementDescription{
  9727  			Description: types.Description{
  9728  				Label:   "num",
  9729  				Summary: "Number",
  9730  			},
  9731  			Key: "number",
  9732  		},
  9733  		RollupType:          "summation",
  9734  		StatsType:           "absolute",
  9735  		Level:               1,
  9736  		PerDeviceLevel:      1,
  9737  		AssociatedCounterId: nil,
  9738  	},
  9739  	{
  9740  		Key: 335,
  9741  		NameInfo: &types.ElementDescription{
  9742  			Description: types.Description{
  9743  				Label:   "System call rate",
  9744  				Summary: "Number of systems calls made per second on the system where vCenter Server is running",
  9745  			},
  9746  			Key: "syscallsrate",
  9747  		},
  9748  		GroupInfo: &types.ElementDescription{
  9749  			Description: types.Description{
  9750  				Label:   "vCenter resource usage information",
  9751  				Summary: "vCenter resource usage information",
  9752  			},
  9753  			Key: "vcResources",
  9754  		},
  9755  		UnitInfo: &types.ElementDescription{
  9756  			Description: types.Description{
  9757  				Label:   "num",
  9758  				Summary: "Number",
  9759  			},
  9760  			Key: "number",
  9761  		},
  9762  		RollupType:          "average",
  9763  		StatsType:           "rate",
  9764  		Level:               1,
  9765  		PerDeviceLevel:      1,
  9766  		AssociatedCounterId: nil,
  9767  	},
  9768  	{
  9769  		Key: 336,
  9770  		NameInfo: &types.ElementDescription{
  9771  			Description: types.Description{
  9772  				Label:   "System statistics",
  9773  				Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics",
  9774  			},
  9775  			Key: "systemstats",
  9776  		},
  9777  		GroupInfo: &types.ElementDescription{
  9778  			Description: types.Description{
  9779  				Label:   "vCenter debugging information",
  9780  				Summary: "vCenter debugging information",
  9781  			},
  9782  			Key: "vcDebugInfo",
  9783  		},
  9784  		UnitInfo: &types.ElementDescription{
  9785  			Description: types.Description{
  9786  				Label:   "num",
  9787  				Summary: "Number",
  9788  			},
  9789  			Key: "number",
  9790  		},
  9791  		RollupType:          "maximum",
  9792  		StatsType:           "absolute",
  9793  		Level:               4,
  9794  		PerDeviceLevel:      4,
  9795  		AssociatedCounterId: nil,
  9796  	},
  9797  	{
  9798  		Key: 337,
  9799  		NameInfo: &types.ElementDescription{
  9800  			Description: types.Description{
  9801  				Label:   "System statistics",
  9802  				Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics",
  9803  			},
  9804  			Key: "systemstats",
  9805  		},
  9806  		GroupInfo: &types.ElementDescription{
  9807  			Description: types.Description{
  9808  				Label:   "vCenter debugging information",
  9809  				Summary: "vCenter debugging information",
  9810  			},
  9811  			Key: "vcDebugInfo",
  9812  		},
  9813  		UnitInfo: &types.ElementDescription{
  9814  			Description: types.Description{
  9815  				Label:   "num",
  9816  				Summary: "Number",
  9817  			},
  9818  			Key: "number",
  9819  		},
  9820  		RollupType:          "minimum",
  9821  		StatsType:           "absolute",
  9822  		Level:               4,
  9823  		PerDeviceLevel:      4,
  9824  		AssociatedCounterId: nil,
  9825  	},
  9826  	{
  9827  		Key: 338,
  9828  		NameInfo: &types.ElementDescription{
  9829  			Description: types.Description{
  9830  				Label:   "System statistics",
  9831  				Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics",
  9832  			},
  9833  			Key: "systemstats",
  9834  		},
  9835  		GroupInfo: &types.ElementDescription{
  9836  			Description: types.Description{
  9837  				Label:   "vCenter debugging information",
  9838  				Summary: "vCenter debugging information",
  9839  			},
  9840  			Key: "vcDebugInfo",
  9841  		},
  9842  		UnitInfo: &types.ElementDescription{
  9843  			Description: types.Description{
  9844  				Label:   "num",
  9845  				Summary: "Number",
  9846  			},
  9847  			Key: "number",
  9848  		},
  9849  		RollupType:          "summation",
  9850  		StatsType:           "absolute",
  9851  		Level:               1,
  9852  		PerDeviceLevel:      1,
  9853  		AssociatedCounterId: nil,
  9854  	},
  9855  	{
  9856  		Key: 339,
  9857  		NameInfo: &types.ElementDescription{
  9858  			Description: types.Description{
  9859  				Label:   "CPU user",
  9860  				Summary: "CPU used by vCenter Server in user mode",
  9861  			},
  9862  			Key: "usercpuusage",
  9863  		},
  9864  		GroupInfo: &types.ElementDescription{
  9865  			Description: types.Description{
  9866  				Label:   "vCenter resource usage information",
  9867  				Summary: "vCenter resource usage information",
  9868  			},
  9869  			Key: "vcResources",
  9870  		},
  9871  		UnitInfo: &types.ElementDescription{
  9872  			Description: types.Description{
  9873  				Label:   "%",
  9874  				Summary: "Percentage",
  9875  			},
  9876  			Key: "percent",
  9877  		},
  9878  		RollupType:          "average",
  9879  		StatsType:           "rate",
  9880  		Level:               1,
  9881  		PerDeviceLevel:      1,
  9882  		AssociatedCounterId: nil,
  9883  	},
  9884  	{
  9885  		Key: 340,
  9886  		NameInfo: &types.ElementDescription{
  9887  			Description: types.Description{
  9888  				Label:   "vCenter Server service statistics",
  9889  				Summary: "vCenter service statistics such as events, alarms, and tasks",
  9890  			},
  9891  			Key: "vcservicestats",
  9892  		},
  9893  		GroupInfo: &types.ElementDescription{
  9894  			Description: types.Description{
  9895  				Label:   "vCenter debugging information",
  9896  				Summary: "vCenter debugging information",
  9897  			},
  9898  			Key: "vcDebugInfo",
  9899  		},
  9900  		UnitInfo: &types.ElementDescription{
  9901  			Description: types.Description{
  9902  				Label:   "num",
  9903  				Summary: "Number",
  9904  			},
  9905  			Key: "number",
  9906  		},
  9907  		RollupType:          "maximum",
  9908  		StatsType:           "absolute",
  9909  		Level:               4,
  9910  		PerDeviceLevel:      4,
  9911  		AssociatedCounterId: nil,
  9912  	},
  9913  	{
  9914  		Key: 341,
  9915  		NameInfo: &types.ElementDescription{
  9916  			Description: types.Description{
  9917  				Label:   "vCenter Server service statistics",
  9918  				Summary: "vCenter service statistics such as events, alarms, and tasks",
  9919  			},
  9920  			Key: "vcservicestats",
  9921  		},
  9922  		GroupInfo: &types.ElementDescription{
  9923  			Description: types.Description{
  9924  				Label:   "vCenter debugging information",
  9925  				Summary: "vCenter debugging information",
  9926  			},
  9927  			Key: "vcDebugInfo",
  9928  		},
  9929  		UnitInfo: &types.ElementDescription{
  9930  			Description: types.Description{
  9931  				Label:   "num",
  9932  				Summary: "Number",
  9933  			},
  9934  			Key: "number",
  9935  		},
  9936  		RollupType:          "minimum",
  9937  		StatsType:           "absolute",
  9938  		Level:               4,
  9939  		PerDeviceLevel:      4,
  9940  		AssociatedCounterId: nil,
  9941  	},
  9942  	{
  9943  		Key: 342,
  9944  		NameInfo: &types.ElementDescription{
  9945  			Description: types.Description{
  9946  				Label:   "vCenter Server service statistics",
  9947  				Summary: "vCenter service statistics such as events, alarms, and tasks",
  9948  			},
  9949  			Key: "vcservicestats",
  9950  		},
  9951  		GroupInfo: &types.ElementDescription{
  9952  			Description: types.Description{
  9953  				Label:   "vCenter debugging information",
  9954  				Summary: "vCenter debugging information",
  9955  			},
  9956  			Key: "vcDebugInfo",
  9957  		},
  9958  		UnitInfo: &types.ElementDescription{
  9959  			Description: types.Description{
  9960  				Label:   "num",
  9961  				Summary: "Number",
  9962  			},
  9963  			Key: "number",
  9964  		},
  9965  		RollupType:          "summation",
  9966  		StatsType:           "absolute",
  9967  		Level:               1,
  9968  		PerDeviceLevel:      1,
  9969  		AssociatedCounterId: nil,
  9970  	},
  9971  	{
  9972  		Key: 343,
  9973  		NameInfo: &types.ElementDescription{
  9974  			Description: types.Description{
  9975  				Label:   "Virtual memory",
  9976  				Summary: "Virtual memory used by vCenter Server",
  9977  			},
  9978  			Key: "virtualmemusage",
  9979  		},
  9980  		GroupInfo: &types.ElementDescription{
  9981  			Description: types.Description{
  9982  				Label:   "vCenter resource usage information",
  9983  				Summary: "vCenter resource usage information",
  9984  			},
  9985  			Key: "vcResources",
  9986  		},
  9987  		UnitInfo: &types.ElementDescription{
  9988  			Description: types.Description{
  9989  				Label:   "KB",
  9990  				Summary: "Kilobyte",
  9991  			},
  9992  			Key: "kiloBytes",
  9993  		},
  9994  		RollupType:          "average",
  9995  		StatsType:           "absolute",
  9996  		Level:               1,
  9997  		PerDeviceLevel:      1,
  9998  		AssociatedCounterId: nil,
  9999  	},
 10000  	{
 10001  		Key: 344,
 10002  		NameInfo: &types.ElementDescription{
 10003  			Description: types.Description{
 10004  				Label:   "Average number of outstanding read requests",
 10005  				Summary: "Average number of outstanding read requests to the virtual disk during the collection interval",
 10006  			},
 10007  			Key: "readOIO",
 10008  		},
 10009  		GroupInfo: &types.ElementDescription{
 10010  			Description: types.Description{
 10011  				Label:   "Virtual disk",
 10012  				Summary: "Virtual disk",
 10013  			},
 10014  			Key: "virtualDisk",
 10015  		},
 10016  		UnitInfo: &types.ElementDescription{
 10017  			Description: types.Description{
 10018  				Label:   "num",
 10019  				Summary: "Number",
 10020  			},
 10021  			Key: "number",
 10022  		},
 10023  		RollupType:          "latest",
 10024  		StatsType:           "absolute",
 10025  		Level:               2,
 10026  		PerDeviceLevel:      2,
 10027  		AssociatedCounterId: nil,
 10028  	},
 10029  	{
 10030  		Key: 345,
 10031  		NameInfo: &types.ElementDescription{
 10032  			Description: types.Description{
 10033  				Label:   "Average number of outstanding write requests",
 10034  				Summary: "Average number of outstanding write requests to the virtual disk during the collection interval",
 10035  			},
 10036  			Key: "writeOIO",
 10037  		},
 10038  		GroupInfo: &types.ElementDescription{
 10039  			Description: types.Description{
 10040  				Label:   "Virtual disk",
 10041  				Summary: "Virtual disk",
 10042  			},
 10043  			Key: "virtualDisk",
 10044  		},
 10045  		UnitInfo: &types.ElementDescription{
 10046  			Description: types.Description{
 10047  				Label:   "num",
 10048  				Summary: "Number",
 10049  			},
 10050  			Key: "number",
 10051  		},
 10052  		RollupType:          "latest",
 10053  		StatsType:           "absolute",
 10054  		Level:               2,
 10055  		PerDeviceLevel:      2,
 10056  		AssociatedCounterId: nil,
 10057  	},
 10058  	{
 10059  		Key: 346,
 10060  		NameInfo: &types.ElementDescription{
 10061  			Description: types.Description{
 10062  				Label:   "Read workload metric",
 10063  				Summary: "Storage DRS virtual disk metric for the read workload model",
 10064  			},
 10065  			Key: "readLoadMetric",
 10066  		},
 10067  		GroupInfo: &types.ElementDescription{
 10068  			Description: types.Description{
 10069  				Label:   "Virtual disk",
 10070  				Summary: "Virtual disk",
 10071  			},
 10072  			Key: "virtualDisk",
 10073  		},
 10074  		UnitInfo: &types.ElementDescription{
 10075  			Description: types.Description{
 10076  				Label:   "num",
 10077  				Summary: "Number",
 10078  			},
 10079  			Key: "number",
 10080  		},
 10081  		RollupType:          "latest",
 10082  		StatsType:           "absolute",
 10083  		Level:               2,
 10084  		PerDeviceLevel:      2,
 10085  		AssociatedCounterId: nil,
 10086  	},
 10087  	{
 10088  		Key: 347,
 10089  		NameInfo: &types.ElementDescription{
 10090  			Description: types.Description{
 10091  				Label:   "Write workload metric",
 10092  				Summary: "Storage DRS virtual disk metric for the write workload model",
 10093  			},
 10094  			Key: "writeLoadMetric",
 10095  		},
 10096  		GroupInfo: &types.ElementDescription{
 10097  			Description: types.Description{
 10098  				Label:   "Virtual disk",
 10099  				Summary: "Virtual disk",
 10100  			},
 10101  			Key: "virtualDisk",
 10102  		},
 10103  		UnitInfo: &types.ElementDescription{
 10104  			Description: types.Description{
 10105  				Label:   "num",
 10106  				Summary: "Number",
 10107  			},
 10108  			Key: "number",
 10109  		},
 10110  		RollupType:          "latest",
 10111  		StatsType:           "absolute",
 10112  		Level:               2,
 10113  		PerDeviceLevel:      2,
 10114  		AssociatedCounterId: nil,
 10115  	},
 10116  	{
 10117  		Key: 348,
 10118  		NameInfo: &types.ElementDescription{
 10119  			Description: types.Description{
 10120  				Label:   "Active (1 min average)",
 10121  				Summary: "CPU active average over 1 minute",
 10122  			},
 10123  			Key: "actav1",
 10124  		},
 10125  		GroupInfo: &types.ElementDescription{
 10126  			Description: types.Description{
 10127  				Label:   "Resource group CPU",
 10128  				Summary: "Resource group CPU",
 10129  			},
 10130  			Key: "rescpu",
 10131  		},
 10132  		UnitInfo: &types.ElementDescription{
 10133  			Description: types.Description{
 10134  				Label:   "%",
 10135  				Summary: "Percentage",
 10136  			},
 10137  			Key: "percent",
 10138  		},
 10139  		RollupType:          "latest",
 10140  		StatsType:           "absolute",
 10141  		Level:               3,
 10142  		PerDeviceLevel:      3,
 10143  		AssociatedCounterId: nil,
 10144  	},
 10145  	{
 10146  		Key: 349,
 10147  		NameInfo: &types.ElementDescription{
 10148  			Description: types.Description{
 10149  				Label:   "Storage DRS datastore bytes read",
 10150  				Summary: "Storage DRS datastore bytes read",
 10151  			},
 10152  			Key: "datastoreReadBytes",
 10153  		},
 10154  		GroupInfo: &types.ElementDescription{
 10155  			Description: types.Description{
 10156  				Label:   "Datastore",
 10157  				Summary: "Datastore",
 10158  			},
 10159  			Key: "datastore",
 10160  		},
 10161  		UnitInfo: &types.ElementDescription{
 10162  			Description: types.Description{
 10163  				Label:   "num",
 10164  				Summary: "Number",
 10165  			},
 10166  			Key: "number",
 10167  		},
 10168  		RollupType:          "latest",
 10169  		StatsType:           "absolute",
 10170  		Level:               2,
 10171  		PerDeviceLevel:      2,
 10172  		AssociatedCounterId: nil,
 10173  	},
 10174  	{
 10175  		Key: 350,
 10176  		NameInfo: &types.ElementDescription{
 10177  			Description: types.Description{
 10178  				Label:   "Storage DRS datastore bytes written",
 10179  				Summary: "Storage DRS datastore bytes written",
 10180  			},
 10181  			Key: "datastoreWriteBytes",
 10182  		},
 10183  		GroupInfo: &types.ElementDescription{
 10184  			Description: types.Description{
 10185  				Label:   "Datastore",
 10186  				Summary: "Datastore",
 10187  			},
 10188  			Key: "datastore",
 10189  		},
 10190  		UnitInfo: &types.ElementDescription{
 10191  			Description: types.Description{
 10192  				Label:   "num",
 10193  				Summary: "Number",
 10194  			},
 10195  			Key: "number",
 10196  		},
 10197  		RollupType:          "latest",
 10198  		StatsType:           "absolute",
 10199  		Level:               2,
 10200  		PerDeviceLevel:      2,
 10201  		AssociatedCounterId: nil,
 10202  	},
 10203  	{
 10204  		Key: 351,
 10205  		NameInfo: &types.ElementDescription{
 10206  			Description: types.Description{
 10207  				Label:   "Storage DRS datastore read I/O rate",
 10208  				Summary: "Storage DRS datastore read I/O rate",
 10209  			},
 10210  			Key: "datastoreReadIops",
 10211  		},
 10212  		GroupInfo: &types.ElementDescription{
 10213  			Description: types.Description{
 10214  				Label:   "Datastore",
 10215  				Summary: "Datastore",
 10216  			},
 10217  			Key: "datastore",
 10218  		},
 10219  		UnitInfo: &types.ElementDescription{
 10220  			Description: types.Description{
 10221  				Label:   "num",
 10222  				Summary: "Number",
 10223  			},
 10224  			Key: "number",
 10225  		},
 10226  		RollupType:          "latest",
 10227  		StatsType:           "absolute",
 10228  		Level:               1,
 10229  		PerDeviceLevel:      3,
 10230  		AssociatedCounterId: nil,
 10231  	},
 10232  	{
 10233  		Key: 352,
 10234  		NameInfo: &types.ElementDescription{
 10235  			Description: types.Description{
 10236  				Label:   "Storage DRS datastore write I/O rate",
 10237  				Summary: "Storage DRS datastore write I/O rate",
 10238  			},
 10239  			Key: "datastoreWriteIops",
 10240  		},
 10241  		GroupInfo: &types.ElementDescription{
 10242  			Description: types.Description{
 10243  				Label:   "Datastore",
 10244  				Summary: "Datastore",
 10245  			},
 10246  			Key: "datastore",
 10247  		},
 10248  		UnitInfo: &types.ElementDescription{
 10249  			Description: types.Description{
 10250  				Label:   "num",
 10251  				Summary: "Number",
 10252  			},
 10253  			Key: "number",
 10254  		},
 10255  		RollupType:          "latest",
 10256  		StatsType:           "absolute",
 10257  		Level:               1,
 10258  		PerDeviceLevel:      3,
 10259  		AssociatedCounterId: nil,
 10260  	},
 10261  	{
 10262  		Key: 353,
 10263  		NameInfo: &types.ElementDescription{
 10264  			Description: types.Description{
 10265  				Label:   "Storage DRS datastore outstanding read requests",
 10266  				Summary: "Storage DRS datastore outstanding read requests",
 10267  			},
 10268  			Key: "datastoreReadOIO",
 10269  		},
 10270  		GroupInfo: &types.ElementDescription{
 10271  			Description: types.Description{
 10272  				Label:   "Datastore",
 10273  				Summary: "Datastore",
 10274  			},
 10275  			Key: "datastore",
 10276  		},
 10277  		UnitInfo: &types.ElementDescription{
 10278  			Description: types.Description{
 10279  				Label:   "num",
 10280  				Summary: "Number",
 10281  			},
 10282  			Key: "number",
 10283  		},
 10284  		RollupType:          "latest",
 10285  		StatsType:           "absolute",
 10286  		Level:               1,
 10287  		PerDeviceLevel:      3,
 10288  		AssociatedCounterId: nil,
 10289  	},
 10290  	{
 10291  		Key: 354,
 10292  		NameInfo: &types.ElementDescription{
 10293  			Description: types.Description{
 10294  				Label:   "Storage DRS datastore outstanding write requests",
 10295  				Summary: "Storage DRS datastore outstanding write requests",
 10296  			},
 10297  			Key: "datastoreWriteOIO",
 10298  		},
 10299  		GroupInfo: &types.ElementDescription{
 10300  			Description: types.Description{
 10301  				Label:   "Datastore",
 10302  				Summary: "Datastore",
 10303  			},
 10304  			Key: "datastore",
 10305  		},
 10306  		UnitInfo: &types.ElementDescription{
 10307  			Description: types.Description{
 10308  				Label:   "num",
 10309  				Summary: "Number",
 10310  			},
 10311  			Key: "number",
 10312  		},
 10313  		RollupType:          "latest",
 10314  		StatsType:           "absolute",
 10315  		Level:               1,
 10316  		PerDeviceLevel:      3,
 10317  		AssociatedCounterId: nil,
 10318  	},
 10319  	{
 10320  		Key: 355,
 10321  		NameInfo: &types.ElementDescription{
 10322  			Description: types.Description{
 10323  				Label:   "Storage DRS datastore normalized read latency",
 10324  				Summary: "Storage DRS datastore normalized read latency",
 10325  			},
 10326  			Key: "datastoreNormalReadLatency",
 10327  		},
 10328  		GroupInfo: &types.ElementDescription{
 10329  			Description: types.Description{
 10330  				Label:   "Datastore",
 10331  				Summary: "Datastore",
 10332  			},
 10333  			Key: "datastore",
 10334  		},
 10335  		UnitInfo: &types.ElementDescription{
 10336  			Description: types.Description{
 10337  				Label:   "num",
 10338  				Summary: "Number",
 10339  			},
 10340  			Key: "number",
 10341  		},
 10342  		RollupType:          "latest",
 10343  		StatsType:           "absolute",
 10344  		Level:               2,
 10345  		PerDeviceLevel:      2,
 10346  		AssociatedCounterId: nil,
 10347  	},
 10348  	{
 10349  		Key: 356,
 10350  		NameInfo: &types.ElementDescription{
 10351  			Description: types.Description{
 10352  				Label:   "Storage DRS datastore normalized write latency",
 10353  				Summary: "Storage DRS datastore normalized write latency",
 10354  			},
 10355  			Key: "datastoreNormalWriteLatency",
 10356  		},
 10357  		GroupInfo: &types.ElementDescription{
 10358  			Description: types.Description{
 10359  				Label:   "Datastore",
 10360  				Summary: "Datastore",
 10361  			},
 10362  			Key: "datastore",
 10363  		},
 10364  		UnitInfo: &types.ElementDescription{
 10365  			Description: types.Description{
 10366  				Label:   "num",
 10367  				Summary: "Number",
 10368  			},
 10369  			Key: "number",
 10370  		},
 10371  		RollupType:          "latest",
 10372  		StatsType:           "absolute",
 10373  		Level:               2,
 10374  		PerDeviceLevel:      2,
 10375  		AssociatedCounterId: nil,
 10376  	},
 10377  	{
 10378  		Key: 357,
 10379  		NameInfo: &types.ElementDescription{
 10380  			Description: types.Description{
 10381  				Label:   "Storage DRS datastore read workload metric",
 10382  				Summary: "Storage DRS datastore metric for read workload model",
 10383  			},
 10384  			Key: "datastoreReadLoadMetric",
 10385  		},
 10386  		GroupInfo: &types.ElementDescription{
 10387  			Description: types.Description{
 10388  				Label:   "Datastore",
 10389  				Summary: "Datastore",
 10390  			},
 10391  			Key: "datastore",
 10392  		},
 10393  		UnitInfo: &types.ElementDescription{
 10394  			Description: types.Description{
 10395  				Label:   "num",
 10396  				Summary: "Number",
 10397  			},
 10398  			Key: "number",
 10399  		},
 10400  		RollupType:          "latest",
 10401  		StatsType:           "absolute",
 10402  		Level:               4,
 10403  		PerDeviceLevel:      4,
 10404  		AssociatedCounterId: nil,
 10405  	},
 10406  	{
 10407  		Key: 358,
 10408  		NameInfo: &types.ElementDescription{
 10409  			Description: types.Description{
 10410  				Label:   "Storage DRS datastore write workload metric",
 10411  				Summary: "Storage DRS datastore metric for write workload model",
 10412  			},
 10413  			Key: "datastoreWriteLoadMetric",
 10414  		},
 10415  		GroupInfo: &types.ElementDescription{
 10416  			Description: types.Description{
 10417  				Label:   "Datastore",
 10418  				Summary: "Datastore",
 10419  			},
 10420  			Key: "datastore",
 10421  		},
 10422  		UnitInfo: &types.ElementDescription{
 10423  			Description: types.Description{
 10424  				Label:   "num",
 10425  				Summary: "Number",
 10426  			},
 10427  			Key: "number",
 10428  		},
 10429  		RollupType:          "latest",
 10430  		StatsType:           "absolute",
 10431  		Level:               4,
 10432  		PerDeviceLevel:      4,
 10433  		AssociatedCounterId: nil,
 10434  	},
 10435  	{
 10436  		Key: 359,
 10437  		NameInfo: &types.ElementDescription{
 10438  			Description: types.Description{
 10439  				Label:   "Datastore latency observed by VMs",
 10440  				Summary: "The average datastore latency as seen by virtual machines",
 10441  			},
 10442  			Key: "datastoreVMObservedLatency",
 10443  		},
 10444  		GroupInfo: &types.ElementDescription{
 10445  			Description: types.Description{
 10446  				Label:   "Datastore",
 10447  				Summary: "Datastore",
 10448  			},
 10449  			Key: "datastore",
 10450  		},
 10451  		UnitInfo: &types.ElementDescription{
 10452  			Description: types.Description{
 10453  				Label:   "µs",
 10454  				Summary: "Microsecond",
 10455  			},
 10456  			Key: "microsecond",
 10457  		},
 10458  		RollupType:          "latest",
 10459  		StatsType:           "absolute",
 10460  		Level:               1,
 10461  		PerDeviceLevel:      3,
 10462  		AssociatedCounterId: nil,
 10463  	},
 10464  	{
 10465  		Key: 360,
 10466  		NameInfo: &types.ElementDescription{
 10467  			Description: types.Description{
 10468  				Label:   "VXLAN network packets throughput transmitted",
 10469  				Summary: "The rate of transmitted packets for this network",
 10470  			},
 10471  			Key: "throughput.vds.txTotal",
 10472  		},
 10473  		GroupInfo: &types.ElementDescription{
 10474  			Description: types.Description{
 10475  				Label:   "Network",
 10476  				Summary: "Network",
 10477  			},
 10478  			Key: "net",
 10479  		},
 10480  		UnitInfo: &types.ElementDescription{
 10481  			Description: types.Description{
 10482  				Label:   "num",
 10483  				Summary: "Number",
 10484  			},
 10485  			Key: "number",
 10486  		},
 10487  		RollupType:          "summation",
 10488  		StatsType:           "delta",
 10489  		Level:               4,
 10490  		PerDeviceLevel:      4,
 10491  		AssociatedCounterId: nil,
 10492  	},
 10493  	{
 10494  		Key: 361,
 10495  		NameInfo: &types.ElementDescription{
 10496  			Description: types.Description{
 10497  				Label:   "VXLAN network non-unicast packets throughput transmitted",
 10498  				Summary: "The rate of transmitted non-unicast packets for this network",
 10499  			},
 10500  			Key: "throughput.vds.txNoUnicast",
 10501  		},
 10502  		GroupInfo: &types.ElementDescription{
 10503  			Description: types.Description{
 10504  				Label:   "Network",
 10505  				Summary: "Network",
 10506  			},
 10507  			Key: "net",
 10508  		},
 10509  		UnitInfo: &types.ElementDescription{
 10510  			Description: types.Description{
 10511  				Label:   "num",
 10512  				Summary: "Number",
 10513  			},
 10514  			Key: "number",
 10515  		},
 10516  		RollupType:          "summation",
 10517  		StatsType:           "delta",
 10518  		Level:               4,
 10519  		PerDeviceLevel:      4,
 10520  		AssociatedCounterId: nil,
 10521  	},
 10522  	{
 10523  		Key: 362,
 10524  		NameInfo: &types.ElementDescription{
 10525  			Description: types.Description{
 10526  				Label:   "VXLAN network cross-router packets throughput transmitted",
 10527  				Summary: "The rate of transmitted cross-router packets for this network",
 10528  			},
 10529  			Key: "throughput.vds.txCrsRouter",
 10530  		},
 10531  		GroupInfo: &types.ElementDescription{
 10532  			Description: types.Description{
 10533  				Label:   "Network",
 10534  				Summary: "Network",
 10535  			},
 10536  			Key: "net",
 10537  		},
 10538  		UnitInfo: &types.ElementDescription{
 10539  			Description: types.Description{
 10540  				Label:   "num",
 10541  				Summary: "Number",
 10542  			},
 10543  			Key: "number",
 10544  		},
 10545  		RollupType:          "summation",
 10546  		StatsType:           "delta",
 10547  		Level:               4,
 10548  		PerDeviceLevel:      4,
 10549  		AssociatedCounterId: nil,
 10550  	},
 10551  	{
 10552  		Key: 363,
 10553  		NameInfo: &types.ElementDescription{
 10554  			Description: types.Description{
 10555  				Label:   "VXLAN network dropped transmitted packets throughput",
 10556  				Summary: "Count of dropped transmitted packets for this network",
 10557  			},
 10558  			Key: "throughput.vds.txDrop",
 10559  		},
 10560  		GroupInfo: &types.ElementDescription{
 10561  			Description: types.Description{
 10562  				Label:   "Network",
 10563  				Summary: "Network",
 10564  			},
 10565  			Key: "net",
 10566  		},
 10567  		UnitInfo: &types.ElementDescription{
 10568  			Description: types.Description{
 10569  				Label:   "num",
 10570  				Summary: "Number",
 10571  			},
 10572  			Key: "number",
 10573  		},
 10574  		RollupType:          "summation",
 10575  		StatsType:           "delta",
 10576  		Level:               4,
 10577  		PerDeviceLevel:      4,
 10578  		AssociatedCounterId: nil,
 10579  	},
 10580  	{
 10581  		Key: 364,
 10582  		NameInfo: &types.ElementDescription{
 10583  			Description: types.Description{
 10584  				Label:   "VXLAN network packets throughput received",
 10585  				Summary: "The rate of received packets for this network",
 10586  			},
 10587  			Key: "throughput.vds.rxTotal",
 10588  		},
 10589  		GroupInfo: &types.ElementDescription{
 10590  			Description: types.Description{
 10591  				Label:   "Network",
 10592  				Summary: "Network",
 10593  			},
 10594  			Key: "net",
 10595  		},
 10596  		UnitInfo: &types.ElementDescription{
 10597  			Description: types.Description{
 10598  				Label:   "num",
 10599  				Summary: "Number",
 10600  			},
 10601  			Key: "number",
 10602  		},
 10603  		RollupType:          "summation",
 10604  		StatsType:           "delta",
 10605  		Level:               4,
 10606  		PerDeviceLevel:      4,
 10607  		AssociatedCounterId: nil,
 10608  	},
 10609  	{
 10610  		Key: 365,
 10611  		NameInfo: &types.ElementDescription{
 10612  			Description: types.Description{
 10613  				Label:   "VXLAN network dropped received packets due to destination IP error throughput",
 10614  				Summary: "Count of dropped received packets with destination IP error for this network",
 10615  			},
 10616  			Key: "throughput.vds.rxDestErr",
 10617  		},
 10618  		GroupInfo: &types.ElementDescription{
 10619  			Description: types.Description{
 10620  				Label:   "Network",
 10621  				Summary: "Network",
 10622  			},
 10623  			Key: "net",
 10624  		},
 10625  		UnitInfo: &types.ElementDescription{
 10626  			Description: types.Description{
 10627  				Label:   "num",
 10628  				Summary: "Number",
 10629  			},
 10630  			Key: "number",
 10631  		},
 10632  		RollupType:          "summation",
 10633  		StatsType:           "delta",
 10634  		Level:               4,
 10635  		PerDeviceLevel:      4,
 10636  		AssociatedCounterId: nil,
 10637  	},
 10638  	{
 10639  		Key: 366,
 10640  		NameInfo: &types.ElementDescription{
 10641  			Description: types.Description{
 10642  				Label:   "VXLAN network dropped received packets throughput",
 10643  				Summary: "Count of dropped received packets for this network",
 10644  			},
 10645  			Key: "throughput.vds.rxDrop",
 10646  		},
 10647  		GroupInfo: &types.ElementDescription{
 10648  			Description: types.Description{
 10649  				Label:   "Network",
 10650  				Summary: "Network",
 10651  			},
 10652  			Key: "net",
 10653  		},
 10654  		UnitInfo: &types.ElementDescription{
 10655  			Description: types.Description{
 10656  				Label:   "num",
 10657  				Summary: "Number",
 10658  			},
 10659  			Key: "number",
 10660  		},
 10661  		RollupType:          "summation",
 10662  		StatsType:           "delta",
 10663  		Level:               4,
 10664  		PerDeviceLevel:      4,
 10665  		AssociatedCounterId: nil,
 10666  	},
 10667  	{
 10668  		Key: 367,
 10669  		NameInfo: &types.ElementDescription{
 10670  			Description: types.Description{
 10671  				Label:   "VXLAN network failed to match mapping entry for a unicast MAC throughput",
 10672  				Summary: "Count of transmitted packets that cannot find matched mapping entry for this network",
 10673  			},
 10674  			Key: "throughput.vds.macFlood",
 10675  		},
 10676  		GroupInfo: &types.ElementDescription{
 10677  			Description: types.Description{
 10678  				Label:   "Network",
 10679  				Summary: "Network",
 10680  			},
 10681  			Key: "net",
 10682  		},
 10683  		UnitInfo: &types.ElementDescription{
 10684  			Description: types.Description{
 10685  				Label:   "num",
 10686  				Summary: "Number",
 10687  			},
 10688  			Key: "number",
 10689  		},
 10690  		RollupType:          "summation",
 10691  		StatsType:           "delta",
 10692  		Level:               4,
 10693  		PerDeviceLevel:      4,
 10694  		AssociatedCounterId: nil,
 10695  	},
 10696  	{
 10697  		Key: 368,
 10698  		NameInfo: &types.ElementDescription{
 10699  			Description: types.Description{
 10700  				Label:   "VXLAN network failed to allocate a new mapping entry during translation phase",
 10701  				Summary: "Count of transmitted packets that failed to acquire new mapping entry during translation phase for this network",
 10702  			},
 10703  			Key: "throughput.vds.macLKUPFull",
 10704  		},
 10705  		GroupInfo: &types.ElementDescription{
 10706  			Description: types.Description{
 10707  				Label:   "Network",
 10708  				Summary: "Network",
 10709  			},
 10710  			Key: "net",
 10711  		},
 10712  		UnitInfo: &types.ElementDescription{
 10713  			Description: types.Description{
 10714  				Label:   "num",
 10715  				Summary: "Number",
 10716  			},
 10717  			Key: "number",
 10718  		},
 10719  		RollupType:          "summation",
 10720  		StatsType:           "delta",
 10721  		Level:               4,
 10722  		PerDeviceLevel:      4,
 10723  		AssociatedCounterId: nil,
 10724  	},
 10725  	{
 10726  		Key: 369,
 10727  		NameInfo: &types.ElementDescription{
 10728  			Description: types.Description{
 10729  				Label:   "VXLAN network failed to allocate a new mapping entry during learning phase",
 10730  				Summary: "Count of transmitted packets that failed to acquire new mapping entry during learning phase for this network",
 10731  			},
 10732  			Key: "throughput.vds.macUPDTFull",
 10733  		},
 10734  		GroupInfo: &types.ElementDescription{
 10735  			Description: types.Description{
 10736  				Label:   "Network",
 10737  				Summary: "Network",
 10738  			},
 10739  			Key: "net",
 10740  		},
 10741  		UnitInfo: &types.ElementDescription{
 10742  			Description: types.Description{
 10743  				Label:   "num",
 10744  				Summary: "Number",
 10745  			},
 10746  			Key: "number",
 10747  		},
 10748  		RollupType:          "summation",
 10749  		StatsType:           "delta",
 10750  		Level:               4,
 10751  		PerDeviceLevel:      4,
 10752  		AssociatedCounterId: nil,
 10753  	},
 10754  	{
 10755  		Key: 370,
 10756  		NameInfo: &types.ElementDescription{
 10757  			Description: types.Description{
 10758  				Label:   "VXLAN Network Found Matched ARP Entry Throughput",
 10759  				Summary: "Count of transmitted packets that found matched ARP entry for this network",
 10760  			},
 10761  			Key: "throughput.vds.arpFound",
 10762  		},
 10763  		GroupInfo: &types.ElementDescription{
 10764  			Description: types.Description{
 10765  				Label:   "Network",
 10766  				Summary: "Network",
 10767  			},
 10768  			Key: "net",
 10769  		},
 10770  		UnitInfo: &types.ElementDescription{
 10771  			Description: types.Description{
 10772  				Label:   "num",
 10773  				Summary: "Number",
 10774  			},
 10775  			Key: "number",
 10776  		},
 10777  		RollupType:          "summation",
 10778  		StatsType:           "delta",
 10779  		Level:               4,
 10780  		PerDeviceLevel:      4,
 10781  		AssociatedCounterId: nil,
 10782  	},
 10783  	{
 10784  		Key: 371,
 10785  		NameInfo: &types.ElementDescription{
 10786  			Description: types.Description{
 10787  				Label:   "VXLAN Network Found Matched ARP Entry Marked as Unknown Throughput",
 10788  				Summary: "Count of transmitted packets whose matched arp entry is marked as unknown for this network",
 10789  			},
 10790  			Key: "throughput.vds.arpUnknown",
 10791  		},
 10792  		GroupInfo: &types.ElementDescription{
 10793  			Description: types.Description{
 10794  				Label:   "Network",
 10795  				Summary: "Network",
 10796  			},
 10797  			Key: "net",
 10798  		},
 10799  		UnitInfo: &types.ElementDescription{
 10800  			Description: types.Description{
 10801  				Label:   "num",
 10802  				Summary: "Number",
 10803  			},
 10804  			Key: "number",
 10805  		},
 10806  		RollupType:          "summation",
 10807  		StatsType:           "delta",
 10808  		Level:               4,
 10809  		PerDeviceLevel:      4,
 10810  		AssociatedCounterId: nil,
 10811  	},
 10812  	{
 10813  		Key: 372,
 10814  		NameInfo: &types.ElementDescription{
 10815  			Description: types.Description{
 10816  				Label:   "VXLAN Network Failed to Allocate ARP Entry During Translation Phase Throughput",
 10817  				Summary: "Count of transmitted packets that failed to acquire new ARP entry during translation phase for this network",
 10818  			},
 10819  			Key: "throughput.vds.arpLKUPFull",
 10820  		},
 10821  		GroupInfo: &types.ElementDescription{
 10822  			Description: types.Description{
 10823  				Label:   "Network",
 10824  				Summary: "Network",
 10825  			},
 10826  			Key: "net",
 10827  		},
 10828  		UnitInfo: &types.ElementDescription{
 10829  			Description: types.Description{
 10830  				Label:   "num",
 10831  				Summary: "Number",
 10832  			},
 10833  			Key: "number",
 10834  		},
 10835  		RollupType:          "summation",
 10836  		StatsType:           "delta",
 10837  		Level:               4,
 10838  		PerDeviceLevel:      4,
 10839  		AssociatedCounterId: nil,
 10840  	},
 10841  	{
 10842  		Key: 373,
 10843  		NameInfo: &types.ElementDescription{
 10844  			Description: types.Description{
 10845  				Label:   "VXLAN network found the same ARP requests have been sent into queue throughput",
 10846  				Summary: "Count of transmitted packets whose ARP requests have already been sent into queue for this network",
 10847  			},
 10848  			Key: "throughput.vds.arpWait",
 10849  		},
 10850  		GroupInfo: &types.ElementDescription{
 10851  			Description: types.Description{
 10852  				Label:   "Network",
 10853  				Summary: "Network",
 10854  			},
 10855  			Key: "net",
 10856  		},
 10857  		UnitInfo: &types.ElementDescription{
 10858  			Description: types.Description{
 10859  				Label:   "num",
 10860  				Summary: "Number",
 10861  			},
 10862  			Key: "number",
 10863  		},
 10864  		RollupType:          "summation",
 10865  		StatsType:           "delta",
 10866  		Level:               4,
 10867  		PerDeviceLevel:      4,
 10868  		AssociatedCounterId: nil,
 10869  	},
 10870  	{
 10871  		Key: 374,
 10872  		NameInfo: &types.ElementDescription{
 10873  			Description: types.Description{
 10874  				Label:   "VXLAN Network Found ARP Queries Have Been Expired Throughput",
 10875  				Summary: "Count of arp queries that have been expired for this network",
 10876  			},
 10877  			Key: "throughput.vds.arpTimeout",
 10878  		},
 10879  		GroupInfo: &types.ElementDescription{
 10880  			Description: types.Description{
 10881  				Label:   "Network",
 10882  				Summary: "Network",
 10883  			},
 10884  			Key: "net",
 10885  		},
 10886  		UnitInfo: &types.ElementDescription{
 10887  			Description: types.Description{
 10888  				Label:   "num",
 10889  				Summary: "Number",
 10890  			},
 10891  			Key: "number",
 10892  		},
 10893  		RollupType:          "summation",
 10894  		StatsType:           "delta",
 10895  		Level:               4,
 10896  		PerDeviceLevel:      4,
 10897  		AssociatedCounterId: nil,
 10898  	},
 10899  	{
 10900  		Key: 386,
 10901  		NameInfo: &types.ElementDescription{
 10902  			Description: types.Description{
 10903  				Label:   "Swap wait",
 10904  				Summary: "CPU time spent waiting for swap-in",
 10905  			},
 10906  			Key: "swapwait",
 10907  		},
 10908  		GroupInfo: &types.ElementDescription{
 10909  			Description: types.Description{
 10910  				Label:   "CPU",
 10911  				Summary: "CPU",
 10912  			},
 10913  			Key: "cpu",
 10914  		},
 10915  		UnitInfo: &types.ElementDescription{
 10916  			Description: types.Description{
 10917  				Label:   "ms",
 10918  				Summary: "Millisecond",
 10919  			},
 10920  			Key: "millisecond",
 10921  		},
 10922  		RollupType:          "summation",
 10923  		StatsType:           "delta",
 10924  		Level:               3,
 10925  		PerDeviceLevel:      3,
 10926  		AssociatedCounterId: nil,
 10927  	},
 10928  	{
 10929  		Key: 387,
 10930  		NameInfo: &types.ElementDescription{
 10931  			Description: types.Description{
 10932  				Label:   "Utilization",
 10933  				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)",
 10934  			},
 10935  			Key: "utilization",
 10936  		},
 10937  		GroupInfo: &types.ElementDescription{
 10938  			Description: types.Description{
 10939  				Label:   "CPU",
 10940  				Summary: "CPU",
 10941  			},
 10942  			Key: "cpu",
 10943  		},
 10944  		UnitInfo: &types.ElementDescription{
 10945  			Description: types.Description{
 10946  				Label:   "%",
 10947  				Summary: "Percentage",
 10948  			},
 10949  			Key: "percent",
 10950  		},
 10951  		RollupType:          "none",
 10952  		StatsType:           "rate",
 10953  		Level:               4,
 10954  		PerDeviceLevel:      4,
 10955  		AssociatedCounterId: nil,
 10956  	},
 10957  	{
 10958  		Key: 388,
 10959  		NameInfo: &types.ElementDescription{
 10960  			Description: types.Description{
 10961  				Label:   "Utilization",
 10962  				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)",
 10963  			},
 10964  			Key: "utilization",
 10965  		},
 10966  		GroupInfo: &types.ElementDescription{
 10967  			Description: types.Description{
 10968  				Label:   "CPU",
 10969  				Summary: "CPU",
 10970  			},
 10971  			Key: "cpu",
 10972  		},
 10973  		UnitInfo: &types.ElementDescription{
 10974  			Description: types.Description{
 10975  				Label:   "%",
 10976  				Summary: "Percentage",
 10977  			},
 10978  			Key: "percent",
 10979  		},
 10980  		RollupType:          "average",
 10981  		StatsType:           "rate",
 10982  		Level:               2,
 10983  		PerDeviceLevel:      3,
 10984  		AssociatedCounterId: nil,
 10985  	},
 10986  	{
 10987  		Key: 389,
 10988  		NameInfo: &types.ElementDescription{
 10989  			Description: types.Description{
 10990  				Label:   "Utilization",
 10991  				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)",
 10992  			},
 10993  			Key: "utilization",
 10994  		},
 10995  		GroupInfo: &types.ElementDescription{
 10996  			Description: types.Description{
 10997  				Label:   "CPU",
 10998  				Summary: "CPU",
 10999  			},
 11000  			Key: "cpu",
 11001  		},
 11002  		UnitInfo: &types.ElementDescription{
 11003  			Description: types.Description{
 11004  				Label:   "%",
 11005  				Summary: "Percentage",
 11006  			},
 11007  			Key: "percent",
 11008  		},
 11009  		RollupType:          "maximum",
 11010  		StatsType:           "rate",
 11011  		Level:               4,
 11012  		PerDeviceLevel:      4,
 11013  		AssociatedCounterId: nil,
 11014  	},
 11015  	{
 11016  		Key: 390,
 11017  		NameInfo: &types.ElementDescription{
 11018  			Description: types.Description{
 11019  				Label:   "Utilization",
 11020  				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)",
 11021  			},
 11022  			Key: "utilization",
 11023  		},
 11024  		GroupInfo: &types.ElementDescription{
 11025  			Description: types.Description{
 11026  				Label:   "CPU",
 11027  				Summary: "CPU",
 11028  			},
 11029  			Key: "cpu",
 11030  		},
 11031  		UnitInfo: &types.ElementDescription{
 11032  			Description: types.Description{
 11033  				Label:   "%",
 11034  				Summary: "Percentage",
 11035  			},
 11036  			Key: "percent",
 11037  		},
 11038  		RollupType:          "minimum",
 11039  		StatsType:           "rate",
 11040  		Level:               4,
 11041  		PerDeviceLevel:      4,
 11042  		AssociatedCounterId: nil,
 11043  	},
 11044  	{
 11045  		Key: 391,
 11046  		NameInfo: &types.ElementDescription{
 11047  			Description: types.Description{
 11048  				Label:   "Core Utilization",
 11049  				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)",
 11050  			},
 11051  			Key: "coreUtilization",
 11052  		},
 11053  		GroupInfo: &types.ElementDescription{
 11054  			Description: types.Description{
 11055  				Label:   "CPU",
 11056  				Summary: "CPU",
 11057  			},
 11058  			Key: "cpu",
 11059  		},
 11060  		UnitInfo: &types.ElementDescription{
 11061  			Description: types.Description{
 11062  				Label:   "%",
 11063  				Summary: "Percentage",
 11064  			},
 11065  			Key: "percent",
 11066  		},
 11067  		RollupType:          "none",
 11068  		StatsType:           "rate",
 11069  		Level:               4,
 11070  		PerDeviceLevel:      4,
 11071  		AssociatedCounterId: nil,
 11072  	},
 11073  	{
 11074  		Key: 392,
 11075  		NameInfo: &types.ElementDescription{
 11076  			Description: types.Description{
 11077  				Label:   "Core Utilization",
 11078  				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)",
 11079  			},
 11080  			Key: "coreUtilization",
 11081  		},
 11082  		GroupInfo: &types.ElementDescription{
 11083  			Description: types.Description{
 11084  				Label:   "CPU",
 11085  				Summary: "CPU",
 11086  			},
 11087  			Key: "cpu",
 11088  		},
 11089  		UnitInfo: &types.ElementDescription{
 11090  			Description: types.Description{
 11091  				Label:   "%",
 11092  				Summary: "Percentage",
 11093  			},
 11094  			Key: "percent",
 11095  		},
 11096  		RollupType:          "average",
 11097  		StatsType:           "rate",
 11098  		Level:               2,
 11099  		PerDeviceLevel:      3,
 11100  		AssociatedCounterId: nil,
 11101  	},
 11102  	{
 11103  		Key: 393,
 11104  		NameInfo: &types.ElementDescription{
 11105  			Description: types.Description{
 11106  				Label:   "Core Utilization",
 11107  				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)",
 11108  			},
 11109  			Key: "coreUtilization",
 11110  		},
 11111  		GroupInfo: &types.ElementDescription{
 11112  			Description: types.Description{
 11113  				Label:   "CPU",
 11114  				Summary: "CPU",
 11115  			},
 11116  			Key: "cpu",
 11117  		},
 11118  		UnitInfo: &types.ElementDescription{
 11119  			Description: types.Description{
 11120  				Label:   "%",
 11121  				Summary: "Percentage",
 11122  			},
 11123  			Key: "percent",
 11124  		},
 11125  		RollupType:          "maximum",
 11126  		StatsType:           "rate",
 11127  		Level:               4,
 11128  		PerDeviceLevel:      4,
 11129  		AssociatedCounterId: nil,
 11130  	},
 11131  	{
 11132  		Key: 394,
 11133  		NameInfo: &types.ElementDescription{
 11134  			Description: types.Description{
 11135  				Label:   "Core Utilization",
 11136  				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)",
 11137  			},
 11138  			Key: "coreUtilization",
 11139  		},
 11140  		GroupInfo: &types.ElementDescription{
 11141  			Description: types.Description{
 11142  				Label:   "CPU",
 11143  				Summary: "CPU",
 11144  			},
 11145  			Key: "cpu",
 11146  		},
 11147  		UnitInfo: &types.ElementDescription{
 11148  			Description: types.Description{
 11149  				Label:   "%",
 11150  				Summary: "Percentage",
 11151  			},
 11152  			Key: "percent",
 11153  		},
 11154  		RollupType:          "minimum",
 11155  		StatsType:           "rate",
 11156  		Level:               4,
 11157  		PerDeviceLevel:      4,
 11158  		AssociatedCounterId: nil,
 11159  	},
 11160  	{
 11161  		Key: 395,
 11162  		NameInfo: &types.ElementDescription{
 11163  			Description: types.Description{
 11164  				Label:   "Total capacity",
 11165  				Summary: "Total CPU capacity reserved by and available for virtual machines",
 11166  			},
 11167  			Key: "totalCapacity",
 11168  		},
 11169  		GroupInfo: &types.ElementDescription{
 11170  			Description: types.Description{
 11171  				Label:   "CPU",
 11172  				Summary: "CPU",
 11173  			},
 11174  			Key: "cpu",
 11175  		},
 11176  		UnitInfo: &types.ElementDescription{
 11177  			Description: types.Description{
 11178  				Label:   "MHz",
 11179  				Summary: "Megahertz",
 11180  			},
 11181  			Key: "megaHertz",
 11182  		},
 11183  		RollupType:          "average",
 11184  		StatsType:           "absolute",
 11185  		Level:               2,
 11186  		PerDeviceLevel:      3,
 11187  		AssociatedCounterId: nil,
 11188  	},
 11189  	{
 11190  		Key: 396,
 11191  		NameInfo: &types.ElementDescription{
 11192  			Description: types.Description{
 11193  				Label:   "Latency",
 11194  				Summary: "Percent of time the virtual machine is unable to run because it is contending for access to the physical CPU(s)",
 11195  			},
 11196  			Key: "latency",
 11197  		},
 11198  		GroupInfo: &types.ElementDescription{
 11199  			Description: types.Description{
 11200  				Label:   "CPU",
 11201  				Summary: "CPU",
 11202  			},
 11203  			Key: "cpu",
 11204  		},
 11205  		UnitInfo: &types.ElementDescription{
 11206  			Description: types.Description{
 11207  				Label:   "%",
 11208  				Summary: "Percentage",
 11209  			},
 11210  			Key: "percent",
 11211  		},
 11212  		RollupType:          "average",
 11213  		StatsType:           "rate",
 11214  		Level:               2,
 11215  		PerDeviceLevel:      3,
 11216  		AssociatedCounterId: nil,
 11217  	},
 11218  	{
 11219  		Key: 397,
 11220  		NameInfo: &types.ElementDescription{
 11221  			Description: types.Description{
 11222  				Label:   "Entitlement",
 11223  				Summary: "CPU resources devoted by the ESX scheduler",
 11224  			},
 11225  			Key: "entitlement",
 11226  		},
 11227  		GroupInfo: &types.ElementDescription{
 11228  			Description: types.Description{
 11229  				Label:   "CPU",
 11230  				Summary: "CPU",
 11231  			},
 11232  			Key: "cpu",
 11233  		},
 11234  		UnitInfo: &types.ElementDescription{
 11235  			Description: types.Description{
 11236  				Label:   "MHz",
 11237  				Summary: "Megahertz",
 11238  			},
 11239  			Key: "megaHertz",
 11240  		},
 11241  		RollupType:          "latest",
 11242  		StatsType:           "absolute",
 11243  		Level:               2,
 11244  		PerDeviceLevel:      3,
 11245  		AssociatedCounterId: nil,
 11246  	},
 11247  	{
 11248  		Key: 398,
 11249  		NameInfo: &types.ElementDescription{
 11250  			Description: types.Description{
 11251  				Label:   "Demand",
 11252  				Summary: "The amount of CPU resources a virtual machine would use if there were no CPU contention or CPU limit",
 11253  			},
 11254  			Key: "demand",
 11255  		},
 11256  		GroupInfo: &types.ElementDescription{
 11257  			Description: types.Description{
 11258  				Label:   "CPU",
 11259  				Summary: "CPU",
 11260  			},
 11261  			Key: "cpu",
 11262  		},
 11263  		UnitInfo: &types.ElementDescription{
 11264  			Description: types.Description{
 11265  				Label:   "MHz",
 11266  				Summary: "Megahertz",
 11267  			},
 11268  			Key: "megaHertz",
 11269  		},
 11270  		RollupType:          "average",
 11271  		StatsType:           "absolute",
 11272  		Level:               2,
 11273  		PerDeviceLevel:      3,
 11274  		AssociatedCounterId: nil,
 11275  	},
 11276  	{
 11277  		Key: 399,
 11278  		NameInfo: &types.ElementDescription{
 11279  			Description: types.Description{
 11280  				Label:   "Co-stop",
 11281  				Summary: "Time the virtual machine is ready to run, but is unable to run due to co-scheduling constraints",
 11282  			},
 11283  			Key: "costop",
 11284  		},
 11285  		GroupInfo: &types.ElementDescription{
 11286  			Description: types.Description{
 11287  				Label:   "CPU",
 11288  				Summary: "CPU",
 11289  			},
 11290  			Key: "cpu",
 11291  		},
 11292  		UnitInfo: &types.ElementDescription{
 11293  			Description: types.Description{
 11294  				Label:   "ms",
 11295  				Summary: "Millisecond",
 11296  			},
 11297  			Key: "millisecond",
 11298  		},
 11299  		RollupType:          "summation",
 11300  		StatsType:           "delta",
 11301  		Level:               2,
 11302  		PerDeviceLevel:      3,
 11303  		AssociatedCounterId: nil,
 11304  	},
 11305  	{
 11306  		Key: 400,
 11307  		NameInfo: &types.ElementDescription{
 11308  			Description: types.Description{
 11309  				Label:   "Max limited",
 11310  				Summary: "Time the virtual machine is ready to run, but is not run due to maxing out its CPU limit setting",
 11311  			},
 11312  			Key: "maxlimited",
 11313  		},
 11314  		GroupInfo: &types.ElementDescription{
 11315  			Description: types.Description{
 11316  				Label:   "CPU",
 11317  				Summary: "CPU",
 11318  			},
 11319  			Key: "cpu",
 11320  		},
 11321  		UnitInfo: &types.ElementDescription{
 11322  			Description: types.Description{
 11323  				Label:   "ms",
 11324  				Summary: "Millisecond",
 11325  			},
 11326  			Key: "millisecond",
 11327  		},
 11328  		RollupType:          "summation",
 11329  		StatsType:           "delta",
 11330  		Level:               2,
 11331  		PerDeviceLevel:      3,
 11332  		AssociatedCounterId: nil,
 11333  	},
 11334  	{
 11335  		Key: 401,
 11336  		NameInfo: &types.ElementDescription{
 11337  			Description: types.Description{
 11338  				Label:   "Overlap",
 11339  				Summary: "Time the virtual machine was interrupted to perform system services on behalf of itself or other virtual machines",
 11340  			},
 11341  			Key: "overlap",
 11342  		},
 11343  		GroupInfo: &types.ElementDescription{
 11344  			Description: types.Description{
 11345  				Label:   "CPU",
 11346  				Summary: "CPU",
 11347  			},
 11348  			Key: "cpu",
 11349  		},
 11350  		UnitInfo: &types.ElementDescription{
 11351  			Description: types.Description{
 11352  				Label:   "ms",
 11353  				Summary: "Millisecond",
 11354  			},
 11355  			Key: "millisecond",
 11356  		},
 11357  		RollupType:          "summation",
 11358  		StatsType:           "delta",
 11359  		Level:               3,
 11360  		PerDeviceLevel:      3,
 11361  		AssociatedCounterId: nil,
 11362  	},
 11363  	{
 11364  		Key: 402,
 11365  		NameInfo: &types.ElementDescription{
 11366  			Description: types.Description{
 11367  				Label:   "Run",
 11368  				Summary: "Time the virtual machine is scheduled to run",
 11369  			},
 11370  			Key: "run",
 11371  		},
 11372  		GroupInfo: &types.ElementDescription{
 11373  			Description: types.Description{
 11374  				Label:   "CPU",
 11375  				Summary: "CPU",
 11376  			},
 11377  			Key: "cpu",
 11378  		},
 11379  		UnitInfo: &types.ElementDescription{
 11380  			Description: types.Description{
 11381  				Label:   "ms",
 11382  				Summary: "Millisecond",
 11383  			},
 11384  			Key: "millisecond",
 11385  		},
 11386  		RollupType:          "summation",
 11387  		StatsType:           "delta",
 11388  		Level:               2,
 11389  		PerDeviceLevel:      3,
 11390  		AssociatedCounterId: nil,
 11391  	},
 11392  	{
 11393  		Key: 403,
 11394  		NameInfo: &types.ElementDescription{
 11395  			Description: types.Description{
 11396  				Label:   "Demand-to-entitlement ratio",
 11397  				Summary: "CPU resource entitlement to CPU demand ratio (in percents)",
 11398  			},
 11399  			Key: "demandEntitlementRatio",
 11400  		},
 11401  		GroupInfo: &types.ElementDescription{
 11402  			Description: types.Description{
 11403  				Label:   "CPU",
 11404  				Summary: "CPU",
 11405  			},
 11406  			Key: "cpu",
 11407  		},
 11408  		UnitInfo: &types.ElementDescription{
 11409  			Description: types.Description{
 11410  				Label:   "%",
 11411  				Summary: "Percentage",
 11412  			},
 11413  			Key: "percent",
 11414  		},
 11415  		RollupType:          "latest",
 11416  		StatsType:           "absolute",
 11417  		Level:               4,
 11418  		PerDeviceLevel:      4,
 11419  		AssociatedCounterId: nil,
 11420  	},
 11421  	{
 11422  		Key: 404,
 11423  		NameInfo: &types.ElementDescription{
 11424  			Description: types.Description{
 11425  				Label:   "Readiness",
 11426  				Summary: "Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU",
 11427  			},
 11428  			Key: "readiness",
 11429  		},
 11430  		GroupInfo: &types.ElementDescription{
 11431  			Description: types.Description{
 11432  				Label:   "CPU",
 11433  				Summary: "CPU",
 11434  			},
 11435  			Key: "cpu",
 11436  		},
 11437  		UnitInfo: &types.ElementDescription{
 11438  			Description: types.Description{
 11439  				Label:   "%",
 11440  				Summary: "Percentage",
 11441  			},
 11442  			Key: "percent",
 11443  		},
 11444  		RollupType:          "average",
 11445  		StatsType:           "rate",
 11446  		Level:               4,
 11447  		PerDeviceLevel:      4,
 11448  		AssociatedCounterId: nil,
 11449  	},
 11450  	{
 11451  		Key: 405,
 11452  		NameInfo: &types.ElementDescription{
 11453  			Description: types.Description{
 11454  				Label:   "Swap in",
 11455  				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",
 11456  			},
 11457  			Key: "swapin",
 11458  		},
 11459  		GroupInfo: &types.ElementDescription{
 11460  			Description: types.Description{
 11461  				Label:   "Memory",
 11462  				Summary: "Memory",
 11463  			},
 11464  			Key: "mem",
 11465  		},
 11466  		UnitInfo: &types.ElementDescription{
 11467  			Description: types.Description{
 11468  				Label:   "KB",
 11469  				Summary: "Kilobyte",
 11470  			},
 11471  			Key: "kiloBytes",
 11472  		},
 11473  		RollupType:          "none",
 11474  		StatsType:           "absolute",
 11475  		Level:               4,
 11476  		PerDeviceLevel:      4,
 11477  		AssociatedCounterId: nil,
 11478  	},
 11479  	{
 11480  		Key: 406,
 11481  		NameInfo: &types.ElementDescription{
 11482  			Description: types.Description{
 11483  				Label:   "Swap in",
 11484  				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",
 11485  			},
 11486  			Key: "swapin",
 11487  		},
 11488  		GroupInfo: &types.ElementDescription{
 11489  			Description: types.Description{
 11490  				Label:   "Memory",
 11491  				Summary: "Memory",
 11492  			},
 11493  			Key: "mem",
 11494  		},
 11495  		UnitInfo: &types.ElementDescription{
 11496  			Description: types.Description{
 11497  				Label:   "KB",
 11498  				Summary: "Kilobyte",
 11499  			},
 11500  			Key: "kiloBytes",
 11501  		},
 11502  		RollupType:          "average",
 11503  		StatsType:           "absolute",
 11504  		Level:               2,
 11505  		PerDeviceLevel:      3,
 11506  		AssociatedCounterId: nil,
 11507  	},
 11508  	{
 11509  		Key: 407,
 11510  		NameInfo: &types.ElementDescription{
 11511  			Description: types.Description{
 11512  				Label:   "Swap in",
 11513  				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",
 11514  			},
 11515  			Key: "swapin",
 11516  		},
 11517  		GroupInfo: &types.ElementDescription{
 11518  			Description: types.Description{
 11519  				Label:   "Memory",
 11520  				Summary: "Memory",
 11521  			},
 11522  			Key: "mem",
 11523  		},
 11524  		UnitInfo: &types.ElementDescription{
 11525  			Description: types.Description{
 11526  				Label:   "KB",
 11527  				Summary: "Kilobyte",
 11528  			},
 11529  			Key: "kiloBytes",
 11530  		},
 11531  		RollupType:          "maximum",
 11532  		StatsType:           "absolute",
 11533  		Level:               4,
 11534  		PerDeviceLevel:      4,
 11535  		AssociatedCounterId: nil,
 11536  	},
 11537  	{
 11538  		Key: 408,
 11539  		NameInfo: &types.ElementDescription{
 11540  			Description: types.Description{
 11541  				Label:   "Swap in",
 11542  				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",
 11543  			},
 11544  			Key: "swapin",
 11545  		},
 11546  		GroupInfo: &types.ElementDescription{
 11547  			Description: types.Description{
 11548  				Label:   "Memory",
 11549  				Summary: "Memory",
 11550  			},
 11551  			Key: "mem",
 11552  		},
 11553  		UnitInfo: &types.ElementDescription{
 11554  			Description: types.Description{
 11555  				Label:   "KB",
 11556  				Summary: "Kilobyte",
 11557  			},
 11558  			Key: "kiloBytes",
 11559  		},
 11560  		RollupType:          "minimum",
 11561  		StatsType:           "absolute",
 11562  		Level:               4,
 11563  		PerDeviceLevel:      4,
 11564  		AssociatedCounterId: nil,
 11565  	},
 11566  	{
 11567  		Key: 409,
 11568  		NameInfo: &types.ElementDescription{
 11569  			Description: types.Description{
 11570  				Label:   "Swap out",
 11571  				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
 11572  			},
 11573  			Key: "swapout",
 11574  		},
 11575  		GroupInfo: &types.ElementDescription{
 11576  			Description: types.Description{
 11577  				Label:   "Memory",
 11578  				Summary: "Memory",
 11579  			},
 11580  			Key: "mem",
 11581  		},
 11582  		UnitInfo: &types.ElementDescription{
 11583  			Description: types.Description{
 11584  				Label:   "KB",
 11585  				Summary: "Kilobyte",
 11586  			},
 11587  			Key: "kiloBytes",
 11588  		},
 11589  		RollupType:          "none",
 11590  		StatsType:           "absolute",
 11591  		Level:               4,
 11592  		PerDeviceLevel:      4,
 11593  		AssociatedCounterId: nil,
 11594  	},
 11595  	{
 11596  		Key: 410,
 11597  		NameInfo: &types.ElementDescription{
 11598  			Description: types.Description{
 11599  				Label:   "Swap out",
 11600  				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
 11601  			},
 11602  			Key: "swapout",
 11603  		},
 11604  		GroupInfo: &types.ElementDescription{
 11605  			Description: types.Description{
 11606  				Label:   "Memory",
 11607  				Summary: "Memory",
 11608  			},
 11609  			Key: "mem",
 11610  		},
 11611  		UnitInfo: &types.ElementDescription{
 11612  			Description: types.Description{
 11613  				Label:   "KB",
 11614  				Summary: "Kilobyte",
 11615  			},
 11616  			Key: "kiloBytes",
 11617  		},
 11618  		RollupType:          "average",
 11619  		StatsType:           "absolute",
 11620  		Level:               2,
 11621  		PerDeviceLevel:      3,
 11622  		AssociatedCounterId: nil,
 11623  	},
 11624  	{
 11625  		Key: 411,
 11626  		NameInfo: &types.ElementDescription{
 11627  			Description: types.Description{
 11628  				Label:   "Swap out",
 11629  				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
 11630  			},
 11631  			Key: "swapout",
 11632  		},
 11633  		GroupInfo: &types.ElementDescription{
 11634  			Description: types.Description{
 11635  				Label:   "Memory",
 11636  				Summary: "Memory",
 11637  			},
 11638  			Key: "mem",
 11639  		},
 11640  		UnitInfo: &types.ElementDescription{
 11641  			Description: types.Description{
 11642  				Label:   "KB",
 11643  				Summary: "Kilobyte",
 11644  			},
 11645  			Key: "kiloBytes",
 11646  		},
 11647  		RollupType:          "maximum",
 11648  		StatsType:           "absolute",
 11649  		Level:               4,
 11650  		PerDeviceLevel:      4,
 11651  		AssociatedCounterId: nil,
 11652  	},
 11653  	{
 11654  		Key: 412,
 11655  		NameInfo: &types.ElementDescription{
 11656  			Description: types.Description{
 11657  				Label:   "Swap out",
 11658  				Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.",
 11659  			},
 11660  			Key: "swapout",
 11661  		},
 11662  		GroupInfo: &types.ElementDescription{
 11663  			Description: types.Description{
 11664  				Label:   "Memory",
 11665  				Summary: "Memory",
 11666  			},
 11667  			Key: "mem",
 11668  		},
 11669  		UnitInfo: &types.ElementDescription{
 11670  			Description: types.Description{
 11671  				Label:   "KB",
 11672  				Summary: "Kilobyte",
 11673  			},
 11674  			Key: "kiloBytes",
 11675  		},
 11676  		RollupType:          "minimum",
 11677  		StatsType:           "absolute",
 11678  		Level:               4,
 11679  		PerDeviceLevel:      4,
 11680  		AssociatedCounterId: nil,
 11681  	},
 11682  	{
 11683  		Key: 413,
 11684  		NameInfo: &types.ElementDescription{
 11685  			Description: types.Description{
 11686  				Label:   "VMkernel consumed",
 11687  				Summary: "Amount of host physical memory consumed by VMkernel",
 11688  			},
 11689  			Key: "sysUsage",
 11690  		},
 11691  		GroupInfo: &types.ElementDescription{
 11692  			Description: types.Description{
 11693  				Label:   "Memory",
 11694  				Summary: "Memory",
 11695  			},
 11696  			Key: "mem",
 11697  		},
 11698  		UnitInfo: &types.ElementDescription{
 11699  			Description: types.Description{
 11700  				Label:   "KB",
 11701  				Summary: "Kilobyte",
 11702  			},
 11703  			Key: "kiloBytes",
 11704  		},
 11705  		RollupType:          "none",
 11706  		StatsType:           "absolute",
 11707  		Level:               4,
 11708  		PerDeviceLevel:      4,
 11709  		AssociatedCounterId: nil,
 11710  	},
 11711  	{
 11712  		Key: 414,
 11713  		NameInfo: &types.ElementDescription{
 11714  			Description: types.Description{
 11715  				Label:   "VMkernel consumed",
 11716  				Summary: "Amount of host physical memory consumed by VMkernel",
 11717  			},
 11718  			Key: "sysUsage",
 11719  		},
 11720  		GroupInfo: &types.ElementDescription{
 11721  			Description: types.Description{
 11722  				Label:   "Memory",
 11723  				Summary: "Memory",
 11724  			},
 11725  			Key: "mem",
 11726  		},
 11727  		UnitInfo: &types.ElementDescription{
 11728  			Description: types.Description{
 11729  				Label:   "KB",
 11730  				Summary: "Kilobyte",
 11731  			},
 11732  			Key: "kiloBytes",
 11733  		},
 11734  		RollupType:          "average",
 11735  		StatsType:           "absolute",
 11736  		Level:               2,
 11737  		PerDeviceLevel:      3,
 11738  		AssociatedCounterId: nil,
 11739  	},
 11740  	{
 11741  		Key: 415,
 11742  		NameInfo: &types.ElementDescription{
 11743  			Description: types.Description{
 11744  				Label:   "VMkernel consumed",
 11745  				Summary: "Amount of host physical memory consumed by VMkernel",
 11746  			},
 11747  			Key: "sysUsage",
 11748  		},
 11749  		GroupInfo: &types.ElementDescription{
 11750  			Description: types.Description{
 11751  				Label:   "Memory",
 11752  				Summary: "Memory",
 11753  			},
 11754  			Key: "mem",
 11755  		},
 11756  		UnitInfo: &types.ElementDescription{
 11757  			Description: types.Description{
 11758  				Label:   "KB",
 11759  				Summary: "Kilobyte",
 11760  			},
 11761  			Key: "kiloBytes",
 11762  		},
 11763  		RollupType:          "maximum",
 11764  		StatsType:           "absolute",
 11765  		Level:               4,
 11766  		PerDeviceLevel:      4,
 11767  		AssociatedCounterId: nil,
 11768  	},
 11769  	{
 11770  		Key: 416,
 11771  		NameInfo: &types.ElementDescription{
 11772  			Description: types.Description{
 11773  				Label:   "VMkernel consumed",
 11774  				Summary: "Amount of host physical memory consumed by VMkernel",
 11775  			},
 11776  			Key: "sysUsage",
 11777  		},
 11778  		GroupInfo: &types.ElementDescription{
 11779  			Description: types.Description{
 11780  				Label:   "Memory",
 11781  				Summary: "Memory",
 11782  			},
 11783  			Key: "mem",
 11784  		},
 11785  		UnitInfo: &types.ElementDescription{
 11786  			Description: types.Description{
 11787  				Label:   "KB",
 11788  				Summary: "Kilobyte",
 11789  			},
 11790  			Key: "kiloBytes",
 11791  		},
 11792  		RollupType:          "minimum",
 11793  		StatsType:           "absolute",
 11794  		Level:               4,
 11795  		PerDeviceLevel:      4,
 11796  		AssociatedCounterId: nil,
 11797  	},
 11798  	{
 11799  		Key: 417,
 11800  		NameInfo: &types.ElementDescription{
 11801  			Description: types.Description{
 11802  				Label:   "Active write",
 11803  				Summary: "Amount of guest physical memory that is being actively written by guest. Activeness is estimated by ESXi",
 11804  			},
 11805  			Key: "activewrite",
 11806  		},
 11807  		GroupInfo: &types.ElementDescription{
 11808  			Description: types.Description{
 11809  				Label:   "Memory",
 11810  				Summary: "Memory",
 11811  			},
 11812  			Key: "mem",
 11813  		},
 11814  		UnitInfo: &types.ElementDescription{
 11815  			Description: types.Description{
 11816  				Label:   "KB",
 11817  				Summary: "Kilobyte",
 11818  			},
 11819  			Key: "kiloBytes",
 11820  		},
 11821  		RollupType:          "average",
 11822  		StatsType:           "absolute",
 11823  		Level:               2,
 11824  		PerDeviceLevel:      3,
 11825  		AssociatedCounterId: nil,
 11826  	},
 11827  	{
 11828  		Key: 418,
 11829  		NameInfo: &types.ElementDescription{
 11830  			Description: types.Description{
 11831  				Label:   "Overhead reserved",
 11832  				Summary: "Host physical memory reserved by ESXi, for its data structures, for running the virtual machine",
 11833  			},
 11834  			Key: "overheadMax",
 11835  		},
 11836  		GroupInfo: &types.ElementDescription{
 11837  			Description: types.Description{
 11838  				Label:   "Memory",
 11839  				Summary: "Memory",
 11840  			},
 11841  			Key: "mem",
 11842  		},
 11843  		UnitInfo: &types.ElementDescription{
 11844  			Description: types.Description{
 11845  				Label:   "KB",
 11846  				Summary: "Kilobyte",
 11847  			},
 11848  			Key: "kiloBytes",
 11849  		},
 11850  		RollupType:          "average",
 11851  		StatsType:           "absolute",
 11852  		Level:               2,
 11853  		PerDeviceLevel:      3,
 11854  		AssociatedCounterId: nil,
 11855  	},
 11856  	{
 11857  		Key: 419,
 11858  		NameInfo: &types.ElementDescription{
 11859  			Description: types.Description{
 11860  				Label:   "Total reservation",
 11861  				Summary: "Total reservation, available and consumed, for powered-on virtual machines",
 11862  			},
 11863  			Key: "totalCapacity",
 11864  		},
 11865  		GroupInfo: &types.ElementDescription{
 11866  			Description: types.Description{
 11867  				Label:   "Memory",
 11868  				Summary: "Memory",
 11869  			},
 11870  			Key: "mem",
 11871  		},
 11872  		UnitInfo: &types.ElementDescription{
 11873  			Description: types.Description{
 11874  				Label:   "MB",
 11875  				Summary: "Megabyte",
 11876  			},
 11877  			Key: "megaBytes",
 11878  		},
 11879  		RollupType:          "average",
 11880  		StatsType:           "absolute",
 11881  		Level:               2,
 11882  		PerDeviceLevel:      3,
 11883  		AssociatedCounterId: nil,
 11884  	},
 11885  	{
 11886  		Key: 420,
 11887  		NameInfo: &types.ElementDescription{
 11888  			Description: types.Description{
 11889  				Label:   "Compressed",
 11890  				Summary: "Amount of guest physical memory pages compressed by ESXi",
 11891  			},
 11892  			Key: "zipped",
 11893  		},
 11894  		GroupInfo: &types.ElementDescription{
 11895  			Description: types.Description{
 11896  				Label:   "Memory",
 11897  				Summary: "Memory",
 11898  			},
 11899  			Key: "mem",
 11900  		},
 11901  		UnitInfo: &types.ElementDescription{
 11902  			Description: types.Description{
 11903  				Label:   "KB",
 11904  				Summary: "Kilobyte",
 11905  			},
 11906  			Key: "kiloBytes",
 11907  		},
 11908  		RollupType:          "latest",
 11909  		StatsType:           "absolute",
 11910  		Level:               2,
 11911  		PerDeviceLevel:      3,
 11912  		AssociatedCounterId: nil,
 11913  	},
 11914  	{
 11915  		Key: 421,
 11916  		NameInfo: &types.ElementDescription{
 11917  			Description: types.Description{
 11918  				Label:   "Compression saved",
 11919  				Summary: "Host physical memory, reclaimed from a virtual machine, by memory compression. This value is less than the value of 'Compressed' memory",
 11920  			},
 11921  			Key: "zipSaved",
 11922  		},
 11923  		GroupInfo: &types.ElementDescription{
 11924  			Description: types.Description{
 11925  				Label:   "Memory",
 11926  				Summary: "Memory",
 11927  			},
 11928  			Key: "mem",
 11929  		},
 11930  		UnitInfo: &types.ElementDescription{
 11931  			Description: types.Description{
 11932  				Label:   "KB",
 11933  				Summary: "Kilobyte",
 11934  			},
 11935  			Key: "kiloBytes",
 11936  		},
 11937  		RollupType:          "latest",
 11938  		StatsType:           "absolute",
 11939  		Level:               2,
 11940  		PerDeviceLevel:      3,
 11941  		AssociatedCounterId: nil,
 11942  	},
 11943  	{
 11944  		Key: 422,
 11945  		NameInfo: &types.ElementDescription{
 11946  			Description: types.Description{
 11947  				Label:   "Page-fault latency",
 11948  				Summary: "Percentage of time the virtual machine spent waiting to swap in or decompress guest physical memory",
 11949  			},
 11950  			Key: "latency",
 11951  		},
 11952  		GroupInfo: &types.ElementDescription{
 11953  			Description: types.Description{
 11954  				Label:   "Memory",
 11955  				Summary: "Memory",
 11956  			},
 11957  			Key: "mem",
 11958  		},
 11959  		UnitInfo: &types.ElementDescription{
 11960  			Description: types.Description{
 11961  				Label:   "%",
 11962  				Summary: "Percentage",
 11963  			},
 11964  			Key: "percent",
 11965  		},
 11966  		RollupType:          "average",
 11967  		StatsType:           "absolute",
 11968  		Level:               2,
 11969  		PerDeviceLevel:      3,
 11970  		AssociatedCounterId: nil,
 11971  	},
 11972  	{
 11973  		Key: 423,
 11974  		NameInfo: &types.ElementDescription{
 11975  			Description: types.Description{
 11976  				Label:   "Entitlement",
 11977  				Summary: "Amount of host physical memory the virtual machine deserves, as determined by ESXi",
 11978  			},
 11979  			Key: "entitlement",
 11980  		},
 11981  		GroupInfo: &types.ElementDescription{
 11982  			Description: types.Description{
 11983  				Label:   "Memory",
 11984  				Summary: "Memory",
 11985  			},
 11986  			Key: "mem",
 11987  		},
 11988  		UnitInfo: &types.ElementDescription{
 11989  			Description: types.Description{
 11990  				Label:   "KB",
 11991  				Summary: "Kilobyte",
 11992  			},
 11993  			Key: "kiloBytes",
 11994  		},
 11995  		RollupType:          "average",
 11996  		StatsType:           "absolute",
 11997  		Level:               2,
 11998  		PerDeviceLevel:      3,
 11999  		AssociatedCounterId: nil,
 12000  	},
 12001  	{
 12002  		Key: 424,
 12003  		NameInfo: &types.ElementDescription{
 12004  			Description: types.Description{
 12005  				Label:   "Reclamation threshold",
 12006  				Summary: "Threshold of free host physical memory below which ESXi will begin actively reclaiming memory from virtual machines by swapping, compression and ballooning",
 12007  			},
 12008  			Key: "lowfreethreshold",
 12009  		},
 12010  		GroupInfo: &types.ElementDescription{
 12011  			Description: types.Description{
 12012  				Label:   "Memory",
 12013  				Summary: "Memory",
 12014  			},
 12015  			Key: "mem",
 12016  		},
 12017  		UnitInfo: &types.ElementDescription{
 12018  			Description: types.Description{
 12019  				Label:   "KB",
 12020  				Summary: "Kilobyte",
 12021  			},
 12022  			Key: "kiloBytes",
 12023  		},
 12024  		RollupType:          "average",
 12025  		StatsType:           "absolute",
 12026  		Level:               2,
 12027  		PerDeviceLevel:      3,
 12028  		AssociatedCounterId: nil,
 12029  	},
 12030  	{
 12031  		Key: 425,
 12032  		NameInfo: &types.ElementDescription{
 12033  			Description: types.Description{
 12034  				Label:   "Host cache consumed",
 12035  				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
 12036  			},
 12037  			Key: "llSwapUsed",
 12038  		},
 12039  		GroupInfo: &types.ElementDescription{
 12040  			Description: types.Description{
 12041  				Label:   "Memory",
 12042  				Summary: "Memory",
 12043  			},
 12044  			Key: "mem",
 12045  		},
 12046  		UnitInfo: &types.ElementDescription{
 12047  			Description: types.Description{
 12048  				Label:   "KB",
 12049  				Summary: "Kilobyte",
 12050  			},
 12051  			Key: "kiloBytes",
 12052  		},
 12053  		RollupType:          "none",
 12054  		StatsType:           "absolute",
 12055  		Level:               4,
 12056  		PerDeviceLevel:      4,
 12057  		AssociatedCounterId: nil,
 12058  	},
 12059  	{
 12060  		Key: 426,
 12061  		NameInfo: &types.ElementDescription{
 12062  			Description: types.Description{
 12063  				Label:   "Host cache swap in rate",
 12064  				Summary: "Rate at which guest physical memory is swapped in from the host swap cache",
 12065  			},
 12066  			Key: "llSwapInRate",
 12067  		},
 12068  		GroupInfo: &types.ElementDescription{
 12069  			Description: types.Description{
 12070  				Label:   "Memory",
 12071  				Summary: "Memory",
 12072  			},
 12073  			Key: "mem",
 12074  		},
 12075  		UnitInfo: &types.ElementDescription{
 12076  			Description: types.Description{
 12077  				Label:   "KBps",
 12078  				Summary: "Kilobytes per second",
 12079  			},
 12080  			Key: "kiloBytesPerSecond",
 12081  		},
 12082  		RollupType:          "average",
 12083  		StatsType:           "rate",
 12084  		Level:               2,
 12085  		PerDeviceLevel:      3,
 12086  		AssociatedCounterId: nil,
 12087  	},
 12088  	{
 12089  		Key: 427,
 12090  		NameInfo: &types.ElementDescription{
 12091  			Description: types.Description{
 12092  				Label:   "Host cache swap out rate",
 12093  				Summary: "Rate at which guest physical memory is swapped out to the host swap cache",
 12094  			},
 12095  			Key: "llSwapOutRate",
 12096  		},
 12097  		GroupInfo: &types.ElementDescription{
 12098  			Description: types.Description{
 12099  				Label:   "Memory",
 12100  				Summary: "Memory",
 12101  			},
 12102  			Key: "mem",
 12103  		},
 12104  		UnitInfo: &types.ElementDescription{
 12105  			Description: types.Description{
 12106  				Label:   "KBps",
 12107  				Summary: "Kilobytes per second",
 12108  			},
 12109  			Key: "kiloBytesPerSecond",
 12110  		},
 12111  		RollupType:          "average",
 12112  		StatsType:           "rate",
 12113  		Level:               2,
 12114  		PerDeviceLevel:      3,
 12115  		AssociatedCounterId: nil,
 12116  	},
 12117  	{
 12118  		Key: 428,
 12119  		NameInfo: &types.ElementDescription{
 12120  			Description: types.Description{
 12121  				Label:   "Overhead active",
 12122  				Summary: "Estimate of the host physical memory, from Overhead consumed, that is actively read or written to by ESXi",
 12123  			},
 12124  			Key: "overheadTouched",
 12125  		},
 12126  		GroupInfo: &types.ElementDescription{
 12127  			Description: types.Description{
 12128  				Label:   "Memory",
 12129  				Summary: "Memory",
 12130  			},
 12131  			Key: "mem",
 12132  		},
 12133  		UnitInfo: &types.ElementDescription{
 12134  			Description: types.Description{
 12135  				Label:   "KB",
 12136  				Summary: "Kilobyte",
 12137  			},
 12138  			Key: "kiloBytes",
 12139  		},
 12140  		RollupType:          "average",
 12141  		StatsType:           "absolute",
 12142  		Level:               4,
 12143  		PerDeviceLevel:      4,
 12144  		AssociatedCounterId: nil,
 12145  	},
 12146  	{
 12147  		Key: 429,
 12148  		NameInfo: &types.ElementDescription{
 12149  			Description: types.Description{
 12150  				Label:   "Host cache consumed",
 12151  				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
 12152  			},
 12153  			Key: "llSwapUsed",
 12154  		},
 12155  		GroupInfo: &types.ElementDescription{
 12156  			Description: types.Description{
 12157  				Label:   "Memory",
 12158  				Summary: "Memory",
 12159  			},
 12160  			Key: "mem",
 12161  		},
 12162  		UnitInfo: &types.ElementDescription{
 12163  			Description: types.Description{
 12164  				Label:   "KB",
 12165  				Summary: "Kilobyte",
 12166  			},
 12167  			Key: "kiloBytes",
 12168  		},
 12169  		RollupType:          "average",
 12170  		StatsType:           "absolute",
 12171  		Level:               4,
 12172  		PerDeviceLevel:      4,
 12173  		AssociatedCounterId: nil,
 12174  	},
 12175  	{
 12176  		Key: 430,
 12177  		NameInfo: &types.ElementDescription{
 12178  			Description: types.Description{
 12179  				Label:   "Host cache consumed",
 12180  				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
 12181  			},
 12182  			Key: "llSwapUsed",
 12183  		},
 12184  		GroupInfo: &types.ElementDescription{
 12185  			Description: types.Description{
 12186  				Label:   "Memory",
 12187  				Summary: "Memory",
 12188  			},
 12189  			Key: "mem",
 12190  		},
 12191  		UnitInfo: &types.ElementDescription{
 12192  			Description: types.Description{
 12193  				Label:   "KB",
 12194  				Summary: "Kilobyte",
 12195  			},
 12196  			Key: "kiloBytes",
 12197  		},
 12198  		RollupType:          "maximum",
 12199  		StatsType:           "absolute",
 12200  		Level:               4,
 12201  		PerDeviceLevel:      4,
 12202  		AssociatedCounterId: nil,
 12203  	},
 12204  	{
 12205  		Key: 431,
 12206  		NameInfo: &types.ElementDescription{
 12207  			Description: types.Description{
 12208  				Label:   "Host cache consumed",
 12209  				Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages",
 12210  			},
 12211  			Key: "llSwapUsed",
 12212  		},
 12213  		GroupInfo: &types.ElementDescription{
 12214  			Description: types.Description{
 12215  				Label:   "Memory",
 12216  				Summary: "Memory",
 12217  			},
 12218  			Key: "mem",
 12219  		},
 12220  		UnitInfo: &types.ElementDescription{
 12221  			Description: types.Description{
 12222  				Label:   "KB",
 12223  				Summary: "Kilobyte",
 12224  			},
 12225  			Key: "kiloBytes",
 12226  		},
 12227  		RollupType:          "minimum",
 12228  		StatsType:           "absolute",
 12229  		Level:               4,
 12230  		PerDeviceLevel:      4,
 12231  		AssociatedCounterId: nil,
 12232  	},
 12233  	{
 12234  		Key: 432,
 12235  		NameInfo: &types.ElementDescription{
 12236  			Description: types.Description{
 12237  				Label:   "Host cache swap in",
 12238  				Summary: "Amount of guest physical memory swapped in from host cache",
 12239  			},
 12240  			Key: "llSwapIn",
 12241  		},
 12242  		GroupInfo: &types.ElementDescription{
 12243  			Description: types.Description{
 12244  				Label:   "Memory",
 12245  				Summary: "Memory",
 12246  			},
 12247  			Key: "mem",
 12248  		},
 12249  		UnitInfo: &types.ElementDescription{
 12250  			Description: types.Description{
 12251  				Label:   "KB",
 12252  				Summary: "Kilobyte",
 12253  			},
 12254  			Key: "kiloBytes",
 12255  		},
 12256  		RollupType:          "none",
 12257  		StatsType:           "absolute",
 12258  		Level:               4,
 12259  		PerDeviceLevel:      4,
 12260  		AssociatedCounterId: nil,
 12261  	},
 12262  	{
 12263  		Key: 433,
 12264  		NameInfo: &types.ElementDescription{
 12265  			Description: types.Description{
 12266  				Label:   "Host cache swap in",
 12267  				Summary: "Amount of guest physical memory swapped in from host cache",
 12268  			},
 12269  			Key: "llSwapIn",
 12270  		},
 12271  		GroupInfo: &types.ElementDescription{
 12272  			Description: types.Description{
 12273  				Label:   "Memory",
 12274  				Summary: "Memory",
 12275  			},
 12276  			Key: "mem",
 12277  		},
 12278  		UnitInfo: &types.ElementDescription{
 12279  			Description: types.Description{
 12280  				Label:   "KB",
 12281  				Summary: "Kilobyte",
 12282  			},
 12283  			Key: "kiloBytes",
 12284  		},
 12285  		RollupType:          "average",
 12286  		StatsType:           "absolute",
 12287  		Level:               4,
 12288  		PerDeviceLevel:      4,
 12289  		AssociatedCounterId: nil,
 12290  	},
 12291  	{
 12292  		Key: 434,
 12293  		NameInfo: &types.ElementDescription{
 12294  			Description: types.Description{
 12295  				Label:   "Host cache swap in",
 12296  				Summary: "Amount of guest physical memory swapped in from host cache",
 12297  			},
 12298  			Key: "llSwapIn",
 12299  		},
 12300  		GroupInfo: &types.ElementDescription{
 12301  			Description: types.Description{
 12302  				Label:   "Memory",
 12303  				Summary: "Memory",
 12304  			},
 12305  			Key: "mem",
 12306  		},
 12307  		UnitInfo: &types.ElementDescription{
 12308  			Description: types.Description{
 12309  				Label:   "KB",
 12310  				Summary: "Kilobyte",
 12311  			},
 12312  			Key: "kiloBytes",
 12313  		},
 12314  		RollupType:          "maximum",
 12315  		StatsType:           "absolute",
 12316  		Level:               4,
 12317  		PerDeviceLevel:      4,
 12318  		AssociatedCounterId: nil,
 12319  	},
 12320  	{
 12321  		Key: 435,
 12322  		NameInfo: &types.ElementDescription{
 12323  			Description: types.Description{
 12324  				Label:   "Host cache swap in",
 12325  				Summary: "Amount of guest physical memory swapped in from host cache",
 12326  			},
 12327  			Key: "llSwapIn",
 12328  		},
 12329  		GroupInfo: &types.ElementDescription{
 12330  			Description: types.Description{
 12331  				Label:   "Memory",
 12332  				Summary: "Memory",
 12333  			},
 12334  			Key: "mem",
 12335  		},
 12336  		UnitInfo: &types.ElementDescription{
 12337  			Description: types.Description{
 12338  				Label:   "KB",
 12339  				Summary: "Kilobyte",
 12340  			},
 12341  			Key: "kiloBytes",
 12342  		},
 12343  		RollupType:          "minimum",
 12344  		StatsType:           "absolute",
 12345  		Level:               4,
 12346  		PerDeviceLevel:      4,
 12347  		AssociatedCounterId: nil,
 12348  	},
 12349  	{
 12350  		Key: 436,
 12351  		NameInfo: &types.ElementDescription{
 12352  			Description: types.Description{
 12353  				Label:   "Host cache swap out",
 12354  				Summary: "Amount of guest physical memory swapped out to the host swap cache",
 12355  			},
 12356  			Key: "llSwapOut",
 12357  		},
 12358  		GroupInfo: &types.ElementDescription{
 12359  			Description: types.Description{
 12360  				Label:   "Memory",
 12361  				Summary: "Memory",
 12362  			},
 12363  			Key: "mem",
 12364  		},
 12365  		UnitInfo: &types.ElementDescription{
 12366  			Description: types.Description{
 12367  				Label:   "KB",
 12368  				Summary: "Kilobyte",
 12369  			},
 12370  			Key: "kiloBytes",
 12371  		},
 12372  		RollupType:          "none",
 12373  		StatsType:           "absolute",
 12374  		Level:               4,
 12375  		PerDeviceLevel:      4,
 12376  		AssociatedCounterId: nil,
 12377  	},
 12378  	{
 12379  		Key: 437,
 12380  		NameInfo: &types.ElementDescription{
 12381  			Description: types.Description{
 12382  				Label:   "Host cache swap out",
 12383  				Summary: "Amount of guest physical memory swapped out to the host swap cache",
 12384  			},
 12385  			Key: "llSwapOut",
 12386  		},
 12387  		GroupInfo: &types.ElementDescription{
 12388  			Description: types.Description{
 12389  				Label:   "Memory",
 12390  				Summary: "Memory",
 12391  			},
 12392  			Key: "mem",
 12393  		},
 12394  		UnitInfo: &types.ElementDescription{
 12395  			Description: types.Description{
 12396  				Label:   "KB",
 12397  				Summary: "Kilobyte",
 12398  			},
 12399  			Key: "kiloBytes",
 12400  		},
 12401  		RollupType:          "average",
 12402  		StatsType:           "absolute",
 12403  		Level:               4,
 12404  		PerDeviceLevel:      4,
 12405  		AssociatedCounterId: nil,
 12406  	},
 12407  	{
 12408  		Key: 438,
 12409  		NameInfo: &types.ElementDescription{
 12410  			Description: types.Description{
 12411  				Label:   "Host cache swap out",
 12412  				Summary: "Amount of guest physical memory swapped out to the host swap cache",
 12413  			},
 12414  			Key: "llSwapOut",
 12415  		},
 12416  		GroupInfo: &types.ElementDescription{
 12417  			Description: types.Description{
 12418  				Label:   "Memory",
 12419  				Summary: "Memory",
 12420  			},
 12421  			Key: "mem",
 12422  		},
 12423  		UnitInfo: &types.ElementDescription{
 12424  			Description: types.Description{
 12425  				Label:   "KB",
 12426  				Summary: "Kilobyte",
 12427  			},
 12428  			Key: "kiloBytes",
 12429  		},
 12430  		RollupType:          "maximum",
 12431  		StatsType:           "absolute",
 12432  		Level:               4,
 12433  		PerDeviceLevel:      4,
 12434  		AssociatedCounterId: nil,
 12435  	},
 12436  	{
 12437  		Key: 439,
 12438  		NameInfo: &types.ElementDescription{
 12439  			Description: types.Description{
 12440  				Label:   "Host cache swap out",
 12441  				Summary: "Amount of guest physical memory swapped out to the host swap cache",
 12442  			},
 12443  			Key: "llSwapOut",
 12444  		},
 12445  		GroupInfo: &types.ElementDescription{
 12446  			Description: types.Description{
 12447  				Label:   "Memory",
 12448  				Summary: "Memory",
 12449  			},
 12450  			Key: "mem",
 12451  		},
 12452  		UnitInfo: &types.ElementDescription{
 12453  			Description: types.Description{
 12454  				Label:   "KB",
 12455  				Summary: "Kilobyte",
 12456  			},
 12457  			Key: "kiloBytes",
 12458  		},
 12459  		RollupType:          "minimum",
 12460  		StatsType:           "absolute",
 12461  		Level:               4,
 12462  		PerDeviceLevel:      4,
 12463  		AssociatedCounterId: nil,
 12464  	},
 12465  	{
 12466  		Key: 440,
 12467  		NameInfo: &types.ElementDescription{
 12468  			Description: types.Description{
 12469  				Label:   "VMFS PB Cache Size",
 12470  				Summary: "Space used for holding VMFS Pointer Blocks in memory",
 12471  			},
 12472  			Key: "vmfs.pbc.size",
 12473  		},
 12474  		GroupInfo: &types.ElementDescription{
 12475  			Description: types.Description{
 12476  				Label:   "Memory",
 12477  				Summary: "Memory",
 12478  			},
 12479  			Key: "mem",
 12480  		},
 12481  		UnitInfo: &types.ElementDescription{
 12482  			Description: types.Description{
 12483  				Label:   "MB",
 12484  				Summary: "Megabyte",
 12485  			},
 12486  			Key: "megaBytes",
 12487  		},
 12488  		RollupType:          "latest",
 12489  		StatsType:           "absolute",
 12490  		Level:               4,
 12491  		PerDeviceLevel:      4,
 12492  		AssociatedCounterId: nil,
 12493  	},
 12494  	{
 12495  		Key: 441,
 12496  		NameInfo: &types.ElementDescription{
 12497  			Description: types.Description{
 12498  				Label:   "Maximum VMFS PB Cache Size",
 12499  				Summary: "Maximum size the VMFS Pointer Block Cache can grow to",
 12500  			},
 12501  			Key: "vmfs.pbc.sizeMax",
 12502  		},
 12503  		GroupInfo: &types.ElementDescription{
 12504  			Description: types.Description{
 12505  				Label:   "Memory",
 12506  				Summary: "Memory",
 12507  			},
 12508  			Key: "mem",
 12509  		},
 12510  		UnitInfo: &types.ElementDescription{
 12511  			Description: types.Description{
 12512  				Label:   "MB",
 12513  				Summary: "Megabyte",
 12514  			},
 12515  			Key: "megaBytes",
 12516  		},
 12517  		RollupType:          "latest",
 12518  		StatsType:           "absolute",
 12519  		Level:               4,
 12520  		PerDeviceLevel:      4,
 12521  		AssociatedCounterId: nil,
 12522  	},
 12523  	{
 12524  		Key: 442,
 12525  		NameInfo: &types.ElementDescription{
 12526  			Description: types.Description{
 12527  				Label:   "VMFS Working Set",
 12528  				Summary: "Amount of file blocks whose addresses are cached in the VMFS PB Cache",
 12529  			},
 12530  			Key: "vmfs.pbc.workingSet",
 12531  		},
 12532  		GroupInfo: &types.ElementDescription{
 12533  			Description: types.Description{
 12534  				Label:   "Memory",
 12535  				Summary: "Memory",
 12536  			},
 12537  			Key: "mem",
 12538  		},
 12539  		UnitInfo: &types.ElementDescription{
 12540  			Description: types.Description{
 12541  				Label:   "TB",
 12542  				Summary: "Terabyte",
 12543  			},
 12544  			Key: "teraBytes",
 12545  		},
 12546  		RollupType:          "latest",
 12547  		StatsType:           "absolute",
 12548  		Level:               4,
 12549  		PerDeviceLevel:      4,
 12550  		AssociatedCounterId: nil,
 12551  	},
 12552  	{
 12553  		Key: 443,
 12554  		NameInfo: &types.ElementDescription{
 12555  			Description: types.Description{
 12556  				Label:   "Maximum VMFS Working Set",
 12557  				Summary: "Maximum amount of file blocks whose addresses are cached in the VMFS PB Cache",
 12558  			},
 12559  			Key: "vmfs.pbc.workingSetMax",
 12560  		},
 12561  		GroupInfo: &types.ElementDescription{
 12562  			Description: types.Description{
 12563  				Label:   "Memory",
 12564  				Summary: "Memory",
 12565  			},
 12566  			Key: "mem",
 12567  		},
 12568  		UnitInfo: &types.ElementDescription{
 12569  			Description: types.Description{
 12570  				Label:   "TB",
 12571  				Summary: "Terabyte",
 12572  			},
 12573  			Key: "teraBytes",
 12574  		},
 12575  		RollupType:          "latest",
 12576  		StatsType:           "absolute",
 12577  		Level:               4,
 12578  		PerDeviceLevel:      4,
 12579  		AssociatedCounterId: nil,
 12580  	},
 12581  	{
 12582  		Key: 444,
 12583  		NameInfo: &types.ElementDescription{
 12584  			Description: types.Description{
 12585  				Label:   "VMFS PB Cache Overhead",
 12586  				Summary: "Amount of VMFS heap used by the VMFS PB Cache",
 12587  			},
 12588  			Key: "vmfs.pbc.overhead",
 12589  		},
 12590  		GroupInfo: &types.ElementDescription{
 12591  			Description: types.Description{
 12592  				Label:   "Memory",
 12593  				Summary: "Memory",
 12594  			},
 12595  			Key: "mem",
 12596  		},
 12597  		UnitInfo: &types.ElementDescription{
 12598  			Description: types.Description{
 12599  				Label:   "KB",
 12600  				Summary: "Kilobyte",
 12601  			},
 12602  			Key: "kiloBytes",
 12603  		},
 12604  		RollupType:          "latest",
 12605  		StatsType:           "absolute",
 12606  		Level:               4,
 12607  		PerDeviceLevel:      4,
 12608  		AssociatedCounterId: nil,
 12609  	},
 12610  	{
 12611  		Key: 445,
 12612  		NameInfo: &types.ElementDescription{
 12613  			Description: types.Description{
 12614  				Label:   "VMFS PB Cache Capacity Miss Ratio",
 12615  				Summary: "Trailing average of the ratio of capacity misses to compulsory misses for the VMFS PB Cache",
 12616  			},
 12617  			Key: "vmfs.pbc.capMissRatio",
 12618  		},
 12619  		GroupInfo: &types.ElementDescription{
 12620  			Description: types.Description{
 12621  				Label:   "Memory",
 12622  				Summary: "Memory",
 12623  			},
 12624  			Key: "mem",
 12625  		},
 12626  		UnitInfo: &types.ElementDescription{
 12627  			Description: types.Description{
 12628  				Label:   "%",
 12629  				Summary: "Percentage",
 12630  			},
 12631  			Key: "percent",
 12632  		},
 12633  		RollupType:          "latest",
 12634  		StatsType:           "absolute",
 12635  		Level:               4,
 12636  		PerDeviceLevel:      4,
 12637  		AssociatedCounterId: nil,
 12638  	},
 12639  	{
 12640  		Key: 446,
 12641  		NameInfo: &types.ElementDescription{
 12642  			Description: types.Description{
 12643  				Label:   "Commands issued",
 12644  				Summary: "Number of SCSI commands issued during the collection interval",
 12645  			},
 12646  			Key: "commands",
 12647  		},
 12648  		GroupInfo: &types.ElementDescription{
 12649  			Description: types.Description{
 12650  				Label:   "Disk",
 12651  				Summary: "Disk",
 12652  			},
 12653  			Key: "disk",
 12654  		},
 12655  		UnitInfo: &types.ElementDescription{
 12656  			Description: types.Description{
 12657  				Label:   "num",
 12658  				Summary: "Number",
 12659  			},
 12660  			Key: "number",
 12661  		},
 12662  		RollupType:          "summation",
 12663  		StatsType:           "delta",
 12664  		Level:               2,
 12665  		PerDeviceLevel:      3,
 12666  		AssociatedCounterId: nil,
 12667  	},
 12668  	{
 12669  		Key: 447,
 12670  		NameInfo: &types.ElementDescription{
 12671  			Description: types.Description{
 12672  				Label:   "Physical device read latency",
 12673  				Summary: "Average amount of time, in milliseconds, to read from the physical device",
 12674  			},
 12675  			Key: "deviceReadLatency",
 12676  		},
 12677  		GroupInfo: &types.ElementDescription{
 12678  			Description: types.Description{
 12679  				Label:   "Disk",
 12680  				Summary: "Disk",
 12681  			},
 12682  			Key: "disk",
 12683  		},
 12684  		UnitInfo: &types.ElementDescription{
 12685  			Description: types.Description{
 12686  				Label:   "ms",
 12687  				Summary: "Millisecond",
 12688  			},
 12689  			Key: "millisecond",
 12690  		},
 12691  		RollupType:          "average",
 12692  		StatsType:           "absolute",
 12693  		Level:               2,
 12694  		PerDeviceLevel:      3,
 12695  		AssociatedCounterId: nil,
 12696  	},
 12697  	{
 12698  		Key: 448,
 12699  		NameInfo: &types.ElementDescription{
 12700  			Description: types.Description{
 12701  				Label:   "Kernel read latency",
 12702  				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI read command",
 12703  			},
 12704  			Key: "kernelReadLatency",
 12705  		},
 12706  		GroupInfo: &types.ElementDescription{
 12707  			Description: types.Description{
 12708  				Label:   "Disk",
 12709  				Summary: "Disk",
 12710  			},
 12711  			Key: "disk",
 12712  		},
 12713  		UnitInfo: &types.ElementDescription{
 12714  			Description: types.Description{
 12715  				Label:   "ms",
 12716  				Summary: "Millisecond",
 12717  			},
 12718  			Key: "millisecond",
 12719  		},
 12720  		RollupType:          "average",
 12721  		StatsType:           "absolute",
 12722  		Level:               2,
 12723  		PerDeviceLevel:      3,
 12724  		AssociatedCounterId: nil,
 12725  	},
 12726  	{
 12727  		Key: 449,
 12728  		NameInfo: &types.ElementDescription{
 12729  			Description: types.Description{
 12730  				Label:   "Read latency",
 12731  				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",
 12732  			},
 12733  			Key: "totalReadLatency",
 12734  		},
 12735  		GroupInfo: &types.ElementDescription{
 12736  			Description: types.Description{
 12737  				Label:   "Disk",
 12738  				Summary: "Disk",
 12739  			},
 12740  			Key: "disk",
 12741  		},
 12742  		UnitInfo: &types.ElementDescription{
 12743  			Description: types.Description{
 12744  				Label:   "ms",
 12745  				Summary: "Millisecond",
 12746  			},
 12747  			Key: "millisecond",
 12748  		},
 12749  		RollupType:          "average",
 12750  		StatsType:           "absolute",
 12751  		Level:               2,
 12752  		PerDeviceLevel:      3,
 12753  		AssociatedCounterId: nil,
 12754  	},
 12755  	{
 12756  		Key: 450,
 12757  		NameInfo: &types.ElementDescription{
 12758  			Description: types.Description{
 12759  				Label:   "Queue read latency",
 12760  				Summary: "Average amount of time spent in the VMkernel queue, per SCSI read command, during the collection interval",
 12761  			},
 12762  			Key: "queueReadLatency",
 12763  		},
 12764  		GroupInfo: &types.ElementDescription{
 12765  			Description: types.Description{
 12766  				Label:   "Disk",
 12767  				Summary: "Disk",
 12768  			},
 12769  			Key: "disk",
 12770  		},
 12771  		UnitInfo: &types.ElementDescription{
 12772  			Description: types.Description{
 12773  				Label:   "ms",
 12774  				Summary: "Millisecond",
 12775  			},
 12776  			Key: "millisecond",
 12777  		},
 12778  		RollupType:          "average",
 12779  		StatsType:           "absolute",
 12780  		Level:               2,
 12781  		PerDeviceLevel:      3,
 12782  		AssociatedCounterId: nil,
 12783  	},
 12784  	{
 12785  		Key: 451,
 12786  		NameInfo: &types.ElementDescription{
 12787  			Description: types.Description{
 12788  				Label:   "Physical device write latency",
 12789  				Summary: "Average amount of time, in milliseconds, to write to the physical device",
 12790  			},
 12791  			Key: "deviceWriteLatency",
 12792  		},
 12793  		GroupInfo: &types.ElementDescription{
 12794  			Description: types.Description{
 12795  				Label:   "Disk",
 12796  				Summary: "Disk",
 12797  			},
 12798  			Key: "disk",
 12799  		},
 12800  		UnitInfo: &types.ElementDescription{
 12801  			Description: types.Description{
 12802  				Label:   "ms",
 12803  				Summary: "Millisecond",
 12804  			},
 12805  			Key: "millisecond",
 12806  		},
 12807  		RollupType:          "average",
 12808  		StatsType:           "absolute",
 12809  		Level:               2,
 12810  		PerDeviceLevel:      3,
 12811  		AssociatedCounterId: nil,
 12812  	},
 12813  	{
 12814  		Key: 452,
 12815  		NameInfo: &types.ElementDescription{
 12816  			Description: types.Description{
 12817  				Label:   "Kernel write latency",
 12818  				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI write command",
 12819  			},
 12820  			Key: "kernelWriteLatency",
 12821  		},
 12822  		GroupInfo: &types.ElementDescription{
 12823  			Description: types.Description{
 12824  				Label:   "Disk",
 12825  				Summary: "Disk",
 12826  			},
 12827  			Key: "disk",
 12828  		},
 12829  		UnitInfo: &types.ElementDescription{
 12830  			Description: types.Description{
 12831  				Label:   "ms",
 12832  				Summary: "Millisecond",
 12833  			},
 12834  			Key: "millisecond",
 12835  		},
 12836  		RollupType:          "average",
 12837  		StatsType:           "absolute",
 12838  		Level:               2,
 12839  		PerDeviceLevel:      3,
 12840  		AssociatedCounterId: nil,
 12841  	},
 12842  	{
 12843  		Key: 453,
 12844  		NameInfo: &types.ElementDescription{
 12845  			Description: types.Description{
 12846  				Label:   "Write latency",
 12847  				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",
 12848  			},
 12849  			Key: "totalWriteLatency",
 12850  		},
 12851  		GroupInfo: &types.ElementDescription{
 12852  			Description: types.Description{
 12853  				Label:   "Disk",
 12854  				Summary: "Disk",
 12855  			},
 12856  			Key: "disk",
 12857  		},
 12858  		UnitInfo: &types.ElementDescription{
 12859  			Description: types.Description{
 12860  				Label:   "ms",
 12861  				Summary: "Millisecond",
 12862  			},
 12863  			Key: "millisecond",
 12864  		},
 12865  		RollupType:          "average",
 12866  		StatsType:           "absolute",
 12867  		Level:               2,
 12868  		PerDeviceLevel:      3,
 12869  		AssociatedCounterId: nil,
 12870  	},
 12871  	{
 12872  		Key: 454,
 12873  		NameInfo: &types.ElementDescription{
 12874  			Description: types.Description{
 12875  				Label:   "Queue write latency",
 12876  				Summary: "Average amount of time spent in the VMkernel queue, per SCSI write command, during the collection interval",
 12877  			},
 12878  			Key: "queueWriteLatency",
 12879  		},
 12880  		GroupInfo: &types.ElementDescription{
 12881  			Description: types.Description{
 12882  				Label:   "Disk",
 12883  				Summary: "Disk",
 12884  			},
 12885  			Key: "disk",
 12886  		},
 12887  		UnitInfo: &types.ElementDescription{
 12888  			Description: types.Description{
 12889  				Label:   "ms",
 12890  				Summary: "Millisecond",
 12891  			},
 12892  			Key: "millisecond",
 12893  		},
 12894  		RollupType:          "average",
 12895  		StatsType:           "absolute",
 12896  		Level:               2,
 12897  		PerDeviceLevel:      3,
 12898  		AssociatedCounterId: nil,
 12899  	},
 12900  	{
 12901  		Key: 455,
 12902  		NameInfo: &types.ElementDescription{
 12903  			Description: types.Description{
 12904  				Label:   "Physical device command latency",
 12905  				Summary: "Average amount of time, in milliseconds, to complete a SCSI command from the physical device",
 12906  			},
 12907  			Key: "deviceLatency",
 12908  		},
 12909  		GroupInfo: &types.ElementDescription{
 12910  			Description: types.Description{
 12911  				Label:   "Disk",
 12912  				Summary: "Disk",
 12913  			},
 12914  			Key: "disk",
 12915  		},
 12916  		UnitInfo: &types.ElementDescription{
 12917  			Description: types.Description{
 12918  				Label:   "ms",
 12919  				Summary: "Millisecond",
 12920  			},
 12921  			Key: "millisecond",
 12922  		},
 12923  		RollupType:          "average",
 12924  		StatsType:           "absolute",
 12925  		Level:               1,
 12926  		PerDeviceLevel:      3,
 12927  		AssociatedCounterId: nil,
 12928  	},
 12929  	{
 12930  		Key: 456,
 12931  		NameInfo: &types.ElementDescription{
 12932  			Description: types.Description{
 12933  				Label:   "Kernel command latency",
 12934  				Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI command",
 12935  			},
 12936  			Key: "kernelLatency",
 12937  		},
 12938  		GroupInfo: &types.ElementDescription{
 12939  			Description: types.Description{
 12940  				Label:   "Disk",
 12941  				Summary: "Disk",
 12942  			},
 12943  			Key: "disk",
 12944  		},
 12945  		UnitInfo: &types.ElementDescription{
 12946  			Description: types.Description{
 12947  				Label:   "ms",
 12948  				Summary: "Millisecond",
 12949  			},
 12950  			Key: "millisecond",
 12951  		},
 12952  		RollupType:          "average",
 12953  		StatsType:           "absolute",
 12954  		Level:               2,
 12955  		PerDeviceLevel:      3,
 12956  		AssociatedCounterId: nil,
 12957  	},
 12958  	{
 12959  		Key: 457,
 12960  		NameInfo: &types.ElementDescription{
 12961  			Description: types.Description{
 12962  				Label:   "Queue command latency",
 12963  				Summary: "Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval",
 12964  			},
 12965  			Key: "queueLatency",
 12966  		},
 12967  		GroupInfo: &types.ElementDescription{
 12968  			Description: types.Description{
 12969  				Label:   "Disk",
 12970  				Summary: "Disk",
 12971  			},
 12972  			Key: "disk",
 12973  		},
 12974  		UnitInfo: &types.ElementDescription{
 12975  			Description: types.Description{
 12976  				Label:   "ms",
 12977  				Summary: "Millisecond",
 12978  			},
 12979  			Key: "millisecond",
 12980  		},
 12981  		RollupType:          "average",
 12982  		StatsType:           "absolute",
 12983  		Level:               2,
 12984  		PerDeviceLevel:      3,
 12985  		AssociatedCounterId: nil,
 12986  	},
 12987  	{
 12988  		Key: 458,
 12989  		NameInfo: &types.ElementDescription{
 12990  			Description: types.Description{
 12991  				Label:   "Maximum queue depth",
 12992  				Summary: "Maximum queue depth",
 12993  			},
 12994  			Key: "maxQueueDepth",
 12995  		},
 12996  		GroupInfo: &types.ElementDescription{
 12997  			Description: types.Description{
 12998  				Label:   "Disk",
 12999  				Summary: "Disk",
 13000  			},
 13001  			Key: "disk",
 13002  		},
 13003  		UnitInfo: &types.ElementDescription{
 13004  			Description: types.Description{
 13005  				Label:   "num",
 13006  				Summary: "Number",
 13007  			},
 13008  			Key: "number",
 13009  		},
 13010  		RollupType:          "average",
 13011  		StatsType:           "absolute",
 13012  		Level:               1,
 13013  		PerDeviceLevel:      3,
 13014  		AssociatedCounterId: nil,
 13015  	},
 13016  	{
 13017  		Key: 459,
 13018  		NameInfo: &types.ElementDescription{
 13019  			Description: types.Description{
 13020  				Label:   "Average commands issued per second",
 13021  				Summary: "Average number of SCSI commands issued per second during the collection interval",
 13022  			},
 13023  			Key: "commandsAveraged",
 13024  		},
 13025  		GroupInfo: &types.ElementDescription{
 13026  			Description: types.Description{
 13027  				Label:   "Disk",
 13028  				Summary: "Disk",
 13029  			},
 13030  			Key: "disk",
 13031  		},
 13032  		UnitInfo: &types.ElementDescription{
 13033  			Description: types.Description{
 13034  				Label:   "num",
 13035  				Summary: "Number",
 13036  			},
 13037  			Key: "number",
 13038  		},
 13039  		RollupType:          "average",
 13040  		StatsType:           "rate",
 13041  		Level:               2,
 13042  		PerDeviceLevel:      3,
 13043  		AssociatedCounterId: nil,
 13044  	},
 13045  	{
 13046  		Key: 460,
 13047  		NameInfo: &types.ElementDescription{
 13048  			Description: types.Description{
 13049  				Label:   "Receive packets dropped",
 13050  				Summary: "Number of receives dropped",
 13051  			},
 13052  			Key: "droppedRx",
 13053  		},
 13054  		GroupInfo: &types.ElementDescription{
 13055  			Description: types.Description{
 13056  				Label:   "Network",
 13057  				Summary: "Network",
 13058  			},
 13059  			Key: "net",
 13060  		},
 13061  		UnitInfo: &types.ElementDescription{
 13062  			Description: types.Description{
 13063  				Label:   "num",
 13064  				Summary: "Number",
 13065  			},
 13066  			Key: "number",
 13067  		},
 13068  		RollupType:          "summation",
 13069  		StatsType:           "delta",
 13070  		Level:               2,
 13071  		PerDeviceLevel:      3,
 13072  		AssociatedCounterId: nil,
 13073  	},
 13074  	{
 13075  		Key: 461,
 13076  		NameInfo: &types.ElementDescription{
 13077  			Description: types.Description{
 13078  				Label:   "Transmit packets dropped",
 13079  				Summary: "Number of transmits dropped",
 13080  			},
 13081  			Key: "droppedTx",
 13082  		},
 13083  		GroupInfo: &types.ElementDescription{
 13084  			Description: types.Description{
 13085  				Label:   "Network",
 13086  				Summary: "Network",
 13087  			},
 13088  			Key: "net",
 13089  		},
 13090  		UnitInfo: &types.ElementDescription{
 13091  			Description: types.Description{
 13092  				Label:   "num",
 13093  				Summary: "Number",
 13094  			},
 13095  			Key: "number",
 13096  		},
 13097  		RollupType:          "summation",
 13098  		StatsType:           "delta",
 13099  		Level:               2,
 13100  		PerDeviceLevel:      3,
 13101  		AssociatedCounterId: nil,
 13102  	},
 13103  	{
 13104  		Key: 462,
 13105  		NameInfo: &types.ElementDescription{
 13106  			Description: types.Description{
 13107  				Label:   "Data receive rate",
 13108  				Summary: "Average amount of data received per second",
 13109  			},
 13110  			Key: "bytesRx",
 13111  		},
 13112  		GroupInfo: &types.ElementDescription{
 13113  			Description: types.Description{
 13114  				Label:   "Network",
 13115  				Summary: "Network",
 13116  			},
 13117  			Key: "net",
 13118  		},
 13119  		UnitInfo: &types.ElementDescription{
 13120  			Description: types.Description{
 13121  				Label:   "KBps",
 13122  				Summary: "Kilobytes per second",
 13123  			},
 13124  			Key: "kiloBytesPerSecond",
 13125  		},
 13126  		RollupType:          "average",
 13127  		StatsType:           "rate",
 13128  		Level:               2,
 13129  		PerDeviceLevel:      3,
 13130  		AssociatedCounterId: nil,
 13131  	},
 13132  	{
 13133  		Key: 463,
 13134  		NameInfo: &types.ElementDescription{
 13135  			Description: types.Description{
 13136  				Label:   "Data transmit rate",
 13137  				Summary: "Average amount of data transmitted per second",
 13138  			},
 13139  			Key: "bytesTx",
 13140  		},
 13141  		GroupInfo: &types.ElementDescription{
 13142  			Description: types.Description{
 13143  				Label:   "Network",
 13144  				Summary: "Network",
 13145  			},
 13146  			Key: "net",
 13147  		},
 13148  		UnitInfo: &types.ElementDescription{
 13149  			Description: types.Description{
 13150  				Label:   "KBps",
 13151  				Summary: "Kilobytes per second",
 13152  			},
 13153  			Key: "kiloBytesPerSecond",
 13154  		},
 13155  		RollupType:          "average",
 13156  		StatsType:           "rate",
 13157  		Level:               2,
 13158  		PerDeviceLevel:      3,
 13159  		AssociatedCounterId: nil,
 13160  	},
 13161  	{
 13162  		Key: 464,
 13163  		NameInfo: &types.ElementDescription{
 13164  			Description: types.Description{
 13165  				Label:   "Broadcast receives",
 13166  				Summary: "Number of broadcast packets received during the sampling interval",
 13167  			},
 13168  			Key: "broadcastRx",
 13169  		},
 13170  		GroupInfo: &types.ElementDescription{
 13171  			Description: types.Description{
 13172  				Label:   "Network",
 13173  				Summary: "Network",
 13174  			},
 13175  			Key: "net",
 13176  		},
 13177  		UnitInfo: &types.ElementDescription{
 13178  			Description: types.Description{
 13179  				Label:   "num",
 13180  				Summary: "Number",
 13181  			},
 13182  			Key: "number",
 13183  		},
 13184  		RollupType:          "summation",
 13185  		StatsType:           "delta",
 13186  		Level:               2,
 13187  		PerDeviceLevel:      3,
 13188  		AssociatedCounterId: nil,
 13189  	},
 13190  	{
 13191  		Key: 465,
 13192  		NameInfo: &types.ElementDescription{
 13193  			Description: types.Description{
 13194  				Label:   "Broadcast transmits",
 13195  				Summary: "Number of broadcast packets transmitted during the sampling interval",
 13196  			},
 13197  			Key: "broadcastTx",
 13198  		},
 13199  		GroupInfo: &types.ElementDescription{
 13200  			Description: types.Description{
 13201  				Label:   "Network",
 13202  				Summary: "Network",
 13203  			},
 13204  			Key: "net",
 13205  		},
 13206  		UnitInfo: &types.ElementDescription{
 13207  			Description: types.Description{
 13208  				Label:   "num",
 13209  				Summary: "Number",
 13210  			},
 13211  			Key: "number",
 13212  		},
 13213  		RollupType:          "summation",
 13214  		StatsType:           "delta",
 13215  		Level:               2,
 13216  		PerDeviceLevel:      3,
 13217  		AssociatedCounterId: nil,
 13218  	},
 13219  	{
 13220  		Key: 466,
 13221  		NameInfo: &types.ElementDescription{
 13222  			Description: types.Description{
 13223  				Label:   "Multicast receives",
 13224  				Summary: "Number of multicast packets received during the sampling interval",
 13225  			},
 13226  			Key: "multicastRx",
 13227  		},
 13228  		GroupInfo: &types.ElementDescription{
 13229  			Description: types.Description{
 13230  				Label:   "Network",
 13231  				Summary: "Network",
 13232  			},
 13233  			Key: "net",
 13234  		},
 13235  		UnitInfo: &types.ElementDescription{
 13236  			Description: types.Description{
 13237  				Label:   "num",
 13238  				Summary: "Number",
 13239  			},
 13240  			Key: "number",
 13241  		},
 13242  		RollupType:          "summation",
 13243  		StatsType:           "delta",
 13244  		Level:               2,
 13245  		PerDeviceLevel:      3,
 13246  		AssociatedCounterId: nil,
 13247  	},
 13248  	{
 13249  		Key: 467,
 13250  		NameInfo: &types.ElementDescription{
 13251  			Description: types.Description{
 13252  				Label:   "Multicast transmits",
 13253  				Summary: "Number of multicast packets transmitted during the sampling interval",
 13254  			},
 13255  			Key: "multicastTx",
 13256  		},
 13257  		GroupInfo: &types.ElementDescription{
 13258  			Description: types.Description{
 13259  				Label:   "Network",
 13260  				Summary: "Network",
 13261  			},
 13262  			Key: "net",
 13263  		},
 13264  		UnitInfo: &types.ElementDescription{
 13265  			Description: types.Description{
 13266  				Label:   "num",
 13267  				Summary: "Number",
 13268  			},
 13269  			Key: "number",
 13270  		},
 13271  		RollupType:          "summation",
 13272  		StatsType:           "delta",
 13273  		Level:               2,
 13274  		PerDeviceLevel:      3,
 13275  		AssociatedCounterId: nil,
 13276  	},
 13277  	{
 13278  		Key: 468,
 13279  		NameInfo: &types.ElementDescription{
 13280  			Description: types.Description{
 13281  				Label:   "Packet receive errors",
 13282  				Summary: "Number of packets with errors received during the sampling interval",
 13283  			},
 13284  			Key: "errorsRx",
 13285  		},
 13286  		GroupInfo: &types.ElementDescription{
 13287  			Description: types.Description{
 13288  				Label:   "Network",
 13289  				Summary: "Network",
 13290  			},
 13291  			Key: "net",
 13292  		},
 13293  		UnitInfo: &types.ElementDescription{
 13294  			Description: types.Description{
 13295  				Label:   "num",
 13296  				Summary: "Number",
 13297  			},
 13298  			Key: "number",
 13299  		},
 13300  		RollupType:          "summation",
 13301  		StatsType:           "delta",
 13302  		Level:               2,
 13303  		PerDeviceLevel:      3,
 13304  		AssociatedCounterId: nil,
 13305  	},
 13306  	{
 13307  		Key: 469,
 13308  		NameInfo: &types.ElementDescription{
 13309  			Description: types.Description{
 13310  				Label:   "Packet transmit errors",
 13311  				Summary: "Number of packets with errors transmitted during the sampling interval",
 13312  			},
 13313  			Key: "errorsTx",
 13314  		},
 13315  		GroupInfo: &types.ElementDescription{
 13316  			Description: types.Description{
 13317  				Label:   "Network",
 13318  				Summary: "Network",
 13319  			},
 13320  			Key: "net",
 13321  		},
 13322  		UnitInfo: &types.ElementDescription{
 13323  			Description: types.Description{
 13324  				Label:   "num",
 13325  				Summary: "Number",
 13326  			},
 13327  			Key: "number",
 13328  		},
 13329  		RollupType:          "summation",
 13330  		StatsType:           "delta",
 13331  		Level:               2,
 13332  		PerDeviceLevel:      3,
 13333  		AssociatedCounterId: nil,
 13334  	},
 13335  	{
 13336  		Key: 470,
 13337  		NameInfo: &types.ElementDescription{
 13338  			Description: types.Description{
 13339  				Label:   "Unknown protocol frames",
 13340  				Summary: "Number of frames with unknown protocol received during the sampling interval",
 13341  			},
 13342  			Key: "unknownProtos",
 13343  		},
 13344  		GroupInfo: &types.ElementDescription{
 13345  			Description: types.Description{
 13346  				Label:   "Network",
 13347  				Summary: "Network",
 13348  			},
 13349  			Key: "net",
 13350  		},
 13351  		UnitInfo: &types.ElementDescription{
 13352  			Description: types.Description{
 13353  				Label:   "num",
 13354  				Summary: "Number",
 13355  			},
 13356  			Key: "number",
 13357  		},
 13358  		RollupType:          "summation",
 13359  		StatsType:           "delta",
 13360  		Level:               2,
 13361  		PerDeviceLevel:      3,
 13362  		AssociatedCounterId: nil,
 13363  	},
 13364  	{
 13365  		Key: 471,
 13366  		NameInfo: &types.ElementDescription{
 13367  			Description: types.Description{
 13368  				Label:   "pnicBytesRx",
 13369  				Summary: "pnicBytesRx",
 13370  			},
 13371  			Key: "pnicBytesRx",
 13372  		},
 13373  		GroupInfo: &types.ElementDescription{
 13374  			Description: types.Description{
 13375  				Label:   "Network",
 13376  				Summary: "Network",
 13377  			},
 13378  			Key: "net",
 13379  		},
 13380  		UnitInfo: &types.ElementDescription{
 13381  			Description: types.Description{
 13382  				Label:   "KBps",
 13383  				Summary: "Kilobytes per second",
 13384  			},
 13385  			Key: "kiloBytesPerSecond",
 13386  		},
 13387  		RollupType:          "average",
 13388  		StatsType:           "rate",
 13389  		Level:               4,
 13390  		PerDeviceLevel:      4,
 13391  		AssociatedCounterId: nil,
 13392  	},
 13393  	{
 13394  		Key: 472,
 13395  		NameInfo: &types.ElementDescription{
 13396  			Description: types.Description{
 13397  				Label:   "pnicBytesTx",
 13398  				Summary: "pnicBytesTx",
 13399  			},
 13400  			Key: "pnicBytesTx",
 13401  		},
 13402  		GroupInfo: &types.ElementDescription{
 13403  			Description: types.Description{
 13404  				Label:   "Network",
 13405  				Summary: "Network",
 13406  			},
 13407  			Key: "net",
 13408  		},
 13409  		UnitInfo: &types.ElementDescription{
 13410  			Description: types.Description{
 13411  				Label:   "KBps",
 13412  				Summary: "Kilobytes per second",
 13413  			},
 13414  			Key: "kiloBytesPerSecond",
 13415  		},
 13416  		RollupType:          "average",
 13417  		StatsType:           "rate",
 13418  		Level:               4,
 13419  		PerDeviceLevel:      4,
 13420  		AssociatedCounterId: nil,
 13421  	},
 13422  	{
 13423  		Key: 473,
 13424  		NameInfo: &types.ElementDescription{
 13425  			Description: types.Description{
 13426  				Label:   "Heartbeat",
 13427  				Summary: "Number of heartbeats issued per virtual machine during the interval",
 13428  			},
 13429  			Key: "heartbeat",
 13430  		},
 13431  		GroupInfo: &types.ElementDescription{
 13432  			Description: types.Description{
 13433  				Label:   "System",
 13434  				Summary: "System",
 13435  			},
 13436  			Key: "sys",
 13437  		},
 13438  		UnitInfo: &types.ElementDescription{
 13439  			Description: types.Description{
 13440  				Label:   "num",
 13441  				Summary: "Number",
 13442  			},
 13443  			Key: "number",
 13444  		},
 13445  		RollupType:          "latest",
 13446  		StatsType:           "absolute",
 13447  		Level:               4,
 13448  		PerDeviceLevel:      4,
 13449  		AssociatedCounterId: nil,
 13450  	},
 13451  	{
 13452  		Key: 474,
 13453  		NameInfo: &types.ElementDescription{
 13454  			Description: types.Description{
 13455  				Label:   "Disk usage",
 13456  				Summary: "Amount of disk space usage for each mount point",
 13457  			},
 13458  			Key: "diskUsage",
 13459  		},
 13460  		GroupInfo: &types.ElementDescription{
 13461  			Description: types.Description{
 13462  				Label:   "System",
 13463  				Summary: "System",
 13464  			},
 13465  			Key: "sys",
 13466  		},
 13467  		UnitInfo: &types.ElementDescription{
 13468  			Description: types.Description{
 13469  				Label:   "%",
 13470  				Summary: "Percentage",
 13471  			},
 13472  			Key: "percent",
 13473  		},
 13474  		RollupType:          "latest",
 13475  		StatsType:           "absolute",
 13476  		Level:               3,
 13477  		PerDeviceLevel:      3,
 13478  		AssociatedCounterId: nil,
 13479  	},
 13480  	{
 13481  		Key: 475,
 13482  		NameInfo: &types.ElementDescription{
 13483  			Description: types.Description{
 13484  				Label:   "Resource CPU usage (None)",
 13485  				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
 13486  			},
 13487  			Key: "resourceCpuUsage",
 13488  		},
 13489  		GroupInfo: &types.ElementDescription{
 13490  			Description: types.Description{
 13491  				Label:   "System",
 13492  				Summary: "System",
 13493  			},
 13494  			Key: "sys",
 13495  		},
 13496  		UnitInfo: &types.ElementDescription{
 13497  			Description: types.Description{
 13498  				Label:   "MHz",
 13499  				Summary: "Megahertz",
 13500  			},
 13501  			Key: "megaHertz",
 13502  		},
 13503  		RollupType:          "none",
 13504  		StatsType:           "rate",
 13505  		Level:               4,
 13506  		PerDeviceLevel:      4,
 13507  		AssociatedCounterId: nil,
 13508  	},
 13509  	{
 13510  		Key: 476,
 13511  		NameInfo: &types.ElementDescription{
 13512  			Description: types.Description{
 13513  				Label:   "Resource CPU usage (Average)",
 13514  				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
 13515  			},
 13516  			Key: "resourceCpuUsage",
 13517  		},
 13518  		GroupInfo: &types.ElementDescription{
 13519  			Description: types.Description{
 13520  				Label:   "System",
 13521  				Summary: "System",
 13522  			},
 13523  			Key: "sys",
 13524  		},
 13525  		UnitInfo: &types.ElementDescription{
 13526  			Description: types.Description{
 13527  				Label:   "MHz",
 13528  				Summary: "Megahertz",
 13529  			},
 13530  			Key: "megaHertz",
 13531  		},
 13532  		RollupType:          "average",
 13533  		StatsType:           "rate",
 13534  		Level:               3,
 13535  		PerDeviceLevel:      3,
 13536  		AssociatedCounterId: nil,
 13537  	},
 13538  	{
 13539  		Key: 477,
 13540  		NameInfo: &types.ElementDescription{
 13541  			Description: types.Description{
 13542  				Label:   "Resource CPU usage (Maximum)",
 13543  				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
 13544  			},
 13545  			Key: "resourceCpuUsage",
 13546  		},
 13547  		GroupInfo: &types.ElementDescription{
 13548  			Description: types.Description{
 13549  				Label:   "System",
 13550  				Summary: "System",
 13551  			},
 13552  			Key: "sys",
 13553  		},
 13554  		UnitInfo: &types.ElementDescription{
 13555  			Description: types.Description{
 13556  				Label:   "MHz",
 13557  				Summary: "Megahertz",
 13558  			},
 13559  			Key: "megaHertz",
 13560  		},
 13561  		RollupType:          "maximum",
 13562  		StatsType:           "rate",
 13563  		Level:               4,
 13564  		PerDeviceLevel:      4,
 13565  		AssociatedCounterId: nil,
 13566  	},
 13567  	{
 13568  		Key: 478,
 13569  		NameInfo: &types.ElementDescription{
 13570  			Description: types.Description{
 13571  				Label:   "Resource CPU usage (Minimum)",
 13572  				Summary: "Amount of CPU used by the Service Console and other applications during the interval",
 13573  			},
 13574  			Key: "resourceCpuUsage",
 13575  		},
 13576  		GroupInfo: &types.ElementDescription{
 13577  			Description: types.Description{
 13578  				Label:   "System",
 13579  				Summary: "System",
 13580  			},
 13581  			Key: "sys",
 13582  		},
 13583  		UnitInfo: &types.ElementDescription{
 13584  			Description: types.Description{
 13585  				Label:   "MHz",
 13586  				Summary: "Megahertz",
 13587  			},
 13588  			Key: "megaHertz",
 13589  		},
 13590  		RollupType:          "minimum",
 13591  		StatsType:           "rate",
 13592  		Level:               4,
 13593  		PerDeviceLevel:      4,
 13594  		AssociatedCounterId: nil,
 13595  	},
 13596  	{
 13597  		Key: 479,
 13598  		NameInfo: &types.ElementDescription{
 13599  			Description: types.Description{
 13600  				Label:   "Resource memory touched",
 13601  				Summary: "Memory touched by the system resource group",
 13602  			},
 13603  			Key: "resourceMemTouched",
 13604  		},
 13605  		GroupInfo: &types.ElementDescription{
 13606  			Description: types.Description{
 13607  				Label:   "System",
 13608  				Summary: "System",
 13609  			},
 13610  			Key: "sys",
 13611  		},
 13612  		UnitInfo: &types.ElementDescription{
 13613  			Description: types.Description{
 13614  				Label:   "KB",
 13615  				Summary: "Kilobyte",
 13616  			},
 13617  			Key: "kiloBytes",
 13618  		},
 13619  		RollupType:          "latest",
 13620  		StatsType:           "absolute",
 13621  		Level:               3,
 13622  		PerDeviceLevel:      3,
 13623  		AssociatedCounterId: nil,
 13624  	},
 13625  	{
 13626  		Key: 480,
 13627  		NameInfo: &types.ElementDescription{
 13628  			Description: types.Description{
 13629  				Label:   "Resource memory mapped",
 13630  				Summary: "Memory mapped by the system resource group",
 13631  			},
 13632  			Key: "resourceMemMapped",
 13633  		},
 13634  		GroupInfo: &types.ElementDescription{
 13635  			Description: types.Description{
 13636  				Label:   "System",
 13637  				Summary: "System",
 13638  			},
 13639  			Key: "sys",
 13640  		},
 13641  		UnitInfo: &types.ElementDescription{
 13642  			Description: types.Description{
 13643  				Label:   "KB",
 13644  				Summary: "Kilobyte",
 13645  			},
 13646  			Key: "kiloBytes",
 13647  		},
 13648  		RollupType:          "latest",
 13649  		StatsType:           "absolute",
 13650  		Level:               3,
 13651  		PerDeviceLevel:      3,
 13652  		AssociatedCounterId: nil,
 13653  	},
 13654  	{
 13655  		Key: 481,
 13656  		NameInfo: &types.ElementDescription{
 13657  			Description: types.Description{
 13658  				Label:   "Resource memory share saved",
 13659  				Summary: "Memory saved due to sharing by the system resource group",
 13660  			},
 13661  			Key: "resourceMemShared",
 13662  		},
 13663  		GroupInfo: &types.ElementDescription{
 13664  			Description: types.Description{
 13665  				Label:   "System",
 13666  				Summary: "System",
 13667  			},
 13668  			Key: "sys",
 13669  		},
 13670  		UnitInfo: &types.ElementDescription{
 13671  			Description: types.Description{
 13672  				Label:   "KB",
 13673  				Summary: "Kilobyte",
 13674  			},
 13675  			Key: "kiloBytes",
 13676  		},
 13677  		RollupType:          "latest",
 13678  		StatsType:           "absolute",
 13679  		Level:               3,
 13680  		PerDeviceLevel:      3,
 13681  		AssociatedCounterId: nil,
 13682  	},
 13683  	{
 13684  		Key: 482,
 13685  		NameInfo: &types.ElementDescription{
 13686  			Description: types.Description{
 13687  				Label:   "Resource memory swapped",
 13688  				Summary: "Memory swapped out by the system resource group",
 13689  			},
 13690  			Key: "resourceMemSwapped",
 13691  		},
 13692  		GroupInfo: &types.ElementDescription{
 13693  			Description: types.Description{
 13694  				Label:   "System",
 13695  				Summary: "System",
 13696  			},
 13697  			Key: "sys",
 13698  		},
 13699  		UnitInfo: &types.ElementDescription{
 13700  			Description: types.Description{
 13701  				Label:   "KB",
 13702  				Summary: "Kilobyte",
 13703  			},
 13704  			Key: "kiloBytes",
 13705  		},
 13706  		RollupType:          "latest",
 13707  		StatsType:           "absolute",
 13708  		Level:               3,
 13709  		PerDeviceLevel:      3,
 13710  		AssociatedCounterId: nil,
 13711  	},
 13712  	{
 13713  		Key: 483,
 13714  		NameInfo: &types.ElementDescription{
 13715  			Description: types.Description{
 13716  				Label:   "Resource memory overhead",
 13717  				Summary: "Overhead memory consumed by the system resource group",
 13718  			},
 13719  			Key: "resourceMemOverhead",
 13720  		},
 13721  		GroupInfo: &types.ElementDescription{
 13722  			Description: types.Description{
 13723  				Label:   "System",
 13724  				Summary: "System",
 13725  			},
 13726  			Key: "sys",
 13727  		},
 13728  		UnitInfo: &types.ElementDescription{
 13729  			Description: types.Description{
 13730  				Label:   "KB",
 13731  				Summary: "Kilobyte",
 13732  			},
 13733  			Key: "kiloBytes",
 13734  		},
 13735  		RollupType:          "latest",
 13736  		StatsType:           "absolute",
 13737  		Level:               3,
 13738  		PerDeviceLevel:      3,
 13739  		AssociatedCounterId: nil,
 13740  	},
 13741  	{
 13742  		Key: 484,
 13743  		NameInfo: &types.ElementDescription{
 13744  			Description: types.Description{
 13745  				Label:   "Resource memory shared",
 13746  				Summary: "Memory shared by the system resource group",
 13747  			},
 13748  			Key: "resourceMemCow",
 13749  		},
 13750  		GroupInfo: &types.ElementDescription{
 13751  			Description: types.Description{
 13752  				Label:   "System",
 13753  				Summary: "System",
 13754  			},
 13755  			Key: "sys",
 13756  		},
 13757  		UnitInfo: &types.ElementDescription{
 13758  			Description: types.Description{
 13759  				Label:   "KB",
 13760  				Summary: "Kilobyte",
 13761  			},
 13762  			Key: "kiloBytes",
 13763  		},
 13764  		RollupType:          "latest",
 13765  		StatsType:           "absolute",
 13766  		Level:               3,
 13767  		PerDeviceLevel:      3,
 13768  		AssociatedCounterId: nil,
 13769  	},
 13770  	{
 13771  		Key: 485,
 13772  		NameInfo: &types.ElementDescription{
 13773  			Description: types.Description{
 13774  				Label:   "Resource memory zero",
 13775  				Summary: "Zero filled memory used by the system resource group",
 13776  			},
 13777  			Key: "resourceMemZero",
 13778  		},
 13779  		GroupInfo: &types.ElementDescription{
 13780  			Description: types.Description{
 13781  				Label:   "System",
 13782  				Summary: "System",
 13783  			},
 13784  			Key: "sys",
 13785  		},
 13786  		UnitInfo: &types.ElementDescription{
 13787  			Description: types.Description{
 13788  				Label:   "KB",
 13789  				Summary: "Kilobyte",
 13790  			},
 13791  			Key: "kiloBytes",
 13792  		},
 13793  		RollupType:          "latest",
 13794  		StatsType:           "absolute",
 13795  		Level:               3,
 13796  		PerDeviceLevel:      3,
 13797  		AssociatedCounterId: nil,
 13798  	},
 13799  	{
 13800  		Key: 486,
 13801  		NameInfo: &types.ElementDescription{
 13802  			Description: types.Description{
 13803  				Label:   "Resource CPU running (1 min. average)",
 13804  				Summary: "CPU running average over 1 minute of the system resource group",
 13805  			},
 13806  			Key: "resourceCpuRun1",
 13807  		},
 13808  		GroupInfo: &types.ElementDescription{
 13809  			Description: types.Description{
 13810  				Label:   "System",
 13811  				Summary: "System",
 13812  			},
 13813  			Key: "sys",
 13814  		},
 13815  		UnitInfo: &types.ElementDescription{
 13816  			Description: types.Description{
 13817  				Label:   "%",
 13818  				Summary: "Percentage",
 13819  			},
 13820  			Key: "percent",
 13821  		},
 13822  		RollupType:          "latest",
 13823  		StatsType:           "absolute",
 13824  		Level:               3,
 13825  		PerDeviceLevel:      3,
 13826  		AssociatedCounterId: nil,
 13827  	},
 13828  	{
 13829  		Key: 487,
 13830  		NameInfo: &types.ElementDescription{
 13831  			Description: types.Description{
 13832  				Label:   "Resource CPU active (1 min average)",
 13833  				Summary: "CPU active average over 1 minute of the system resource group",
 13834  			},
 13835  			Key: "resourceCpuAct1",
 13836  		},
 13837  		GroupInfo: &types.ElementDescription{
 13838  			Description: types.Description{
 13839  				Label:   "System",
 13840  				Summary: "System",
 13841  			},
 13842  			Key: "sys",
 13843  		},
 13844  		UnitInfo: &types.ElementDescription{
 13845  			Description: types.Description{
 13846  				Label:   "%",
 13847  				Summary: "Percentage",
 13848  			},
 13849  			Key: "percent",
 13850  		},
 13851  		RollupType:          "latest",
 13852  		StatsType:           "absolute",
 13853  		Level:               3,
 13854  		PerDeviceLevel:      3,
 13855  		AssociatedCounterId: nil,
 13856  	},
 13857  	{
 13858  		Key: 488,
 13859  		NameInfo: &types.ElementDescription{
 13860  			Description: types.Description{
 13861  				Label:   "Resource CPU maximum limited (1 min)",
 13862  				Summary: "CPU maximum limited over 1 minute of the system resource group",
 13863  			},
 13864  			Key: "resourceCpuMaxLimited1",
 13865  		},
 13866  		GroupInfo: &types.ElementDescription{
 13867  			Description: types.Description{
 13868  				Label:   "System",
 13869  				Summary: "System",
 13870  			},
 13871  			Key: "sys",
 13872  		},
 13873  		UnitInfo: &types.ElementDescription{
 13874  			Description: types.Description{
 13875  				Label:   "%",
 13876  				Summary: "Percentage",
 13877  			},
 13878  			Key: "percent",
 13879  		},
 13880  		RollupType:          "latest",
 13881  		StatsType:           "absolute",
 13882  		Level:               3,
 13883  		PerDeviceLevel:      3,
 13884  		AssociatedCounterId: nil,
 13885  	},
 13886  	{
 13887  		Key: 489,
 13888  		NameInfo: &types.ElementDescription{
 13889  			Description: types.Description{
 13890  				Label:   "Resource CPU running (5 min average)",
 13891  				Summary: "CPU running average over 5 minutes of the system resource group",
 13892  			},
 13893  			Key: "resourceCpuRun5",
 13894  		},
 13895  		GroupInfo: &types.ElementDescription{
 13896  			Description: types.Description{
 13897  				Label:   "System",
 13898  				Summary: "System",
 13899  			},
 13900  			Key: "sys",
 13901  		},
 13902  		UnitInfo: &types.ElementDescription{
 13903  			Description: types.Description{
 13904  				Label:   "%",
 13905  				Summary: "Percentage",
 13906  			},
 13907  			Key: "percent",
 13908  		},
 13909  		RollupType:          "latest",
 13910  		StatsType:           "absolute",
 13911  		Level:               3,
 13912  		PerDeviceLevel:      3,
 13913  		AssociatedCounterId: nil,
 13914  	},
 13915  	{
 13916  		Key: 490,
 13917  		NameInfo: &types.ElementDescription{
 13918  			Description: types.Description{
 13919  				Label:   "Resource CPU active (5 min average)",
 13920  				Summary: "CPU active average over 5 minutes of the system resource group",
 13921  			},
 13922  			Key: "resourceCpuAct5",
 13923  		},
 13924  		GroupInfo: &types.ElementDescription{
 13925  			Description: types.Description{
 13926  				Label:   "System",
 13927  				Summary: "System",
 13928  			},
 13929  			Key: "sys",
 13930  		},
 13931  		UnitInfo: &types.ElementDescription{
 13932  			Description: types.Description{
 13933  				Label:   "%",
 13934  				Summary: "Percentage",
 13935  			},
 13936  			Key: "percent",
 13937  		},
 13938  		RollupType:          "latest",
 13939  		StatsType:           "absolute",
 13940  		Level:               3,
 13941  		PerDeviceLevel:      3,
 13942  		AssociatedCounterId: nil,
 13943  	},
 13944  	{
 13945  		Key: 491,
 13946  		NameInfo: &types.ElementDescription{
 13947  			Description: types.Description{
 13948  				Label:   "Resource CPU maximum limited (5 min)",
 13949  				Summary: "CPU maximum limited over 5 minutes of the system resource group",
 13950  			},
 13951  			Key: "resourceCpuMaxLimited5",
 13952  		},
 13953  		GroupInfo: &types.ElementDescription{
 13954  			Description: types.Description{
 13955  				Label:   "System",
 13956  				Summary: "System",
 13957  			},
 13958  			Key: "sys",
 13959  		},
 13960  		UnitInfo: &types.ElementDescription{
 13961  			Description: types.Description{
 13962  				Label:   "%",
 13963  				Summary: "Percentage",
 13964  			},
 13965  			Key: "percent",
 13966  		},
 13967  		RollupType:          "latest",
 13968  		StatsType:           "absolute",
 13969  		Level:               3,
 13970  		PerDeviceLevel:      3,
 13971  		AssociatedCounterId: nil,
 13972  	},
 13973  	{
 13974  		Key: 492,
 13975  		NameInfo: &types.ElementDescription{
 13976  			Description: types.Description{
 13977  				Label:   "Resource CPU allocation minimum (in MHz)",
 13978  				Summary: "CPU allocation reservation (in MHz) of the system resource group",
 13979  			},
 13980  			Key: "resourceCpuAllocMin",
 13981  		},
 13982  		GroupInfo: &types.ElementDescription{
 13983  			Description: types.Description{
 13984  				Label:   "System",
 13985  				Summary: "System",
 13986  			},
 13987  			Key: "sys",
 13988  		},
 13989  		UnitInfo: &types.ElementDescription{
 13990  			Description: types.Description{
 13991  				Label:   "MHz",
 13992  				Summary: "Megahertz",
 13993  			},
 13994  			Key: "megaHertz",
 13995  		},
 13996  		RollupType:          "latest",
 13997  		StatsType:           "absolute",
 13998  		Level:               3,
 13999  		PerDeviceLevel:      3,
 14000  		AssociatedCounterId: nil,
 14001  	},
 14002  	{
 14003  		Key: 493,
 14004  		NameInfo: &types.ElementDescription{
 14005  			Description: types.Description{
 14006  				Label:   "Resource CPU allocation maximum (in MHz)",
 14007  				Summary: "CPU allocation limit (in MHz) of the system resource group",
 14008  			},
 14009  			Key: "resourceCpuAllocMax",
 14010  		},
 14011  		GroupInfo: &types.ElementDescription{
 14012  			Description: types.Description{
 14013  				Label:   "System",
 14014  				Summary: "System",
 14015  			},
 14016  			Key: "sys",
 14017  		},
 14018  		UnitInfo: &types.ElementDescription{
 14019  			Description: types.Description{
 14020  				Label:   "MHz",
 14021  				Summary: "Megahertz",
 14022  			},
 14023  			Key: "megaHertz",
 14024  		},
 14025  		RollupType:          "latest",
 14026  		StatsType:           "absolute",
 14027  		Level:               3,
 14028  		PerDeviceLevel:      3,
 14029  		AssociatedCounterId: nil,
 14030  	},
 14031  	{
 14032  		Key: 494,
 14033  		NameInfo: &types.ElementDescription{
 14034  			Description: types.Description{
 14035  				Label:   "Resource CPU allocation shares",
 14036  				Summary: "CPU allocation shares of the system resource group",
 14037  			},
 14038  			Key: "resourceCpuAllocShares",
 14039  		},
 14040  		GroupInfo: &types.ElementDescription{
 14041  			Description: types.Description{
 14042  				Label:   "System",
 14043  				Summary: "System",
 14044  			},
 14045  			Key: "sys",
 14046  		},
 14047  		UnitInfo: &types.ElementDescription{
 14048  			Description: types.Description{
 14049  				Label:   "num",
 14050  				Summary: "Number",
 14051  			},
 14052  			Key: "number",
 14053  		},
 14054  		RollupType:          "latest",
 14055  		StatsType:           "absolute",
 14056  		Level:               3,
 14057  		PerDeviceLevel:      3,
 14058  		AssociatedCounterId: nil,
 14059  	},
 14060  	{
 14061  		Key: 495,
 14062  		NameInfo: &types.ElementDescription{
 14063  			Description: types.Description{
 14064  				Label:   "Resource memory allocation minimum (in KB)",
 14065  				Summary: "Memory allocation reservation (in KB) of the system resource group",
 14066  			},
 14067  			Key: "resourceMemAllocMin",
 14068  		},
 14069  		GroupInfo: &types.ElementDescription{
 14070  			Description: types.Description{
 14071  				Label:   "System",
 14072  				Summary: "System",
 14073  			},
 14074  			Key: "sys",
 14075  		},
 14076  		UnitInfo: &types.ElementDescription{
 14077  			Description: types.Description{
 14078  				Label:   "KB",
 14079  				Summary: "Kilobyte",
 14080  			},
 14081  			Key: "kiloBytes",
 14082  		},
 14083  		RollupType:          "latest",
 14084  		StatsType:           "absolute",
 14085  		Level:               3,
 14086  		PerDeviceLevel:      3,
 14087  		AssociatedCounterId: nil,
 14088  	},
 14089  	{
 14090  		Key: 496,
 14091  		NameInfo: &types.ElementDescription{
 14092  			Description: types.Description{
 14093  				Label:   "Resource memory allocation maximum (in KB)",
 14094  				Summary: "Memory allocation limit (in KB) of the system resource group",
 14095  			},
 14096  			Key: "resourceMemAllocMax",
 14097  		},
 14098  		GroupInfo: &types.ElementDescription{
 14099  			Description: types.Description{
 14100  				Label:   "System",
 14101  				Summary: "System",
 14102  			},
 14103  			Key: "sys",
 14104  		},
 14105  		UnitInfo: &types.ElementDescription{
 14106  			Description: types.Description{
 14107  				Label:   "KB",
 14108  				Summary: "Kilobyte",
 14109  			},
 14110  			Key: "kiloBytes",
 14111  		},
 14112  		RollupType:          "latest",
 14113  		StatsType:           "absolute",
 14114  		Level:               3,
 14115  		PerDeviceLevel:      3,
 14116  		AssociatedCounterId: nil,
 14117  	},
 14118  	{
 14119  		Key: 497,
 14120  		NameInfo: &types.ElementDescription{
 14121  			Description: types.Description{
 14122  				Label:   "Resource memory allocation shares",
 14123  				Summary: "Memory allocation shares of the system resource group",
 14124  			},
 14125  			Key: "resourceMemAllocShares",
 14126  		},
 14127  		GroupInfo: &types.ElementDescription{
 14128  			Description: types.Description{
 14129  				Label:   "System",
 14130  				Summary: "System",
 14131  			},
 14132  			Key: "sys",
 14133  		},
 14134  		UnitInfo: &types.ElementDescription{
 14135  			Description: types.Description{
 14136  				Label:   "num",
 14137  				Summary: "Number",
 14138  			},
 14139  			Key: "number",
 14140  		},
 14141  		RollupType:          "latest",
 14142  		StatsType:           "absolute",
 14143  		Level:               3,
 14144  		PerDeviceLevel:      3,
 14145  		AssociatedCounterId: nil,
 14146  	},
 14147  	{
 14148  		Key: 498,
 14149  		NameInfo: &types.ElementDescription{
 14150  			Description: types.Description{
 14151  				Label:   "OS Uptime",
 14152  				Summary: "Total time elapsed, in seconds, since last operating system boot-up",
 14153  			},
 14154  			Key: "osUptime",
 14155  		},
 14156  		GroupInfo: &types.ElementDescription{
 14157  			Description: types.Description{
 14158  				Label:   "System",
 14159  				Summary: "System",
 14160  			},
 14161  			Key: "sys",
 14162  		},
 14163  		UnitInfo: &types.ElementDescription{
 14164  			Description: types.Description{
 14165  				Label:   "s",
 14166  				Summary: "Second",
 14167  			},
 14168  			Key: "second",
 14169  		},
 14170  		RollupType:          "latest",
 14171  		StatsType:           "absolute",
 14172  		Level:               4,
 14173  		PerDeviceLevel:      4,
 14174  		AssociatedCounterId: nil,
 14175  	},
 14176  	{
 14177  		Key: 499,
 14178  		NameInfo: &types.ElementDescription{
 14179  			Description: types.Description{
 14180  				Label:   "Resource memory consumed",
 14181  				Summary: "Memory consumed by the system resource group",
 14182  			},
 14183  			Key: "resourceMemConsumed",
 14184  		},
 14185  		GroupInfo: &types.ElementDescription{
 14186  			Description: types.Description{
 14187  				Label:   "System",
 14188  				Summary: "System",
 14189  			},
 14190  			Key: "sys",
 14191  		},
 14192  		UnitInfo: &types.ElementDescription{
 14193  			Description: types.Description{
 14194  				Label:   "KB",
 14195  				Summary: "Kilobyte",
 14196  			},
 14197  			Key: "kiloBytes",
 14198  		},
 14199  		RollupType:          "latest",
 14200  		StatsType:           "absolute",
 14201  		Level:               4,
 14202  		PerDeviceLevel:      4,
 14203  		AssociatedCounterId: nil,
 14204  	},
 14205  	{
 14206  		Key: 500,
 14207  		NameInfo: &types.ElementDescription{
 14208  			Description: types.Description{
 14209  				Label:   "File descriptors used",
 14210  				Summary: "Number of file descriptors used by the system resource group",
 14211  			},
 14212  			Key: "resourceFdUsage",
 14213  		},
 14214  		GroupInfo: &types.ElementDescription{
 14215  			Description: types.Description{
 14216  				Label:   "System",
 14217  				Summary: "System",
 14218  			},
 14219  			Key: "sys",
 14220  		},
 14221  		UnitInfo: &types.ElementDescription{
 14222  			Description: types.Description{
 14223  				Label:   "num",
 14224  				Summary: "Number",
 14225  			},
 14226  			Key: "number",
 14227  		},
 14228  		RollupType:          "latest",
 14229  		StatsType:           "absolute",
 14230  		Level:               4,
 14231  		PerDeviceLevel:      4,
 14232  		AssociatedCounterId: nil,
 14233  	},
 14234  	{
 14235  		Key: 501,
 14236  		NameInfo: &types.ElementDescription{
 14237  			Description: types.Description{
 14238  				Label:   "Active (1 min peak)",
 14239  				Summary: "CPU active peak over 1 minute",
 14240  			},
 14241  			Key: "actpk1",
 14242  		},
 14243  		GroupInfo: &types.ElementDescription{
 14244  			Description: types.Description{
 14245  				Label:   "Resource group CPU",
 14246  				Summary: "Resource group CPU",
 14247  			},
 14248  			Key: "rescpu",
 14249  		},
 14250  		UnitInfo: &types.ElementDescription{
 14251  			Description: types.Description{
 14252  				Label:   "%",
 14253  				Summary: "Percentage",
 14254  			},
 14255  			Key: "percent",
 14256  		},
 14257  		RollupType:          "latest",
 14258  		StatsType:           "absolute",
 14259  		Level:               3,
 14260  		PerDeviceLevel:      3,
 14261  		AssociatedCounterId: nil,
 14262  	},
 14263  	{
 14264  		Key: 502,
 14265  		NameInfo: &types.ElementDescription{
 14266  			Description: types.Description{
 14267  				Label:   "Running (1 min average)",
 14268  				Summary: "CPU running average over 1 minute",
 14269  			},
 14270  			Key: "runav1",
 14271  		},
 14272  		GroupInfo: &types.ElementDescription{
 14273  			Description: types.Description{
 14274  				Label:   "Resource group CPU",
 14275  				Summary: "Resource group CPU",
 14276  			},
 14277  			Key: "rescpu",
 14278  		},
 14279  		UnitInfo: &types.ElementDescription{
 14280  			Description: types.Description{
 14281  				Label:   "%",
 14282  				Summary: "Percentage",
 14283  			},
 14284  			Key: "percent",
 14285  		},
 14286  		RollupType:          "latest",
 14287  		StatsType:           "absolute",
 14288  		Level:               3,
 14289  		PerDeviceLevel:      3,
 14290  		AssociatedCounterId: nil,
 14291  	},
 14292  	{
 14293  		Key: 503,
 14294  		NameInfo: &types.ElementDescription{
 14295  			Description: types.Description{
 14296  				Label:   "Active (5 min average)",
 14297  				Summary: "CPU active average over 5 minutes",
 14298  			},
 14299  			Key: "actav5",
 14300  		},
 14301  		GroupInfo: &types.ElementDescription{
 14302  			Description: types.Description{
 14303  				Label:   "Resource group CPU",
 14304  				Summary: "Resource group CPU",
 14305  			},
 14306  			Key: "rescpu",
 14307  		},
 14308  		UnitInfo: &types.ElementDescription{
 14309  			Description: types.Description{
 14310  				Label:   "%",
 14311  				Summary: "Percentage",
 14312  			},
 14313  			Key: "percent",
 14314  		},
 14315  		RollupType:          "latest",
 14316  		StatsType:           "absolute",
 14317  		Level:               3,
 14318  		PerDeviceLevel:      3,
 14319  		AssociatedCounterId: nil,
 14320  	},
 14321  	{
 14322  		Key: 504,
 14323  		NameInfo: &types.ElementDescription{
 14324  			Description: types.Description{
 14325  				Label:   "Active (5 min peak)",
 14326  				Summary: "CPU active peak over 5 minutes",
 14327  			},
 14328  			Key: "actpk5",
 14329  		},
 14330  		GroupInfo: &types.ElementDescription{
 14331  			Description: types.Description{
 14332  				Label:   "Resource group CPU",
 14333  				Summary: "Resource group CPU",
 14334  			},
 14335  			Key: "rescpu",
 14336  		},
 14337  		UnitInfo: &types.ElementDescription{
 14338  			Description: types.Description{
 14339  				Label:   "%",
 14340  				Summary: "Percentage",
 14341  			},
 14342  			Key: "percent",
 14343  		},
 14344  		RollupType:          "latest",
 14345  		StatsType:           "absolute",
 14346  		Level:               3,
 14347  		PerDeviceLevel:      3,
 14348  		AssociatedCounterId: nil,
 14349  	},
 14350  	{
 14351  		Key: 505,
 14352  		NameInfo: &types.ElementDescription{
 14353  			Description: types.Description{
 14354  				Label:   "Running (5 min average)",
 14355  				Summary: "CPU running average over 5 minutes",
 14356  			},
 14357  			Key: "runav5",
 14358  		},
 14359  		GroupInfo: &types.ElementDescription{
 14360  			Description: types.Description{
 14361  				Label:   "Resource group CPU",
 14362  				Summary: "Resource group CPU",
 14363  			},
 14364  			Key: "rescpu",
 14365  		},
 14366  		UnitInfo: &types.ElementDescription{
 14367  			Description: types.Description{
 14368  				Label:   "%",
 14369  				Summary: "Percentage",
 14370  			},
 14371  			Key: "percent",
 14372  		},
 14373  		RollupType:          "latest",
 14374  		StatsType:           "absolute",
 14375  		Level:               3,
 14376  		PerDeviceLevel:      3,
 14377  		AssociatedCounterId: nil,
 14378  	},
 14379  	{
 14380  		Key: 506,
 14381  		NameInfo: &types.ElementDescription{
 14382  			Description: types.Description{
 14383  				Label:   "Active (15 min average)",
 14384  				Summary: "CPU active average over 15 minutes",
 14385  			},
 14386  			Key: "actav15",
 14387  		},
 14388  		GroupInfo: &types.ElementDescription{
 14389  			Description: types.Description{
 14390  				Label:   "Resource group CPU",
 14391  				Summary: "Resource group CPU",
 14392  			},
 14393  			Key: "rescpu",
 14394  		},
 14395  		UnitInfo: &types.ElementDescription{
 14396  			Description: types.Description{
 14397  				Label:   "%",
 14398  				Summary: "Percentage",
 14399  			},
 14400  			Key: "percent",
 14401  		},
 14402  		RollupType:          "latest",
 14403  		StatsType:           "absolute",
 14404  		Level:               3,
 14405  		PerDeviceLevel:      3,
 14406  		AssociatedCounterId: nil,
 14407  	},
 14408  	{
 14409  		Key: 507,
 14410  		NameInfo: &types.ElementDescription{
 14411  			Description: types.Description{
 14412  				Label:   "Active (15 min peak)",
 14413  				Summary: "CPU active peak over 15 minutes",
 14414  			},
 14415  			Key: "actpk15",
 14416  		},
 14417  		GroupInfo: &types.ElementDescription{
 14418  			Description: types.Description{
 14419  				Label:   "Resource group CPU",
 14420  				Summary: "Resource group CPU",
 14421  			},
 14422  			Key: "rescpu",
 14423  		},
 14424  		UnitInfo: &types.ElementDescription{
 14425  			Description: types.Description{
 14426  				Label:   "%",
 14427  				Summary: "Percentage",
 14428  			},
 14429  			Key: "percent",
 14430  		},
 14431  		RollupType:          "latest",
 14432  		StatsType:           "absolute",
 14433  		Level:               3,
 14434  		PerDeviceLevel:      3,
 14435  		AssociatedCounterId: nil,
 14436  	},
 14437  	{
 14438  		Key: 508,
 14439  		NameInfo: &types.ElementDescription{
 14440  			Description: types.Description{
 14441  				Label:   "Running (15 min average)",
 14442  				Summary: "CPU running average over 15 minutes",
 14443  			},
 14444  			Key: "runav15",
 14445  		},
 14446  		GroupInfo: &types.ElementDescription{
 14447  			Description: types.Description{
 14448  				Label:   "Resource group CPU",
 14449  				Summary: "Resource group CPU",
 14450  			},
 14451  			Key: "rescpu",
 14452  		},
 14453  		UnitInfo: &types.ElementDescription{
 14454  			Description: types.Description{
 14455  				Label:   "%",
 14456  				Summary: "Percentage",
 14457  			},
 14458  			Key: "percent",
 14459  		},
 14460  		RollupType:          "latest",
 14461  		StatsType:           "absolute",
 14462  		Level:               3,
 14463  		PerDeviceLevel:      3,
 14464  		AssociatedCounterId: nil,
 14465  	},
 14466  	{
 14467  		Key: 509,
 14468  		NameInfo: &types.ElementDescription{
 14469  			Description: types.Description{
 14470  				Label:   "Running (1 min peak)",
 14471  				Summary: "CPU running peak over 1 minute",
 14472  			},
 14473  			Key: "runpk1",
 14474  		},
 14475  		GroupInfo: &types.ElementDescription{
 14476  			Description: types.Description{
 14477  				Label:   "Resource group CPU",
 14478  				Summary: "Resource group CPU",
 14479  			},
 14480  			Key: "rescpu",
 14481  		},
 14482  		UnitInfo: &types.ElementDescription{
 14483  			Description: types.Description{
 14484  				Label:   "%",
 14485  				Summary: "Percentage",
 14486  			},
 14487  			Key: "percent",
 14488  		},
 14489  		RollupType:          "latest",
 14490  		StatsType:           "absolute",
 14491  		Level:               3,
 14492  		PerDeviceLevel:      3,
 14493  		AssociatedCounterId: nil,
 14494  	},
 14495  	{
 14496  		Key: 510,
 14497  		NameInfo: &types.ElementDescription{
 14498  			Description: types.Description{
 14499  				Label:   "Throttled (1 min average)",
 14500  				Summary: "Amount of CPU resources over the limit that were refused, average over 1 minute",
 14501  			},
 14502  			Key: "maxLimited1",
 14503  		},
 14504  		GroupInfo: &types.ElementDescription{
 14505  			Description: types.Description{
 14506  				Label:   "Resource group CPU",
 14507  				Summary: "Resource group CPU",
 14508  			},
 14509  			Key: "rescpu",
 14510  		},
 14511  		UnitInfo: &types.ElementDescription{
 14512  			Description: types.Description{
 14513  				Label:   "%",
 14514  				Summary: "Percentage",
 14515  			},
 14516  			Key: "percent",
 14517  		},
 14518  		RollupType:          "latest",
 14519  		StatsType:           "absolute",
 14520  		Level:               3,
 14521  		PerDeviceLevel:      3,
 14522  		AssociatedCounterId: nil,
 14523  	},
 14524  	{
 14525  		Key: 511,
 14526  		NameInfo: &types.ElementDescription{
 14527  			Description: types.Description{
 14528  				Label:   "Running (5 min peak)",
 14529  				Summary: "CPU running peak over 5 minutes",
 14530  			},
 14531  			Key: "runpk5",
 14532  		},
 14533  		GroupInfo: &types.ElementDescription{
 14534  			Description: types.Description{
 14535  				Label:   "Resource group CPU",
 14536  				Summary: "Resource group CPU",
 14537  			},
 14538  			Key: "rescpu",
 14539  		},
 14540  		UnitInfo: &types.ElementDescription{
 14541  			Description: types.Description{
 14542  				Label:   "%",
 14543  				Summary: "Percentage",
 14544  			},
 14545  			Key: "percent",
 14546  		},
 14547  		RollupType:          "latest",
 14548  		StatsType:           "absolute",
 14549  		Level:               3,
 14550  		PerDeviceLevel:      3,
 14551  		AssociatedCounterId: nil,
 14552  	},
 14553  	{
 14554  		Key: 512,
 14555  		NameInfo: &types.ElementDescription{
 14556  			Description: types.Description{
 14557  				Label:   "Throttled (5 min average)",
 14558  				Summary: "Amount of CPU resources over the limit that were refused, average over 5 minutes",
 14559  			},
 14560  			Key: "maxLimited5",
 14561  		},
 14562  		GroupInfo: &types.ElementDescription{
 14563  			Description: types.Description{
 14564  				Label:   "Resource group CPU",
 14565  				Summary: "Resource group CPU",
 14566  			},
 14567  			Key: "rescpu",
 14568  		},
 14569  		UnitInfo: &types.ElementDescription{
 14570  			Description: types.Description{
 14571  				Label:   "%",
 14572  				Summary: "Percentage",
 14573  			},
 14574  			Key: "percent",
 14575  		},
 14576  		RollupType:          "latest",
 14577  		StatsType:           "absolute",
 14578  		Level:               3,
 14579  		PerDeviceLevel:      3,
 14580  		AssociatedCounterId: nil,
 14581  	},
 14582  	{
 14583  		Key: 513,
 14584  		NameInfo: &types.ElementDescription{
 14585  			Description: types.Description{
 14586  				Label:   "Running (15 min peak)",
 14587  				Summary: "CPU running peak over 15 minutes",
 14588  			},
 14589  			Key: "runpk15",
 14590  		},
 14591  		GroupInfo: &types.ElementDescription{
 14592  			Description: types.Description{
 14593  				Label:   "Resource group CPU",
 14594  				Summary: "Resource group CPU",
 14595  			},
 14596  			Key: "rescpu",
 14597  		},
 14598  		UnitInfo: &types.ElementDescription{
 14599  			Description: types.Description{
 14600  				Label:   "%",
 14601  				Summary: "Percentage",
 14602  			},
 14603  			Key: "percent",
 14604  		},
 14605  		RollupType:          "latest",
 14606  		StatsType:           "absolute",
 14607  		Level:               3,
 14608  		PerDeviceLevel:      3,
 14609  		AssociatedCounterId: nil,
 14610  	},
 14611  	{
 14612  		Key: 514,
 14613  		NameInfo: &types.ElementDescription{
 14614  			Description: types.Description{
 14615  				Label:   "Throttled (15 min average)",
 14616  				Summary: "Amount of CPU resources over the limit that were refused, average over 15 minutes",
 14617  			},
 14618  			Key: "maxLimited15",
 14619  		},
 14620  		GroupInfo: &types.ElementDescription{
 14621  			Description: types.Description{
 14622  				Label:   "Resource group CPU",
 14623  				Summary: "Resource group CPU",
 14624  			},
 14625  			Key: "rescpu",
 14626  		},
 14627  		UnitInfo: &types.ElementDescription{
 14628  			Description: types.Description{
 14629  				Label:   "%",
 14630  				Summary: "Percentage",
 14631  			},
 14632  			Key: "percent",
 14633  		},
 14634  		RollupType:          "latest",
 14635  		StatsType:           "absolute",
 14636  		Level:               3,
 14637  		PerDeviceLevel:      3,
 14638  		AssociatedCounterId: nil,
 14639  	},
 14640  	{
 14641  		Key: 515,
 14642  		NameInfo: &types.ElementDescription{
 14643  			Description: types.Description{
 14644  				Label:   "Group CPU sample count",
 14645  				Summary: "Group CPU sample count",
 14646  			},
 14647  			Key: "sampleCount",
 14648  		},
 14649  		GroupInfo: &types.ElementDescription{
 14650  			Description: types.Description{
 14651  				Label:   "Resource group CPU",
 14652  				Summary: "Resource group CPU",
 14653  			},
 14654  			Key: "rescpu",
 14655  		},
 14656  		UnitInfo: &types.ElementDescription{
 14657  			Description: types.Description{
 14658  				Label:   "num",
 14659  				Summary: "Number",
 14660  			},
 14661  			Key: "number",
 14662  		},
 14663  		RollupType:          "latest",
 14664  		StatsType:           "absolute",
 14665  		Level:               3,
 14666  		PerDeviceLevel:      3,
 14667  		AssociatedCounterId: nil,
 14668  	},
 14669  	{
 14670  		Key: 516,
 14671  		NameInfo: &types.ElementDescription{
 14672  			Description: types.Description{
 14673  				Label:   "Group CPU sample period",
 14674  				Summary: "Group CPU sample period",
 14675  			},
 14676  			Key: "samplePeriod",
 14677  		},
 14678  		GroupInfo: &types.ElementDescription{
 14679  			Description: types.Description{
 14680  				Label:   "Resource group CPU",
 14681  				Summary: "Resource group CPU",
 14682  			},
 14683  			Key: "rescpu",
 14684  		},
 14685  		UnitInfo: &types.ElementDescription{
 14686  			Description: types.Description{
 14687  				Label:   "ms",
 14688  				Summary: "Millisecond",
 14689  			},
 14690  			Key: "millisecond",
 14691  		},
 14692  		RollupType:          "latest",
 14693  		StatsType:           "absolute",
 14694  		Level:               3,
 14695  		PerDeviceLevel:      3,
 14696  		AssociatedCounterId: nil,
 14697  	},
 14698  	{
 14699  		Key: 517,
 14700  		NameInfo: &types.ElementDescription{
 14701  			Description: types.Description{
 14702  				Label:   "Memory used",
 14703  				Summary: "Amount of total configured memory that is available for use",
 14704  			},
 14705  			Key: "memUsed",
 14706  		},
 14707  		GroupInfo: &types.ElementDescription{
 14708  			Description: types.Description{
 14709  				Label:   "Management agent",
 14710  				Summary: "Management agent",
 14711  			},
 14712  			Key: "managementAgent",
 14713  		},
 14714  		UnitInfo: &types.ElementDescription{
 14715  			Description: types.Description{
 14716  				Label:   "KB",
 14717  				Summary: "Kilobyte",
 14718  			},
 14719  			Key: "kiloBytes",
 14720  		},
 14721  		RollupType:          "average",
 14722  		StatsType:           "absolute",
 14723  		Level:               3,
 14724  		PerDeviceLevel:      3,
 14725  		AssociatedCounterId: nil,
 14726  	},
 14727  	{
 14728  		Key: 518,
 14729  		NameInfo: &types.ElementDescription{
 14730  			Description: types.Description{
 14731  				Label:   "Memory swap used",
 14732  				Summary: "Sum of the memory swapped by all powered-on virtual machines on the host",
 14733  			},
 14734  			Key: "swapUsed",
 14735  		},
 14736  		GroupInfo: &types.ElementDescription{
 14737  			Description: types.Description{
 14738  				Label:   "Management agent",
 14739  				Summary: "Management agent",
 14740  			},
 14741  			Key: "managementAgent",
 14742  		},
 14743  		UnitInfo: &types.ElementDescription{
 14744  			Description: types.Description{
 14745  				Label:   "KB",
 14746  				Summary: "Kilobyte",
 14747  			},
 14748  			Key: "kiloBytes",
 14749  		},
 14750  		RollupType:          "average",
 14751  		StatsType:           "absolute",
 14752  		Level:               3,
 14753  		PerDeviceLevel:      3,
 14754  		AssociatedCounterId: nil,
 14755  	},
 14756  	{
 14757  		Key: 519,
 14758  		NameInfo: &types.ElementDescription{
 14759  			Description: types.Description{
 14760  				Label:   "CPU usage",
 14761  				Summary: "Amount of Service Console CPU usage",
 14762  			},
 14763  			Key: "cpuUsage",
 14764  		},
 14765  		GroupInfo: &types.ElementDescription{
 14766  			Description: types.Description{
 14767  				Label:   "Management agent",
 14768  				Summary: "Management agent",
 14769  			},
 14770  			Key: "managementAgent",
 14771  		},
 14772  		UnitInfo: &types.ElementDescription{
 14773  			Description: types.Description{
 14774  				Label:   "MHz",
 14775  				Summary: "Megahertz",
 14776  			},
 14777  			Key: "megaHertz",
 14778  		},
 14779  		RollupType:          "average",
 14780  		StatsType:           "rate",
 14781  		Level:               3,
 14782  		PerDeviceLevel:      3,
 14783  		AssociatedCounterId: nil,
 14784  	},
 14785  	{
 14786  		Key: 520,
 14787  		NameInfo: &types.ElementDescription{
 14788  			Description: types.Description{
 14789  				Label:   "Average commands issued per second",
 14790  				Summary: "Average number of commands issued per second on the storage path during the collection interval",
 14791  			},
 14792  			Key: "commandsAveraged",
 14793  		},
 14794  		GroupInfo: &types.ElementDescription{
 14795  			Description: types.Description{
 14796  				Label:   "Storage path",
 14797  				Summary: "Storage path",
 14798  			},
 14799  			Key: "storagePath",
 14800  		},
 14801  		UnitInfo: &types.ElementDescription{
 14802  			Description: types.Description{
 14803  				Label:   "num",
 14804  				Summary: "Number",
 14805  			},
 14806  			Key: "number",
 14807  		},
 14808  		RollupType:          "average",
 14809  		StatsType:           "rate",
 14810  		Level:               3,
 14811  		PerDeviceLevel:      3,
 14812  		AssociatedCounterId: nil,
 14813  	},
 14814  	{
 14815  		Key: 521,
 14816  		NameInfo: &types.ElementDescription{
 14817  			Description: types.Description{
 14818  				Label:   "Average read requests per second",
 14819  				Summary: "Average number of read commands issued per second on the storage path during the collection interval",
 14820  			},
 14821  			Key: "numberReadAveraged",
 14822  		},
 14823  		GroupInfo: &types.ElementDescription{
 14824  			Description: types.Description{
 14825  				Label:   "Storage path",
 14826  				Summary: "Storage path",
 14827  			},
 14828  			Key: "storagePath",
 14829  		},
 14830  		UnitInfo: &types.ElementDescription{
 14831  			Description: types.Description{
 14832  				Label:   "num",
 14833  				Summary: "Number",
 14834  			},
 14835  			Key: "number",
 14836  		},
 14837  		RollupType:          "average",
 14838  		StatsType:           "rate",
 14839  		Level:               3,
 14840  		PerDeviceLevel:      3,
 14841  		AssociatedCounterId: nil,
 14842  	},
 14843  	{
 14844  		Key: 522,
 14845  		NameInfo: &types.ElementDescription{
 14846  			Description: types.Description{
 14847  				Label:   "Average write requests per second",
 14848  				Summary: "Average number of write commands issued per second on the storage path during the collection interval",
 14849  			},
 14850  			Key: "numberWriteAveraged",
 14851  		},
 14852  		GroupInfo: &types.ElementDescription{
 14853  			Description: types.Description{
 14854  				Label:   "Storage path",
 14855  				Summary: "Storage path",
 14856  			},
 14857  			Key: "storagePath",
 14858  		},
 14859  		UnitInfo: &types.ElementDescription{
 14860  			Description: types.Description{
 14861  				Label:   "num",
 14862  				Summary: "Number",
 14863  			},
 14864  			Key: "number",
 14865  		},
 14866  		RollupType:          "average",
 14867  		StatsType:           "rate",
 14868  		Level:               3,
 14869  		PerDeviceLevel:      3,
 14870  		AssociatedCounterId: nil,
 14871  	},
 14872  	{
 14873  		Key: 523,
 14874  		NameInfo: &types.ElementDescription{
 14875  			Description: types.Description{
 14876  				Label:   "Read rate",
 14877  				Summary: "Rate of reading data on the storage path",
 14878  			},
 14879  			Key: "read",
 14880  		},
 14881  		GroupInfo: &types.ElementDescription{
 14882  			Description: types.Description{
 14883  				Label:   "Storage path",
 14884  				Summary: "Storage path",
 14885  			},
 14886  			Key: "storagePath",
 14887  		},
 14888  		UnitInfo: &types.ElementDescription{
 14889  			Description: types.Description{
 14890  				Label:   "KBps",
 14891  				Summary: "Kilobytes per second",
 14892  			},
 14893  			Key: "kiloBytesPerSecond",
 14894  		},
 14895  		RollupType:          "average",
 14896  		StatsType:           "rate",
 14897  		Level:               3,
 14898  		PerDeviceLevel:      3,
 14899  		AssociatedCounterId: nil,
 14900  	},
 14901  	{
 14902  		Key: 524,
 14903  		NameInfo: &types.ElementDescription{
 14904  			Description: types.Description{
 14905  				Label:   "Write rate",
 14906  				Summary: "Rate of writing data on the storage path",
 14907  			},
 14908  			Key: "write",
 14909  		},
 14910  		GroupInfo: &types.ElementDescription{
 14911  			Description: types.Description{
 14912  				Label:   "Storage path",
 14913  				Summary: "Storage path",
 14914  			},
 14915  			Key: "storagePath",
 14916  		},
 14917  		UnitInfo: &types.ElementDescription{
 14918  			Description: types.Description{
 14919  				Label:   "KBps",
 14920  				Summary: "Kilobytes per second",
 14921  			},
 14922  			Key: "kiloBytesPerSecond",
 14923  		},
 14924  		RollupType:          "average",
 14925  		StatsType:           "rate",
 14926  		Level:               3,
 14927  		PerDeviceLevel:      3,
 14928  		AssociatedCounterId: nil,
 14929  	},
 14930  	{
 14931  		Key: 525,
 14932  		NameInfo: &types.ElementDescription{
 14933  			Description: types.Description{
 14934  				Label:   "Read latency",
 14935  				Summary: "The average time a read issued on the storage path takes",
 14936  			},
 14937  			Key: "totalReadLatency",
 14938  		},
 14939  		GroupInfo: &types.ElementDescription{
 14940  			Description: types.Description{
 14941  				Label:   "Storage path",
 14942  				Summary: "Storage path",
 14943  			},
 14944  			Key: "storagePath",
 14945  		},
 14946  		UnitInfo: &types.ElementDescription{
 14947  			Description: types.Description{
 14948  				Label:   "ms",
 14949  				Summary: "Millisecond",
 14950  			},
 14951  			Key: "millisecond",
 14952  		},
 14953  		RollupType:          "average",
 14954  		StatsType:           "absolute",
 14955  		Level:               3,
 14956  		PerDeviceLevel:      3,
 14957  		AssociatedCounterId: nil,
 14958  	},
 14959  	{
 14960  		Key: 526,
 14961  		NameInfo: &types.ElementDescription{
 14962  			Description: types.Description{
 14963  				Label:   "Write latency",
 14964  				Summary: "The average time a write issued on the storage path takes",
 14965  			},
 14966  			Key: "totalWriteLatency",
 14967  		},
 14968  		GroupInfo: &types.ElementDescription{
 14969  			Description: types.Description{
 14970  				Label:   "Storage path",
 14971  				Summary: "Storage path",
 14972  			},
 14973  			Key: "storagePath",
 14974  		},
 14975  		UnitInfo: &types.ElementDescription{
 14976  			Description: types.Description{
 14977  				Label:   "ms",
 14978  				Summary: "Millisecond",
 14979  			},
 14980  			Key: "millisecond",
 14981  		},
 14982  		RollupType:          "average",
 14983  		StatsType:           "absolute",
 14984  		Level:               3,
 14985  		PerDeviceLevel:      3,
 14986  		AssociatedCounterId: nil,
 14987  	},
 14988  	{
 14989  		Key: 527,
 14990  		NameInfo: &types.ElementDescription{
 14991  			Description: types.Description{
 14992  				Label:   "Read request size",
 14993  				Summary: "Average read request size in bytes",
 14994  			},
 14995  			Key: "readIOSize",
 14996  		},
 14997  		GroupInfo: &types.ElementDescription{
 14998  			Description: types.Description{
 14999  				Label:   "Virtual disk",
 15000  				Summary: "Virtual disk",
 15001  			},
 15002  			Key: "virtualDisk",
 15003  		},
 15004  		UnitInfo: &types.ElementDescription{
 15005  			Description: types.Description{
 15006  				Label:   "num",
 15007  				Summary: "Number",
 15008  			},
 15009  			Key: "number",
 15010  		},
 15011  		RollupType:          "latest",
 15012  		StatsType:           "absolute",
 15013  		Level:               4,
 15014  		PerDeviceLevel:      4,
 15015  		AssociatedCounterId: nil,
 15016  	},
 15017  	{
 15018  		Key: 528,
 15019  		NameInfo: &types.ElementDescription{
 15020  			Description: types.Description{
 15021  				Label:   "Write request size",
 15022  				Summary: "Average write request size in bytes",
 15023  			},
 15024  			Key: "writeIOSize",
 15025  		},
 15026  		GroupInfo: &types.ElementDescription{
 15027  			Description: types.Description{
 15028  				Label:   "Virtual disk",
 15029  				Summary: "Virtual disk",
 15030  			},
 15031  			Key: "virtualDisk",
 15032  		},
 15033  		UnitInfo: &types.ElementDescription{
 15034  			Description: types.Description{
 15035  				Label:   "num",
 15036  				Summary: "Number",
 15037  			},
 15038  			Key: "number",
 15039  		},
 15040  		RollupType:          "latest",
 15041  		StatsType:           "absolute",
 15042  		Level:               4,
 15043  		PerDeviceLevel:      4,
 15044  		AssociatedCounterId: nil,
 15045  	},
 15046  	{
 15047  		Key: 529,
 15048  		NameInfo: &types.ElementDescription{
 15049  			Description: types.Description{
 15050  				Label:   "Number of small seeks",
 15051  				Summary: "Number of seeks during the interval that were less than 64 LBNs apart",
 15052  			},
 15053  			Key: "smallSeeks",
 15054  		},
 15055  		GroupInfo: &types.ElementDescription{
 15056  			Description: types.Description{
 15057  				Label:   "Virtual disk",
 15058  				Summary: "Virtual disk",
 15059  			},
 15060  			Key: "virtualDisk",
 15061  		},
 15062  		UnitInfo: &types.ElementDescription{
 15063  			Description: types.Description{
 15064  				Label:   "num",
 15065  				Summary: "Number",
 15066  			},
 15067  			Key: "number",
 15068  		},
 15069  		RollupType:          "latest",
 15070  		StatsType:           "absolute",
 15071  		Level:               4,
 15072  		PerDeviceLevel:      4,
 15073  		AssociatedCounterId: nil,
 15074  	},
 15075  	{
 15076  		Key: 530,
 15077  		NameInfo: &types.ElementDescription{
 15078  			Description: types.Description{
 15079  				Label:   "Number of medium seeks",
 15080  				Summary: "Number of seeks during the interval that were between 64 and 8192 LBNs apart",
 15081  			},
 15082  			Key: "mediumSeeks",
 15083  		},
 15084  		GroupInfo: &types.ElementDescription{
 15085  			Description: types.Description{
 15086  				Label:   "Virtual disk",
 15087  				Summary: "Virtual disk",
 15088  			},
 15089  			Key: "virtualDisk",
 15090  		},
 15091  		UnitInfo: &types.ElementDescription{
 15092  			Description: types.Description{
 15093  				Label:   "num",
 15094  				Summary: "Number",
 15095  			},
 15096  			Key: "number",
 15097  		},
 15098  		RollupType:          "latest",
 15099  		StatsType:           "absolute",
 15100  		Level:               4,
 15101  		PerDeviceLevel:      4,
 15102  		AssociatedCounterId: nil,
 15103  	},
 15104  	{
 15105  		Key: 531,
 15106  		NameInfo: &types.ElementDescription{
 15107  			Description: types.Description{
 15108  				Label:   "Number of large seeks",
 15109  				Summary: "Number of seeks during the interval that were greater than 8192 LBNs apart",
 15110  			},
 15111  			Key: "largeSeeks",
 15112  		},
 15113  		GroupInfo: &types.ElementDescription{
 15114  			Description: types.Description{
 15115  				Label:   "Virtual disk",
 15116  				Summary: "Virtual disk",
 15117  			},
 15118  			Key: "virtualDisk",
 15119  		},
 15120  		UnitInfo: &types.ElementDescription{
 15121  			Description: types.Description{
 15122  				Label:   "num",
 15123  				Summary: "Number",
 15124  			},
 15125  			Key: "number",
 15126  		},
 15127  		RollupType:          "latest",
 15128  		StatsType:           "absolute",
 15129  		Level:               4,
 15130  		PerDeviceLevel:      4,
 15131  		AssociatedCounterId: nil,
 15132  	},
 15133  	{
 15134  		Key: 532,
 15135  		NameInfo: &types.ElementDescription{
 15136  			Description: types.Description{
 15137  				Label:   "Read Latency (us)",
 15138  				Summary: "Read latency in microseconds",
 15139  			},
 15140  			Key: "readLatencyUS",
 15141  		},
 15142  		GroupInfo: &types.ElementDescription{
 15143  			Description: types.Description{
 15144  				Label:   "Virtual disk",
 15145  				Summary: "Virtual disk",
 15146  			},
 15147  			Key: "virtualDisk",
 15148  		},
 15149  		UnitInfo: &types.ElementDescription{
 15150  			Description: types.Description{
 15151  				Label:   "µs",
 15152  				Summary: "Microsecond",
 15153  			},
 15154  			Key: "microsecond",
 15155  		},
 15156  		RollupType:          "latest",
 15157  		StatsType:           "absolute",
 15158  		Level:               4,
 15159  		PerDeviceLevel:      4,
 15160  		AssociatedCounterId: nil,
 15161  	},
 15162  	{
 15163  		Key: 533,
 15164  		NameInfo: &types.ElementDescription{
 15165  			Description: types.Description{
 15166  				Label:   "Write Latency (us)",
 15167  				Summary: "Write latency in microseconds",
 15168  			},
 15169  			Key: "writeLatencyUS",
 15170  		},
 15171  		GroupInfo: &types.ElementDescription{
 15172  			Description: types.Description{
 15173  				Label:   "Virtual disk",
 15174  				Summary: "Virtual disk",
 15175  			},
 15176  			Key: "virtualDisk",
 15177  		},
 15178  		UnitInfo: &types.ElementDescription{
 15179  			Description: types.Description{
 15180  				Label:   "µs",
 15181  				Summary: "Microsecond",
 15182  			},
 15183  			Key: "microsecond",
 15184  		},
 15185  		RollupType:          "latest",
 15186  		StatsType:           "absolute",
 15187  		Level:               4,
 15188  		PerDeviceLevel:      4,
 15189  		AssociatedCounterId: nil,
 15190  	},
 15191  	{
 15192  		Key: 534,
 15193  		NameInfo: &types.ElementDescription{
 15194  			Description: types.Description{
 15195  				Label:   "Virtual Flash Read Cache I/Os per second for the virtual disk",
 15196  				Summary: "The average virtual Flash Read Cache I/Os per second value for the virtual disk",
 15197  			},
 15198  			Key: "vFlashCacheIops",
 15199  		},
 15200  		GroupInfo: &types.ElementDescription{
 15201  			Description: types.Description{
 15202  				Label:   "Virtual disk",
 15203  				Summary: "Virtual disk",
 15204  			},
 15205  			Key: "virtualDisk",
 15206  		},
 15207  		UnitInfo: &types.ElementDescription{
 15208  			Description: types.Description{
 15209  				Label:   "num",
 15210  				Summary: "Number",
 15211  			},
 15212  			Key: "number",
 15213  		},
 15214  		RollupType:          "latest",
 15215  		StatsType:           "absolute",
 15216  		Level:               4,
 15217  		PerDeviceLevel:      4,
 15218  		AssociatedCounterId: nil,
 15219  	},
 15220  	{
 15221  		Key: 535,
 15222  		NameInfo: &types.ElementDescription{
 15223  			Description: types.Description{
 15224  				Label:   "Virtual Flash Read Cache latency for the virtual disk",
 15225  				Summary: "The average virtual Flash Read Cache latency value for the virtual disk",
 15226  			},
 15227  			Key: "vFlashCacheLatency",
 15228  		},
 15229  		GroupInfo: &types.ElementDescription{
 15230  			Description: types.Description{
 15231  				Label:   "Virtual disk",
 15232  				Summary: "Virtual disk",
 15233  			},
 15234  			Key: "virtualDisk",
 15235  		},
 15236  		UnitInfo: &types.ElementDescription{
 15237  			Description: types.Description{
 15238  				Label:   "µs",
 15239  				Summary: "Microsecond",
 15240  			},
 15241  			Key: "microsecond",
 15242  		},
 15243  		RollupType:          "latest",
 15244  		StatsType:           "absolute",
 15245  		Level:               4,
 15246  		PerDeviceLevel:      4,
 15247  		AssociatedCounterId: nil,
 15248  	},
 15249  	{
 15250  		Key: 536,
 15251  		NameInfo: &types.ElementDescription{
 15252  			Description: types.Description{
 15253  				Label:   "Virtual Flash Read Cache throughput for virtual disk",
 15254  				Summary: "The average virtual Flash Read Cache throughput value for the virtual disk",
 15255  			},
 15256  			Key: "vFlashCacheThroughput",
 15257  		},
 15258  		GroupInfo: &types.ElementDescription{
 15259  			Description: types.Description{
 15260  				Label:   "Virtual disk",
 15261  				Summary: "Virtual disk",
 15262  			},
 15263  			Key: "virtualDisk",
 15264  		},
 15265  		UnitInfo: &types.ElementDescription{
 15266  			Description: types.Description{
 15267  				Label:   "num",
 15268  				Summary: "Number",
 15269  			},
 15270  			Key: "number",
 15271  		},
 15272  		RollupType:          "latest",
 15273  		StatsType:           "absolute",
 15274  		Level:               4,
 15275  		PerDeviceLevel:      4,
 15276  		AssociatedCounterId: nil,
 15277  	},
 15278  	{
 15279  		Key: 537,
 15280  		NameInfo: &types.ElementDescription{
 15281  			Description: types.Description{
 15282  				Label:   "Storage I/O Control datastore maximum queue depth",
 15283  				Summary: "Storage I/O Control datastore maximum queue depth",
 15284  			},
 15285  			Key: "datastoreMaxQueueDepth",
 15286  		},
 15287  		GroupInfo: &types.ElementDescription{
 15288  			Description: types.Description{
 15289  				Label:   "Datastore",
 15290  				Summary: "Datastore",
 15291  			},
 15292  			Key: "datastore",
 15293  		},
 15294  		UnitInfo: &types.ElementDescription{
 15295  			Description: types.Description{
 15296  				Label:   "num",
 15297  				Summary: "Number",
 15298  			},
 15299  			Key: "number",
 15300  		},
 15301  		RollupType:          "latest",
 15302  		StatsType:           "absolute",
 15303  		Level:               1,
 15304  		PerDeviceLevel:      3,
 15305  		AssociatedCounterId: nil,
 15306  	},
 15307  	{
 15308  		Key: 538,
 15309  		NameInfo: &types.ElementDescription{
 15310  			Description: types.Description{
 15311  				Label:   "vSphere Replication VM Count",
 15312  				Summary: "Current number of replicated virtual machines",
 15313  			},
 15314  			Key: "hbrNumVms",
 15315  		},
 15316  		GroupInfo: &types.ElementDescription{
 15317  			Description: types.Description{
 15318  				Label:   "vSphere Replication",
 15319  				Summary: "vSphere Replication",
 15320  			},
 15321  			Key: "hbr",
 15322  		},
 15323  		UnitInfo: &types.ElementDescription{
 15324  			Description: types.Description{
 15325  				Label:   "num",
 15326  				Summary: "Number",
 15327  			},
 15328  			Key: "number",
 15329  		},
 15330  		RollupType:          "average",
 15331  		StatsType:           "absolute",
 15332  		Level:               4,
 15333  		PerDeviceLevel:      4,
 15334  		AssociatedCounterId: nil,
 15335  	},
 15336  	{
 15337  		Key: 539,
 15338  		NameInfo: &types.ElementDescription{
 15339  			Description: types.Description{
 15340  				Label:   "Replication Data Receive Rate",
 15341  				Summary: "Average amount of data received per second",
 15342  			},
 15343  			Key: "hbrNetRx",
 15344  		},
 15345  		GroupInfo: &types.ElementDescription{
 15346  			Description: types.Description{
 15347  				Label:   "vSphere Replication",
 15348  				Summary: "vSphere Replication",
 15349  			},
 15350  			Key: "hbr",
 15351  		},
 15352  		UnitInfo: &types.ElementDescription{
 15353  			Description: types.Description{
 15354  				Label:   "KBps",
 15355  				Summary: "Kilobytes per second",
 15356  			},
 15357  			Key: "kiloBytesPerSecond",
 15358  		},
 15359  		RollupType:          "average",
 15360  		StatsType:           "rate",
 15361  		Level:               4,
 15362  		PerDeviceLevel:      4,
 15363  		AssociatedCounterId: nil,
 15364  	},
 15365  	{
 15366  		Key: 540,
 15367  		NameInfo: &types.ElementDescription{
 15368  			Description: types.Description{
 15369  				Label:   "Replication Data Transmit Rate",
 15370  				Summary: "Average amount of data transmitted per second",
 15371  			},
 15372  			Key: "hbrNetTx",
 15373  		},
 15374  		GroupInfo: &types.ElementDescription{
 15375  			Description: types.Description{
 15376  				Label:   "vSphere Replication",
 15377  				Summary: "vSphere Replication",
 15378  			},
 15379  			Key: "hbr",
 15380  		},
 15381  		UnitInfo: &types.ElementDescription{
 15382  			Description: types.Description{
 15383  				Label:   "KBps",
 15384  				Summary: "Kilobytes per second",
 15385  			},
 15386  			Key: "kiloBytesPerSecond",
 15387  		},
 15388  		RollupType:          "average",
 15389  		StatsType:           "rate",
 15390  		Level:               4,
 15391  		PerDeviceLevel:      4,
 15392  		AssociatedCounterId: nil,
 15393  	},
 15394  	{
 15395  		Key: 541,
 15396  		NameInfo: &types.ElementDescription{
 15397  			Description: types.Description{
 15398  				Label:   "Number of caches controlled by the virtual flash module",
 15399  				Summary: "Number of caches controlled by the virtual flash module",
 15400  			},
 15401  			Key: "numActiveVMDKs",
 15402  		},
 15403  		GroupInfo: &types.ElementDescription{
 15404  			Description: types.Description{
 15405  				Label:   "Virtual flash",
 15406  				Summary: "Virtual flash module related statistical values",
 15407  			},
 15408  			Key: "vflashModule",
 15409  		},
 15410  		UnitInfo: &types.ElementDescription{
 15411  			Description: types.Description{
 15412  				Label:   "num",
 15413  				Summary: "Number",
 15414  			},
 15415  			Key: "number",
 15416  		},
 15417  		RollupType:          "latest",
 15418  		StatsType:           "absolute",
 15419  		Level:               4,
 15420  		PerDeviceLevel:      4,
 15421  		AssociatedCounterId: nil,
 15422  	},
 15423  	{
 15424  		Key: 542,
 15425  		NameInfo: &types.ElementDescription{
 15426  			Description: types.Description{
 15427  				Label:   "Read IOPS",
 15428  				Summary: "Read IOPS",
 15429  			},
 15430  			Key: "readIops",
 15431  		},
 15432  		GroupInfo: &types.ElementDescription{
 15433  			Description: types.Description{
 15434  				Label:   "VSAN DOM Objects",
 15435  				Summary: "VSAN DOM object related statistical values",
 15436  			},
 15437  			Key: "vsanDomObj",
 15438  		},
 15439  		UnitInfo: &types.ElementDescription{
 15440  			Description: types.Description{
 15441  				Label:   "num",
 15442  				Summary: "Number",
 15443  			},
 15444  			Key: "number",
 15445  		},
 15446  		RollupType:          "average",
 15447  		StatsType:           "rate",
 15448  		Level:               4,
 15449  		PerDeviceLevel:      4,
 15450  		AssociatedCounterId: nil,
 15451  	},
 15452  	{
 15453  		Key: 543,
 15454  		NameInfo: &types.ElementDescription{
 15455  			Description: types.Description{
 15456  				Label:   "Read throughput",
 15457  				Summary: "Read throughput in kBps",
 15458  			},
 15459  			Key: "readThroughput",
 15460  		},
 15461  		GroupInfo: &types.ElementDescription{
 15462  			Description: types.Description{
 15463  				Label:   "VSAN DOM Objects",
 15464  				Summary: "VSAN DOM object related statistical values",
 15465  			},
 15466  			Key: "vsanDomObj",
 15467  		},
 15468  		UnitInfo: &types.ElementDescription{
 15469  			Description: types.Description{
 15470  				Label:   "KBps",
 15471  				Summary: "Kilobytes per second",
 15472  			},
 15473  			Key: "kiloBytesPerSecond",
 15474  		},
 15475  		RollupType:          "average",
 15476  		StatsType:           "rate",
 15477  		Level:               4,
 15478  		PerDeviceLevel:      4,
 15479  		AssociatedCounterId: nil,
 15480  	},
 15481  	{
 15482  		Key: 544,
 15483  		NameInfo: &types.ElementDescription{
 15484  			Description: types.Description{
 15485  				Label:   "Average read latency",
 15486  				Summary: "Average read latency in ms",
 15487  			},
 15488  			Key: "readAvgLatency",
 15489  		},
 15490  		GroupInfo: &types.ElementDescription{
 15491  			Description: types.Description{
 15492  				Label:   "VSAN DOM Objects",
 15493  				Summary: "VSAN DOM object related statistical values",
 15494  			},
 15495  			Key: "vsanDomObj",
 15496  		},
 15497  		UnitInfo: &types.ElementDescription{
 15498  			Description: types.Description{
 15499  				Label:   "ms",
 15500  				Summary: "Millisecond",
 15501  			},
 15502  			Key: "millisecond",
 15503  		},
 15504  		RollupType:          "average",
 15505  		StatsType:           "absolute",
 15506  		Level:               4,
 15507  		PerDeviceLevel:      4,
 15508  		AssociatedCounterId: nil,
 15509  	},
 15510  	{
 15511  		Key: 545,
 15512  		NameInfo: &types.ElementDescription{
 15513  			Description: types.Description{
 15514  				Label:   "Max read latency",
 15515  				Summary: "Max read latency in ms",
 15516  			},
 15517  			Key: "readMaxLatency",
 15518  		},
 15519  		GroupInfo: &types.ElementDescription{
 15520  			Description: types.Description{
 15521  				Label:   "VSAN DOM Objects",
 15522  				Summary: "VSAN DOM object related statistical values",
 15523  			},
 15524  			Key: "vsanDomObj",
 15525  		},
 15526  		UnitInfo: &types.ElementDescription{
 15527  			Description: types.Description{
 15528  				Label:   "ms",
 15529  				Summary: "Millisecond",
 15530  			},
 15531  			Key: "millisecond",
 15532  		},
 15533  		RollupType:          "latest",
 15534  		StatsType:           "absolute",
 15535  		Level:               4,
 15536  		PerDeviceLevel:      4,
 15537  		AssociatedCounterId: nil,
 15538  	},
 15539  	{
 15540  		Key: 546,
 15541  		NameInfo: &types.ElementDescription{
 15542  			Description: types.Description{
 15543  				Label:   "Cache hit rate",
 15544  				Summary: "Cache hit rate percentage",
 15545  			},
 15546  			Key: "readCacheHitRate",
 15547  		},
 15548  		GroupInfo: &types.ElementDescription{
 15549  			Description: types.Description{
 15550  				Label:   "VSAN DOM Objects",
 15551  				Summary: "VSAN DOM object related statistical values",
 15552  			},
 15553  			Key: "vsanDomObj",
 15554  		},
 15555  		UnitInfo: &types.ElementDescription{
 15556  			Description: types.Description{
 15557  				Label:   "%",
 15558  				Summary: "Percentage",
 15559  			},
 15560  			Key: "percent",
 15561  		},
 15562  		RollupType:          "latest",
 15563  		StatsType:           "absolute",
 15564  		Level:               4,
 15565  		PerDeviceLevel:      4,
 15566  		AssociatedCounterId: nil,
 15567  	},
 15568  	{
 15569  		Key: 547,
 15570  		NameInfo: &types.ElementDescription{
 15571  			Description: types.Description{
 15572  				Label:   "Read congestion per sampling interval",
 15573  				Summary: "Read congestion",
 15574  			},
 15575  			Key: "readCongestion",
 15576  		},
 15577  		GroupInfo: &types.ElementDescription{
 15578  			Description: types.Description{
 15579  				Label:   "VSAN DOM Objects",
 15580  				Summary: "VSAN DOM object related statistical values",
 15581  			},
 15582  			Key: "vsanDomObj",
 15583  		},
 15584  		UnitInfo: &types.ElementDescription{
 15585  			Description: types.Description{
 15586  				Label:   "num",
 15587  				Summary: "Number",
 15588  			},
 15589  			Key: "number",
 15590  		},
 15591  		RollupType:          "average",
 15592  		StatsType:           "rate",
 15593  		Level:               4,
 15594  		PerDeviceLevel:      4,
 15595  		AssociatedCounterId: nil,
 15596  	},
 15597  	{
 15598  		Key: 548,
 15599  		NameInfo: &types.ElementDescription{
 15600  			Description: types.Description{
 15601  				Label:   "Write IOPS",
 15602  				Summary: "Write IOPS",
 15603  			},
 15604  			Key: "writeIops",
 15605  		},
 15606  		GroupInfo: &types.ElementDescription{
 15607  			Description: types.Description{
 15608  				Label:   "VSAN DOM Objects",
 15609  				Summary: "VSAN DOM object related statistical values",
 15610  			},
 15611  			Key: "vsanDomObj",
 15612  		},
 15613  		UnitInfo: &types.ElementDescription{
 15614  			Description: types.Description{
 15615  				Label:   "num",
 15616  				Summary: "Number",
 15617  			},
 15618  			Key: "number",
 15619  		},
 15620  		RollupType:          "average",
 15621  		StatsType:           "rate",
 15622  		Level:               4,
 15623  		PerDeviceLevel:      4,
 15624  		AssociatedCounterId: nil,
 15625  	},
 15626  	{
 15627  		Key: 549,
 15628  		NameInfo: &types.ElementDescription{
 15629  			Description: types.Description{
 15630  				Label:   "Write throughput",
 15631  				Summary: "Write throughput in kBps",
 15632  			},
 15633  			Key: "writeThroughput",
 15634  		},
 15635  		GroupInfo: &types.ElementDescription{
 15636  			Description: types.Description{
 15637  				Label:   "VSAN DOM Objects",
 15638  				Summary: "VSAN DOM object related statistical values",
 15639  			},
 15640  			Key: "vsanDomObj",
 15641  		},
 15642  		UnitInfo: &types.ElementDescription{
 15643  			Description: types.Description{
 15644  				Label:   "KBps",
 15645  				Summary: "Kilobytes per second",
 15646  			},
 15647  			Key: "kiloBytesPerSecond",
 15648  		},
 15649  		RollupType:          "average",
 15650  		StatsType:           "rate",
 15651  		Level:               4,
 15652  		PerDeviceLevel:      4,
 15653  		AssociatedCounterId: nil,
 15654  	},
 15655  	{
 15656  		Key: 550,
 15657  		NameInfo: &types.ElementDescription{
 15658  			Description: types.Description{
 15659  				Label:   "Average write latency",
 15660  				Summary: "Average write latency in ms",
 15661  			},
 15662  			Key: "writeAvgLatency",
 15663  		},
 15664  		GroupInfo: &types.ElementDescription{
 15665  			Description: types.Description{
 15666  				Label:   "VSAN DOM Objects",
 15667  				Summary: "VSAN DOM object related statistical values",
 15668  			},
 15669  			Key: "vsanDomObj",
 15670  		},
 15671  		UnitInfo: &types.ElementDescription{
 15672  			Description: types.Description{
 15673  				Label:   "ms",
 15674  				Summary: "Millisecond",
 15675  			},
 15676  			Key: "millisecond",
 15677  		},
 15678  		RollupType:          "average",
 15679  		StatsType:           "absolute",
 15680  		Level:               4,
 15681  		PerDeviceLevel:      4,
 15682  		AssociatedCounterId: nil,
 15683  	},
 15684  	{
 15685  		Key: 551,
 15686  		NameInfo: &types.ElementDescription{
 15687  			Description: types.Description{
 15688  				Label:   "Max write latency",
 15689  				Summary: "Max write latency in ms",
 15690  			},
 15691  			Key: "writeMaxLatency",
 15692  		},
 15693  		GroupInfo: &types.ElementDescription{
 15694  			Description: types.Description{
 15695  				Label:   "VSAN DOM Objects",
 15696  				Summary: "VSAN DOM object related statistical values",
 15697  			},
 15698  			Key: "vsanDomObj",
 15699  		},
 15700  		UnitInfo: &types.ElementDescription{
 15701  			Description: types.Description{
 15702  				Label:   "ms",
 15703  				Summary: "Millisecond",
 15704  			},
 15705  			Key: "millisecond",
 15706  		},
 15707  		RollupType:          "latest",
 15708  		StatsType:           "absolute",
 15709  		Level:               4,
 15710  		PerDeviceLevel:      4,
 15711  		AssociatedCounterId: nil,
 15712  	},
 15713  	{
 15714  		Key: 552,
 15715  		NameInfo: &types.ElementDescription{
 15716  			Description: types.Description{
 15717  				Label:   "Write congestion per sampling interval",
 15718  				Summary: "Write congestion",
 15719  			},
 15720  			Key: "writeCongestion",
 15721  		},
 15722  		GroupInfo: &types.ElementDescription{
 15723  			Description: types.Description{
 15724  				Label:   "VSAN DOM Objects",
 15725  				Summary: "VSAN DOM object related statistical values",
 15726  			},
 15727  			Key: "vsanDomObj",
 15728  		},
 15729  		UnitInfo: &types.ElementDescription{
 15730  			Description: types.Description{
 15731  				Label:   "num",
 15732  				Summary: "Number",
 15733  			},
 15734  			Key: "number",
 15735  		},
 15736  		RollupType:          "average",
 15737  		StatsType:           "rate",
 15738  		Level:               4,
 15739  		PerDeviceLevel:      4,
 15740  		AssociatedCounterId: nil,
 15741  	},
 15742  	{
 15743  		Key: 553,
 15744  		NameInfo: &types.ElementDescription{
 15745  			Description: types.Description{
 15746  				Label:   "Recovery write IOPS",
 15747  				Summary: "Recovery write IOPS",
 15748  			},
 15749  			Key: "recoveryWriteIops",
 15750  		},
 15751  		GroupInfo: &types.ElementDescription{
 15752  			Description: types.Description{
 15753  				Label:   "VSAN DOM Objects",
 15754  				Summary: "VSAN DOM object related statistical values",
 15755  			},
 15756  			Key: "vsanDomObj",
 15757  		},
 15758  		UnitInfo: &types.ElementDescription{
 15759  			Description: types.Description{
 15760  				Label:   "num",
 15761  				Summary: "Number",
 15762  			},
 15763  			Key: "number",
 15764  		},
 15765  		RollupType:          "average",
 15766  		StatsType:           "rate",
 15767  		Level:               4,
 15768  		PerDeviceLevel:      4,
 15769  		AssociatedCounterId: nil,
 15770  	},
 15771  	{
 15772  		Key: 554,
 15773  		NameInfo: &types.ElementDescription{
 15774  			Description: types.Description{
 15775  				Label:   "Recovery write through-put",
 15776  				Summary: "Recovery write through-put in kBps",
 15777  			},
 15778  			Key: "recoveryWriteThroughput",
 15779  		},
 15780  		GroupInfo: &types.ElementDescription{
 15781  			Description: types.Description{
 15782  				Label:   "VSAN DOM Objects",
 15783  				Summary: "VSAN DOM object related statistical values",
 15784  			},
 15785  			Key: "vsanDomObj",
 15786  		},
 15787  		UnitInfo: &types.ElementDescription{
 15788  			Description: types.Description{
 15789  				Label:   "KBps",
 15790  				Summary: "Kilobytes per second",
 15791  			},
 15792  			Key: "kiloBytesPerSecond",
 15793  		},
 15794  		RollupType:          "average",
 15795  		StatsType:           "rate",
 15796  		Level:               4,
 15797  		PerDeviceLevel:      4,
 15798  		AssociatedCounterId: nil,
 15799  	},
 15800  	{
 15801  		Key: 555,
 15802  		NameInfo: &types.ElementDescription{
 15803  			Description: types.Description{
 15804  				Label:   "Average recovery write latency",
 15805  				Summary: "Average recovery write latency in ms",
 15806  			},
 15807  			Key: "recoveryWriteAvgLatency",
 15808  		},
 15809  		GroupInfo: &types.ElementDescription{
 15810  			Description: types.Description{
 15811  				Label:   "VSAN DOM Objects",
 15812  				Summary: "VSAN DOM object related statistical values",
 15813  			},
 15814  			Key: "vsanDomObj",
 15815  		},
 15816  		UnitInfo: &types.ElementDescription{
 15817  			Description: types.Description{
 15818  				Label:   "ms",
 15819  				Summary: "Millisecond",
 15820  			},
 15821  			Key: "millisecond",
 15822  		},
 15823  		RollupType:          "average",
 15824  		StatsType:           "absolute",
 15825  		Level:               4,
 15826  		PerDeviceLevel:      4,
 15827  		AssociatedCounterId: nil,
 15828  	},
 15829  	{
 15830  		Key: 556,
 15831  		NameInfo: &types.ElementDescription{
 15832  			Description: types.Description{
 15833  				Label:   "Max recovery write latency",
 15834  				Summary: "Max recovery write latency in ms",
 15835  			},
 15836  			Key: "recoveryWriteMaxLatency",
 15837  		},
 15838  		GroupInfo: &types.ElementDescription{
 15839  			Description: types.Description{
 15840  				Label:   "VSAN DOM Objects",
 15841  				Summary: "VSAN DOM object related statistical values",
 15842  			},
 15843  			Key: "vsanDomObj",
 15844  		},
 15845  		UnitInfo: &types.ElementDescription{
 15846  			Description: types.Description{
 15847  				Label:   "ms",
 15848  				Summary: "Millisecond",
 15849  			},
 15850  			Key: "millisecond",
 15851  		},
 15852  		RollupType:          "latest",
 15853  		StatsType:           "absolute",
 15854  		Level:               4,
 15855  		PerDeviceLevel:      4,
 15856  		AssociatedCounterId: nil,
 15857  	},
 15858  	{
 15859  		Key: 557,
 15860  		NameInfo: &types.ElementDescription{
 15861  			Description: types.Description{
 15862  				Label:   "Recovery write congestion per sampling interval",
 15863  				Summary: "Recovery write congestion",
 15864  			},
 15865  			Key: "recoveryWriteCongestion",
 15866  		},
 15867  		GroupInfo: &types.ElementDescription{
 15868  			Description: types.Description{
 15869  				Label:   "VSAN DOM Objects",
 15870  				Summary: "VSAN DOM object related statistical values",
 15871  			},
 15872  			Key: "vsanDomObj",
 15873  		},
 15874  		UnitInfo: &types.ElementDescription{
 15875  			Description: types.Description{
 15876  				Label:   "num",
 15877  				Summary: "Number",
 15878  			},
 15879  			Key: "number",
 15880  		},
 15881  		RollupType:          "average",
 15882  		StatsType:           "rate",
 15883  		Level:               4,
 15884  		PerDeviceLevel:      4,
 15885  		AssociatedCounterId: nil,
 15886  	},
 15887  	{
 15888  		Key: 558,
 15889  		NameInfo: &types.ElementDescription{
 15890  			Description: types.Description{
 15891  				Label:   "Utilization",
 15892  				Summary: "The utilization of a GPU in percentages",
 15893  			},
 15894  			Key: "utilization",
 15895  		},
 15896  		GroupInfo: &types.ElementDescription{
 15897  			Description: types.Description{
 15898  				Label:   "GPU",
 15899  				Summary: "GPU",
 15900  			},
 15901  			Key: "gpu",
 15902  		},
 15903  		UnitInfo: &types.ElementDescription{
 15904  			Description: types.Description{
 15905  				Label:   "%",
 15906  				Summary: "Percentage",
 15907  			},
 15908  			Key: "percent",
 15909  		},
 15910  		RollupType:          "none",
 15911  		StatsType:           "absolute",
 15912  		Level:               4,
 15913  		PerDeviceLevel:      4,
 15914  		AssociatedCounterId: nil,
 15915  	},
 15916  	{
 15917  		Key: 559,
 15918  		NameInfo: &types.ElementDescription{
 15919  			Description: types.Description{
 15920  				Label:   "Utilization",
 15921  				Summary: "The utilization of a GPU in percentages",
 15922  			},
 15923  			Key: "utilization",
 15924  		},
 15925  		GroupInfo: &types.ElementDescription{
 15926  			Description: types.Description{
 15927  				Label:   "GPU",
 15928  				Summary: "GPU",
 15929  			},
 15930  			Key: "gpu",
 15931  		},
 15932  		UnitInfo: &types.ElementDescription{
 15933  			Description: types.Description{
 15934  				Label:   "%",
 15935  				Summary: "Percentage",
 15936  			},
 15937  			Key: "percent",
 15938  		},
 15939  		RollupType:          "average",
 15940  		StatsType:           "absolute",
 15941  		Level:               4,
 15942  		PerDeviceLevel:      4,
 15943  		AssociatedCounterId: nil,
 15944  	},
 15945  	{
 15946  		Key: 560,
 15947  		NameInfo: &types.ElementDescription{
 15948  			Description: types.Description{
 15949  				Label:   "Utilization",
 15950  				Summary: "The utilization of a GPU in percentages",
 15951  			},
 15952  			Key: "utilization",
 15953  		},
 15954  		GroupInfo: &types.ElementDescription{
 15955  			Description: types.Description{
 15956  				Label:   "GPU",
 15957  				Summary: "GPU",
 15958  			},
 15959  			Key: "gpu",
 15960  		},
 15961  		UnitInfo: &types.ElementDescription{
 15962  			Description: types.Description{
 15963  				Label:   "%",
 15964  				Summary: "Percentage",
 15965  			},
 15966  			Key: "percent",
 15967  		},
 15968  		RollupType:          "maximum",
 15969  		StatsType:           "absolute",
 15970  		Level:               4,
 15971  		PerDeviceLevel:      4,
 15972  		AssociatedCounterId: nil,
 15973  	},
 15974  	{
 15975  		Key: 561,
 15976  		NameInfo: &types.ElementDescription{
 15977  			Description: types.Description{
 15978  				Label:   "Utilization",
 15979  				Summary: "The utilization of a GPU in percentages",
 15980  			},
 15981  			Key: "utilization",
 15982  		},
 15983  		GroupInfo: &types.ElementDescription{
 15984  			Description: types.Description{
 15985  				Label:   "GPU",
 15986  				Summary: "GPU",
 15987  			},
 15988  			Key: "gpu",
 15989  		},
 15990  		UnitInfo: &types.ElementDescription{
 15991  			Description: types.Description{
 15992  				Label:   "%",
 15993  				Summary: "Percentage",
 15994  			},
 15995  			Key: "percent",
 15996  		},
 15997  		RollupType:          "minimum",
 15998  		StatsType:           "absolute",
 15999  		Level:               4,
 16000  		PerDeviceLevel:      4,
 16001  		AssociatedCounterId: nil,
 16002  	},
 16003  	{
 16004  		Key: 562,
 16005  		NameInfo: &types.ElementDescription{
 16006  			Description: types.Description{
 16007  				Label:   "Memory used",
 16008  				Summary: "The amount of GPU memory used in kilobytes",
 16009  			},
 16010  			Key: "mem.used",
 16011  		},
 16012  		GroupInfo: &types.ElementDescription{
 16013  			Description: types.Description{
 16014  				Label:   "GPU",
 16015  				Summary: "GPU",
 16016  			},
 16017  			Key: "gpu",
 16018  		},
 16019  		UnitInfo: &types.ElementDescription{
 16020  			Description: types.Description{
 16021  				Label:   "KB",
 16022  				Summary: "Kilobyte",
 16023  			},
 16024  			Key: "kiloBytes",
 16025  		},
 16026  		RollupType:          "none",
 16027  		StatsType:           "absolute",
 16028  		Level:               4,
 16029  		PerDeviceLevel:      4,
 16030  		AssociatedCounterId: nil,
 16031  	},
 16032  	{
 16033  		Key: 563,
 16034  		NameInfo: &types.ElementDescription{
 16035  			Description: types.Description{
 16036  				Label:   "Memory used",
 16037  				Summary: "The amount of GPU memory used in kilobytes",
 16038  			},
 16039  			Key: "mem.used",
 16040  		},
 16041  		GroupInfo: &types.ElementDescription{
 16042  			Description: types.Description{
 16043  				Label:   "GPU",
 16044  				Summary: "GPU",
 16045  			},
 16046  			Key: "gpu",
 16047  		},
 16048  		UnitInfo: &types.ElementDescription{
 16049  			Description: types.Description{
 16050  				Label:   "KB",
 16051  				Summary: "Kilobyte",
 16052  			},
 16053  			Key: "kiloBytes",
 16054  		},
 16055  		RollupType:          "average",
 16056  		StatsType:           "absolute",
 16057  		Level:               4,
 16058  		PerDeviceLevel:      4,
 16059  		AssociatedCounterId: nil,
 16060  	},
 16061  	{
 16062  		Key: 564,
 16063  		NameInfo: &types.ElementDescription{
 16064  			Description: types.Description{
 16065  				Label:   "Memory used",
 16066  				Summary: "The amount of GPU memory used in kilobytes",
 16067  			},
 16068  			Key: "mem.used",
 16069  		},
 16070  		GroupInfo: &types.ElementDescription{
 16071  			Description: types.Description{
 16072  				Label:   "GPU",
 16073  				Summary: "GPU",
 16074  			},
 16075  			Key: "gpu",
 16076  		},
 16077  		UnitInfo: &types.ElementDescription{
 16078  			Description: types.Description{
 16079  				Label:   "KB",
 16080  				Summary: "Kilobyte",
 16081  			},
 16082  			Key: "kiloBytes",
 16083  		},
 16084  		RollupType:          "maximum",
 16085  		StatsType:           "absolute",
 16086  		Level:               4,
 16087  		PerDeviceLevel:      4,
 16088  		AssociatedCounterId: nil,
 16089  	},
 16090  	{
 16091  		Key: 565,
 16092  		NameInfo: &types.ElementDescription{
 16093  			Description: types.Description{
 16094  				Label:   "Memory used",
 16095  				Summary: "The amount of GPU memory used in kilobytes",
 16096  			},
 16097  			Key: "mem.used",
 16098  		},
 16099  		GroupInfo: &types.ElementDescription{
 16100  			Description: types.Description{
 16101  				Label:   "GPU",
 16102  				Summary: "GPU",
 16103  			},
 16104  			Key: "gpu",
 16105  		},
 16106  		UnitInfo: &types.ElementDescription{
 16107  			Description: types.Description{
 16108  				Label:   "KB",
 16109  				Summary: "Kilobyte",
 16110  			},
 16111  			Key: "kiloBytes",
 16112  		},
 16113  		RollupType:          "minimum",
 16114  		StatsType:           "absolute",
 16115  		Level:               4,
 16116  		PerDeviceLevel:      4,
 16117  		AssociatedCounterId: nil,
 16118  	},
 16119  	{
 16120  		Key: 566,
 16121  		NameInfo: &types.ElementDescription{
 16122  			Description: types.Description{
 16123  				Label:   "Memory usage",
 16124  				Summary: "The amount of GPU memory used in percentages of the total available",
 16125  			},
 16126  			Key: "mem.usage",
 16127  		},
 16128  		GroupInfo: &types.ElementDescription{
 16129  			Description: types.Description{
 16130  				Label:   "GPU",
 16131  				Summary: "GPU",
 16132  			},
 16133  			Key: "gpu",
 16134  		},
 16135  		UnitInfo: &types.ElementDescription{
 16136  			Description: types.Description{
 16137  				Label:   "%",
 16138  				Summary: "Percentage",
 16139  			},
 16140  			Key: "percent",
 16141  		},
 16142  		RollupType:          "none",
 16143  		StatsType:           "absolute",
 16144  		Level:               4,
 16145  		PerDeviceLevel:      4,
 16146  		AssociatedCounterId: nil,
 16147  	},
 16148  	{
 16149  		Key: 567,
 16150  		NameInfo: &types.ElementDescription{
 16151  			Description: types.Description{
 16152  				Label:   "Memory usage",
 16153  				Summary: "The amount of GPU memory used in percentages of the total available",
 16154  			},
 16155  			Key: "mem.usage",
 16156  		},
 16157  		GroupInfo: &types.ElementDescription{
 16158  			Description: types.Description{
 16159  				Label:   "GPU",
 16160  				Summary: "GPU",
 16161  			},
 16162  			Key: "gpu",
 16163  		},
 16164  		UnitInfo: &types.ElementDescription{
 16165  			Description: types.Description{
 16166  				Label:   "%",
 16167  				Summary: "Percentage",
 16168  			},
 16169  			Key: "percent",
 16170  		},
 16171  		RollupType:          "average",
 16172  		StatsType:           "absolute",
 16173  		Level:               4,
 16174  		PerDeviceLevel:      4,
 16175  		AssociatedCounterId: nil,
 16176  	},
 16177  	{
 16178  		Key: 568,
 16179  		NameInfo: &types.ElementDescription{
 16180  			Description: types.Description{
 16181  				Label:   "Memory usage",
 16182  				Summary: "The amount of GPU memory used in percentages of the total available",
 16183  			},
 16184  			Key: "mem.usage",
 16185  		},
 16186  		GroupInfo: &types.ElementDescription{
 16187  			Description: types.Description{
 16188  				Label:   "GPU",
 16189  				Summary: "GPU",
 16190  			},
 16191  			Key: "gpu",
 16192  		},
 16193  		UnitInfo: &types.ElementDescription{
 16194  			Description: types.Description{
 16195  				Label:   "%",
 16196  				Summary: "Percentage",
 16197  			},
 16198  			Key: "percent",
 16199  		},
 16200  		RollupType:          "maximum",
 16201  		StatsType:           "absolute",
 16202  		Level:               4,
 16203  		PerDeviceLevel:      4,
 16204  		AssociatedCounterId: nil,
 16205  	},
 16206  	{
 16207  		Key: 569,
 16208  		NameInfo: &types.ElementDescription{
 16209  			Description: types.Description{
 16210  				Label:   "Memory usage",
 16211  				Summary: "The amount of GPU memory used in percentages of the total available",
 16212  			},
 16213  			Key: "mem.usage",
 16214  		},
 16215  		GroupInfo: &types.ElementDescription{
 16216  			Description: types.Description{
 16217  				Label:   "GPU",
 16218  				Summary: "GPU",
 16219  			},
 16220  			Key: "gpu",
 16221  		},
 16222  		UnitInfo: &types.ElementDescription{
 16223  			Description: types.Description{
 16224  				Label:   "%",
 16225  				Summary: "Percentage",
 16226  			},
 16227  			Key: "percent",
 16228  		},
 16229  		RollupType:          "minimum",
 16230  		StatsType:           "absolute",
 16231  		Level:               4,
 16232  		PerDeviceLevel:      4,
 16233  		AssociatedCounterId: nil,
 16234  	},
 16235  	{
 16236  		Key: 570,
 16237  		NameInfo: &types.ElementDescription{
 16238  			Description: types.Description{
 16239  				Label:   "Temperature",
 16240  				Summary: "The temperature of a GPU in degrees celsius",
 16241  			},
 16242  			Key: "temperature",
 16243  		},
 16244  		GroupInfo: &types.ElementDescription{
 16245  			Description: types.Description{
 16246  				Label:   "GPU",
 16247  				Summary: "GPU",
 16248  			},
 16249  			Key: "gpu",
 16250  		},
 16251  		UnitInfo: &types.ElementDescription{
 16252  			Description: types.Description{
 16253  				Label:   "℃",
 16254  				Summary: "Temperature in degrees Celsius",
 16255  			},
 16256  			Key: "celsius",
 16257  		},
 16258  		RollupType:          "average",
 16259  		StatsType:           "absolute",
 16260  		Level:               4,
 16261  		PerDeviceLevel:      4,
 16262  		AssociatedCounterId: nil,
 16263  	},
 16264  	{
 16265  		Key: 571,
 16266  		NameInfo: &types.ElementDescription{
 16267  			Description: types.Description{
 16268  				Label:   "Persistent memory available reservation",
 16269  				Summary: "Persistent memory available reservation on a host.",
 16270  			},
 16271  			Key: "available.reservation",
 16272  		},
 16273  		GroupInfo: &types.ElementDescription{
 16274  			Description: types.Description{
 16275  				Label:   "PMEM",
 16276  				Summary: "PMEM",
 16277  			},
 16278  			Key: "pmem",
 16279  		},
 16280  		UnitInfo: &types.ElementDescription{
 16281  			Description: types.Description{
 16282  				Label:   "MB",
 16283  				Summary: "Megabyte",
 16284  			},
 16285  			Key: "megaBytes",
 16286  		},
 16287  		RollupType:          "latest",
 16288  		StatsType:           "absolute",
 16289  		Level:               4,
 16290  		PerDeviceLevel:      4,
 16291  		AssociatedCounterId: nil,
 16292  	},
 16293  }
 16294  
 16295  var VmMetrics = []types.PerfMetricId{
 16296  	{
 16297  		CounterId: 12,
 16298  		Instance:  "$cpu",
 16299  	},
 16300  	{
 16301  		CounterId: 401,
 16302  		Instance:  "$cpu",
 16303  	},
 16304  	{
 16305  		CounterId: 2,
 16306  		Instance:  "",
 16307  	},
 16308  	{
 16309  		CounterId: 14,
 16310  		Instance:  "",
 16311  	},
 16312  	{
 16313  		CounterId: 10,
 16314  		Instance:  "",
 16315  	},
 16316  	{
 16317  		CounterId: 401,
 16318  		Instance:  "",
 16319  	},
 16320  	{
 16321  		CounterId: 402,
 16322  		Instance:  "$cpu",
 16323  	},
 16324  	{
 16325  		CounterId: 396,
 16326  		Instance:  "",
 16327  	},
 16328  	{
 16329  		CounterId: 13,
 16330  		Instance:  "",
 16331  	},
 16332  	{
 16333  		CounterId: 11,
 16334  		Instance:  "$cpu",
 16335  	},
 16336  	{
 16337  		CounterId: 386,
 16338  		Instance:  "$cpu",
 16339  	},
 16340  	{
 16341  		CounterId: 399,
 16342  		Instance:  "$cpu",
 16343  	},
 16344  	{
 16345  		CounterId: 397,
 16346  		Instance:  "",
 16347  	},
 16348  	{
 16349  		CounterId: 6,
 16350  		Instance:  "$cpu",
 16351  	},
 16352  	{
 16353  		CounterId: 404,
 16354  		Instance:  "$cpu",
 16355  	},
 16356  	{
 16357  		CounterId: 386,
 16358  		Instance:  "",
 16359  	},
 16360  	{
 16361  		CounterId: 14,
 16362  		Instance:  "$cpu",
 16363  	},
 16364  	{
 16365  		CounterId: 11,
 16366  		Instance:  "",
 16367  	},
 16368  	{
 16369  		CounterId: 400,
 16370  		Instance:  "$cpu",
 16371  	},
 16372  	{
 16373  		CounterId: 6,
 16374  		Instance:  "",
 16375  	},
 16376  	{
 16377  		CounterId: 399,
 16378  		Instance:  "",
 16379  	},
 16380  	{
 16381  		CounterId: 403,
 16382  		Instance:  "",
 16383  	},
 16384  	{
 16385  		CounterId: 404,
 16386  		Instance:  "",
 16387  	},
 16388  	{
 16389  		CounterId: 398,
 16390  		Instance:  "",
 16391  	},
 16392  	{
 16393  		CounterId: 13,
 16394  		Instance:  "$cpu",
 16395  	},
 16396  	{
 16397  		CounterId: 400,
 16398  		Instance:  "",
 16399  	},
 16400  	{
 16401  		CounterId: 402,
 16402  		Instance:  "",
 16403  	},
 16404  	{
 16405  		CounterId: 12,
 16406  		Instance:  "",
 16407  	},
 16408  	{
 16409  		CounterId: 184,
 16410  		Instance:  "",
 16411  	},
 16412  	{
 16413  		CounterId: 180,
 16414  		Instance:  "$physDisk",
 16415  	},
 16416  	{
 16417  		CounterId: 181,
 16418  		Instance:  "$physDisk",
 16419  	},
 16420  	{
 16421  		CounterId: 178,
 16422  		Instance:  "$physDisk",
 16423  	},
 16424  	{
 16425  		CounterId: 182,
 16426  		Instance:  "$physDisk",
 16427  	},
 16428  	{
 16429  		CounterId: 179,
 16430  		Instance:  "$physDisk",
 16431  	},
 16432  	{
 16433  		CounterId: 183,
 16434  		Instance:  "$physDisk",
 16435  	},
 16436  	{
 16437  		CounterId: 133,
 16438  		Instance:  "",
 16439  	},
 16440  	{
 16441  		CounterId: 37,
 16442  		Instance:  "",
 16443  	},
 16444  	{
 16445  		CounterId: 74,
 16446  		Instance:  "",
 16447  	},
 16448  	{
 16449  		CounterId: 426,
 16450  		Instance:  "",
 16451  	},
 16452  	{
 16453  		CounterId: 70,
 16454  		Instance:  "",
 16455  	},
 16456  	{
 16457  		CounterId: 107,
 16458  		Instance:  "",
 16459  	},
 16460  	{
 16461  		CounterId: 422,
 16462  		Instance:  "",
 16463  	},
 16464  	{
 16465  		CounterId: 105,
 16466  		Instance:  "",
 16467  	},
 16468  	{
 16469  		CounterId: 85,
 16470  		Instance:  "",
 16471  	},
 16472  	{
 16473  		CounterId: 428,
 16474  		Instance:  "",
 16475  	},
 16476  	{
 16477  		CounterId: 418,
 16478  		Instance:  "",
 16479  	},
 16480  	{
 16481  		CounterId: 102,
 16482  		Instance:  "",
 16483  	},
 16484  	{
 16485  		CounterId: 33,
 16486  		Instance:  "",
 16487  	},
 16488  	{
 16489  		CounterId: 427,
 16490  		Instance:  "",
 16491  	},
 16492  	{
 16493  		CounterId: 94,
 16494  		Instance:  "",
 16495  	},
 16496  	{
 16497  		CounterId: 29,
 16498  		Instance:  "",
 16499  	},
 16500  	{
 16501  		CounterId: 420,
 16502  		Instance:  "",
 16503  	},
 16504  	{
 16505  		CounterId: 417,
 16506  		Instance:  "",
 16507  	},
 16508  	{
 16509  		CounterId: 98,
 16510  		Instance:  "",
 16511  	},
 16512  	{
 16513  		CounterId: 423,
 16514  		Instance:  "",
 16515  	},
 16516  	{
 16517  		CounterId: 106,
 16518  		Instance:  "",
 16519  	},
 16520  	{
 16521  		CounterId: 86,
 16522  		Instance:  "",
 16523  	},
 16524  	{
 16525  		CounterId: 41,
 16526  		Instance:  "",
 16527  	},
 16528  	{
 16529  		CounterId: 421,
 16530  		Instance:  "",
 16531  	},
 16532  	{
 16533  		CounterId: 429,
 16534  		Instance:  "",
 16535  	},
 16536  	{
 16537  		CounterId: 406,
 16538  		Instance:  "",
 16539  	},
 16540  	{
 16541  		CounterId: 90,
 16542  		Instance:  "",
 16543  	},
 16544  	{
 16545  		CounterId: 24,
 16546  		Instance:  "",
 16547  	},
 16548  	{
 16549  		CounterId: 410,
 16550  		Instance:  "",
 16551  	},
 16552  	{
 16553  		CounterId: 149,
 16554  		Instance:  "vmnic1",
 16555  	},
 16556  	{
 16557  		CounterId: 466,
 16558  		Instance:  "4000",
 16559  	},
 16560  	{
 16561  		CounterId: 146,
 16562  		Instance:  "",
 16563  	},
 16564  	{
 16565  		CounterId: 461,
 16566  		Instance:  "",
 16567  	},
 16568  	{
 16569  		CounterId: 148,
 16570  		Instance:  "vmnic1",
 16571  	},
 16572  	{
 16573  		CounterId: 462,
 16574  		Instance:  "vmnic0",
 16575  	},
 16576  	{
 16577  		CounterId: 143,
 16578  		Instance:  "vmnic0",
 16579  	},
 16580  	{
 16581  		CounterId: 463,
 16582  		Instance:  "vmnic1",
 16583  	},
 16584  	{
 16585  		CounterId: 147,
 16586  		Instance:  "",
 16587  	},
 16588  	{
 16589  		CounterId: 463,
 16590  		Instance:  "4000",
 16591  	},
 16592  	{
 16593  		CounterId: 462,
 16594  		Instance:  "vmnic1",
 16595  	},
 16596  	{
 16597  		CounterId: 462,
 16598  		Instance:  "4000",
 16599  	},
 16600  	{
 16601  		CounterId: 461,
 16602  		Instance:  "4000",
 16603  	},
 16604  	{
 16605  		CounterId: 146,
 16606  		Instance:  "vmnic0",
 16607  	},
 16608  	{
 16609  		CounterId: 465,
 16610  		Instance:  "4000",
 16611  	},
 16612  	{
 16613  		CounterId: 460,
 16614  		Instance:  "4000",
 16615  	},
 16616  	{
 16617  		CounterId: 149,
 16618  		Instance:  "4000",
 16619  	},
 16620  	{
 16621  		CounterId: 148,
 16622  		Instance:  "4000",
 16623  	},
 16624  	{
 16625  		CounterId: 462,
 16626  		Instance:  "",
 16627  	},
 16628  	{
 16629  		CounterId: 149,
 16630  		Instance:  "vmnic0",
 16631  	},
 16632  	{
 16633  		CounterId: 143,
 16634  		Instance:  "4000",
 16635  	},
 16636  	{
 16637  		CounterId: 463,
 16638  		Instance:  "",
 16639  	},
 16640  	{
 16641  		CounterId: 147,
 16642  		Instance:  "vmnic1",
 16643  	},
 16644  	{
 16645  		CounterId: 466,
 16646  		Instance:  "",
 16647  	},
 16648  	{
 16649  		CounterId: 472,
 16650  		Instance:  "4000",
 16651  	},
 16652  	{
 16653  		CounterId: 143,
 16654  		Instance:  "",
 16655  	},
 16656  	{
 16657  		CounterId: 146,
 16658  		Instance:  "vmnic1",
 16659  	},
 16660  	{
 16661  		CounterId: 146,
 16662  		Instance:  "4000",
 16663  	},
 16664  	{
 16665  		CounterId: 472,
 16666  		Instance:  "",
 16667  	},
 16668  	{
 16669  		CounterId: 471,
 16670  		Instance:  "",
 16671  	},
 16672  	{
 16673  		CounterId: 460,
 16674  		Instance:  "",
 16675  	},
 16676  	{
 16677  		CounterId: 147,
 16678  		Instance:  "4000",
 16679  	},
 16680  	{
 16681  		CounterId: 471,
 16682  		Instance:  "4000",
 16683  	},
 16684  	{
 16685  		CounterId: 148,
 16686  		Instance:  "",
 16687  	},
 16688  	{
 16689  		CounterId: 147,
 16690  		Instance:  "vmnic0",
 16691  	},
 16692  	{
 16693  		CounterId: 465,
 16694  		Instance:  "",
 16695  	},
 16696  	{
 16697  		CounterId: 464,
 16698  		Instance:  "4000",
 16699  	},
 16700  	{
 16701  		CounterId: 464,
 16702  		Instance:  "",
 16703  	},
 16704  	{
 16705  		CounterId: 148,
 16706  		Instance:  "vmnic0",
 16707  	},
 16708  	{
 16709  		CounterId: 463,
 16710  		Instance:  "vmnic0",
 16711  	},
 16712  	{
 16713  		CounterId: 467,
 16714  		Instance:  "",
 16715  	},
 16716  	{
 16717  		CounterId: 143,
 16718  		Instance:  "vmnic1",
 16719  	},
 16720  	{
 16721  		CounterId: 149,
 16722  		Instance:  "",
 16723  	},
 16724  	{
 16725  		CounterId: 467,
 16726  		Instance:  "4000",
 16727  	},
 16728  	{
 16729  		CounterId: 159,
 16730  		Instance:  "",
 16731  	},
 16732  	{
 16733  		CounterId: 157,
 16734  		Instance:  "",
 16735  	},
 16736  	{
 16737  		CounterId: 504,
 16738  		Instance:  "",
 16739  	},
 16740  	{
 16741  		CounterId: 507,
 16742  		Instance:  "",
 16743  	},
 16744  	{
 16745  		CounterId: 513,
 16746  		Instance:  "",
 16747  	},
 16748  	{
 16749  		CounterId: 348,
 16750  		Instance:  "",
 16751  	},
 16752  	{
 16753  		CounterId: 505,
 16754  		Instance:  "",
 16755  	},
 16756  	{
 16757  		CounterId: 514,
 16758  		Instance:  "",
 16759  	},
 16760  	{
 16761  		CounterId: 506,
 16762  		Instance:  "",
 16763  	},
 16764  	{
 16765  		CounterId: 512,
 16766  		Instance:  "",
 16767  	},
 16768  	{
 16769  		CounterId: 508,
 16770  		Instance:  "",
 16771  	},
 16772  	{
 16773  		CounterId: 515,
 16774  		Instance:  "",
 16775  	},
 16776  	{
 16777  		CounterId: 509,
 16778  		Instance:  "",
 16779  	},
 16780  	{
 16781  		CounterId: 501,
 16782  		Instance:  "",
 16783  	},
 16784  	{
 16785  		CounterId: 516,
 16786  		Instance:  "",
 16787  	},
 16788  	{
 16789  		CounterId: 503,
 16790  		Instance:  "",
 16791  	},
 16792  	{
 16793  		CounterId: 511,
 16794  		Instance:  "",
 16795  	},
 16796  	{
 16797  		CounterId: 510,
 16798  		Instance:  "",
 16799  	},
 16800  	{
 16801  		CounterId: 502,
 16802  		Instance:  "",
 16803  	},
 16804  	{
 16805  		CounterId: 155,
 16806  		Instance:  "",
 16807  	},
 16808  	{
 16809  		CounterId: 473,
 16810  		Instance:  "",
 16811  	},
 16812  	{
 16813  		CounterId: 498,
 16814  		Instance:  "",
 16815  	},
 16816  	{
 16817  		CounterId: 174,
 16818  		Instance:  "",
 16819  	},
 16820  	{
 16821  		CounterId: 173,
 16822  		Instance:  "",
 16823  	},
 16824  }
 16825  
 16826  // ************************* Host metrics ************************************
 16827  
 16828  var HostMetrics = []types.PerfMetricId{
 16829  	{
 16830  		CounterId: 386,
 16831  		Instance:  "",
 16832  	},
 16833  	{
 16834  		CounterId: 395,
 16835  		Instance:  "",
 16836  	},
 16837  	{
 16838  		CounterId: 14,
 16839  		Instance:  "",
 16840  	},
 16841  	{
 16842  		CounterId: 399,
 16843  		Instance:  "",
 16844  	},
 16845  	{
 16846  		CounterId: 392,
 16847  		Instance:  "",
 16848  	},
 16849  	{
 16850  		CounterId: 392,
 16851  		Instance:  "$cpu",
 16852  	},
 16853  	{
 16854  		CounterId: 11,
 16855  		Instance:  "",
 16856  	},
 16857  	{
 16858  		CounterId: 398,
 16859  		Instance:  "",
 16860  	},
 16861  	{
 16862  		CounterId: 388,
 16863  		Instance:  "",
 16864  	},
 16865  	{
 16866  		CounterId: 388,
 16867  		Instance:  "$cpu",
 16868  	},
 16869  	{
 16870  		CounterId: 13,
 16871  		Instance:  "",
 16872  	},
 16873  	{
 16874  		CounterId: 396,
 16875  		Instance:  "",
 16876  	},
 16877  	{
 16878  		CounterId: 12,
 16879  		Instance:  "",
 16880  	},
 16881  	{
 16882  		CounterId: 9,
 16883  		Instance:  "",
 16884  	},
 16885  	{
 16886  		CounterId: 2,
 16887  		Instance:  "",
 16888  	},
 16889  	{
 16890  		CounterId: 14,
 16891  		Instance:  "$cpu",
 16892  	},
 16893  	{
 16894  		CounterId: 404,
 16895  		Instance:  "",
 16896  	},
 16897  	{
 16898  		CounterId: 6,
 16899  		Instance:  "",
 16900  	},
 16901  	{
 16902  		CounterId: 2,
 16903  		Instance:  "$cpu",
 16904  	},
 16905  	{
 16906  		CounterId: 13,
 16907  		Instance:  "$cpu",
 16908  	},
 16909  	{
 16910  		CounterId: 185,
 16911  		Instance:  "d10c389e-c75b7dc4",
 16912  	},
 16913  	{
 16914  		CounterId: 179,
 16915  		Instance:  "$physDisk",
 16916  	},
 16917  	{
 16918  		CounterId: 178,
 16919  		Instance:  "$physDisk",
 16920  	},
 16921  	{
 16922  		CounterId: 358,
 16923  		Instance:  "$physDisk",
 16924  	},
 16925  	{
 16926  		CounterId: 537,
 16927  		Instance:  "$physDisk",
 16928  	},
 16929  	{
 16930  		CounterId: 354,
 16931  		Instance:  "$physDisk",
 16932  	},
 16933  	{
 16934  		CounterId: 191,
 16935  		Instance:  "$physDisk",
 16936  	},
 16937  	{
 16938  		CounterId: 352,
 16939  		Instance:  "$physDisk",
 16940  	},
 16941  	{
 16942  		CounterId: 359,
 16943  		Instance:  "$physDisk",
 16944  	},
 16945  	{
 16946  		CounterId: 184,
 16947  		Instance:  "",
 16948  	},
 16949  	{
 16950  		CounterId: 186,
 16951  		Instance:  "$physDisk",
 16952  	},
 16953  	{
 16954  		CounterId: 351,
 16955  		Instance:  "$physDisk",
 16956  	},
 16957  	{
 16958  		CounterId: 180,
 16959  		Instance:  "$physDisk",
 16960  	},
 16961  	{
 16962  		CounterId: 353,
 16963  		Instance:  "$physDisk",
 16964  	},
 16965  	{
 16966  		CounterId: 356,
 16967  		Instance:  "$physDisk",
 16968  	},
 16969  	{
 16970  		CounterId: 355,
 16971  		Instance:  "$physDisk",
 16972  	},
 16973  	{
 16974  		CounterId: 350,
 16975  		Instance:  "$physDisk",
 16976  	},
 16977  	{
 16978  		CounterId: 349,
 16979  		Instance:  "$physDisk",
 16980  	},
 16981  	{
 16982  		CounterId: 182,
 16983  		Instance:  "$physDisk",
 16984  	},
 16985  	{
 16986  		CounterId: 357,
 16987  		Instance:  "$physDisk",
 16988  	},
 16989  	{
 16990  		CounterId: 181,
 16991  		Instance:  "$physDisk",
 16992  	},
 16993  	{
 16994  		CounterId: 185,
 16995  		Instance:  "$physDisk",
 16996  	},
 16997  	{
 16998  		CounterId: 183,
 16999  		Instance:  "$physDisk",
 17000  	},
 17001  
 17002  	{
 17003  		CounterId: 455,
 17004  		Instance:  "$physDisk",
 17005  	},
 17006  	{
 17007  		CounterId: 133,
 17008  		Instance:  "",
 17009  	},
 17010  	{
 17011  		CounterId: 456,
 17012  		Instance:  "$physDisk",
 17013  	},
 17014  	{
 17015  		CounterId: 457,
 17016  		Instance:  "$physDisk",
 17017  	},
 17018  	{
 17019  		CounterId: 129,
 17020  		Instance:  "$physDisk",
 17021  	},
 17022  	{
 17023  		CounterId: 448,
 17024  		Instance:  "$physDisk",
 17025  	},
 17026  	{
 17027  		CounterId: 130,
 17028  		Instance:  "",
 17029  	},
 17030  	{
 17031  		CounterId: 447,
 17032  		Instance:  "$physDisk",
 17033  	},
 17034  	{
 17035  		CounterId: 458,
 17036  		Instance:  "$physDisk",
 17037  	},
 17038  	{
 17039  		CounterId: 131,
 17040  		Instance:  "$physDisk",
 17041  	},
 17042  	{
 17043  		CounterId: 134,
 17044  		Instance:  "$physDisk",
 17045  	},
 17046  	{
 17047  		CounterId: 446,
 17048  		Instance:  "$physDisk",
 17049  	},
 17050  	{
 17051  		CounterId: 450,
 17052  		Instance:  "$physDisk",
 17053  	},
 17054  	{
 17055  		CounterId: 451,
 17056  		Instance:  "$physDisk",
 17057  	},
 17058  	{
 17059  		CounterId: 453,
 17060  		Instance:  "$physDisk",
 17061  	},
 17062  	{
 17063  		CounterId: 452,
 17064  		Instance:  "$physDisk",
 17065  	},
 17066  	{
 17067  		CounterId: 454,
 17068  		Instance:  "$physDisk",
 17069  	},
 17070  	{
 17071  		CounterId: 128,
 17072  		Instance:  "$physDisk",
 17073  	},
 17074  	{
 17075  		CounterId: 132,
 17076  		Instance:  "$physDisk",
 17077  	},
 17078  	{
 17079  		CounterId: 459,
 17080  		Instance:  "$physDisk",
 17081  	},
 17082  	{
 17083  		CounterId: 130,
 17084  		Instance:  "$physDisk",
 17085  	},
 17086  	{
 17087  		CounterId: 125,
 17088  		Instance:  "",
 17089  	},
 17090  	{
 17091  		CounterId: 131,
 17092  		Instance:  "",
 17093  	},
 17094  	{
 17095  		CounterId: 449,
 17096  		Instance:  "$physDisk",
 17097  	},
 17098  	{
 17099  		CounterId: 135,
 17100  		Instance:  "$physDisk",
 17101  	},
 17102  	{
 17103  		CounterId: 136,
 17104  		Instance:  "$physDisk",
 17105  	},
 17106  	{
 17107  		CounterId: 137,
 17108  		Instance:  "$physDisk",
 17109  	},
 17110  	{
 17111  		CounterId: 538,
 17112  		Instance:  "",
 17113  	},
 17114  	{
 17115  		CounterId: 540,
 17116  		Instance:  "",
 17117  	},
 17118  	{
 17119  		CounterId: 539,
 17120  		Instance:  "",
 17121  	},
 17122  	{
 17123  		CounterId: 65,
 17124  		Instance:  "",
 17125  	},
 17126  	{
 17127  		CounterId: 27,
 17128  		Instance:  "",
 17129  	},
 17130  	{
 17131  		CounterId: 419,
 17132  		Instance:  "",
 17133  	},
 17134  	{
 17135  		CounterId: 443,
 17136  		Instance:  "",
 17137  	},
 17138  	{
 17139  		CounterId: 437,
 17140  		Instance:  "",
 17141  	},
 17142  	{
 17143  		CounterId: 24,
 17144  		Instance:  "",
 17145  	},
 17146  	{
 17147  		CounterId: 68,
 17148  		Instance:  "",
 17149  	},
 17150  	{
 17151  		CounterId: 422,
 17152  		Instance:  "",
 17153  	},
 17154  	{
 17155  		CounterId: 106,
 17156  		Instance:  "",
 17157  	},
 17158  	{
 17159  		CounterId: 410,
 17160  		Instance:  "",
 17161  	},
 17162  	{
 17163  		CounterId: 33,
 17164  		Instance:  "",
 17165  	},
 17166  	{
 17167  		CounterId: 105,
 17168  		Instance:  "",
 17169  	},
 17170  	{
 17171  		CounterId: 107,
 17172  		Instance:  "",
 17173  	},
 17174  	{
 17175  		CounterId: 61,
 17176  		Instance:  "",
 17177  	},
 17178  	{
 17179  		CounterId: 445,
 17180  		Instance:  "",
 17181  	},
 17182  	{
 17183  		CounterId: 417,
 17184  		Instance:  "",
 17185  	},
 17186  	{
 17187  		CounterId: 406,
 17188  		Instance:  "",
 17189  	},
 17190  	{
 17191  		CounterId: 444,
 17192  		Instance:  "",
 17193  	},
 17194  	{
 17195  		CounterId: 427,
 17196  		Instance:  "",
 17197  	},
 17198  	{
 17199  		CounterId: 85,
 17200  		Instance:  "",
 17201  	},
 17202  	{
 17203  		CounterId: 424,
 17204  		Instance:  "",
 17205  	},
 17206  	{
 17207  		CounterId: 49,
 17208  		Instance:  "",
 17209  	},
 17210  	{
 17211  		CounterId: 414,
 17212  		Instance:  "",
 17213  	},
 17214  	{
 17215  		CounterId: 98,
 17216  		Instance:  "",
 17217  	},
 17218  	{
 17219  		CounterId: 29,
 17220  		Instance:  "",
 17221  	},
 17222  	{
 17223  		CounterId: 57,
 17224  		Instance:  "",
 17225  	},
 17226  	{
 17227  		CounterId: 441,
 17228  		Instance:  "",
 17229  	},
 17230  	{
 17231  		CounterId: 41,
 17232  		Instance:  "",
 17233  	},
 17234  	{
 17235  		CounterId: 86,
 17236  		Instance:  "",
 17237  	},
 17238  	{
 17239  		CounterId: 433,
 17240  		Instance:  "",
 17241  	},
 17242  	{
 17243  		CounterId: 45,
 17244  		Instance:  "",
 17245  	},
 17246  	{
 17247  		CounterId: 426,
 17248  		Instance:  "",
 17249  	},
 17250  	{
 17251  		CounterId: 429,
 17252  		Instance:  "",
 17253  	},
 17254  	{
 17255  		CounterId: 440,
 17256  		Instance:  "",
 17257  	},
 17258  	{
 17259  		CounterId: 102,
 17260  		Instance:  "",
 17261  	},
 17262  	{
 17263  		CounterId: 90,
 17264  		Instance:  "",
 17265  	},
 17266  	{
 17267  		CounterId: 37,
 17268  		Instance:  "",
 17269  	},
 17270  	{
 17271  		CounterId: 442,
 17272  		Instance:  "",
 17273  	},
 17274  	{
 17275  		CounterId: 469,
 17276  		Instance:  "vmnic0",
 17277  	},
 17278  	{
 17279  		CounterId: 460,
 17280  		Instance:  "",
 17281  	},
 17282  	{
 17283  		CounterId: 463,
 17284  		Instance:  "",
 17285  	},
 17286  	{
 17287  		CounterId: 143,
 17288  		Instance:  "",
 17289  	},
 17290  	{
 17291  		CounterId: 465,
 17292  		Instance:  "",
 17293  	},
 17294  	{
 17295  		CounterId: 461,
 17296  		Instance:  "",
 17297  	},
 17298  	{
 17299  		CounterId: 468,
 17300  		Instance:  "",
 17301  	},
 17302  	{
 17303  		CounterId: 143,
 17304  		Instance:  "vmnic0",
 17305  	},
 17306  	{
 17307  		CounterId: 467,
 17308  		Instance:  "vmnic0",
 17309  	},
 17310  	{
 17311  		CounterId: 149,
 17312  		Instance:  "vmnic0",
 17313  	},
 17314  	{
 17315  		CounterId: 149,
 17316  		Instance:  "",
 17317  	},
 17318  	{
 17319  		CounterId: 470,
 17320  		Instance:  "",
 17321  	},
 17322  	{
 17323  		CounterId: 466,
 17324  		Instance:  "",
 17325  	},
 17326  	{
 17327  		CounterId: 146,
 17328  		Instance:  "",
 17329  	},
 17330  	{
 17331  		CounterId: 465,
 17332  		Instance:  "vmnic0",
 17333  	},
 17334  	{
 17335  		CounterId: 461,
 17336  		Instance:  "vmnic0",
 17337  	},
 17338  	{
 17339  		CounterId: 466,
 17340  		Instance:  "vmnic0",
 17341  	},
 17342  	{
 17343  		CounterId: 146,
 17344  		Instance:  "vmnic0",
 17345  	},
 17346  	{
 17347  		CounterId: 464,
 17348  		Instance:  "vmnic0",
 17349  	},
 17350  	{
 17351  		CounterId: 148,
 17352  		Instance:  "vmnic0",
 17353  	},
 17354  	{
 17355  		CounterId: 460,
 17356  		Instance:  "vmnic0",
 17357  	},
 17358  	{
 17359  		CounterId: 468,
 17360  		Instance:  "vmnic0",
 17361  	},
 17362  	{
 17363  		CounterId: 147,
 17364  		Instance:  "",
 17365  	},
 17366  	{
 17367  		CounterId: 463,
 17368  		Instance:  "vmnic0",
 17369  	},
 17370  	{
 17371  		CounterId: 462,
 17372  		Instance:  "vmnic0",
 17373  	},
 17374  	{
 17375  		CounterId: 464,
 17376  		Instance:  "",
 17377  	},
 17378  	{
 17379  		CounterId: 470,
 17380  		Instance:  "vmnic0",
 17381  	},
 17382  	{
 17383  		CounterId: 148,
 17384  		Instance:  "",
 17385  	},
 17386  	{
 17387  		CounterId: 462,
 17388  		Instance:  "",
 17389  	},
 17390  	{
 17391  		CounterId: 467,
 17392  		Instance:  "",
 17393  	},
 17394  	{
 17395  		CounterId: 469,
 17396  		Instance:  "",
 17397  	},
 17398  	{
 17399  		CounterId: 147,
 17400  		Instance:  "vmnic0",
 17401  	},
 17402  	{
 17403  		CounterId: 159,
 17404  		Instance:  "",
 17405  	},
 17406  	{
 17407  		CounterId: 158,
 17408  		Instance:  "",
 17409  	},
 17410  	{
 17411  		CounterId: 157,
 17412  		Instance:  "",
 17413  	},
 17414  	{
 17415  		CounterId: 503,
 17416  		Instance:  "",
 17417  	},
 17418  	{
 17419  		CounterId: 511,
 17420  		Instance:  "",
 17421  	},
 17422  	{
 17423  		CounterId: 504,
 17424  		Instance:  "",
 17425  	},
 17426  	{
 17427  		CounterId: 501,
 17428  		Instance:  "",
 17429  	},
 17430  	{
 17431  		CounterId: 513,
 17432  		Instance:  "",
 17433  	},
 17434  	{
 17435  		CounterId: 516,
 17436  		Instance:  "",
 17437  	},
 17438  	{
 17439  		CounterId: 507,
 17440  		Instance:  "",
 17441  	},
 17442  	{
 17443  		CounterId: 508,
 17444  		Instance:  "",
 17445  	},
 17446  	{
 17447  		CounterId: 502,
 17448  		Instance:  "",
 17449  	},
 17450  	{
 17451  		CounterId: 348,
 17452  		Instance:  "",
 17453  	},
 17454  	{
 17455  		CounterId: 505,
 17456  		Instance:  "",
 17457  	},
 17458  	{
 17459  		CounterId: 510,
 17460  		Instance:  "",
 17461  	},
 17462  	{
 17463  		CounterId: 512,
 17464  		Instance:  "",
 17465  	},
 17466  	{
 17467  		CounterId: 515,
 17468  		Instance:  "",
 17469  	},
 17470  	{
 17471  		CounterId: 514,
 17472  		Instance:  "",
 17473  	},
 17474  	{
 17475  		CounterId: 506,
 17476  		Instance:  "",
 17477  	},
 17478  	{
 17479  		CounterId: 509,
 17480  		Instance:  "",
 17481  	},
 17482  	{
 17483  		CounterId: 161,
 17484  		Instance:  "vmhba32",
 17485  	},
 17486  	{
 17487  		CounterId: 162,
 17488  		Instance:  "vmhba1",
 17489  	},
 17490  	{
 17491  		CounterId: 166,
 17492  		Instance:  "vmhba32",
 17493  	},
 17494  	{
 17495  		CounterId: 163,
 17496  		Instance:  "vmhba1",
 17497  	},
 17498  	{
 17499  		CounterId: 163,
 17500  		Instance:  "vmhba0",
 17501  	},
 17502  	{
 17503  		CounterId: 168,
 17504  		Instance:  "",
 17505  	},
 17506  	{
 17507  		CounterId: 167,
 17508  		Instance:  "vmhba32",
 17509  	},
 17510  	{
 17511  		CounterId: 162,
 17512  		Instance:  "vmhba0",
 17513  	},
 17514  	{
 17515  		CounterId: 164,
 17516  		Instance:  "vmhba1",
 17517  	},
 17518  	{
 17519  		CounterId: 167,
 17520  		Instance:  "vmhba1",
 17521  	},
 17522  	{
 17523  		CounterId: 167,
 17524  		Instance:  "vmhba0",
 17525  	},
 17526  	{
 17527  		CounterId: 162,
 17528  		Instance:  "vmhba32",
 17529  	},
 17530  	{
 17531  		CounterId: 164,
 17532  		Instance:  "vmhba0",
 17533  	},
 17534  	{
 17535  		CounterId: 166,
 17536  		Instance:  "vmhba1",
 17537  	},
 17538  	{
 17539  		CounterId: 166,
 17540  		Instance:  "vmhba0",
 17541  	},
 17542  	{
 17543  		CounterId: 165,
 17544  		Instance:  "vmhba1",
 17545  	},
 17546  	{
 17547  		CounterId: 165,
 17548  		Instance:  "vmhba0",
 17549  	},
 17550  	{
 17551  		CounterId: 164,
 17552  		Instance:  "vmhba32",
 17553  	},
 17554  	{
 17555  		CounterId: 161,
 17556  		Instance:  "vmhba1",
 17557  	},
 17558  	{
 17559  		CounterId: 161,
 17560  		Instance:  "vmhba0",
 17561  	},
 17562  	{
 17563  		CounterId: 163,
 17564  		Instance:  "vmhba32",
 17565  	},
 17566  	{
 17567  		CounterId: 165,
 17568  		Instance:  "vmhba32",
 17569  	},
 17570  	{
 17571  		CounterId: 520,
 17572  		Instance:  "$physDisk",
 17573  	},
 17574  	{
 17575  		CounterId: 523,
 17576  		Instance:  "$physDisk",
 17577  	},
 17578  	{
 17579  		CounterId: 193,
 17580  		Instance:  "",
 17581  	},
 17582  	{
 17583  		CounterId: 522,
 17584  		Instance:  "$physDisk",
 17585  	},
 17586  	{
 17587  		CounterId: 524,
 17588  		Instance:  "$physDisk",
 17589  	},
 17590  	{
 17591  		CounterId: 521,
 17592  		Instance:  "$physDisk",
 17593  	},
 17594  	{
 17595  		CounterId: 525,
 17596  		Instance:  "$physDisk",
 17597  	},
 17598  	{
 17599  		CounterId: 526,
 17600  		Instance:  "$physDisk",
 17601  	},
 17602  	{
 17603  		CounterId: 482,
 17604  		Instance:  "host/vim/vmvisor/vmkiscsid",
 17605  	},
 17606  	{
 17607  		CounterId: 482,
 17608  		Instance:  "host/system/svmotion",
 17609  	},
 17610  	{
 17611  		CounterId: 483,
 17612  		Instance:  "host/system/kernel/root",
 17613  	},
 17614  	{
 17615  		CounterId: 479,
 17616  		Instance:  "host/system/kernel/tmp",
 17617  	},
 17618  	{
 17619  		CounterId: 484,
 17620  		Instance:  "host/vim/vmvisor/init",
 17621  	},
 17622  	{
 17623  		CounterId: 499,
 17624  		Instance:  "host/system/kernel/var",
 17625  	},
 17626  	{
 17627  		CounterId: 481,
 17628  		Instance:  "host/vim/vmvisor/sioc",
 17629  	},
 17630  	{
 17631  		CounterId: 476,
 17632  		Instance:  "host/vim/vmvisor/wsman",
 17633  	},
 17634  	{
 17635  		CounterId: 485,
 17636  		Instance:  "host/system/kernel/var",
 17637  	},
 17638  	{
 17639  		CounterId: 480,
 17640  		Instance:  "host/vim/vimuser/terminal/shell",
 17641  	},
 17642  	{
 17643  		CounterId: 481,
 17644  		Instance:  "host/system/vmotion",
 17645  	},
 17646  	{
 17647  		CounterId: 488,
 17648  		Instance:  "host/vim",
 17649  	},
 17650  	{
 17651  		CounterId: 484,
 17652  		Instance:  "host/system/kernel/opt",
 17653  	},
 17654  	{
 17655  		CounterId: 481,
 17656  		Instance:  "host/iofilters/spm",
 17657  	},
 17658  	{
 17659  		CounterId: 480,
 17660  		Instance:  "host/vim",
 17661  	},
 17662  	{
 17663  		CounterId: 481,
 17664  		Instance:  "host/vim/vmvisor/hostd-probe",
 17665  	},
 17666  	{
 17667  		CounterId: 483,
 17668  		Instance:  "host/system/kernel/opt",
 17669  	},
 17670  	{
 17671  		CounterId: 500,
 17672  		Instance:  "host/system/kernel/var",
 17673  	},
 17674  	{
 17675  		CounterId: 500,
 17676  		Instance:  "host/system/kernel/opt",
 17677  	},
 17678  	{
 17679  		CounterId: 480,
 17680  		Instance:  "host/system/kernel/tmp",
 17681  	},
 17682  	{
 17683  		CounterId: 482,
 17684  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 17685  	},
 17686  	{
 17687  		CounterId: 499,
 17688  		Instance:  "host/system/kernel/etc",
 17689  	},
 17690  	{
 17691  		CounterId: 485,
 17692  		Instance:  "host/system/kernel/etc",
 17693  	},
 17694  	{
 17695  		CounterId: 482,
 17696  		Instance:  "host/system/kernel/etc",
 17697  	},
 17698  	{
 17699  		CounterId: 481,
 17700  		Instance:  "host/system/kernel/etc",
 17701  	},
 17702  	{
 17703  		CounterId: 485,
 17704  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 17705  	},
 17706  	{
 17707  		CounterId: 484,
 17708  		Instance:  "host/system/kernel/root",
 17709  	},
 17710  	{
 17711  		CounterId: 481,
 17712  		Instance:  "host/system/kernel/root",
 17713  	},
 17714  	{
 17715  		CounterId: 480,
 17716  		Instance:  "host/system/kernel/var",
 17717  	},
 17718  	{
 17719  		CounterId: 479,
 17720  		Instance:  "host/system/kernel/root",
 17721  	},
 17722  	{
 17723  		CounterId: 499,
 17724  		Instance:  "host/vim/vmvisor/dhclientrelease",
 17725  	},
 17726  	{
 17727  		CounterId: 485,
 17728  		Instance:  "host/system/kernel",
 17729  	},
 17730  	{
 17731  		CounterId: 499,
 17732  		Instance:  "host/iofilters",
 17733  	},
 17734  	{
 17735  		CounterId: 479,
 17736  		Instance:  "host/vim/vmvisor/wsman",
 17737  	},
 17738  	{
 17739  		CounterId: 484,
 17740  		Instance:  "host/vim/vmvisor/usbArbitrator",
 17741  	},
 17742  	{
 17743  		CounterId: 484,
 17744  		Instance:  "host/system/kernel",
 17745  	},
 17746  	{
 17747  		CounterId: 481,
 17748  		Instance:  "host/vim/vmvisor/swapobjd",
 17749  	},
 17750  	{
 17751  		CounterId: 483,
 17752  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 17753  	},
 17754  	{
 17755  		CounterId: 481,
 17756  		Instance:  "host/system/kernel/var",
 17757  	},
 17758  	{
 17759  		CounterId: 482,
 17760  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 17761  	},
 17762  	{
 17763  		CounterId: 480,
 17764  		Instance:  "host/system/kernel",
 17765  	},
 17766  	{
 17767  		CounterId: 482,
 17768  		Instance:  "host/vim/vmvisor/vmfstraced",
 17769  	},
 17770  	{
 17771  		CounterId: 476,
 17772  		Instance:  "host/system/kernel",
 17773  	},
 17774  	{
 17775  		CounterId: 483,
 17776  		Instance:  "host/system/kernel/var",
 17777  	},
 17778  	{
 17779  		CounterId: 483,
 17780  		Instance:  "host/vim/vmvisor/nscd",
 17781  	},
 17782  	{
 17783  		CounterId: 476,
 17784  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 17785  	},
 17786  	{
 17787  		CounterId: 500,
 17788  		Instance:  "host/system/kernel",
 17789  	},
 17790  	{
 17791  		CounterId: 484,
 17792  		Instance:  "host/vim/vmvisor/vobd",
 17793  	},
 17794  	{
 17795  		CounterId: 484,
 17796  		Instance:  "host/vim/vmvisor/sfcb",
 17797  	},
 17798  	{
 17799  		CounterId: 496,
 17800  		Instance:  "host/system",
 17801  	},
 17802  	{
 17803  		CounterId: 500,
 17804  		Instance:  "host/iofilters/vmwarevmcrypt",
 17805  	},
 17806  	{
 17807  		CounterId: 480,
 17808  		Instance:  "host/vim/vmvisor/snmpd",
 17809  	},
 17810  	{
 17811  		CounterId: 494,
 17812  		Instance:  "host/system",
 17813  	},
 17814  	{
 17815  		CounterId: 482,
 17816  		Instance:  "host/vim/vimuser/terminal/shell",
 17817  	},
 17818  	{
 17819  		CounterId: 482,
 17820  		Instance:  "host/vim/vmvisor/lacpd",
 17821  	},
 17822  	{
 17823  		CounterId: 482,
 17824  		Instance:  "host/system/kernel",
 17825  	},
 17826  	{
 17827  		CounterId: 491,
 17828  		Instance:  "host/system",
 17829  	},
 17830  	{
 17831  		CounterId: 487,
 17832  		Instance:  "host/system",
 17833  	},
 17834  	{
 17835  		CounterId: 499,
 17836  		Instance:  "host/vim/vmvisor/snmpd",
 17837  	},
 17838  	{
 17839  		CounterId: 481,
 17840  		Instance:  "host/system/kernel/tmp",
 17841  	},
 17842  	{
 17843  		CounterId: 500,
 17844  		Instance:  "host/vim/vmci",
 17845  	},
 17846  	{
 17847  		CounterId: 479,
 17848  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 17849  	},
 17850  	{
 17851  		CounterId: 482,
 17852  		Instance:  "host/iofilters/spm",
 17853  	},
 17854  	{
 17855  		CounterId: 499,
 17856  		Instance:  "host/system",
 17857  	},
 17858  	{
 17859  		CounterId: 485,
 17860  		Instance:  "host/system",
 17861  	},
 17862  	{
 17863  		CounterId: 483,
 17864  		Instance:  "host/system/kernel",
 17865  	},
 17866  	{
 17867  		CounterId: 483,
 17868  		Instance:  "host/system/vmotion",
 17869  	},
 17870  	{
 17871  		CounterId: 479,
 17872  		Instance:  "host/vim/vmvisor/pcscd",
 17873  	},
 17874  	{
 17875  		CounterId: 484,
 17876  		Instance:  "host/system",
 17877  	},
 17878  	{
 17879  		CounterId: 480,
 17880  		Instance:  "host/vim/vmvisor/dhclient",
 17881  	},
 17882  	{
 17883  		CounterId: 476,
 17884  		Instance:  "host/vim",
 17885  	},
 17886  	{
 17887  		CounterId: 499,
 17888  		Instance:  "host/system/kernel/tmp",
 17889  	},
 17890  	{
 17891  		CounterId: 493,
 17892  		Instance:  "host/system",
 17893  	},
 17894  	{
 17895  		CounterId: 484,
 17896  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 17897  	},
 17898  	{
 17899  		CounterId: 481,
 17900  		Instance:  "host/system",
 17901  	},
 17902  	{
 17903  		CounterId: 479,
 17904  		Instance:  "host/system/kernel/var",
 17905  	},
 17906  	{
 17907  		CounterId: 484,
 17908  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 17909  	},
 17910  	{
 17911  		CounterId: 481,
 17912  		Instance:  "host/vim/vmvisor/lacpd",
 17913  	},
 17914  	{
 17915  		CounterId: 476,
 17916  		Instance:  "host/system",
 17917  	},
 17918  	{
 17919  		CounterId: 483,
 17920  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 17921  	},
 17922  	{
 17923  		CounterId: 500,
 17924  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 17925  	},
 17926  	{
 17927  		CounterId: 500,
 17928  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 17929  	},
 17930  	{
 17931  		CounterId: 483,
 17932  		Instance:  "host/vim/vmvisor/hostd-probe",
 17933  	},
 17934  	{
 17935  		CounterId: 500,
 17936  		Instance:  "host/system/kernel/tmp",
 17937  	},
 17938  	{
 17939  		CounterId: 485,
 17940  		Instance:  "host/vim/vmvisor/sensord",
 17941  	},
 17942  	{
 17943  		CounterId: 499,
 17944  		Instance:  "host",
 17945  	},
 17946  	{
 17947  		CounterId: 484,
 17948  		Instance:  "host/vim/vmvisor/dcui",
 17949  	},
 17950  	{
 17951  		CounterId: 499,
 17952  		Instance:  "host/vim/vmvisor/logging",
 17953  	},
 17954  	{
 17955  		CounterId: 479,
 17956  		Instance:  "host/system/drivers",
 17957  	},
 17958  	{
 17959  		CounterId: 476,
 17960  		Instance:  "host/system/kernel/opt",
 17961  	},
 17962  	{
 17963  		CounterId: 484,
 17964  		Instance:  "host",
 17965  	},
 17966  	{
 17967  		CounterId: 485,
 17968  		Instance:  "host/system/kernel/root",
 17969  	},
 17970  	{
 17971  		CounterId: 484,
 17972  		Instance:  "host/vim/vmvisor/memScrubber",
 17973  	},
 17974  	{
 17975  		CounterId: 483,
 17976  		Instance:  "host/system/drivers",
 17977  	},
 17978  	{
 17979  		CounterId: 479,
 17980  		Instance:  "host/system/kernel/iofilters",
 17981  	},
 17982  	{
 17983  		CounterId: 481,
 17984  		Instance:  "host",
 17985  	},
 17986  	{
 17987  		CounterId: 480,
 17988  		Instance:  "host/system/kernel/iofilters",
 17989  	},
 17990  	{
 17991  		CounterId: 479,
 17992  		Instance:  "host/system/vmotion",
 17993  	},
 17994  	{
 17995  		CounterId: 500,
 17996  		Instance:  "host",
 17997  	},
 17998  	{
 17999  		CounterId: 476,
 18000  		Instance:  "host/system/kernel/var",
 18001  	},
 18002  	{
 18003  		CounterId: 481,
 18004  		Instance:  "host/vim/vmvisor/vmkeventd",
 18005  	},
 18006  	{
 18007  		CounterId: 481,
 18008  		Instance:  "host/system/kernel/iofilters",
 18009  	},
 18010  	{
 18011  		CounterId: 481,
 18012  		Instance:  "host/system/svmotion",
 18013  	},
 18014  	{
 18015  		CounterId: 484,
 18016  		Instance:  "host/system/helper",
 18017  	},
 18018  	{
 18019  		CounterId: 499,
 18020  		Instance:  "host/system/kernel/iofilters",
 18021  	},
 18022  	{
 18023  		CounterId: 480,
 18024  		Instance:  "host/vim/vmvisor/init",
 18025  	},
 18026  	{
 18027  		CounterId: 500,
 18028  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 18029  	},
 18030  	{
 18031  		CounterId: 485,
 18032  		Instance:  "host/vim/vmvisor/upittraced",
 18033  	},
 18034  	{
 18035  		CounterId: 500,
 18036  		Instance:  "host/system/kernel/hostdstats",
 18037  	},
 18038  	{
 18039  		CounterId: 500,
 18040  		Instance:  "host/vim/vimuser/terminal",
 18041  	},
 18042  	{
 18043  		CounterId: 476,
 18044  		Instance:  "host/system/kernel/hostdstats",
 18045  	},
 18046  	{
 18047  		CounterId: 481,
 18048  		Instance:  "host/vim/vmvisor/vobd",
 18049  	},
 18050  	{
 18051  		CounterId: 483,
 18052  		Instance:  "host/vim/vmvisor/net-daemons",
 18053  	},
 18054  	{
 18055  		CounterId: 499,
 18056  		Instance:  "host/vim/vmvisor/upittraced",
 18057  	},
 18058  	{
 18059  		CounterId: 500,
 18060  		Instance:  "host/vim/vmvisor/pcscd",
 18061  	},
 18062  	{
 18063  		CounterId: 499,
 18064  		Instance:  "host/system/kernel/hostdstats",
 18065  	},
 18066  	{
 18067  		CounterId: 482,
 18068  		Instance:  "host/system/kernel/var",
 18069  	},
 18070  	{
 18071  		CounterId: 483,
 18072  		Instance:  "host/vim/vmvisor/plugins",
 18073  	},
 18074  	{
 18075  		CounterId: 476,
 18076  		Instance:  "host/vim/vmvisor/vpxa",
 18077  	},
 18078  	{
 18079  		CounterId: 500,
 18080  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 18081  	},
 18082  	{
 18083  		CounterId: 485,
 18084  		Instance:  "host/system/svmotion",
 18085  	},
 18086  	{
 18087  		CounterId: 476,
 18088  		Instance:  "host/iofilters",
 18089  	},
 18090  	{
 18091  		CounterId: 476,
 18092  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 18093  	},
 18094  	{
 18095  		CounterId: 480,
 18096  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 18097  	},
 18098  	{
 18099  		CounterId: 482,
 18100  		Instance:  "host/vim",
 18101  	},
 18102  	{
 18103  		CounterId: 484,
 18104  		Instance:  "host/system/kernel/hostdstats",
 18105  	},
 18106  	{
 18107  		CounterId: 485,
 18108  		Instance:  "host/vim/vmvisor/hostd",
 18109  	},
 18110  	{
 18111  		CounterId: 480,
 18112  		Instance:  "host/system/kernel/hostdstats",
 18113  	},
 18114  	{
 18115  		CounterId: 479,
 18116  		Instance:  "host/system/kernel",
 18117  	},
 18118  	{
 18119  		CounterId: 486,
 18120  		Instance:  "host/system/vmotion",
 18121  	},
 18122  	{
 18123  		CounterId: 492,
 18124  		Instance:  "host/system",
 18125  	},
 18126  	{
 18127  		CounterId: 483,
 18128  		Instance:  "host/system/kernel/hostdstats",
 18129  	},
 18130  	{
 18131  		CounterId: 485,
 18132  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 18133  	},
 18134  	{
 18135  		CounterId: 485,
 18136  		Instance:  "host/vim",
 18137  	},
 18138  	{
 18139  		CounterId: 483,
 18140  		Instance:  "host/system/helper",
 18141  	},
 18142  	{
 18143  		CounterId: 476,
 18144  		Instance:  "host/system/vmotion",
 18145  	},
 18146  	{
 18147  		CounterId: 489,
 18148  		Instance:  "host/system",
 18149  	},
 18150  	{
 18151  		CounterId: 476,
 18152  		Instance:  "host/vim/vmvisor/boot",
 18153  	},
 18154  	{
 18155  		CounterId: 480,
 18156  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 18157  	},
 18158  	{
 18159  		CounterId: 499,
 18160  		Instance:  "host/vim/vmvisor/vobd",
 18161  	},
 18162  	{
 18163  		CounterId: 499,
 18164  		Instance:  "host/system/svmotion",
 18165  	},
 18166  	{
 18167  		CounterId: 485,
 18168  		Instance:  "host/iofilters/spm",
 18169  	},
 18170  	{
 18171  		CounterId: 476,
 18172  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 18173  	},
 18174  	{
 18175  		CounterId: 481,
 18176  		Instance:  "host/system/helper",
 18177  	},
 18178  	{
 18179  		CounterId: 497,
 18180  		Instance:  "host/system",
 18181  	},
 18182  	{
 18183  		CounterId: 500,
 18184  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 18185  	},
 18186  	{
 18187  		CounterId: 480,
 18188  		Instance:  "host/system/kernel/opt",
 18189  	},
 18190  	{
 18191  		CounterId: 484,
 18192  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 18193  	},
 18194  	{
 18195  		CounterId: 485,
 18196  		Instance:  "host/vim/vmvisor/dcui",
 18197  	},
 18198  	{
 18199  		CounterId: 491,
 18200  		Instance:  "host/system/vmotion",
 18201  	},
 18202  	{
 18203  		CounterId: 483,
 18204  		Instance:  "host/vim/vmvisor/snmpd",
 18205  	},
 18206  	{
 18207  		CounterId: 485,
 18208  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 18209  	},
 18210  	{
 18211  		CounterId: 482,
 18212  		Instance:  "host/vim/vmvisor/pcscd",
 18213  	},
 18214  	{
 18215  		CounterId: 485,
 18216  		Instance:  "host/vim/vimuser/terminal/shell",
 18217  	},
 18218  	{
 18219  		CounterId: 479,
 18220  		Instance:  "host/vim/vmvisor/memScrubber",
 18221  	},
 18222  	{
 18223  		CounterId: 476,
 18224  		Instance:  "host/system/drivers",
 18225  	},
 18226  	{
 18227  		CounterId: 485,
 18228  		Instance:  "host/system/vmotion",
 18229  	},
 18230  	{
 18231  		CounterId: 476,
 18232  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 18233  	},
 18234  	{
 18235  		CounterId: 483,
 18236  		Instance:  "host/iofilters",
 18237  	},
 18238  	{
 18239  		CounterId: 485,
 18240  		Instance:  "host/vim/vmvisor/osfsd",
 18241  	},
 18242  	{
 18243  		CounterId: 485,
 18244  		Instance:  "host/system/drivers",
 18245  	},
 18246  	{
 18247  		CounterId: 485,
 18248  		Instance:  "host/vim/vmvisor/aam",
 18249  	},
 18250  	{
 18251  		CounterId: 499,
 18252  		Instance:  "host/system/ft",
 18253  	},
 18254  	{
 18255  		CounterId: 483,
 18256  		Instance:  "host/system/ft",
 18257  	},
 18258  	{
 18259  		CounterId: 484,
 18260  		Instance:  "host/system/ft",
 18261  	},
 18262  	{
 18263  		CounterId: 480,
 18264  		Instance:  "host/vim/vmvisor/vpxa",
 18265  	},
 18266  	{
 18267  		CounterId: 484,
 18268  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 18269  	},
 18270  	{
 18271  		CounterId: 500,
 18272  		Instance:  "host/vim/vmvisor/hbrca",
 18273  	},
 18274  	{
 18275  		CounterId: 480,
 18276  		Instance:  "host/system/vmotion",
 18277  	},
 18278  	{
 18279  		CounterId: 487,
 18280  		Instance:  "host/vim",
 18281  	},
 18282  	{
 18283  		CounterId: 484,
 18284  		Instance:  "host/system/kernel/etc",
 18285  	},
 18286  	{
 18287  		CounterId: 479,
 18288  		Instance:  "host/vim/vmvisor/net-daemons",
 18289  	},
 18290  	{
 18291  		CounterId: 480,
 18292  		Instance:  "host/vim/vmvisor/logging",
 18293  	},
 18294  	{
 18295  		CounterId: 483,
 18296  		Instance:  "host/vim/vmvisor/vmkeventd",
 18297  	},
 18298  	{
 18299  		CounterId: 484,
 18300  		Instance:  "host/system/vmotion",
 18301  	},
 18302  	{
 18303  		CounterId: 476,
 18304  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 18305  	},
 18306  	{
 18307  		CounterId: 486,
 18308  		Instance:  "host/vim",
 18309  	},
 18310  	{
 18311  		CounterId: 484,
 18312  		Instance:  "host/vim/vmvisor",
 18313  	},
 18314  	{
 18315  		CounterId: 500,
 18316  		Instance:  "host/vim/vmvisor/osfsd",
 18317  	},
 18318  	{
 18319  		CounterId: 483,
 18320  		Instance:  "host/system",
 18321  	},
 18322  	{
 18323  		CounterId: 495,
 18324  		Instance:  "host/system",
 18325  	},
 18326  	{
 18327  		CounterId: 481,
 18328  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 18329  	},
 18330  	{
 18331  		CounterId: 499,
 18332  		Instance:  "host/system/vmotion",
 18333  	},
 18334  	{
 18335  		CounterId: 481,
 18336  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 18337  	},
 18338  	{
 18339  		CounterId: 488,
 18340  		Instance:  "host/system/vmotion",
 18341  	},
 18342  	{
 18343  		CounterId: 489,
 18344  		Instance:  "host/system/vmotion",
 18345  	},
 18346  	{
 18347  		CounterId: 485,
 18348  		Instance:  "host/vim/vmvisor",
 18349  	},
 18350  	{
 18351  		CounterId: 481,
 18352  		Instance:  "host/vim/vimuser/terminal/ssh",
 18353  	},
 18354  	{
 18355  		CounterId: 499,
 18356  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18357  	},
 18358  	{
 18359  		CounterId: 492,
 18360  		Instance:  "host/system/vmotion",
 18361  	},
 18362  	{
 18363  		CounterId: 485,
 18364  		Instance:  "host/system/kernel/hostdstats",
 18365  	},
 18366  	{
 18367  		CounterId: 499,
 18368  		Instance:  "host/system/helper",
 18369  	},
 18370  	{
 18371  		CounterId: 482,
 18372  		Instance:  "host/vim/vmvisor/slp",
 18373  	},
 18374  	{
 18375  		CounterId: 493,
 18376  		Instance:  "host/system/vmotion",
 18377  	},
 18378  	{
 18379  		CounterId: 500,
 18380  		Instance:  "host/vim/vmvisor/sensord",
 18381  	},
 18382  	{
 18383  		CounterId: 479,
 18384  		Instance:  "host/system/kernel/hostdstats",
 18385  	},
 18386  	{
 18387  		CounterId: 482,
 18388  		Instance:  "host/system/kernel/root",
 18389  	},
 18390  	{
 18391  		CounterId: 495,
 18392  		Instance:  "host/vim",
 18393  	},
 18394  	{
 18395  		CounterId: 499,
 18396  		Instance:  "host/vim/vmvisor/hostd-probe",
 18397  	},
 18398  	{
 18399  		CounterId: 479,
 18400  		Instance:  "host/iofilters/vmwarevmcrypt",
 18401  	},
 18402  	{
 18403  		CounterId: 481,
 18404  		Instance:  "host/vim/vimuser/terminal",
 18405  	},
 18406  	{
 18407  		CounterId: 499,
 18408  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 18409  	},
 18410  	{
 18411  		CounterId: 495,
 18412  		Instance:  "host/system/vmotion",
 18413  	},
 18414  	{
 18415  		CounterId: 482,
 18416  		Instance:  "host",
 18417  	},
 18418  	{
 18419  		CounterId: 480,
 18420  		Instance:  "host/system/svmotion",
 18421  	},
 18422  	{
 18423  		CounterId: 480,
 18424  		Instance:  "host/user",
 18425  	},
 18426  	{
 18427  		CounterId: 483,
 18428  		Instance:  "host/system/svmotion",
 18429  	},
 18430  	{
 18431  		CounterId: 480,
 18432  		Instance:  "host",
 18433  	},
 18434  	{
 18435  		CounterId: 488,
 18436  		Instance:  "host/system",
 18437  	},
 18438  	{
 18439  		CounterId: 500,
 18440  		Instance:  "host/vim/vmvisor/lbt",
 18441  	},
 18442  	{
 18443  		CounterId: 481,
 18444  		Instance:  "host/vim",
 18445  	},
 18446  	{
 18447  		CounterId: 483,
 18448  		Instance:  "host/vim",
 18449  	},
 18450  	{
 18451  		CounterId: 480,
 18452  		Instance:  "host/vim/vmvisor/hostd-probe",
 18453  	},
 18454  	{
 18455  		CounterId: 483,
 18456  		Instance:  "host/vim/vmvisor/smartd",
 18457  	},
 18458  	{
 18459  		CounterId: 483,
 18460  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 18461  	},
 18462  	{
 18463  		CounterId: 490,
 18464  		Instance:  "host/vim",
 18465  	},
 18466  	{
 18467  		CounterId: 500,
 18468  		Instance:  "host/vim/vmvisor/likewise",
 18469  	},
 18470  	{
 18471  		CounterId: 484,
 18472  		Instance:  "host/vim/tmp",
 18473  	},
 18474  	{
 18475  		CounterId: 491,
 18476  		Instance:  "host/vim",
 18477  	},
 18478  	{
 18479  		CounterId: 481,
 18480  		Instance:  "host/system/kernel/opt",
 18481  	},
 18482  	{
 18483  		CounterId: 490,
 18484  		Instance:  "host/system",
 18485  	},
 18486  	{
 18487  		CounterId: 482,
 18488  		Instance:  "host/system/drivers",
 18489  	},
 18490  	{
 18491  		CounterId: 500,
 18492  		Instance:  "host/vim/vmvisor/lacpd",
 18493  	},
 18494  	{
 18495  		CounterId: 479,
 18496  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 18497  	},
 18498  	{
 18499  		CounterId: 480,
 18500  		Instance:  "host/vim/vmvisor/pcscd",
 18501  	},
 18502  	{
 18503  		CounterId: 479,
 18504  		Instance:  "host/vim/vmvisor/netcpa",
 18505  	},
 18506  	{
 18507  		CounterId: 500,
 18508  		Instance:  "host/vim/vmvisor/slp",
 18509  	},
 18510  	{
 18511  		CounterId: 484,
 18512  		Instance:  "host/vim/vmvisor/sensord",
 18513  	},
 18514  	{
 18515  		CounterId: 476,
 18516  		Instance:  "host/vim/vmvisor/slp",
 18517  	},
 18518  	{
 18519  		CounterId: 482,
 18520  		Instance:  "host/system/kernel/hostdstats",
 18521  	},
 18522  	{
 18523  		CounterId: 480,
 18524  		Instance:  "host/vim/vmvisor/slp",
 18525  	},
 18526  	{
 18527  		CounterId: 479,
 18528  		Instance:  "host/vim/vmvisor/slp",
 18529  	},
 18530  	{
 18531  		CounterId: 480,
 18532  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 18533  	},
 18534  	{
 18535  		CounterId: 481,
 18536  		Instance:  "host/vim/vmvisor/slp",
 18537  	},
 18538  	{
 18539  		CounterId: 479,
 18540  		Instance:  "host/iofilters/spm",
 18541  	},
 18542  	{
 18543  		CounterId: 479,
 18544  		Instance:  "host/vim/vmvisor/vvoltraced",
 18545  	},
 18546  	{
 18547  		CounterId: 484,
 18548  		Instance:  "host/vim/vmvisor/slp",
 18549  	},
 18550  	{
 18551  		CounterId: 485,
 18552  		Instance:  "host/vim/vmvisor/slp",
 18553  	},
 18554  	{
 18555  		CounterId: 500,
 18556  		Instance:  "host/vim/vmvisor/plugins",
 18557  	},
 18558  	{
 18559  		CounterId: 479,
 18560  		Instance:  "host/vim/vimuser",
 18561  	},
 18562  	{
 18563  		CounterId: 482,
 18564  		Instance:  "host/vim/vmvisor/plugins",
 18565  	},
 18566  	{
 18567  		CounterId: 499,
 18568  		Instance:  "host/vim/vmvisor/slp",
 18569  	},
 18570  	{
 18571  		CounterId: 500,
 18572  		Instance:  "host/vim/vmvisor/smartd",
 18573  	},
 18574  	{
 18575  		CounterId: 479,
 18576  		Instance:  "host/vim/vmvisor/smartd",
 18577  	},
 18578  	{
 18579  		CounterId: 484,
 18580  		Instance:  "host/vim/vmvisor/hostd-probe",
 18581  	},
 18582  	{
 18583  		CounterId: 481,
 18584  		Instance:  "host/vim/vmvisor/smartd",
 18585  	},
 18586  	{
 18587  		CounterId: 482,
 18588  		Instance:  "host/vim/vmvisor/smartd",
 18589  	},
 18590  	{
 18591  		CounterId: 499,
 18592  		Instance:  "host/system/kernel",
 18593  	},
 18594  	{
 18595  		CounterId: 481,
 18596  		Instance:  "host/system/kernel/hostdstats",
 18597  	},
 18598  	{
 18599  		CounterId: 482,
 18600  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 18601  	},
 18602  	{
 18603  		CounterId: 476,
 18604  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 18605  	},
 18606  	{
 18607  		CounterId: 484,
 18608  		Instance:  "host/vim/vmvisor/smartd",
 18609  	},
 18610  	{
 18611  		CounterId: 499,
 18612  		Instance:  "host/vim/vmvisor/smartd",
 18613  	},
 18614  	{
 18615  		CounterId: 500,
 18616  		Instance:  "host/vim/vmvisor/snmpd",
 18617  	},
 18618  	{
 18619  		CounterId: 485,
 18620  		Instance:  "host/system/kernel/iofilters",
 18621  	},
 18622  	{
 18623  		CounterId: 481,
 18624  		Instance:  "host/vim/vmvisor/snmpd",
 18625  	},
 18626  	{
 18627  		CounterId: 481,
 18628  		Instance:  "host/vim/vmvisor/logging",
 18629  	},
 18630  	{
 18631  		CounterId: 485,
 18632  		Instance:  "host/vim/vimuser/terminal",
 18633  	},
 18634  	{
 18635  		CounterId: 482,
 18636  		Instance:  "host/vim/vmvisor/snmpd",
 18637  	},
 18638  	{
 18639  		CounterId: 481,
 18640  		Instance:  "host/system/drivers",
 18641  	},
 18642  	{
 18643  		CounterId: 500,
 18644  		Instance:  "host/vim/vmvisor/upitd",
 18645  	},
 18646  	{
 18647  		CounterId: 484,
 18648  		Instance:  "host/vim/vmvisor/snmpd",
 18649  	},
 18650  	{
 18651  		CounterId: 492,
 18652  		Instance:  "host/vim",
 18653  	},
 18654  	{
 18655  		CounterId: 485,
 18656  		Instance:  "host/vim/vmvisor/snmpd",
 18657  	},
 18658  	{
 18659  		CounterId: 499,
 18660  		Instance:  "host/vim/vimuser/terminal/ssh",
 18661  	},
 18662  	{
 18663  		CounterId: 482,
 18664  		Instance:  "host/vim/vmvisor/logging",
 18665  	},
 18666  	{
 18667  		CounterId: 476,
 18668  		Instance:  "host/vim/vmvisor/swapobjd",
 18669  	},
 18670  	{
 18671  		CounterId: 476,
 18672  		Instance:  "host/vim/vmvisor/vvoltraced",
 18673  	},
 18674  	{
 18675  		CounterId: 484,
 18676  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 18677  	},
 18678  	{
 18679  		CounterId: 484,
 18680  		Instance:  "host/system/drivers",
 18681  	},
 18682  	{
 18683  		CounterId: 482,
 18684  		Instance:  "host/vim/vmvisor/swapobjd",
 18685  	},
 18686  	{
 18687  		CounterId: 479,
 18688  		Instance:  "host/vim/vmvisor/hostd",
 18689  	},
 18690  	{
 18691  		CounterId: 484,
 18692  		Instance:  "host/vim/vmvisor/swapobjd",
 18693  	},
 18694  	{
 18695  		CounterId: 499,
 18696  		Instance:  "host/vim/vmvisor/swapobjd",
 18697  	},
 18698  	{
 18699  		CounterId: 480,
 18700  		Instance:  "host/vim/vmvisor/hostd",
 18701  	},
 18702  	{
 18703  		CounterId: 485,
 18704  		Instance:  "host",
 18705  	},
 18706  	{
 18707  		CounterId: 483,
 18708  		Instance:  "host/vim/vmvisor/hostd",
 18709  	},
 18710  	{
 18711  		CounterId: 476,
 18712  		Instance:  "host/vim/vmvisor/upitd",
 18713  	},
 18714  	{
 18715  		CounterId: 476,
 18716  		Instance:  "host/vim/vmvisor/memScrubber",
 18717  	},
 18718  	{
 18719  		CounterId: 479,
 18720  		Instance:  "host/vim/vmvisor/upitd",
 18721  	},
 18722  	{
 18723  		CounterId: 485,
 18724  		Instance:  "host/system/kernel/opt",
 18725  	},
 18726  	{
 18727  		CounterId: 480,
 18728  		Instance:  "host/vim/vmvisor/upitd",
 18729  	},
 18730  	{
 18731  		CounterId: 481,
 18732  		Instance:  "host/vim/vmvisor/upitd",
 18733  	},
 18734  	{
 18735  		CounterId: 483,
 18736  		Instance:  "host/vim/vmvisor",
 18737  	},
 18738  	{
 18739  		CounterId: 496,
 18740  		Instance:  "host/system/vmotion",
 18741  	},
 18742  	{
 18743  		CounterId: 482,
 18744  		Instance:  "host/vim/vmvisor/upitd",
 18745  	},
 18746  	{
 18747  		CounterId: 485,
 18748  		Instance:  "host/vim/vmvisor/upitd",
 18749  	},
 18750  	{
 18751  		CounterId: 476,
 18752  		Instance:  "host/vim/vmvisor/sfcb_aux",
 18753  	},
 18754  	{
 18755  		CounterId: 499,
 18756  		Instance:  "host/vim/vmvisor/upitd",
 18757  	},
 18758  	{
 18759  		CounterId: 500,
 18760  		Instance:  "host/system/svmotion",
 18761  	},
 18762  	{
 18763  		CounterId: 485,
 18764  		Instance:  "host/vim/vmvisor/swapobjd",
 18765  	},
 18766  	{
 18767  		CounterId: 500,
 18768  		Instance:  "host/vim/vmvisor/upittraced",
 18769  	},
 18770  	{
 18771  		CounterId: 483,
 18772  		Instance:  "host/vim/vmvisor/likewise",
 18773  	},
 18774  	{
 18775  		CounterId: 476,
 18776  		Instance:  "host/vim/vmvisor/upittraced",
 18777  	},
 18778  	{
 18779  		CounterId: 485,
 18780  		Instance:  "host/system/kernel/tmp",
 18781  	},
 18782  	{
 18783  		CounterId: 479,
 18784  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 18785  	},
 18786  	{
 18787  		CounterId: 484,
 18788  		Instance:  "host/system/kernel/tmp",
 18789  	},
 18790  	{
 18791  		CounterId: 479,
 18792  		Instance:  "host/vim/vmvisor/upittraced",
 18793  	},
 18794  	{
 18795  		CounterId: 482,
 18796  		Instance:  "host/vim/vimuser",
 18797  	},
 18798  	{
 18799  		CounterId: 480,
 18800  		Instance:  "host/vim/vmvisor/upittraced",
 18801  	},
 18802  	{
 18803  		CounterId: 481,
 18804  		Instance:  "host/vim/vmvisor/upittraced",
 18805  	},
 18806  	{
 18807  		CounterId: 500,
 18808  		Instance:  "host/vim/vmvisor/swapobjd",
 18809  	},
 18810  	{
 18811  		CounterId: 482,
 18812  		Instance:  "host/vim/vmvisor/upittraced",
 18813  	},
 18814  	{
 18815  		CounterId: 486,
 18816  		Instance:  "host/system",
 18817  	},
 18818  	{
 18819  		CounterId: 483,
 18820  		Instance:  "host/vim/vmvisor/upittraced",
 18821  	},
 18822  	{
 18823  		CounterId: 500,
 18824  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 18825  	},
 18826  	{
 18827  		CounterId: 485,
 18828  		Instance:  "host/system/ft",
 18829  	},
 18830  	{
 18831  		CounterId: 500,
 18832  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18833  	},
 18834  	{
 18835  		CounterId: 484,
 18836  		Instance:  "host/vim/vmvisor/aam",
 18837  	},
 18838  	{
 18839  		CounterId: 483,
 18840  		Instance:  "host/user",
 18841  	},
 18842  	{
 18843  		CounterId: 482,
 18844  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 18845  	},
 18846  	{
 18847  		CounterId: 476,
 18848  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18849  	},
 18850  	{
 18851  		CounterId: 485,
 18852  		Instance:  "host/vim/vmvisor/smartd",
 18853  	},
 18854  	{
 18855  		CounterId: 480,
 18856  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18857  	},
 18858  	{
 18859  		CounterId: 481,
 18860  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18861  	},
 18862  	{
 18863  		CounterId: 482,
 18864  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18865  	},
 18866  	{
 18867  		CounterId: 499,
 18868  		Instance:  "host/vim/vmvisor/likewise",
 18869  	},
 18870  	{
 18871  		CounterId: 481,
 18872  		Instance:  "host/vim/vmvisor/memScrubber",
 18873  	},
 18874  	{
 18875  		CounterId: 485,
 18876  		Instance:  "host/vim/vmvisor/usbArbitrator",
 18877  	},
 18878  	{
 18879  		CounterId: 500,
 18880  		Instance:  "host/vim/vmvisor/uwdaemons",
 18881  	},
 18882  	{
 18883  		CounterId: 481,
 18884  		Instance:  "host/iofilters",
 18885  	},
 18886  	{
 18887  		CounterId: 476,
 18888  		Instance:  "host/system/kernel/iofilters",
 18889  	},
 18890  	{
 18891  		CounterId: 499,
 18892  		Instance:  "host/system/kernel/root",
 18893  	},
 18894  	{
 18895  		CounterId: 476,
 18896  		Instance:  "host/vim/vmvisor/uwdaemons",
 18897  	},
 18898  	{
 18899  		CounterId: 479,
 18900  		Instance:  "host/vim/vmvisor/uwdaemons",
 18901  	},
 18902  	{
 18903  		CounterId: 480,
 18904  		Instance:  "host/vim/vmvisor/uwdaemons",
 18905  	},
 18906  	{
 18907  		CounterId: 499,
 18908  		Instance:  "host/vim/vmvisor/sfcb",
 18909  	},
 18910  	{
 18911  		CounterId: 481,
 18912  		Instance:  "host/vim/vmvisor/uwdaemons",
 18913  	},
 18914  	{
 18915  		CounterId: 484,
 18916  		Instance:  "host/vim/vmvisor/uwdaemons",
 18917  	},
 18918  	{
 18919  		CounterId: 479,
 18920  		Instance:  "host/system",
 18921  	},
 18922  	{
 18923  		CounterId: 483,
 18924  		Instance:  "host/vim/vmvisor/uwdaemons",
 18925  	},
 18926  	{
 18927  		CounterId: 485,
 18928  		Instance:  "host/vim/vmvisor/uwdaemons",
 18929  	},
 18930  	{
 18931  		CounterId: 479,
 18932  		Instance:  "host/vim/vmvisor/snmpd",
 18933  	},
 18934  	{
 18935  		CounterId: 480,
 18936  		Instance:  "host/vim/vmvisor/lbt",
 18937  	},
 18938  	{
 18939  		CounterId: 499,
 18940  		Instance:  "host/vim/vmvisor/uwdaemons",
 18941  	},
 18942  	{
 18943  		CounterId: 480,
 18944  		Instance:  "host/vim/vmvisor",
 18945  	},
 18946  	{
 18947  		CounterId: 479,
 18948  		Instance:  "host/vim/vmvisor/vmfstraced",
 18949  	},
 18950  	{
 18951  		CounterId: 480,
 18952  		Instance:  "host/vim/vmvisor/vmfstraced",
 18953  	},
 18954  	{
 18955  		CounterId: 479,
 18956  		Instance:  "host/vim/vmvisor/lbt",
 18957  	},
 18958  	{
 18959  		CounterId: 481,
 18960  		Instance:  "host/system/ft",
 18961  	},
 18962  	{
 18963  		CounterId: 482,
 18964  		Instance:  "host/vim/vmvisor/ntpd",
 18965  	},
 18966  	{
 18967  		CounterId: 476,
 18968  		Instance:  "host/vim/vmvisor/sfcb",
 18969  	},
 18970  	{
 18971  		CounterId: 499,
 18972  		Instance:  "host/vim/tmp",
 18973  	},
 18974  	{
 18975  		CounterId: 482,
 18976  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 18977  	},
 18978  	{
 18979  		CounterId: 485,
 18980  		Instance:  "host/vim/vmvisor/init",
 18981  	},
 18982  	{
 18983  		CounterId: 480,
 18984  		Instance:  "host/vim/vmvisor/nfcd",
 18985  	},
 18986  	{
 18987  		CounterId: 483,
 18988  		Instance:  "host/vim/vmvisor/vmfstraced",
 18989  	},
 18990  	{
 18991  		CounterId: 484,
 18992  		Instance:  "host/vim/vmvisor/vmfstraced",
 18993  	},
 18994  	{
 18995  		CounterId: 485,
 18996  		Instance:  "host/vim/vmvisor/vmfstraced",
 18997  	},
 18998  	{
 18999  		CounterId: 500,
 19000  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19001  	},
 19002  	{
 19003  		CounterId: 480,
 19004  		Instance:  "host/vim/vimuser/terminal/ssh",
 19005  	},
 19006  	{
 19007  		CounterId: 483,
 19008  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 19009  	},
 19010  	{
 19011  		CounterId: 479,
 19012  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19013  	},
 19014  	{
 19015  		CounterId: 479,
 19016  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 19017  	},
 19018  	{
 19019  		CounterId: 481,
 19020  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19021  	},
 19022  	{
 19023  		CounterId: 485,
 19024  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19025  	},
 19026  	{
 19027  		CounterId: 499,
 19028  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19029  	},
 19030  	{
 19031  		CounterId: 484,
 19032  		Instance:  "host/vim",
 19033  	},
 19034  	{
 19035  		CounterId: 481,
 19036  		Instance:  "host/vim/vmvisor/likewise",
 19037  	},
 19038  	{
 19039  		CounterId: 480,
 19040  		Instance:  "host/vim/vmvisor/net-daemons",
 19041  	},
 19042  	{
 19043  		CounterId: 500,
 19044  		Instance:  "host/vim/vmvisor/vmkeventd",
 19045  	},
 19046  	{
 19047  		CounterId: 484,
 19048  		Instance:  "host/system/kernel/var",
 19049  	},
 19050  	{
 19051  		CounterId: 476,
 19052  		Instance:  "host/vim/vmvisor/vmkeventd",
 19053  	},
 19054  	{
 19055  		CounterId: 481,
 19056  		Instance:  "host/vim/vmci",
 19057  	},
 19058  	{
 19059  		CounterId: 480,
 19060  		Instance:  "host/vim/vmvisor/dhclientrelease",
 19061  	},
 19062  	{
 19063  		CounterId: 484,
 19064  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 19065  	},
 19066  	{
 19067  		CounterId: 479,
 19068  		Instance:  "host/vim/vmvisor/vmkeventd",
 19069  	},
 19070  	{
 19071  		CounterId: 484,
 19072  		Instance:  "host/vim/vmvisor/vmkeventd",
 19073  	},
 19074  	{
 19075  		CounterId: 484,
 19076  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 19077  	},
 19078  	{
 19079  		CounterId: 485,
 19080  		Instance:  "host/vim/vmvisor/vmkeventd",
 19081  	},
 19082  	{
 19083  		CounterId: 499,
 19084  		Instance:  "host/vim/vmvisor/vmkeventd",
 19085  	},
 19086  	{
 19087  		CounterId: 476,
 19088  		Instance:  "host/iofilters/vmwarevmcrypt",
 19089  	},
 19090  	{
 19091  		CounterId: 499,
 19092  		Instance:  "host/vim/vmvisor",
 19093  	},
 19094  	{
 19095  		CounterId: 476,
 19096  		Instance:  "host/vim/vmvisor/init",
 19097  	},
 19098  	{
 19099  		CounterId: 482,
 19100  		Instance:  "host/vim/vmvisor/hostd-probe",
 19101  	},
 19102  	{
 19103  		CounterId: 500,
 19104  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19105  	},
 19106  	{
 19107  		CounterId: 479,
 19108  		Instance:  "host/user",
 19109  	},
 19110  	{
 19111  		CounterId: 485,
 19112  		Instance:  "host/vim/vmvisor/netcpa",
 19113  	},
 19114  	{
 19115  		CounterId: 479,
 19116  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19117  	},
 19118  	{
 19119  		CounterId: 484,
 19120  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 19121  	},
 19122  	{
 19123  		CounterId: 484,
 19124  		Instance:  "host/vim/vmvisor/nfcd",
 19125  	},
 19126  	{
 19127  		CounterId: 482,
 19128  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 19129  	},
 19130  	{
 19131  		CounterId: 487,
 19132  		Instance:  "host/system/vmotion",
 19133  	},
 19134  	{
 19135  		CounterId: 480,
 19136  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19137  	},
 19138  	{
 19139  		CounterId: 483,
 19140  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19141  	},
 19142  	{
 19143  		CounterId: 499,
 19144  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19145  	},
 19146  	{
 19147  		CounterId: 500,
 19148  		Instance:  "host/vim/vmvisor/vobd",
 19149  	},
 19150  	{
 19151  		CounterId: 476,
 19152  		Instance:  "host/vim/vmvisor/vobd",
 19153  	},
 19154  	{
 19155  		CounterId: 479,
 19156  		Instance:  "host/vim/vmvisor/vobd",
 19157  	},
 19158  	{
 19159  		CounterId: 484,
 19160  		Instance:  "host/vim/vmvisor/osfsd",
 19161  	},
 19162  	{
 19163  		CounterId: 482,
 19164  		Instance:  "host/vim/vmvisor/nscd",
 19165  	},
 19166  	{
 19167  		CounterId: 480,
 19168  		Instance:  "host/vim/vmvisor/vobd",
 19169  	},
 19170  	{
 19171  		CounterId: 500,
 19172  		Instance:  "host/vim/vmvisor/hostd",
 19173  	},
 19174  	{
 19175  		CounterId: 499,
 19176  		Instance:  "host/vim/vmvisor/plugins",
 19177  	},
 19178  	{
 19179  		CounterId: 476,
 19180  		Instance:  "host/vim/vimuser/terminal/ssh",
 19181  	},
 19182  	{
 19183  		CounterId: 482,
 19184  		Instance:  "host/vim/vmvisor/vobd",
 19185  	},
 19186  	{
 19187  		CounterId: 500,
 19188  		Instance:  "host/system/vmotion",
 19189  	},
 19190  	{
 19191  		CounterId: 479,
 19192  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 19193  	},
 19194  	{
 19195  		CounterId: 484,
 19196  		Instance:  "host/vim/vmvisor/wsman",
 19197  	},
 19198  	{
 19199  		CounterId: 485,
 19200  		Instance:  "host/vim/vmvisor/vobd",
 19201  	},
 19202  	{
 19203  		CounterId: 500,
 19204  		Instance:  "host/vim/vmvisor/dhclientrelease",
 19205  	},
 19206  	{
 19207  		CounterId: 479,
 19208  		Instance:  "host/vim/vmvisor/vpxa",
 19209  	},
 19210  	{
 19211  		CounterId: 481,
 19212  		Instance:  "host/vim/vmvisor/vpxa",
 19213  	},
 19214  	{
 19215  		CounterId: 476,
 19216  		Instance:  "host/vim/vimuser",
 19217  	},
 19218  	{
 19219  		CounterId: 500,
 19220  		Instance:  "host/vim/vmvisor/sfcb_aux",
 19221  	},
 19222  	{
 19223  		CounterId: 482,
 19224  		Instance:  "host/vim/vmvisor/vpxa",
 19225  	},
 19226  	{
 19227  		CounterId: 476,
 19228  		Instance:  "host/vim/vmvisor/netcpa",
 19229  	},
 19230  	{
 19231  		CounterId: 482,
 19232  		Instance:  "host/system/helper",
 19233  	},
 19234  	{
 19235  		CounterId: 485,
 19236  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 19237  	},
 19238  	{
 19239  		CounterId: 483,
 19240  		Instance:  "host/vim/vmvisor/vpxa",
 19241  	},
 19242  	{
 19243  		CounterId: 155,
 19244  		Instance:  "",
 19245  	},
 19246  	{
 19247  		CounterId: 484,
 19248  		Instance:  "host/vim/vmvisor/vpxa",
 19249  	},
 19250  	{
 19251  		CounterId: 485,
 19252  		Instance:  "host/vim/vmvisor/vpxa",
 19253  	},
 19254  	{
 19255  		CounterId: 499,
 19256  		Instance:  "host/vim/vmvisor/vpxa",
 19257  	},
 19258  	{
 19259  		CounterId: 483,
 19260  		Instance:  "host/vim/vmvisor/dhclient",
 19261  	},
 19262  	{
 19263  		CounterId: 483,
 19264  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 19265  	},
 19266  	{
 19267  		CounterId: 483,
 19268  		Instance:  "host/vim/vmvisor/slp",
 19269  	},
 19270  	{
 19271  		CounterId: 500,
 19272  		Instance:  "host/vim/vmvisor/vvold",
 19273  	},
 19274  	{
 19275  		CounterId: 476,
 19276  		Instance:  "host/vim/vmvisor/vvold",
 19277  	},
 19278  	{
 19279  		CounterId: 479,
 19280  		Instance:  "host/vim/vmvisor/vvold",
 19281  	},
 19282  	{
 19283  		CounterId: 480,
 19284  		Instance:  "host/system/helper",
 19285  	},
 19286  	{
 19287  		CounterId: 480,
 19288  		Instance:  "host/vim/vmvisor/vvold",
 19289  	},
 19290  	{
 19291  		CounterId: 482,
 19292  		Instance:  "host/vim/vmvisor/vvold",
 19293  	},
 19294  	{
 19295  		CounterId: 483,
 19296  		Instance:  "host/vim/vmvisor/vvold",
 19297  	},
 19298  	{
 19299  		CounterId: 482,
 19300  		Instance:  "host/vim/vmvisor/hostd",
 19301  	},
 19302  	{
 19303  		CounterId: 483,
 19304  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 19305  	},
 19306  	{
 19307  		CounterId: 484,
 19308  		Instance:  "host/vim/vmvisor/vvold",
 19309  	},
 19310  	{
 19311  		CounterId: 500,
 19312  		Instance:  "host/user",
 19313  	},
 19314  	{
 19315  		CounterId: 484,
 19316  		Instance:  "host/vim/vmvisor/ntpd",
 19317  	},
 19318  	{
 19319  		CounterId: 485,
 19320  		Instance:  "host/vim/vmvisor/vvold",
 19321  	},
 19322  	{
 19323  		CounterId: 484,
 19324  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 19325  	},
 19326  	{
 19327  		CounterId: 499,
 19328  		Instance:  "host/vim/vmvisor/vvold",
 19329  	},
 19330  	{
 19331  		CounterId: 479,
 19332  		Instance:  "host/system/svmotion",
 19333  	},
 19334  	{
 19335  		CounterId: 480,
 19336  		Instance:  "host/system/ft",
 19337  	},
 19338  	{
 19339  		CounterId: 500,
 19340  		Instance:  "host/vim/vmvisor/vvoltraced",
 19341  	},
 19342  	{
 19343  		CounterId: 500,
 19344  		Instance:  "host/system/kernel/root",
 19345  	},
 19346  	{
 19347  		CounterId: 481,
 19348  		Instance:  "host/vim/vmvisor/vvoltraced",
 19349  	},
 19350  	{
 19351  		CounterId: 485,
 19352  		Instance:  "host/system/helper",
 19353  	},
 19354  	{
 19355  		CounterId: 482,
 19356  		Instance:  "host/vim/vmvisor/nfsgssd",
 19357  	},
 19358  	{
 19359  		CounterId: 499,
 19360  		Instance:  "host/vim/vmvisor/aam",
 19361  	},
 19362  	{
 19363  		CounterId: 482,
 19364  		Instance:  "host/system/kernel/opt",
 19365  	},
 19366  	{
 19367  		CounterId: 482,
 19368  		Instance:  "host/vim/vimuser/terminal",
 19369  	},
 19370  	{
 19371  		CounterId: 483,
 19372  		Instance:  "host/iofilters/vmwarevmcrypt",
 19373  	},
 19374  	{
 19375  		CounterId: 485,
 19376  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 19377  	},
 19378  	{
 19379  		CounterId: 482,
 19380  		Instance:  "host/vim/vmvisor/vvoltraced",
 19381  	},
 19382  	{
 19383  		CounterId: 484,
 19384  		Instance:  "host/vim/vmvisor/vvoltraced",
 19385  	},
 19386  	{
 19387  		CounterId: 480,
 19388  		Instance:  "host/vim/vmvisor/swapobjd",
 19389  	},
 19390  	{
 19391  		CounterId: 483,
 19392  		Instance:  "host/system/kernel/etc",
 19393  	},
 19394  	{
 19395  		CounterId: 499,
 19396  		Instance:  "host/vim/vmvisor/vvoltraced",
 19397  	},
 19398  	{
 19399  		CounterId: 476,
 19400  		Instance:  "host/vim/vmci",
 19401  	},
 19402  	{
 19403  		CounterId: 481,
 19404  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19405  	},
 19406  	{
 19407  		CounterId: 500,
 19408  		Instance:  "host/vim/vmvisor/wsman",
 19409  	},
 19410  	{
 19411  		CounterId: 480,
 19412  		Instance:  "host/vim/vmvisor/wsman",
 19413  	},
 19414  	{
 19415  		CounterId: 481,
 19416  		Instance:  "host/vim/vmvisor/wsman",
 19417  	},
 19418  	{
 19419  		CounterId: 499,
 19420  		Instance:  "host/vim/vmvisor/lbt",
 19421  	},
 19422  	{
 19423  		CounterId: 476,
 19424  		Instance:  "host/system/ft",
 19425  	},
 19426  	{
 19427  		CounterId: 482,
 19428  		Instance:  "host/vim/vmvisor/wsman",
 19429  	},
 19430  	{
 19431  		CounterId: 480,
 19432  		Instance:  "host/system/drivers",
 19433  	},
 19434  	{
 19435  		CounterId: 482,
 19436  		Instance:  "host/vim/vmvisor/dhclientrelease",
 19437  	},
 19438  	{
 19439  		CounterId: 489,
 19440  		Instance:  "host/vim",
 19441  	},
 19442  	{
 19443  		CounterId: 483,
 19444  		Instance:  "host/vim/vmvisor/wsman",
 19445  	},
 19446  	{
 19447  		CounterId: 480,
 19448  		Instance:  "host/vim/vimuser/terminal",
 19449  	},
 19450  	{
 19451  		CounterId: 485,
 19452  		Instance:  "host/vim/vmvisor/wsman",
 19453  	},
 19454  	{
 19455  		CounterId: 484,
 19456  		Instance:  "host/system/svmotion",
 19457  	},
 19458  	{
 19459  		CounterId: 479,
 19460  		Instance:  "host/vim/vmvisor/dcui",
 19461  	},
 19462  	{
 19463  		CounterId: 485,
 19464  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 19465  	},
 19466  	{
 19467  		CounterId: 500,
 19468  		Instance:  "host/system/helper",
 19469  	},
 19470  	{
 19471  		CounterId: 499,
 19472  		Instance:  "host/vim/vmvisor/wsman",
 19473  	},
 19474  	{
 19475  		CounterId: 479,
 19476  		Instance:  "host/vim/vmvisor/hbrca",
 19477  	},
 19478  	{
 19479  		CounterId: 482,
 19480  		Instance:  "host/vim/vmvisor/sensord",
 19481  	},
 19482  	{
 19483  		CounterId: 499,
 19484  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 19485  	},
 19486  	{
 19487  		CounterId: 497,
 19488  		Instance:  "host/system/vmotion",
 19489  	},
 19490  	{
 19491  		CounterId: 500,
 19492  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19493  	},
 19494  	{
 19495  		CounterId: 479,
 19496  		Instance:  "host/vim/vmvisor/dhclientrelease",
 19497  	},
 19498  	{
 19499  		CounterId: 494,
 19500  		Instance:  "host/system/vmotion",
 19501  	},
 19502  	{
 19503  		CounterId: 499,
 19504  		Instance:  "host/vim/vmvisor/osfsd",
 19505  	},
 19506  	{
 19507  		CounterId: 482,
 19508  		Instance:  "host/system/kernel/tmp",
 19509  	},
 19510  	{
 19511  		CounterId: 476,
 19512  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19513  	},
 19514  	{
 19515  		CounterId: 499,
 19516  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 19517  	},
 19518  	{
 19519  		CounterId: 500,
 19520  		Instance:  "host/vim",
 19521  	},
 19522  	{
 19523  		CounterId: 481,
 19524  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19525  	},
 19526  	{
 19527  		CounterId: 476,
 19528  		Instance:  "host/iofilters/iofiltervpd",
 19529  	},
 19530  	{
 19531  		CounterId: 482,
 19532  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19533  	},
 19534  	{
 19535  		CounterId: 484,
 19536  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 19537  	},
 19538  	{
 19539  		CounterId: 483,
 19540  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19541  	},
 19542  	{
 19543  		CounterId: 482,
 19544  		Instance:  "host/system/vmotion",
 19545  	},
 19546  	{
 19547  		CounterId: 484,
 19548  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19549  	},
 19550  	{
 19551  		CounterId: 476,
 19552  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 19553  	},
 19554  	{
 19555  		CounterId: 485,
 19556  		Instance:  "host/vim/vmvisor/plugins",
 19557  	},
 19558  	{
 19559  		CounterId: 484,
 19560  		Instance:  "host/vim/vmvisor/sfcb_aux",
 19561  	},
 19562  	{
 19563  		CounterId: 479,
 19564  		Instance:  "host/system/kernel/opt",
 19565  	},
 19566  	{
 19567  		CounterId: 499,
 19568  		Instance:  "host/vim/vmvisor/vsanperfsvc",
 19569  	},
 19570  	{
 19571  		CounterId: 500,
 19572  		Instance:  "host/system/ft",
 19573  	},
 19574  	{
 19575  		CounterId: 499,
 19576  		Instance:  "host/vim/vmvisor/memScrubber",
 19577  	},
 19578  	{
 19579  		CounterId: 481,
 19580  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 19581  	},
 19582  	{
 19583  		CounterId: 476,
 19584  		Instance:  "host/vim/vmvisor/sioc",
 19585  	},
 19586  	{
 19587  		CounterId: 500,
 19588  		Instance:  "host/vim/vimuser",
 19589  	},
 19590  	{
 19591  		CounterId: 480,
 19592  		Instance:  "host/vim/vimuser",
 19593  	},
 19594  	{
 19595  		CounterId: 483,
 19596  		Instance:  "host/vim/vimuser",
 19597  	},
 19598  	{
 19599  		CounterId: 484,
 19600  		Instance:  "host/vim/vimuser",
 19601  	},
 19602  	{
 19603  		CounterId: 485,
 19604  		Instance:  "host/vim/vimuser",
 19605  	},
 19606  	{
 19607  		CounterId: 476,
 19608  		Instance:  "host/vim/vimuser/terminal",
 19609  	},
 19610  	{
 19611  		CounterId: 480,
 19612  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 19613  	},
 19614  	{
 19615  		CounterId: 480,
 19616  		Instance:  "host/vim/vmvisor/memScrubber",
 19617  	},
 19618  	{
 19619  		CounterId: 493,
 19620  		Instance:  "host/vim",
 19621  	},
 19622  	{
 19623  		CounterId: 483,
 19624  		Instance:  "host/vim/vimuser/terminal",
 19625  	},
 19626  	{
 19627  		CounterId: 484,
 19628  		Instance:  "host/vim/vimuser/terminal",
 19629  	},
 19630  	{
 19631  		CounterId: 499,
 19632  		Instance:  "host/vim/vimuser/terminal",
 19633  	},
 19634  	{
 19635  		CounterId: 500,
 19636  		Instance:  "host/vim/vimuser/terminal/shell",
 19637  	},
 19638  	{
 19639  		CounterId: 499,
 19640  		Instance:  "host/vim",
 19641  	},
 19642  	{
 19643  		CounterId: 476,
 19644  		Instance:  "host/vim/vmvisor/hbrca",
 19645  	},
 19646  	{
 19647  		CounterId: 479,
 19648  		Instance:  "host/vim",
 19649  	},
 19650  	{
 19651  		CounterId: 500,
 19652  		Instance:  "host/vim/vmvisor/logging",
 19653  	},
 19654  	{
 19655  		CounterId: 476,
 19656  		Instance:  "host/vim/vimuser/terminal/shell",
 19657  	},
 19658  	{
 19659  		CounterId: 485,
 19660  		Instance:  "host/iofilters",
 19661  	},
 19662  	{
 19663  		CounterId: 483,
 19664  		Instance:  "host/vim/vmvisor/vobd",
 19665  	},
 19666  	{
 19667  		CounterId: 479,
 19668  		Instance:  "host/vim/vimuser/terminal/shell",
 19669  	},
 19670  	{
 19671  		CounterId: 480,
 19672  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 19673  	},
 19674  	{
 19675  		CounterId: 476,
 19676  		Instance:  "host/system/kernel/tmp",
 19677  	},
 19678  	{
 19679  		CounterId: 481,
 19680  		Instance:  "host/vim/vimuser/terminal/shell",
 19681  	},
 19682  	{
 19683  		CounterId: 483,
 19684  		Instance:  "host/vim/vimuser/terminal/shell",
 19685  	},
 19686  	{
 19687  		CounterId: 485,
 19688  		Instance:  "host/vim/vimuser/terminal/ssh",
 19689  	},
 19690  	{
 19691  		CounterId: 494,
 19692  		Instance:  "host/vim",
 19693  	},
 19694  	{
 19695  		CounterId: 496,
 19696  		Instance:  "host/vim",
 19697  	},
 19698  	{
 19699  		CounterId: 497,
 19700  		Instance:  "host/vim",
 19701  	},
 19702  	{
 19703  		CounterId: 481,
 19704  		Instance:  "host/vim/vimuser",
 19705  	},
 19706  	{
 19707  		CounterId: 483,
 19708  		Instance:  "host/system/kernel/iofilters",
 19709  	},
 19710  	{
 19711  		CounterId: 479,
 19712  		Instance:  "host/vim/vmci",
 19713  	},
 19714  	{
 19715  		CounterId: 480,
 19716  		Instance:  "host/vim/vmci",
 19717  	},
 19718  	{
 19719  		CounterId: 499,
 19720  		Instance:  "host/vim/vimuser/terminal/shell",
 19721  	},
 19722  	{
 19723  		CounterId: 480,
 19724  		Instance:  "host/vim/vmvisor/vmkeventd",
 19725  	},
 19726  	{
 19727  		CounterId: 482,
 19728  		Instance:  "host/vim/vmci",
 19729  	},
 19730  	{
 19731  		CounterId: 484,
 19732  		Instance:  "host/vim/vmvisor/boot",
 19733  	},
 19734  	{
 19735  		CounterId: 483,
 19736  		Instance:  "host/vim/vmci",
 19737  	},
 19738  	{
 19739  		CounterId: 499,
 19740  		Instance:  "host/vim/vmvisor/dhclient",
 19741  	},
 19742  	{
 19743  		CounterId: 500,
 19744  		Instance:  "host/vim/vimuser/terminal/ssh",
 19745  	},
 19746  	{
 19747  		CounterId: 485,
 19748  		Instance:  "host/vim/vmvisor/ntpd",
 19749  	},
 19750  	{
 19751  		CounterId: 479,
 19752  		Instance:  "host/vim/vimuser/terminal/ssh",
 19753  	},
 19754  	{
 19755  		CounterId: 484,
 19756  		Instance:  "host/vim/vmci",
 19757  	},
 19758  	{
 19759  		CounterId: 482,
 19760  		Instance:  "host/vim/vimuser/terminal/ssh",
 19761  	},
 19762  	{
 19763  		CounterId: 485,
 19764  		Instance:  "host/vim/vmci",
 19765  	},
 19766  	{
 19767  		CounterId: 499,
 19768  		Instance:  "host/vim/vmci",
 19769  	},
 19770  	{
 19771  		CounterId: 476,
 19772  		Instance:  "host/vim/vmvisor",
 19773  	},
 19774  	{
 19775  		CounterId: 500,
 19776  		Instance:  "host/vim/vmvisor/init",
 19777  	},
 19778  	{
 19779  		CounterId: 482,
 19780  		Instance:  "host/vim/vmvisor",
 19781  	},
 19782  	{
 19783  		CounterId: 500,
 19784  		Instance:  "host/vim/vmvisor/aam",
 19785  	},
 19786  	{
 19787  		CounterId: 480,
 19788  		Instance:  "host/vim/vmvisor/smartd",
 19789  	},
 19790  	{
 19791  		CounterId: 479,
 19792  		Instance:  "host/vim/vmvisor/aam",
 19793  	},
 19794  	{
 19795  		CounterId: 476,
 19796  		Instance:  "host/system/kernel/root",
 19797  	},
 19798  	{
 19799  		CounterId: 499,
 19800  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 19801  	},
 19802  	{
 19803  		CounterId: 500,
 19804  		Instance:  "host/vim/tmp",
 19805  	},
 19806  	{
 19807  		CounterId: 480,
 19808  		Instance:  "host/vim/vmvisor/aam",
 19809  	},
 19810  	{
 19811  		CounterId: 499,
 19812  		Instance:  "host/vim/vmvisor/init",
 19813  	},
 19814  	{
 19815  		CounterId: 481,
 19816  		Instance:  "host/vim/vmvisor/aam",
 19817  	},
 19818  	{
 19819  		CounterId: 499,
 19820  		Instance:  "host/user",
 19821  	},
 19822  	{
 19823  		CounterId: 482,
 19824  		Instance:  "host/vim/vmvisor/aam",
 19825  	},
 19826  	{
 19827  		CounterId: 485,
 19828  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 19829  	},
 19830  	{
 19831  		CounterId: 483,
 19832  		Instance:  "host/vim/vmvisor/aam",
 19833  	},
 19834  	{
 19835  		CounterId: 500,
 19836  		Instance:  "host/vim/vmvisor/netcpa",
 19837  	},
 19838  	{
 19839  		CounterId: 476,
 19840  		Instance:  "host/vim/tmp",
 19841  	},
 19842  	{
 19843  		CounterId: 479,
 19844  		Instance:  "host/vim/vmvisor/nfcd",
 19845  	},
 19846  	{
 19847  		CounterId: 479,
 19848  		Instance:  "host/vim/vmvisor/boot",
 19849  	},
 19850  	{
 19851  		CounterId: 480,
 19852  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 19853  	},
 19854  	{
 19855  		CounterId: 480,
 19856  		Instance:  "host/vim/vmvisor/boot",
 19857  	},
 19858  	{
 19859  		CounterId: 484,
 19860  		Instance:  "host/vim/vmvisor/upitd",
 19861  	},
 19862  	{
 19863  		CounterId: 481,
 19864  		Instance:  "host/vim/vmvisor/boot",
 19865  	},
 19866  	{
 19867  		CounterId: 479,
 19868  		Instance:  "host/vim/vimuser/terminal",
 19869  	},
 19870  	{
 19871  		CounterId: 479,
 19872  		Instance:  "host/vim/tmp",
 19873  	},
 19874  	{
 19875  		CounterId: 482,
 19876  		Instance:  "host/vim/vmvisor/boot",
 19877  	},
 19878  	{
 19879  		CounterId: 476,
 19880  		Instance:  "host/vim/vmvisor/vmkiscsid",
 19881  	},
 19882  	{
 19883  		CounterId: 485,
 19884  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 19885  	},
 19886  	{
 19887  		CounterId: 483,
 19888  		Instance:  "host/vim/vmvisor/boot",
 19889  	},
 19890  	{
 19891  		CounterId: 485,
 19892  		Instance:  "host/vim/vmvisor/boot",
 19893  	},
 19894  	{
 19895  		CounterId: 500,
 19896  		Instance:  "host/vim/vmvisor/dcui",
 19897  	},
 19898  	{
 19899  		CounterId: 476,
 19900  		Instance:  "host/vim/vmvisor/smartd",
 19901  	},
 19902  	{
 19903  		CounterId: 476,
 19904  		Instance:  "host",
 19905  	},
 19906  	{
 19907  		CounterId: 476,
 19908  		Instance:  "host/vim/vmvisor/dcui",
 19909  	},
 19910  	{
 19911  		CounterId: 480,
 19912  		Instance:  "host/vim/tmp",
 19913  	},
 19914  	{
 19915  		CounterId: 476,
 19916  		Instance:  "host/system/svmotion",
 19917  	},
 19918  	{
 19919  		CounterId: 499,
 19920  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 19921  	},
 19922  	{
 19923  		CounterId: 480,
 19924  		Instance:  "host/vim/vmvisor/dcui",
 19925  	},
 19926  	{
 19927  		CounterId: 481,
 19928  		Instance:  "host/vim/vmvisor/dcui",
 19929  	},
 19930  	{
 19931  		CounterId: 476,
 19932  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 19933  	},
 19934  	{
 19935  		CounterId: 500,
 19936  		Instance:  "host/vim/vmvisor",
 19937  	},
 19938  	{
 19939  		CounterId: 483,
 19940  		Instance:  "host/vim/vmvisor/dcui",
 19941  	},
 19942  	{
 19943  		CounterId: 479,
 19944  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 19945  	},
 19946  	{
 19947  		CounterId: 499,
 19948  		Instance:  "host/vim/vmvisor/dcui",
 19949  	},
 19950  	{
 19951  		CounterId: 485,
 19952  		Instance:  "host/vim/vmvisor/hbrca",
 19953  	},
 19954  	{
 19955  		CounterId: 500,
 19956  		Instance:  "host/vim/vmvisor/dhclient",
 19957  	},
 19958  	{
 19959  		CounterId: 483,
 19960  		Instance:  "host",
 19961  	},
 19962  	{
 19963  		CounterId: 479,
 19964  		Instance:  "host/vim/vmvisor/dhclient",
 19965  	},
 19966  	{
 19967  		CounterId: 482,
 19968  		Instance:  "host/vim/vmvisor/osfsd",
 19969  	},
 19970  	{
 19971  		CounterId: 481,
 19972  		Instance:  "host/vim/vmvisor/dhclient",
 19973  	},
 19974  	{
 19975  		CounterId: 482,
 19976  		Instance:  "host/vim/vmvisor/sioc",
 19977  	},
 19978  	{
 19979  		CounterId: 482,
 19980  		Instance:  "host/vim/vmvisor/dhclient",
 19981  	},
 19982  	{
 19983  		CounterId: 490,
 19984  		Instance:  "host/system/vmotion",
 19985  	},
 19986  	{
 19987  		CounterId: 484,
 19988  		Instance:  "host/vim/vmvisor/dhclient",
 19989  	},
 19990  	{
 19991  		CounterId: 485,
 19992  		Instance:  "host/vim/vmvisor/dhclient",
 19993  	},
 19994  	{
 19995  		CounterId: 479,
 19996  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 19997  	},
 19998  	{
 19999  		CounterId: 481,
 20000  		Instance:  "host/vim/tmp",
 20001  	},
 20002  	{
 20003  		CounterId: 485,
 20004  		Instance:  "host/vim/vmvisor/vmkiscsid",
 20005  	},
 20006  	{
 20007  		CounterId: 476,
 20008  		Instance:  "host/vim/vmvisor/dhclientrelease",
 20009  	},
 20010  	{
 20011  		CounterId: 483,
 20012  		Instance:  "host/vim/tmp",
 20013  	},
 20014  	{
 20015  		CounterId: 481,
 20016  		Instance:  "host/vim/vmvisor/dhclientrelease",
 20017  	},
 20018  	{
 20019  		CounterId: 485,
 20020  		Instance:  "host/vim/tmp",
 20021  	},
 20022  	{
 20023  		CounterId: 483,
 20024  		Instance:  "host/iofilters/spm",
 20025  	},
 20026  	{
 20027  		CounterId: 483,
 20028  		Instance:  "host/vim/vmvisor/dhclientrelease",
 20029  	},
 20030  	{
 20031  		CounterId: 479,
 20032  		Instance:  "host/vim/vmvisor",
 20033  	},
 20034  	{
 20035  		CounterId: 485,
 20036  		Instance:  "host/vim/vmvisor/dhclientrelease",
 20037  	},
 20038  	{
 20039  		CounterId: 480,
 20040  		Instance:  "host/vim/vmvisor/hbrca",
 20041  	},
 20042  	{
 20043  		CounterId: 499,
 20044  		Instance:  "host/vim/vmvisor/sioc",
 20045  	},
 20046  	{
 20047  		CounterId: 481,
 20048  		Instance:  "host/vim/vmvisor/hbrca",
 20049  	},
 20050  	{
 20051  		CounterId: 480,
 20052  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 20053  	},
 20054  	{
 20055  		CounterId: 500,
 20056  		Instance:  "host/vim/vmvisor/boot",
 20057  	},
 20058  	{
 20059  		CounterId: 480,
 20060  		Instance:  "host/vim/vmvisor/plugins",
 20061  	},
 20062  	{
 20063  		CounterId: 483,
 20064  		Instance:  "host/vim/vmvisor/hbrca",
 20065  	},
 20066  	{
 20067  		CounterId: 499,
 20068  		Instance:  "host/vim/vmvisor/ntpd",
 20069  	},
 20070  	{
 20071  		CounterId: 484,
 20072  		Instance:  "host/vim/vmvisor/hbrca",
 20073  	},
 20074  	{
 20075  		CounterId: 480,
 20076  		Instance:  "host/system/kernel/etc",
 20077  	},
 20078  	{
 20079  		CounterId: 484,
 20080  		Instance:  "host/iofilters/spm",
 20081  	},
 20082  	{
 20083  		CounterId: 499,
 20084  		Instance:  "host/vim/vmvisor/hbrca",
 20085  	},
 20086  	{
 20087  		CounterId: 480,
 20088  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 20089  	},
 20090  	{
 20091  		CounterId: 476,
 20092  		Instance:  "host/vim/vmvisor/hostd",
 20093  	},
 20094  	{
 20095  		CounterId: 481,
 20096  		Instance:  "host/vim/vmvisor/hostd",
 20097  	},
 20098  	{
 20099  		CounterId: 500,
 20100  		Instance:  "host/iofilters",
 20101  	},
 20102  	{
 20103  		CounterId: 484,
 20104  		Instance:  "host/vim/vmvisor/dhclientrelease",
 20105  	},
 20106  	{
 20107  		CounterId: 484,
 20108  		Instance:  "host/vim/vmvisor/hostd",
 20109  	},
 20110  	{
 20111  		CounterId: 499,
 20112  		Instance:  "host/vim/vmvisor/hostd",
 20113  	},
 20114  	{
 20115  		CounterId: 476,
 20116  		Instance:  "host/vim/vmvisor/hostd-probe",
 20117  	},
 20118  	{
 20119  		CounterId: 479,
 20120  		Instance:  "host/vim/vmvisor/init",
 20121  	},
 20122  	{
 20123  		CounterId: 479,
 20124  		Instance:  "host/system/helper",
 20125  	},
 20126  	{
 20127  		CounterId: 479,
 20128  		Instance:  "host/vim/vmvisor/hostd-probe",
 20129  	},
 20130  	{
 20131  		CounterId: 479,
 20132  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20133  	},
 20134  	{
 20135  		CounterId: 500,
 20136  		Instance:  "host/system",
 20137  	},
 20138  	{
 20139  		CounterId: 480,
 20140  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20141  	},
 20142  	{
 20143  		CounterId: 481,
 20144  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20145  	},
 20146  	{
 20147  		CounterId: 481,
 20148  		Instance:  "host/vim/vmvisor/init",
 20149  	},
 20150  	{
 20151  		CounterId: 480,
 20152  		Instance:  "host/vim/vmvisor/netcpa",
 20153  	},
 20154  	{
 20155  		CounterId: 482,
 20156  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20157  	},
 20158  	{
 20159  		CounterId: 500,
 20160  		Instance:  "host/vim/vmvisor/vmfstraced",
 20161  	},
 20162  	{
 20163  		CounterId: 485,
 20164  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20165  	},
 20166  	{
 20167  		CounterId: 479,
 20168  		Instance:  "host/iofilters",
 20169  	},
 20170  	{
 20171  		CounterId: 480,
 20172  		Instance:  "host/iofilters",
 20173  	},
 20174  	{
 20175  		CounterId: 500,
 20176  		Instance:  "host/vim/vmvisor/net-daemons",
 20177  	},
 20178  	{
 20179  		CounterId: 482,
 20180  		Instance:  "host/iofilters",
 20181  	},
 20182  	{
 20183  		CounterId: 481,
 20184  		Instance:  "host/vim/vmvisor/nfsgssd",
 20185  	},
 20186  	{
 20187  		CounterId: 499,
 20188  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20189  	},
 20190  	{
 20191  		CounterId: 500,
 20192  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20193  	},
 20194  	{
 20195  		CounterId: 480,
 20196  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20197  	},
 20198  	{
 20199  		CounterId: 484,
 20200  		Instance:  "host/iofilters",
 20201  	},
 20202  	{
 20203  		CounterId: 476,
 20204  		Instance:  "host/system/helper",
 20205  	},
 20206  	{
 20207  		CounterId: 481,
 20208  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20209  	},
 20210  	{
 20211  		CounterId: 499,
 20212  		Instance:  "host/system/drivers",
 20213  	},
 20214  	{
 20215  		CounterId: 500,
 20216  		Instance:  "host/iofilters/iofiltervpd",
 20217  	},
 20218  	{
 20219  		CounterId: 482,
 20220  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20221  	},
 20222  	{
 20223  		CounterId: 483,
 20224  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20225  	},
 20226  	{
 20227  		CounterId: 482,
 20228  		Instance:  "host/system",
 20229  	},
 20230  	{
 20231  		CounterId: 483,
 20232  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20233  	},
 20234  	{
 20235  		CounterId: 499,
 20236  		Instance:  "host/vim/vmvisor/hostd-probe/stats/awk",
 20237  	},
 20238  	{
 20239  		CounterId: 500,
 20240  		Instance:  "host/vim/vmvisor/nscd",
 20241  	},
 20242  	{
 20243  		CounterId: 480,
 20244  		Instance:  "host/vim/vmvisor/osfsd",
 20245  	},
 20246  	{
 20247  		CounterId: 481,
 20248  		Instance:  "host/vim/vmvisor/sfcb",
 20249  	},
 20250  	{
 20251  		CounterId: 484,
 20252  		Instance:  "host/vim/vimuser/terminal/ssh",
 20253  	},
 20254  	{
 20255  		CounterId: 480,
 20256  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 20257  	},
 20258  	{
 20259  		CounterId: 483,
 20260  		Instance:  "host/vim/vmvisor/sioc",
 20261  	},
 20262  	{
 20263  		CounterId: 476,
 20264  		Instance:  "host/vim/vmvisor/dhclient",
 20265  	},
 20266  	{
 20267  		CounterId: 483,
 20268  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 20269  	},
 20270  	{
 20271  		CounterId: 484,
 20272  		Instance:  "host/iofilters/iofiltervpd",
 20273  	},
 20274  	{
 20275  		CounterId: 484,
 20276  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 20277  	},
 20278  	{
 20279  		CounterId: 479,
 20280  		Instance:  "host/iofilters/iofiltervpd",
 20281  	},
 20282  	{
 20283  		CounterId: 485,
 20284  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 20285  	},
 20286  	{
 20287  		CounterId: 483,
 20288  		Instance:  "host/system/kernel/tmp",
 20289  	},
 20290  	{
 20291  		CounterId: 499,
 20292  		Instance:  "host/vim/vmvisor/hostd-probe/stats/head",
 20293  	},
 20294  	{
 20295  		CounterId: 500,
 20296  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 20297  	},
 20298  	{
 20299  		CounterId: 500,
 20300  		Instance:  "host/vim/vmvisor/vpxa",
 20301  	},
 20302  	{
 20303  		CounterId: 485,
 20304  		Instance:  "host/vim/vmvisor/lacpd",
 20305  	},
 20306  	{
 20307  		CounterId: 481,
 20308  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 20309  	},
 20310  	{
 20311  		CounterId: 480,
 20312  		Instance:  "host/vim/vmvisor/likewise",
 20313  	},
 20314  	{
 20315  		CounterId: 480,
 20316  		Instance:  "host/iofilters/iofiltervpd",
 20317  	},
 20318  	{
 20319  		CounterId: 481,
 20320  		Instance:  "host/iofilters/iofiltervpd",
 20321  	},
 20322  	{
 20323  		CounterId: 483,
 20324  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 20325  	},
 20326  	{
 20327  		CounterId: 479,
 20328  		Instance:  "host/vim/vmvisor/usbArbitrator",
 20329  	},
 20330  	{
 20331  		CounterId: 499,
 20332  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 20333  	},
 20334  	{
 20335  		CounterId: 500,
 20336  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20337  	},
 20338  	{
 20339  		CounterId: 482,
 20340  		Instance:  "host/system/ft",
 20341  	},
 20342  	{
 20343  		CounterId: 476,
 20344  		Instance:  "host/vim/vmvisor/net-daemons",
 20345  	},
 20346  	{
 20347  		CounterId: 479,
 20348  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20349  	},
 20350  	{
 20351  		CounterId: 481,
 20352  		Instance:  "host/vim/vmvisor",
 20353  	},
 20354  	{
 20355  		CounterId: 482,
 20356  		Instance:  "host/iofilters/iofiltervpd",
 20357  	},
 20358  	{
 20359  		CounterId: 480,
 20360  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20361  	},
 20362  	{
 20363  		CounterId: 481,
 20364  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20365  	},
 20366  	{
 20367  		CounterId: 483,
 20368  		Instance:  "host/vim/vmvisor/usbArbitrator",
 20369  	},
 20370  	{
 20371  		CounterId: 482,
 20372  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20373  	},
 20374  	{
 20375  		CounterId: 484,
 20376  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20377  	},
 20378  	{
 20379  		CounterId: 485,
 20380  		Instance:  "host/vim/vmvisor/hostd-probe/stats/ls",
 20381  	},
 20382  	{
 20383  		CounterId: 476,
 20384  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 20385  	},
 20386  	{
 20387  		CounterId: 483,
 20388  		Instance:  "host/vim/vmvisor/pcscd",
 20389  	},
 20390  	{
 20391  		CounterId: 482,
 20392  		Instance:  "host/vim/vmvisor/hostd-probe/stats/pgrep",
 20393  	},
 20394  	{
 20395  		CounterId: 480,
 20396  		Instance:  "host/vim/vmvisor/sioc",
 20397  	},
 20398  	{
 20399  		CounterId: 483,
 20400  		Instance:  "host/iofilters/iofiltervpd",
 20401  	},
 20402  	{
 20403  		CounterId: 500,
 20404  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20405  	},
 20406  	{
 20407  		CounterId: 479,
 20408  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20409  	},
 20410  	{
 20411  		CounterId: 481,
 20412  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20413  	},
 20414  	{
 20415  		CounterId: 479,
 20416  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20417  	},
 20418  	{
 20419  		CounterId: 482,
 20420  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20421  	},
 20422  	{
 20423  		CounterId: 500,
 20424  		Instance:  "host/system/kernel/etc",
 20425  	},
 20426  	{
 20427  		CounterId: 483,
 20428  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20429  	},
 20430  	{
 20431  		CounterId: 485,
 20432  		Instance:  "host/iofilters/iofiltervpd",
 20433  	},
 20434  	{
 20435  		CounterId: 485,
 20436  		Instance:  "host/vim/vmvisor/hostd-probe/stats/probe",
 20437  	},
 20438  	{
 20439  		CounterId: 480,
 20440  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20441  	},
 20442  	{
 20443  		CounterId: 481,
 20444  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20445  	},
 20446  	{
 20447  		CounterId: 482,
 20448  		Instance:  "host/vim/vmvisor/netcpa",
 20449  	},
 20450  	{
 20451  		CounterId: 480,
 20452  		Instance:  "host/vim/vmvisor/vvoltraced",
 20453  	},
 20454  	{
 20455  		CounterId: 481,
 20456  		Instance:  "host/system/kernel",
 20457  	},
 20458  	{
 20459  		CounterId: 483,
 20460  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20461  	},
 20462  	{
 20463  		CounterId: 485,
 20464  		Instance:  "host/vim/vmvisor/sioc",
 20465  	},
 20466  	{
 20467  		CounterId: 485,
 20468  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20469  	},
 20470  	{
 20471  		CounterId: 500,
 20472  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 20473  	},
 20474  	{
 20475  		CounterId: 481,
 20476  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 20477  	},
 20478  	{
 20479  		CounterId: 482,
 20480  		Instance:  "host/vim/tmp",
 20481  	},
 20482  	{
 20483  		CounterId: 483,
 20484  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 20485  	},
 20486  	{
 20487  		CounterId: 483,
 20488  		Instance:  "host/vim/vimuser/terminal/ssh",
 20489  	},
 20490  	{
 20491  		CounterId: 476,
 20492  		Instance:  "host/vim/vmvisor/vmfstraced",
 20493  	},
 20494  	{
 20495  		CounterId: 499,
 20496  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace",
 20497  	},
 20498  	{
 20499  		CounterId: 499,
 20500  		Instance:  "host/iofilters/iofiltervpd",
 20501  	},
 20502  	{
 20503  		CounterId: 476,
 20504  		Instance:  "host/vim/vmvisor/nfsgssd",
 20505  	},
 20506  	{
 20507  		CounterId: 479,
 20508  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 20509  	},
 20510  	{
 20511  		CounterId: 480,
 20512  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 20513  	},
 20514  	{
 20515  		CounterId: 482,
 20516  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 20517  	},
 20518  	{
 20519  		CounterId: 499,
 20520  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 20521  	},
 20522  	{
 20523  		CounterId: 481,
 20524  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 20525  	},
 20526  	{
 20527  		CounterId: 499,
 20528  		Instance:  "host/vim/vmvisor/hostdCgiServer",
 20529  	},
 20530  	{
 20531  		CounterId: 482,
 20532  		Instance:  "host/vim/vmvisor/init",
 20533  	},
 20534  	{
 20535  		CounterId: 482,
 20536  		Instance:  "host/vim/vmvisor/hbrca",
 20537  	},
 20538  	{
 20539  		CounterId: 483,
 20540  		Instance:  "host/vim/vmvisor/init",
 20541  	},
 20542  	{
 20543  		CounterId: 482,
 20544  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 20545  	},
 20546  	{
 20547  		CounterId: 481,
 20548  		Instance:  "host/vim/vmvisor/vmfstraced",
 20549  	},
 20550  	{
 20551  		CounterId: 484,
 20552  		Instance:  "host/vim/vmvisor/sioc",
 20553  	},
 20554  	{
 20555  		CounterId: 476,
 20556  		Instance:  "host/vim/vmvisor/lacpd",
 20557  	},
 20558  	{
 20559  		CounterId: 479,
 20560  		Instance:  "host/vim/vmvisor/lacpd",
 20561  	},
 20562  	{
 20563  		CounterId: 480,
 20564  		Instance:  "host/iofilters/vmwarevmcrypt",
 20565  	},
 20566  	{
 20567  		CounterId: 480,
 20568  		Instance:  "host/vim/vmvisor/lacpd",
 20569  	},
 20570  	{
 20571  		CounterId: 480,
 20572  		Instance:  "host/vim/vmvisor/nscd",
 20573  	},
 20574  	{
 20575  		CounterId: 483,
 20576  		Instance:  "host/vim/vmvisor/lacpd",
 20577  	},
 20578  	{
 20579  		CounterId: 482,
 20580  		Instance:  "host/vim/vmvisor/uwdaemons",
 20581  	},
 20582  	{
 20583  		CounterId: 484,
 20584  		Instance:  "host/vim/vmvisor/lacpd",
 20585  	},
 20586  	{
 20587  		CounterId: 500,
 20588  		Instance:  "host/system/drivers",
 20589  	},
 20590  	{
 20591  		CounterId: 499,
 20592  		Instance:  "host/vim/vmvisor/lacpd",
 20593  	},
 20594  	{
 20595  		CounterId: 476,
 20596  		Instance:  "host/vim/vmvisor/lbt",
 20597  	},
 20598  	{
 20599  		CounterId: 499,
 20600  		Instance:  "host/system/kernel/opt",
 20601  	},
 20602  	{
 20603  		CounterId: 481,
 20604  		Instance:  "host/vim/vmvisor/lbt",
 20605  	},
 20606  	{
 20607  		CounterId: 482,
 20608  		Instance:  "host/vim/vmvisor/lbt",
 20609  	},
 20610  	{
 20611  		CounterId: 483,
 20612  		Instance:  "host/vim/vmvisor/lbt",
 20613  	},
 20614  	{
 20615  		CounterId: 484,
 20616  		Instance:  "host/vim/vmvisor/vmkiscsid",
 20617  	},
 20618  	{
 20619  		CounterId: 484,
 20620  		Instance:  "host/vim/vmvisor/lbt",
 20621  	},
 20622  	{
 20623  		CounterId: 479,
 20624  		Instance:  "host/vim/vmvisor/nscd",
 20625  	},
 20626  	{
 20627  		CounterId: 483,
 20628  		Instance:  "host/vim/vmvisor/upitd",
 20629  	},
 20630  	{
 20631  		CounterId: 481,
 20632  		Instance:  "host/iofilters/vmwarevmcrypt",
 20633  	},
 20634  	{
 20635  		CounterId: 479,
 20636  		Instance:  "host/system/kernel/etc",
 20637  	},
 20638  	{
 20639  		CounterId: 499,
 20640  		Instance:  "host/vim/vmvisor/sfcb_aux",
 20641  	},
 20642  	{
 20643  		CounterId: 485,
 20644  		Instance:  "host/vim/vmvisor/lbt",
 20645  	},
 20646  	{
 20647  		CounterId: 476,
 20648  		Instance:  "host/vim/vmvisor/likewise",
 20649  	},
 20650  	{
 20651  		CounterId: 482,
 20652  		Instance:  "host/iofilters/vmwarevmcrypt",
 20653  	},
 20654  	{
 20655  		CounterId: 476,
 20656  		Instance:  "host/vim/vmvisor/aam",
 20657  	},
 20658  	{
 20659  		CounterId: 476,
 20660  		Instance:  "host/vim/vmvisor/hostd-probe/stats/vsish",
 20661  	},
 20662  	{
 20663  		CounterId: 479,
 20664  		Instance:  "host/vim/vmvisor/likewise",
 20665  	},
 20666  	{
 20667  		CounterId: 482,
 20668  		Instance:  "host/vim/vmvisor/likewise",
 20669  	},
 20670  	{
 20671  		CounterId: 484,
 20672  		Instance:  "host/vim/vmvisor/likewise",
 20673  	},
 20674  	{
 20675  		CounterId: 484,
 20676  		Instance:  "host/iofilters/vmwarevmcrypt",
 20677  	},
 20678  	{
 20679  		CounterId: 485,
 20680  		Instance:  "host/vim/vmvisor/memScrubber",
 20681  	},
 20682  	{
 20683  		CounterId: 485,
 20684  		Instance:  "host/vim/vmvisor/likewise",
 20685  	},
 20686  	{
 20687  		CounterId: 476,
 20688  		Instance:  "host/vim/vmvisor/snmpd",
 20689  	},
 20690  	{
 20691  		CounterId: 483,
 20692  		Instance:  "host/vim/vmvisor/osfsd",
 20693  	},
 20694  	{
 20695  		CounterId: 482,
 20696  		Instance:  "host/system/kernel/iofilters",
 20697  	},
 20698  	{
 20699  		CounterId: 500,
 20700  		Instance:  "host/vim/vmvisor/hostd-probe/stats",
 20701  	},
 20702  	{
 20703  		CounterId: 476,
 20704  		Instance:  "host/vim/vmvisor/logging",
 20705  	},
 20706  	{
 20707  		CounterId: 479,
 20708  		Instance:  "host/vim/vmvisor/logging",
 20709  	},
 20710  	{
 20711  		CounterId: 483,
 20712  		Instance:  "host/vim/vmvisor/logging",
 20713  	},
 20714  	{
 20715  		CounterId: 484,
 20716  		Instance:  "host/vim/vmvisor/logging",
 20717  	},
 20718  	{
 20719  		CounterId: 485,
 20720  		Instance:  "host/vim/vmvisor/logging",
 20721  	},
 20722  	{
 20723  		CounterId: 484,
 20724  		Instance:  "host/system/kernel/iofilters",
 20725  	},
 20726  	{
 20727  		CounterId: 500,
 20728  		Instance:  "host/vim/vmvisor/memScrubber",
 20729  	},
 20730  	{
 20731  		CounterId: 500,
 20732  		Instance:  "host/vim/vmvisor/hostd-probe",
 20733  	},
 20734  	{
 20735  		CounterId: 482,
 20736  		Instance:  "host/vim/vmvisor/memScrubber",
 20737  	},
 20738  	{
 20739  		CounterId: 480,
 20740  		Instance:  "host/system/kernel/root",
 20741  	},
 20742  	{
 20743  		CounterId: 482,
 20744  		Instance:  "host/vim/vmvisor/net-daemons",
 20745  	},
 20746  	{
 20747  		CounterId: 484,
 20748  		Instance:  "host/vim/vmvisor/net-daemons",
 20749  	},
 20750  	{
 20751  		CounterId: 485,
 20752  		Instance:  "host/vim/vmvisor/net-daemons",
 20753  	},
 20754  	{
 20755  		CounterId: 499,
 20756  		Instance:  "host/vim/vmvisor/net-daemons",
 20757  	},
 20758  	{
 20759  		CounterId: 485,
 20760  		Instance:  "host/iofilters/vmwarevmcrypt",
 20761  	},
 20762  	{
 20763  		CounterId: 481,
 20764  		Instance:  "host/vim/vmvisor/netcpa",
 20765  	},
 20766  	{
 20767  		CounterId: 484,
 20768  		Instance:  "host/vim/vimuser/terminal/shell",
 20769  	},
 20770  	{
 20771  		CounterId: 483,
 20772  		Instance:  "host/vim/vmvisor/netcpa",
 20773  	},
 20774  	{
 20775  		CounterId: 479,
 20776  		Instance:  "host/system/ft",
 20777  	},
 20778  	{
 20779  		CounterId: 479,
 20780  		Instance:  "host/vim/vmvisor/sfcb",
 20781  	},
 20782  	{
 20783  		CounterId: 481,
 20784  		Instance:  "host/vim/vmvisor/osfsd",
 20785  	},
 20786  	{
 20787  		CounterId: 484,
 20788  		Instance:  "host/vim/vmvisor/netcpa",
 20789  	},
 20790  	{
 20791  		CounterId: 499,
 20792  		Instance:  "host/vim/vmvisor/netcpa",
 20793  	},
 20794  	{
 20795  		CounterId: 499,
 20796  		Instance:  "host/iofilters/vmwarevmcrypt",
 20797  	},
 20798  	{
 20799  		CounterId: 476,
 20800  		Instance:  "host/vim/vmvisor/sensord",
 20801  	},
 20802  	{
 20803  		CounterId: 479,
 20804  		Instance:  "host/vim/vmvisor/swapobjd",
 20805  	},
 20806  	{
 20807  		CounterId: 500,
 20808  		Instance:  "host/vim/vmvisor/nfcd",
 20809  	},
 20810  	{
 20811  		CounterId: 476,
 20812  		Instance:  "host/vim/vmvisor/hostd-probe/stats/sh",
 20813  	},
 20814  	{
 20815  		CounterId: 479,
 20816  		Instance:  "host",
 20817  	},
 20818  	{
 20819  		CounterId: 476,
 20820  		Instance:  "host/vim/vmvisor/nfcd",
 20821  	},
 20822  	{
 20823  		CounterId: 485,
 20824  		Instance:  "host/vim/vmvisor/vvoltraced",
 20825  	},
 20826  	{
 20827  		CounterId: 476,
 20828  		Instance:  "host/system/kernel/etc",
 20829  	},
 20830  	{
 20831  		CounterId: 481,
 20832  		Instance:  "host/vim/vmvisor/nfcd",
 20833  	},
 20834  	{
 20835  		CounterId: 484,
 20836  		Instance:  "host/vim/vmvisor/vmkdevmgr",
 20837  	},
 20838  	{
 20839  		CounterId: 500,
 20840  		Instance:  "host/iofilters/spm",
 20841  	},
 20842  	{
 20843  		CounterId: 482,
 20844  		Instance:  "host/vim/vmvisor/nfcd",
 20845  	},
 20846  	{
 20847  		CounterId: 476,
 20848  		Instance:  "host/iofilters/spm",
 20849  	},
 20850  	{
 20851  		CounterId: 483,
 20852  		Instance:  "host/vim/vmvisor/nfcd",
 20853  	},
 20854  	{
 20855  		CounterId: 482,
 20856  		Instance:  "host/vim/vmvisor/dcui",
 20857  	},
 20858  	{
 20859  		CounterId: 485,
 20860  		Instance:  "host/vim/vmvisor/nfcd",
 20861  	},
 20862  	{
 20863  		CounterId: 500,
 20864  		Instance:  "host/vim/vmvisor/nfsgssd",
 20865  	},
 20866  	{
 20867  		CounterId: 479,
 20868  		Instance:  "host/vim/vmvisor/nfsgssd",
 20869  	},
 20870  	{
 20871  		CounterId: 480,
 20872  		Instance:  "host/vim/vmvisor/nfsgssd",
 20873  	},
 20874  	{
 20875  		CounterId: 483,
 20876  		Instance:  "host/vim/vmvisor/nfsgssd",
 20877  	},
 20878  	{
 20879  		CounterId: 484,
 20880  		Instance:  "host/vim/vmvisor/upittraced",
 20881  	},
 20882  	{
 20883  		CounterId: 484,
 20884  		Instance:  "host/vim/vmvisor/nfsgssd",
 20885  	},
 20886  	{
 20887  		CounterId: 485,
 20888  		Instance:  "host/vim/vmvisor/nfsgssd",
 20889  	},
 20890  	{
 20891  		CounterId: 480,
 20892  		Instance:  "host/iofilters/spm",
 20893  	},
 20894  	{
 20895  		CounterId: 499,
 20896  		Instance:  "host/vim/vmvisor/nfsgssd",
 20897  	},
 20898  	{
 20899  		CounterId: 476,
 20900  		Instance:  "host/vim/vmvisor/nscd",
 20901  	},
 20902  	{
 20903  		CounterId: 485,
 20904  		Instance:  "host/vim/vmvisor/hostd-probe",
 20905  	},
 20906  	{
 20907  		CounterId: 481,
 20908  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 20909  	},
 20910  	{
 20911  		CounterId: 479,
 20912  		Instance:  "host/vim/vmvisor/sioc",
 20913  	},
 20914  	{
 20915  		CounterId: 481,
 20916  		Instance:  "host/vim/vmvisor/nscd",
 20917  	},
 20918  	{
 20919  		CounterId: 484,
 20920  		Instance:  "host/vim/vmvisor/nscd",
 20921  	},
 20922  	{
 20923  		CounterId: 499,
 20924  		Instance:  "host/iofilters/spm",
 20925  	},
 20926  	{
 20927  		CounterId: 500,
 20928  		Instance:  "host/system/kernel/iofilters",
 20929  	},
 20930  	{
 20931  		CounterId: 485,
 20932  		Instance:  "host/vim/vmvisor/nscd",
 20933  	},
 20934  	{
 20935  		CounterId: 500,
 20936  		Instance:  "host/vim/vmvisor/sioc",
 20937  	},
 20938  	{
 20939  		CounterId: 499,
 20940  		Instance:  "host/vim/vmvisor/nscd",
 20941  	},
 20942  	{
 20943  		CounterId: 481,
 20944  		Instance:  "host/vim/vmvisor/net-daemons",
 20945  	},
 20946  	{
 20947  		CounterId: 500,
 20948  		Instance:  "host/vim/vmvisor/ntpd",
 20949  	},
 20950  	{
 20951  		CounterId: 476,
 20952  		Instance:  "host/vim/vmvisor/ntpd",
 20953  	},
 20954  	{
 20955  		CounterId: 476,
 20956  		Instance:  "host/user",
 20957  	},
 20958  	{
 20959  		CounterId: 479,
 20960  		Instance:  "host/vim/vmvisor/ntpd",
 20961  	},
 20962  	{
 20963  		CounterId: 480,
 20964  		Instance:  "host/vim/vmvisor/ntpd",
 20965  	},
 20966  	{
 20967  		CounterId: 481,
 20968  		Instance:  "host/vim/vmvisor/ntpd",
 20969  	},
 20970  	{
 20971  		CounterId: 499,
 20972  		Instance:  "host/vim/vmvisor/boot",
 20973  	},
 20974  	{
 20975  		CounterId: 483,
 20976  		Instance:  "host/vim/vmvisor/ntpd",
 20977  	},
 20978  	{
 20979  		CounterId: 483,
 20980  		Instance:  "host/vim/vmvisor/memScrubber",
 20981  	},
 20982  	{
 20983  		CounterId: 479,
 20984  		Instance:  "host/vim/vmvisor/osfsd",
 20985  	},
 20986  	{
 20987  		CounterId: 479,
 20988  		Instance:  "host/vim/vmvisor/sensord",
 20989  	},
 20990  	{
 20991  		CounterId: 476,
 20992  		Instance:  "host/vim/vmvisor/pcscd",
 20993  	},
 20994  	{
 20995  		CounterId: 481,
 20996  		Instance:  "host/vim/vmvisor/pcscd",
 20997  	},
 20998  	{
 20999  		CounterId: 481,
 21000  		Instance:  "host/vim/vmvisor/vvold",
 21001  	},
 21002  	{
 21003  		CounterId: 481,
 21004  		Instance:  "host/vim/vmvisor/sensord",
 21005  	},
 21006  	{
 21007  		CounterId: 485,
 21008  		Instance:  "host/vim/vmvisor/sfcb",
 21009  	},
 21010  	{
 21011  		CounterId: 484,
 21012  		Instance:  "host/vim/vmvisor/pcscd",
 21013  	},
 21014  	{
 21015  		CounterId: 485,
 21016  		Instance:  "host/vim/vmvisor/pcscd",
 21017  	},
 21018  	{
 21019  		CounterId: 482,
 21020  		Instance:  "host/vim/vmvisor/vmkeventd",
 21021  	},
 21022  	{
 21023  		CounterId: 499,
 21024  		Instance:  "host/vim/vmvisor/pcscd",
 21025  	},
 21026  	{
 21027  		CounterId: 476,
 21028  		Instance:  "host/vim/vmvisor/plugins",
 21029  	},
 21030  	{
 21031  		CounterId: 481,
 21032  		Instance:  "host/user",
 21033  	},
 21034  	{
 21035  		CounterId: 479,
 21036  		Instance:  "host/vim/vmvisor/plugins",
 21037  	},
 21038  	{
 21039  		CounterId: 480,
 21040  		Instance:  "host/system",
 21041  	},
 21042  	{
 21043  		CounterId: 481,
 21044  		Instance:  "host/vim/vmvisor/plugins",
 21045  	},
 21046  	{
 21047  		CounterId: 499,
 21048  		Instance:  "host/vim/vmvisor/nfcd",
 21049  	},
 21050  	{
 21051  		CounterId: 484,
 21052  		Instance:  "host/vim/vmvisor/plugins",
 21053  	},
 21054  	{
 21055  		CounterId: 482,
 21056  		Instance:  "host/user",
 21057  	},
 21058  	{
 21059  		CounterId: 476,
 21060  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 21061  	},
 21062  	{
 21063  		CounterId: 480,
 21064  		Instance:  "host/vim/vmvisor/sensord",
 21065  	},
 21066  	{
 21067  		CounterId: 483,
 21068  		Instance:  "host/vim/vmvisor/sensord",
 21069  	},
 21070  	{
 21071  		CounterId: 499,
 21072  		Instance:  "host/vim/vmvisor/sensord",
 21073  	},
 21074  	{
 21075  		CounterId: 500,
 21076  		Instance:  "host/vim/vmvisor/sfcb",
 21077  	},
 21078  	{
 21079  		CounterId: 484,
 21080  		Instance:  "host/user",
 21081  	},
 21082  	{
 21083  		CounterId: 480,
 21084  		Instance:  "host/vim/vmvisor/sfcb",
 21085  	},
 21086  	{
 21087  		CounterId: 482,
 21088  		Instance:  "host/vim/vmvisor/sfcb",
 21089  	},
 21090  	{
 21091  		CounterId: 483,
 21092  		Instance:  "host/vim/vmvisor/vvoltraced",
 21093  	},
 21094  	{
 21095  		CounterId: 483,
 21096  		Instance:  "host/vim/vmvisor/swapobjd",
 21097  	},
 21098  	{
 21099  		CounterId: 483,
 21100  		Instance:  "host/vim/vmvisor/sfcb",
 21101  	},
 21102  	{
 21103  		CounterId: 476,
 21104  		Instance:  "host/vim/vmvisor/osfsd",
 21105  	},
 21106  	{
 21107  		CounterId: 485,
 21108  		Instance:  "host/user",
 21109  	},
 21110  	{
 21111  		CounterId: 479,
 21112  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21113  	},
 21114  	{
 21115  		CounterId: 480,
 21116  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21117  	},
 21118  	{
 21119  		CounterId: 476,
 21120  		Instance:  "host/vim/vmvisor/hostd-probe/stats/logger",
 21121  	},
 21122  	{
 21123  		CounterId: 481,
 21124  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21125  	},
 21126  	{
 21127  		CounterId: 499,
 21128  		Instance:  "host/vim/vimuser",
 21129  	},
 21130  	{
 21131  		CounterId: 482,
 21132  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21133  	},
 21134  	{
 21135  		CounterId: 479,
 21136  		Instance:  "host/vim/vmvisor/rabbitmqproxy",
 21137  	},
 21138  	{
 21139  		CounterId: 483,
 21140  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21141  	},
 21142  	{
 21143  		CounterId: 485,
 21144  		Instance:  "host/vim/vmvisor/sfcb_aux",
 21145  	},
 21146  	{
 21147  		CounterId: 499,
 21148  		Instance:  "host/vim/vmvisor/vmfstraced",
 21149  	},
 21150  	{
 21151  		CounterId: 541,
 21152  		Instance:  "vfc",
 21153  	},
 21154  }
 21155  
 21156  // ************************************** Cluster Metrics **************************************
 21157  var ClusterMetrics = []types.PerfMetricId{
 21158  	{
 21159  		CounterId: 22,
 21160  		Instance:  "",
 21161  	},
 21162  	{
 21163  		CounterId: 2,
 21164  		Instance:  "",
 21165  	},
 21166  	{
 21167  		CounterId: 9,
 21168  		Instance:  "",
 21169  	},
 21170  	{
 21171  		CounterId: 7,
 21172  		Instance:  "",
 21173  	},
 21174  	{
 21175  		CounterId: 8,
 21176  		Instance:  "",
 21177  	},
 21178  	{
 21179  		CounterId: 3,
 21180  		Instance:  "",
 21181  	},
 21182  	{
 21183  		CounterId: 4,
 21184  		Instance:  "",
 21185  	},
 21186  	{
 21187  		CounterId: 15,
 21188  		Instance:  "",
 21189  	},
 21190  	{
 21191  		CounterId: 17,
 21192  		Instance:  "",
 21193  	},
 21194  	{
 21195  		CounterId: 18,
 21196  		Instance:  "",
 21197  	},
 21198  	{
 21199  		CounterId: 19,
 21200  		Instance:  "",
 21201  	},
 21202  	{
 21203  		CounterId: 20,
 21204  		Instance:  "",
 21205  	},
 21206  	{
 21207  		CounterId: 21,
 21208  		Instance:  "",
 21209  	},
 21210  	{
 21211  		CounterId: 6,
 21212  		Instance:  "",
 21213  	},
 21214  	{
 21215  		CounterId: 139,
 21216  		Instance:  "",
 21217  	},
 21218  	{
 21219  		CounterId: 138,
 21220  		Instance:  "",
 21221  	},
 21222  	{
 21223  		CounterId: 107,
 21224  		Instance:  "",
 21225  	},
 21226  	{
 21227  		CounterId: 29,
 21228  		Instance:  "",
 21229  	},
 21230  	{
 21231  		CounterId: 33,
 21232  		Instance:  "",
 21233  	},
 21234  	{
 21235  		CounterId: 37,
 21236  		Instance:  "",
 21237  	},
 21238  	{
 21239  		CounterId: 41,
 21240  		Instance:  "",
 21241  	},
 21242  	{
 21243  		CounterId: 49,
 21244  		Instance:  "",
 21245  	},
 21246  	{
 21247  		CounterId: 90,
 21248  		Instance:  "",
 21249  	},
 21250  	{
 21251  		CounterId: 105,
 21252  		Instance:  "",
 21253  	},
 21254  	{
 21255  		CounterId: 106,
 21256  		Instance:  "",
 21257  	},
 21258  	{
 21259  		CounterId: 27,
 21260  		Instance:  "",
 21261  	},
 21262  	{
 21263  		CounterId: 108,
 21264  		Instance:  "",
 21265  	},
 21266  	{
 21267  		CounterId: 110,
 21268  		Instance:  "",
 21269  	},
 21270  	{
 21271  		CounterId: 111,
 21272  		Instance:  "",
 21273  	},
 21274  	{
 21275  		CounterId: 109,
 21276  		Instance:  "",
 21277  	},
 21278  	{
 21279  		CounterId: 112,
 21280  		Instance:  "",
 21281  	},
 21282  	{
 21283  		CounterId: 25,
 21284  		Instance:  "",
 21285  	},
 21286  	{
 21287  		CounterId: 103,
 21288  		Instance:  "",
 21289  	},
 21290  	{
 21291  		CounterId: 99,
 21292  		Instance:  "",
 21293  	},
 21294  	{
 21295  		CounterId: 30,
 21296  		Instance:  "",
 21297  	},
 21298  	{
 21299  		CounterId: 34,
 21300  		Instance:  "",
 21301  	},
 21302  	{
 21303  		CounterId: 38,
 21304  		Instance:  "",
 21305  	},
 21306  	{
 21307  		CounterId: 42,
 21308  		Instance:  "",
 21309  	},
 21310  	{
 21311  		CounterId: 50,
 21312  		Instance:  "",
 21313  	},
 21314  	{
 21315  		CounterId: 98,
 21316  		Instance:  "",
 21317  	},
 21318  	{
 21319  		CounterId: 26,
 21320  		Instance:  "",
 21321  	},
 21322  	{
 21323  		CounterId: 104,
 21324  		Instance:  "",
 21325  	},
 21326  	{
 21327  		CounterId: 100,
 21328  		Instance:  "",
 21329  	},
 21330  	{
 21331  		CounterId: 31,
 21332  		Instance:  "",
 21333  	},
 21334  	{
 21335  		CounterId: 102,
 21336  		Instance:  "",
 21337  	},
 21338  	{
 21339  		CounterId: 39,
 21340  		Instance:  "",
 21341  	},
 21342  	{
 21343  		CounterId: 43,
 21344  		Instance:  "",
 21345  	},
 21346  	{
 21347  		CounterId: 51,
 21348  		Instance:  "",
 21349  	},
 21350  	{
 21351  		CounterId: 92,
 21352  		Instance:  "",
 21353  	},
 21354  	{
 21355  		CounterId: 24,
 21356  		Instance:  "",
 21357  	},
 21358  	{
 21359  		CounterId: 35,
 21360  		Instance:  "",
 21361  	},
 21362  	{
 21363  		CounterId: 91,
 21364  		Instance:  "",
 21365  	},
 21366  	{
 21367  		CounterId: 153,
 21368  		Instance:  "",
 21369  	},
 21370  	{
 21371  		CounterId: 152,
 21372  		Instance:  "",
 21373  	},
 21374  	{
 21375  		CounterId: 151,
 21376  		Instance:  "",
 21377  	},
 21378  	{
 21379  		CounterId: 150,
 21380  		Instance:  "",
 21381  	},
 21382  	{
 21383  		CounterId: 157,
 21384  		Instance:  "",
 21385  	},
 21386  	{
 21387  		CounterId: 158,
 21388  		Instance:  "",
 21389  	},
 21390  	{
 21391  		CounterId: 159,
 21392  		Instance:  "",
 21393  	},
 21394  	{
 21395  		CounterId: 262,
 21396  		Instance:  "",
 21397  	},
 21398  	{
 21399  		CounterId: 257,
 21400  		Instance:  "",
 21401  	},
 21402  	{
 21403  		CounterId: 258,
 21404  		Instance:  "",
 21405  	},
 21406  	{
 21407  		CounterId: 259,
 21408  		Instance:  "",
 21409  	},
 21410  	{
 21411  		CounterId: 260,
 21412  		Instance:  "",
 21413  	},
 21414  	{
 21415  		CounterId: 261,
 21416  		Instance:  "",
 21417  	},
 21418  	{
 21419  		CounterId: 256,
 21420  		Instance:  "",
 21421  	},
 21422  	{
 21423  		CounterId: 263,
 21424  		Instance:  "",
 21425  	},
 21426  	{
 21427  		CounterId: 264,
 21428  		Instance:  "",
 21429  	},
 21430  	{
 21431  		CounterId: 265,
 21432  		Instance:  "",
 21433  	},
 21434  	{
 21435  		CounterId: 266,
 21436  		Instance:  "",
 21437  	},
 21438  	{
 21439  		CounterId: 267,
 21440  		Instance:  "",
 21441  	},
 21442  	{
 21443  		CounterId: 268,
 21444  		Instance:  "",
 21445  	},
 21446  	{
 21447  		CounterId: 269,
 21448  		Instance:  "",
 21449  	},
 21450  	{
 21451  		CounterId: 270,
 21452  		Instance:  "",
 21453  	},
 21454  	{
 21455  		CounterId: 271,
 21456  		Instance:  "",
 21457  	},
 21458  	{
 21459  		CounterId: 272,
 21460  		Instance:  "",
 21461  	},
 21462  	{
 21463  		CounterId: 273,
 21464  		Instance:  "",
 21465  	},
 21466  	{
 21467  		CounterId: 274,
 21468  		Instance:  "",
 21469  	},
 21470  	{
 21471  		CounterId: 275,
 21472  		Instance:  "",
 21473  	},
 21474  }
 21475  
 21476  // *************************************** Datastore metrics ****************************************
 21477  var DatastoreMetrics = []types.PerfMetricId{
 21478  	{
 21479  		CounterId: 178,
 21480  		Instance:  "",
 21481  	},
 21482  	{
 21483  		CounterId: 188,
 21484  		Instance:  "",
 21485  	},
 21486  	{
 21487  		CounterId: 187,
 21488  		Instance:  "",
 21489  	},
 21490  	{
 21491  		CounterId: 181,
 21492  		Instance:  "",
 21493  	},
 21494  	{
 21495  		CounterId: 180,
 21496  		Instance:  "",
 21497  	},
 21498  	{
 21499  		CounterId: 179,
 21500  		Instance:  "",
 21501  	},
 21502  	{
 21503  		CounterId: 281,
 21504  		Instance:  "",
 21505  	},
 21506  	{
 21507  		CounterId: 281,
 21508  		Instance:  "$file",
 21509  	},
 21510  
 21511  	{
 21512  		CounterId: 282,
 21513  		Instance:  "",
 21514  	},
 21515  	{
 21516  		CounterId: 282,
 21517  		Instance:  "$file",
 21518  	},
 21519  	{
 21520  		CounterId: 283,
 21521  		Instance:  "",
 21522  	},
 21523  	{
 21524  		CounterId: 284,
 21525  		Instance:  "",
 21526  	},
 21527  	{
 21528  		CounterId: 284,
 21529  		Instance:  "$file",
 21530  	},
 21531  
 21532  	{
 21533  		CounterId: 288,
 21534  		Instance:  "",
 21535  	},
 21536  	{
 21537  		CounterId: 286,
 21538  		Instance:  "",
 21539  	},
 21540  	{
 21541  		CounterId: 287,
 21542  		Instance:  "",
 21543  	},
 21544  	{
 21545  		CounterId: 287,
 21546  		Instance:  "$file",
 21547  	},
 21548  }
 21549  
 21550  // ********************************************* Resource pool metrics ***********************************
 21551  var ResourcePoolMetrics = []types.PerfMetricId{
 21552  	{
 21553  		CounterId: 6,
 21554  		Instance:  "",
 21555  	},
 21556  	{
 21557  		CounterId: 213,
 21558  		Instance:  "",
 21559  	},
 21560  	{
 21561  		CounterId: 7,
 21562  		Instance:  "",
 21563  	},
 21564  	{
 21565  		CounterId: 8,
 21566  		Instance:  "",
 21567  	},
 21568  	{
 21569  		CounterId: 16,
 21570  		Instance:  "",
 21571  	},
 21572  	{
 21573  		CounterId: 17,
 21574  		Instance:  "",
 21575  	},
 21576  	{
 21577  		CounterId: 18,
 21578  		Instance:  "",
 21579  	},
 21580  	{
 21581  		CounterId: 19,
 21582  		Instance:  "",
 21583  	},
 21584  	{
 21585  		CounterId: 20,
 21586  		Instance:  "",
 21587  	},
 21588  	{
 21589  		CounterId: 22,
 21590  		Instance:  "",
 21591  	},
 21592  	{
 21593  		CounterId: 138,
 21594  		Instance:  "",
 21595  	},
 21596  	{
 21597  		CounterId: 139,
 21598  		Instance:  "",
 21599  	},
 21600  	{
 21601  		CounterId: 112,
 21602  		Instance:  "",
 21603  	},
 21604  	{
 21605  		CounterId: 102,
 21606  		Instance:  "",
 21607  	},
 21608  	{
 21609  		CounterId: 98,
 21610  		Instance:  "",
 21611  	},
 21612  	{
 21613  		CounterId: 29,
 21614  		Instance:  "",
 21615  	},
 21616  	{
 21617  		CounterId: 33,
 21618  		Instance:  "",
 21619  	},
 21620  	{
 21621  		CounterId: 37,
 21622  		Instance:  "",
 21623  	},
 21624  	{
 21625  		CounterId: 41,
 21626  		Instance:  "",
 21627  	},
 21628  	{
 21629  		CounterId: 70,
 21630  		Instance:  "",
 21631  	},
 21632  	{
 21633  		CounterId: 90,
 21634  		Instance:  "",
 21635  	},
 21636  	{
 21637  		CounterId: 108,
 21638  		Instance:  "",
 21639  	},
 21640  	{
 21641  		CounterId: 109,
 21642  		Instance:  "",
 21643  	},
 21644  	{
 21645  		CounterId: 111,
 21646  		Instance:  "",
 21647  	},
 21648  	{
 21649  		CounterId: 214,
 21650  		Instance:  "",
 21651  	},
 21652  	{
 21653  		CounterId: 105,
 21654  		Instance:  "",
 21655  	},
 21656  	{
 21657  		CounterId: 106,
 21658  		Instance:  "",
 21659  	},
 21660  	{
 21661  		CounterId: 107,
 21662  		Instance:  "",
 21663  	},
 21664  	{
 21665  		CounterId: 103,
 21666  		Instance:  "",
 21667  	},
 21668  	{
 21669  		CounterId: 99,
 21670  		Instance:  "",
 21671  	},
 21672  	{
 21673  		CounterId: 30,
 21674  		Instance:  "",
 21675  	},
 21676  	{
 21677  		CounterId: 34,
 21678  		Instance:  "",
 21679  	},
 21680  	{
 21681  		CounterId: 38,
 21682  		Instance:  "",
 21683  	},
 21684  	{
 21685  		CounterId: 42,
 21686  		Instance:  "",
 21687  	},
 21688  	{
 21689  		CounterId: 71,
 21690  		Instance:  "",
 21691  	},
 21692  	{
 21693  		CounterId: 92,
 21694  		Instance:  "",
 21695  	},
 21696  	{
 21697  		CounterId: 104,
 21698  		Instance:  "",
 21699  	},
 21700  	{
 21701  		CounterId: 100,
 21702  		Instance:  "",
 21703  	},
 21704  	{
 21705  		CounterId: 31,
 21706  		Instance:  "",
 21707  	},
 21708  	{
 21709  		CounterId: 35,
 21710  		Instance:  "",
 21711  	},
 21712  	{
 21713  		CounterId: 39,
 21714  		Instance:  "",
 21715  	},
 21716  	{
 21717  		CounterId: 43,
 21718  		Instance:  "",
 21719  	},
 21720  	{
 21721  		CounterId: 72,
 21722  		Instance:  "",
 21723  	},
 21724  	{
 21725  		CounterId: 91,
 21726  		Instance:  "",
 21727  	},
 21728  	{
 21729  		CounterId: 152,
 21730  		Instance:  "",
 21731  	},
 21732  	{
 21733  		CounterId: 153,
 21734  		Instance:  "",
 21735  	},
 21736  	{
 21737  		CounterId: 157,
 21738  		Instance:  "",
 21739  	},
 21740  	{
 21741  		CounterId: 159,
 21742  		Instance:  "",
 21743  	},
 21744  }
 21745  
 21746  // ********************************************* Datacenter metrics ***********************************
 21747  var DatacenterMetrics = []types.PerfMetricId{
 21748  	{
 21749  		CounterId: 256,
 21750  		Instance:  "",
 21751  	},
 21752  	{
 21753  		CounterId: 257,
 21754  		Instance:  "",
 21755  	},
 21756  	{
 21757  		CounterId: 258,
 21758  		Instance:  "",
 21759  	},
 21760  	{
 21761  		CounterId: 259,
 21762  		Instance:  "",
 21763  	},
 21764  	{
 21765  		CounterId: 260,
 21766  		Instance:  "",
 21767  	},
 21768  	{
 21769  		CounterId: 261,
 21770  		Instance:  "",
 21771  	},
 21772  	{
 21773  		CounterId: 262,
 21774  		Instance:  "",
 21775  	},
 21776  	{
 21777  		CounterId: 263,
 21778  		Instance:  "",
 21779  	},
 21780  	{
 21781  		CounterId: 264,
 21782  		Instance:  "",
 21783  	},
 21784  	{
 21785  		CounterId: 265,
 21786  		Instance:  "",
 21787  	},
 21788  	{
 21789  		CounterId: 266,
 21790  		Instance:  "",
 21791  	},
 21792  	{
 21793  		CounterId: 267,
 21794  		Instance:  "",
 21795  	},
 21796  	{
 21797  		CounterId: 268,
 21798  		Instance:  "",
 21799  	},
 21800  	{
 21801  		CounterId: 269,
 21802  		Instance:  "",
 21803  	},
 21804  	{
 21805  		CounterId: 270,
 21806  		Instance:  "",
 21807  	},
 21808  	{
 21809  		CounterId: 271,
 21810  		Instance:  "",
 21811  	},
 21812  	{
 21813  		CounterId: 272,
 21814  		Instance:  "",
 21815  	},
 21816  	{
 21817  		CounterId: 273,
 21818  		Instance:  "",
 21819  	},
 21820  	{
 21821  		CounterId: 274,
 21822  		Instance:  "",
 21823  	},
 21824  	{
 21825  		CounterId: 275,
 21826  		Instance:  "",
 21827  	},
 21828  }