github.com/vmware/govmomi@v0.37.1/simulator/vpx/performance_manager.go (about) 1 /* 2 Copyright (c) 2017 VMware, Inc. All Rights Reserved. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package vpx 18 19 import "github.com/vmware/govmomi/vim25/types" 20 21 // HistoricalInterval is the default template for the PerformanceManager historicalInterval property. 22 // Capture method: 23 // 24 // govc object.collect -s -dump PerformanceManager:Perfmgr historicalInterval 25 var HistoricalInterval = []types.PerfInterval{ 26 { 27 Enabled: true, 28 Key: 1, 29 Length: 86400, 30 Level: 1, 31 Name: "Past Day", 32 SamplingPeriod: 300, 33 }, 34 { 35 Enabled: true, 36 Key: 2, 37 Length: 604800, 38 Level: 1, 39 Name: "Past Week", 40 SamplingPeriod: 1800, 41 }, 42 { 43 Enabled: true, 44 Key: 1, 45 Length: 2592000, 46 Level: 1, 47 Name: "Past Month", 48 SamplingPeriod: 7200, 49 }, 50 { 51 Enabled: true, 52 Key: 1, 53 Length: 31536000, 54 Level: 1, 55 Name: "Past Year", 56 SamplingPeriod: 86400, 57 }, 58 } 59 60 // PerfCounter is the default template for the PerformanceManager perfCounter property. 61 // Capture method: 62 // govc object.collect -s -dump PerformanceManager:PerfMgr perfCounter 63 64 var PerfCounter = []types.PerfCounterInfo{ 65 { 66 Key: 1, 67 NameInfo: &types.ElementDescription{ 68 Description: types.Description{ 69 Label: "Usage", 70 Summary: "CPU usage as a percentage during the interval", 71 }, 72 Key: "usage", 73 }, 74 GroupInfo: &types.ElementDescription{ 75 Description: types.Description{ 76 Label: "CPU", 77 Summary: "CPU", 78 }, 79 Key: "cpu", 80 }, 81 UnitInfo: &types.ElementDescription{ 82 Description: types.Description{ 83 Label: "%", 84 Summary: "Percentage", 85 }, 86 Key: "percent", 87 }, 88 RollupType: "none", 89 StatsType: "rate", 90 Level: 4, 91 PerDeviceLevel: 4, 92 AssociatedCounterId: nil, 93 }, 94 { 95 Key: 2, 96 NameInfo: &types.ElementDescription{ 97 Description: types.Description{ 98 Label: "Usage", 99 Summary: "CPU usage as a percentage during the interval", 100 }, 101 Key: "usage", 102 }, 103 GroupInfo: &types.ElementDescription{ 104 Description: types.Description{ 105 Label: "CPU", 106 Summary: "CPU", 107 }, 108 Key: "cpu", 109 }, 110 UnitInfo: &types.ElementDescription{ 111 Description: types.Description{ 112 Label: "%", 113 Summary: "Percentage", 114 }, 115 Key: "percent", 116 }, 117 RollupType: "average", 118 StatsType: "rate", 119 Level: 1, 120 PerDeviceLevel: 3, 121 AssociatedCounterId: nil, 122 }, 123 { 124 Key: 3, 125 NameInfo: &types.ElementDescription{ 126 Description: types.Description{ 127 Label: "Usage", 128 Summary: "CPU usage as a percentage during the interval", 129 }, 130 Key: "usage", 131 }, 132 GroupInfo: &types.ElementDescription{ 133 Description: types.Description{ 134 Label: "CPU", 135 Summary: "CPU", 136 }, 137 Key: "cpu", 138 }, 139 UnitInfo: &types.ElementDescription{ 140 Description: types.Description{ 141 Label: "%", 142 Summary: "Percentage", 143 }, 144 Key: "percent", 145 }, 146 RollupType: "minimum", 147 StatsType: "rate", 148 Level: 4, 149 PerDeviceLevel: 4, 150 AssociatedCounterId: nil, 151 }, 152 { 153 Key: 4, 154 NameInfo: &types.ElementDescription{ 155 Description: types.Description{ 156 Label: "Usage", 157 Summary: "CPU usage as a percentage during the interval", 158 }, 159 Key: "usage", 160 }, 161 GroupInfo: &types.ElementDescription{ 162 Description: types.Description{ 163 Label: "CPU", 164 Summary: "CPU", 165 }, 166 Key: "cpu", 167 }, 168 UnitInfo: &types.ElementDescription{ 169 Description: types.Description{ 170 Label: "%", 171 Summary: "Percentage", 172 }, 173 Key: "percent", 174 }, 175 RollupType: "maximum", 176 StatsType: "rate", 177 Level: 4, 178 PerDeviceLevel: 4, 179 AssociatedCounterId: nil, 180 }, 181 { 182 Key: 5, 183 NameInfo: &types.ElementDescription{ 184 Description: types.Description{ 185 Label: "Usage in MHz", 186 Summary: "CPU usage in megahertz during the interval", 187 }, 188 Key: "usagemhz", 189 }, 190 GroupInfo: &types.ElementDescription{ 191 Description: types.Description{ 192 Label: "CPU", 193 Summary: "CPU", 194 }, 195 Key: "cpu", 196 }, 197 UnitInfo: &types.ElementDescription{ 198 Description: types.Description{ 199 Label: "MHz", 200 Summary: "Megahertz", 201 }, 202 Key: "megaHertz", 203 }, 204 RollupType: "none", 205 StatsType: "rate", 206 Level: 4, 207 PerDeviceLevel: 4, 208 AssociatedCounterId: nil, 209 }, 210 { 211 Key: 6, 212 NameInfo: &types.ElementDescription{ 213 Description: types.Description{ 214 Label: "Usage in MHz", 215 Summary: "CPU usage in megahertz during the interval", 216 }, 217 Key: "usagemhz", 218 }, 219 GroupInfo: &types.ElementDescription{ 220 Description: types.Description{ 221 Label: "CPU", 222 Summary: "CPU", 223 }, 224 Key: "cpu", 225 }, 226 UnitInfo: &types.ElementDescription{ 227 Description: types.Description{ 228 Label: "MHz", 229 Summary: "Megahertz", 230 }, 231 Key: "megaHertz", 232 }, 233 RollupType: "average", 234 StatsType: "rate", 235 Level: 1, 236 PerDeviceLevel: 3, 237 AssociatedCounterId: nil, 238 }, 239 { 240 Key: 7, 241 NameInfo: &types.ElementDescription{ 242 Description: types.Description{ 243 Label: "Usage in MHz", 244 Summary: "CPU usage in megahertz during the interval", 245 }, 246 Key: "usagemhz", 247 }, 248 GroupInfo: &types.ElementDescription{ 249 Description: types.Description{ 250 Label: "CPU", 251 Summary: "CPU", 252 }, 253 Key: "cpu", 254 }, 255 UnitInfo: &types.ElementDescription{ 256 Description: types.Description{ 257 Label: "MHz", 258 Summary: "Megahertz", 259 }, 260 Key: "megaHertz", 261 }, 262 RollupType: "minimum", 263 StatsType: "rate", 264 Level: 4, 265 PerDeviceLevel: 4, 266 AssociatedCounterId: nil, 267 }, 268 { 269 Key: 8, 270 NameInfo: &types.ElementDescription{ 271 Description: types.Description{ 272 Label: "Usage in MHz", 273 Summary: "CPU usage in megahertz during the interval", 274 }, 275 Key: "usagemhz", 276 }, 277 GroupInfo: &types.ElementDescription{ 278 Description: types.Description{ 279 Label: "CPU", 280 Summary: "CPU", 281 }, 282 Key: "cpu", 283 }, 284 UnitInfo: &types.ElementDescription{ 285 Description: types.Description{ 286 Label: "MHz", 287 Summary: "Megahertz", 288 }, 289 Key: "megaHertz", 290 }, 291 RollupType: "maximum", 292 StatsType: "rate", 293 Level: 4, 294 PerDeviceLevel: 4, 295 AssociatedCounterId: nil, 296 }, 297 { 298 Key: 9, 299 NameInfo: &types.ElementDescription{ 300 Description: types.Description{ 301 Label: "Reserved capacity", 302 Summary: "Total CPU capacity reserved by virtual machines", 303 }, 304 Key: "reservedCapacity", 305 }, 306 GroupInfo: &types.ElementDescription{ 307 Description: types.Description{ 308 Label: "CPU", 309 Summary: "CPU", 310 }, 311 Key: "cpu", 312 }, 313 UnitInfo: &types.ElementDescription{ 314 Description: types.Description{ 315 Label: "MHz", 316 Summary: "Megahertz", 317 }, 318 Key: "megaHertz", 319 }, 320 RollupType: "average", 321 StatsType: "absolute", 322 Level: 2, 323 PerDeviceLevel: 3, 324 AssociatedCounterId: nil, 325 }, 326 { 327 Key: 10, 328 NameInfo: &types.ElementDescription{ 329 Description: types.Description{ 330 Label: "System", 331 Summary: "Amount of time spent on system processes on each virtual CPU in the virtual machine", 332 }, 333 Key: "system", 334 }, 335 GroupInfo: &types.ElementDescription{ 336 Description: types.Description{ 337 Label: "CPU", 338 Summary: "CPU", 339 }, 340 Key: "cpu", 341 }, 342 UnitInfo: &types.ElementDescription{ 343 Description: types.Description{ 344 Label: "ms", 345 Summary: "Millisecond", 346 }, 347 Key: "millisecond", 348 }, 349 RollupType: "summation", 350 StatsType: "delta", 351 Level: 3, 352 PerDeviceLevel: 3, 353 AssociatedCounterId: nil, 354 }, 355 { 356 Key: 11, 357 NameInfo: &types.ElementDescription{ 358 Description: types.Description{ 359 Label: "Wait", 360 Summary: "Total CPU time spent in wait state", 361 }, 362 Key: "wait", 363 }, 364 GroupInfo: &types.ElementDescription{ 365 Description: types.Description{ 366 Label: "CPU", 367 Summary: "CPU", 368 }, 369 Key: "cpu", 370 }, 371 UnitInfo: &types.ElementDescription{ 372 Description: types.Description{ 373 Label: "ms", 374 Summary: "Millisecond", 375 }, 376 Key: "millisecond", 377 }, 378 RollupType: "summation", 379 StatsType: "delta", 380 Level: 3, 381 PerDeviceLevel: 3, 382 AssociatedCounterId: nil, 383 }, 384 { 385 Key: 12, 386 NameInfo: &types.ElementDescription{ 387 Description: types.Description{ 388 Label: "Ready", 389 Summary: "Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval", 390 }, 391 Key: "ready", 392 }, 393 GroupInfo: &types.ElementDescription{ 394 Description: types.Description{ 395 Label: "CPU", 396 Summary: "CPU", 397 }, 398 Key: "cpu", 399 }, 400 UnitInfo: &types.ElementDescription{ 401 Description: types.Description{ 402 Label: "ms", 403 Summary: "Millisecond", 404 }, 405 Key: "millisecond", 406 }, 407 RollupType: "summation", 408 StatsType: "delta", 409 Level: 1, 410 PerDeviceLevel: 3, 411 AssociatedCounterId: nil, 412 }, 413 { 414 Key: 13, 415 NameInfo: &types.ElementDescription{ 416 Description: types.Description{ 417 Label: "Idle", 418 Summary: "Total time that the CPU spent in an idle state", 419 }, 420 Key: "idle", 421 }, 422 GroupInfo: &types.ElementDescription{ 423 Description: types.Description{ 424 Label: "CPU", 425 Summary: "CPU", 426 }, 427 Key: "cpu", 428 }, 429 UnitInfo: &types.ElementDescription{ 430 Description: types.Description{ 431 Label: "ms", 432 Summary: "Millisecond", 433 }, 434 Key: "millisecond", 435 }, 436 RollupType: "summation", 437 StatsType: "delta", 438 Level: 2, 439 PerDeviceLevel: 3, 440 AssociatedCounterId: nil, 441 }, 442 { 443 Key: 14, 444 NameInfo: &types.ElementDescription{ 445 Description: types.Description{ 446 Label: "Used", 447 Summary: "Total CPU usage", 448 }, 449 Key: "used", 450 }, 451 GroupInfo: &types.ElementDescription{ 452 Description: types.Description{ 453 Label: "CPU", 454 Summary: "CPU", 455 }, 456 Key: "cpu", 457 }, 458 UnitInfo: &types.ElementDescription{ 459 Description: types.Description{ 460 Label: "ms", 461 Summary: "Millisecond", 462 }, 463 Key: "millisecond", 464 }, 465 RollupType: "summation", 466 StatsType: "delta", 467 Level: 3, 468 PerDeviceLevel: 3, 469 AssociatedCounterId: nil, 470 }, 471 { 472 Key: 15, 473 NameInfo: &types.ElementDescription{ 474 Description: types.Description{ 475 Label: "CPU Capacity Provisioned", 476 Summary: "Capacity in MHz of the physical CPU cores", 477 }, 478 Key: "capacity.provisioned", 479 }, 480 GroupInfo: &types.ElementDescription{ 481 Description: types.Description{ 482 Label: "CPU", 483 Summary: "CPU", 484 }, 485 Key: "cpu", 486 }, 487 UnitInfo: &types.ElementDescription{ 488 Description: types.Description{ 489 Label: "MHz", 490 Summary: "Megahertz", 491 }, 492 Key: "megaHertz", 493 }, 494 RollupType: "average", 495 StatsType: "absolute", 496 Level: 4, 497 PerDeviceLevel: 4, 498 AssociatedCounterId: nil, 499 }, 500 { 501 Key: 16, 502 NameInfo: &types.ElementDescription{ 503 Description: types.Description{ 504 Label: "CPU Capacity Entitlement", 505 Summary: "CPU resources devoted by the ESXi scheduler to the virtual machines and resource pools", 506 }, 507 Key: "capacity.entitlement", 508 }, 509 GroupInfo: &types.ElementDescription{ 510 Description: types.Description{ 511 Label: "CPU", 512 Summary: "CPU", 513 }, 514 Key: "cpu", 515 }, 516 UnitInfo: &types.ElementDescription{ 517 Description: types.Description{ 518 Label: "MHz", 519 Summary: "Megahertz", 520 }, 521 Key: "megaHertz", 522 }, 523 RollupType: "average", 524 StatsType: "absolute", 525 Level: 4, 526 PerDeviceLevel: 4, 527 AssociatedCounterId: nil, 528 }, 529 { 530 Key: 17, 531 NameInfo: &types.ElementDescription{ 532 Description: types.Description{ 533 Label: "CPU Capacity Usage", 534 Summary: "CPU usage as a percent during the interval.", 535 }, 536 Key: "capacity.usage", 537 }, 538 GroupInfo: &types.ElementDescription{ 539 Description: types.Description{ 540 Label: "CPU", 541 Summary: "CPU", 542 }, 543 Key: "cpu", 544 }, 545 UnitInfo: &types.ElementDescription{ 546 Description: types.Description{ 547 Label: "MHz", 548 Summary: "Megahertz", 549 }, 550 Key: "megaHertz", 551 }, 552 RollupType: "average", 553 StatsType: "rate", 554 Level: 4, 555 PerDeviceLevel: 4, 556 AssociatedCounterId: nil, 557 }, 558 { 559 Key: 18, 560 NameInfo: &types.ElementDescription{ 561 Description: types.Description{ 562 Label: "CPU Capacity Demand", 563 Summary: "The amount of CPU resources a VM would use if there were no CPU contention or CPU limit", 564 }, 565 Key: "capacity.demand", 566 }, 567 GroupInfo: &types.ElementDescription{ 568 Description: types.Description{ 569 Label: "CPU", 570 Summary: "CPU", 571 }, 572 Key: "cpu", 573 }, 574 UnitInfo: &types.ElementDescription{ 575 Description: types.Description{ 576 Label: "MHz", 577 Summary: "Megahertz", 578 }, 579 Key: "megaHertz", 580 }, 581 RollupType: "average", 582 StatsType: "absolute", 583 Level: 4, 584 PerDeviceLevel: 4, 585 AssociatedCounterId: nil, 586 }, 587 { 588 Key: 19, 589 NameInfo: &types.ElementDescription{ 590 Description: types.Description{ 591 Label: "CPU Capacity Contention", 592 Summary: "Percent of time the VM is unable to run because it is contending for access to the physical CPU(s)", 593 }, 594 Key: "capacity.contention", 595 }, 596 GroupInfo: &types.ElementDescription{ 597 Description: types.Description{ 598 Label: "CPU", 599 Summary: "CPU", 600 }, 601 Key: "cpu", 602 }, 603 UnitInfo: &types.ElementDescription{ 604 Description: types.Description{ 605 Label: "%", 606 Summary: "Percentage", 607 }, 608 Key: "percent", 609 }, 610 RollupType: "average", 611 StatsType: "rate", 612 Level: 4, 613 PerDeviceLevel: 4, 614 AssociatedCounterId: nil, 615 }, 616 { 617 Key: 20, 618 NameInfo: &types.ElementDescription{ 619 Description: types.Description{ 620 Label: "CPU Core Count Provisioned", 621 Summary: "The number of virtual processors provisioned to the entity.", 622 }, 623 Key: "corecount.provisioned", 624 }, 625 GroupInfo: &types.ElementDescription{ 626 Description: types.Description{ 627 Label: "CPU", 628 Summary: "CPU", 629 }, 630 Key: "cpu", 631 }, 632 UnitInfo: &types.ElementDescription{ 633 Description: types.Description{ 634 Label: "num", 635 Summary: "Number", 636 }, 637 Key: "number", 638 }, 639 RollupType: "average", 640 StatsType: "absolute", 641 Level: 4, 642 PerDeviceLevel: 4, 643 AssociatedCounterId: nil, 644 }, 645 { 646 Key: 21, 647 NameInfo: &types.ElementDescription{ 648 Description: types.Description{ 649 Label: "CPU Core Count Usage", 650 Summary: "The number of virtual processors running on the host.", 651 }, 652 Key: "corecount.usage", 653 }, 654 GroupInfo: &types.ElementDescription{ 655 Description: types.Description{ 656 Label: "CPU", 657 Summary: "CPU", 658 }, 659 Key: "cpu", 660 }, 661 UnitInfo: &types.ElementDescription{ 662 Description: types.Description{ 663 Label: "num", 664 Summary: "Number", 665 }, 666 Key: "number", 667 }, 668 RollupType: "average", 669 StatsType: "absolute", 670 Level: 4, 671 PerDeviceLevel: 4, 672 AssociatedCounterId: nil, 673 }, 674 { 675 Key: 22, 676 NameInfo: &types.ElementDescription{ 677 Description: types.Description{ 678 Label: "CPU Core Count Contention", 679 Summary: "Time the VM vCPU is ready to run, but is unable to run due to co-scheduling constraints", 680 }, 681 Key: "corecount.contention", 682 }, 683 GroupInfo: &types.ElementDescription{ 684 Description: types.Description{ 685 Label: "CPU", 686 Summary: "CPU", 687 }, 688 Key: "cpu", 689 }, 690 UnitInfo: &types.ElementDescription{ 691 Description: types.Description{ 692 Label: "%", 693 Summary: "Percentage", 694 }, 695 Key: "percent", 696 }, 697 RollupType: "average", 698 StatsType: "rate", 699 Level: 4, 700 PerDeviceLevel: 4, 701 AssociatedCounterId: nil, 702 }, 703 { 704 Key: 23, 705 NameInfo: &types.ElementDescription{ 706 Description: types.Description{ 707 Label: "Host consumed %", 708 Summary: "Percentage of host physical memory that has been consumed", 709 }, 710 Key: "usage", 711 }, 712 GroupInfo: &types.ElementDescription{ 713 Description: types.Description{ 714 Label: "Memory", 715 Summary: "Memory", 716 }, 717 Key: "mem", 718 }, 719 UnitInfo: &types.ElementDescription{ 720 Description: types.Description{ 721 Label: "%", 722 Summary: "Percentage", 723 }, 724 Key: "percent", 725 }, 726 RollupType: "none", 727 StatsType: "absolute", 728 Level: 4, 729 PerDeviceLevel: 4, 730 AssociatedCounterId: nil, 731 }, 732 { 733 Key: 24, 734 NameInfo: &types.ElementDescription{ 735 Description: types.Description{ 736 Label: "Host consumed %", 737 Summary: "Percentage of host physical memory that has been consumed", 738 }, 739 Key: "usage", 740 }, 741 GroupInfo: &types.ElementDescription{ 742 Description: types.Description{ 743 Label: "Memory", 744 Summary: "Memory", 745 }, 746 Key: "mem", 747 }, 748 UnitInfo: &types.ElementDescription{ 749 Description: types.Description{ 750 Label: "%", 751 Summary: "Percentage", 752 }, 753 Key: "percent", 754 }, 755 RollupType: "average", 756 StatsType: "absolute", 757 Level: 1, 758 PerDeviceLevel: 3, 759 AssociatedCounterId: nil, 760 }, 761 { 762 Key: 25, 763 NameInfo: &types.ElementDescription{ 764 Description: types.Description{ 765 Label: "Host consumed %", 766 Summary: "Percentage of host physical memory that has been consumed", 767 }, 768 Key: "usage", 769 }, 770 GroupInfo: &types.ElementDescription{ 771 Description: types.Description{ 772 Label: "Memory", 773 Summary: "Memory", 774 }, 775 Key: "mem", 776 }, 777 UnitInfo: &types.ElementDescription{ 778 Description: types.Description{ 779 Label: "%", 780 Summary: "Percentage", 781 }, 782 Key: "percent", 783 }, 784 RollupType: "minimum", 785 StatsType: "absolute", 786 Level: 4, 787 PerDeviceLevel: 4, 788 AssociatedCounterId: nil, 789 }, 790 { 791 Key: 26, 792 NameInfo: &types.ElementDescription{ 793 Description: types.Description{ 794 Label: "Host consumed %", 795 Summary: "Percentage of host physical memory that has been consumed", 796 }, 797 Key: "usage", 798 }, 799 GroupInfo: &types.ElementDescription{ 800 Description: types.Description{ 801 Label: "Memory", 802 Summary: "Memory", 803 }, 804 Key: "mem", 805 }, 806 UnitInfo: &types.ElementDescription{ 807 Description: types.Description{ 808 Label: "%", 809 Summary: "Percentage", 810 }, 811 Key: "percent", 812 }, 813 RollupType: "maximum", 814 StatsType: "absolute", 815 Level: 4, 816 PerDeviceLevel: 4, 817 AssociatedCounterId: nil, 818 }, 819 { 820 Key: 27, 821 NameInfo: &types.ElementDescription{ 822 Description: types.Description{ 823 Label: "Reservation consumed", 824 Summary: "Memory reservation consumed by powered-on virtual machines", 825 }, 826 Key: "reservedCapacity", 827 }, 828 GroupInfo: &types.ElementDescription{ 829 Description: types.Description{ 830 Label: "Memory", 831 Summary: "Memory", 832 }, 833 Key: "mem", 834 }, 835 UnitInfo: &types.ElementDescription{ 836 Description: types.Description{ 837 Label: "MB", 838 Summary: "Megabyte", 839 }, 840 Key: "megaBytes", 841 }, 842 RollupType: "average", 843 StatsType: "absolute", 844 Level: 2, 845 PerDeviceLevel: 3, 846 AssociatedCounterId: nil, 847 }, 848 { 849 Key: 28, 850 NameInfo: &types.ElementDescription{ 851 Description: types.Description{ 852 Label: "Granted", 853 Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host", 854 }, 855 Key: "granted", 856 }, 857 GroupInfo: &types.ElementDescription{ 858 Description: types.Description{ 859 Label: "Memory", 860 Summary: "Memory", 861 }, 862 Key: "mem", 863 }, 864 UnitInfo: &types.ElementDescription{ 865 Description: types.Description{ 866 Label: "KB", 867 Summary: "Kilobyte", 868 }, 869 Key: "kiloBytes", 870 }, 871 RollupType: "none", 872 StatsType: "absolute", 873 Level: 4, 874 PerDeviceLevel: 4, 875 AssociatedCounterId: nil, 876 }, 877 { 878 Key: 29, 879 NameInfo: &types.ElementDescription{ 880 Description: types.Description{ 881 Label: "Granted", 882 Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host", 883 }, 884 Key: "granted", 885 }, 886 GroupInfo: &types.ElementDescription{ 887 Description: types.Description{ 888 Label: "Memory", 889 Summary: "Memory", 890 }, 891 Key: "mem", 892 }, 893 UnitInfo: &types.ElementDescription{ 894 Description: types.Description{ 895 Label: "KB", 896 Summary: "Kilobyte", 897 }, 898 Key: "kiloBytes", 899 }, 900 RollupType: "average", 901 StatsType: "absolute", 902 Level: 2, 903 PerDeviceLevel: 3, 904 AssociatedCounterId: nil, 905 }, 906 { 907 Key: 30, 908 NameInfo: &types.ElementDescription{ 909 Description: types.Description{ 910 Label: "Granted", 911 Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host", 912 }, 913 Key: "granted", 914 }, 915 GroupInfo: &types.ElementDescription{ 916 Description: types.Description{ 917 Label: "Memory", 918 Summary: "Memory", 919 }, 920 Key: "mem", 921 }, 922 UnitInfo: &types.ElementDescription{ 923 Description: types.Description{ 924 Label: "KB", 925 Summary: "Kilobyte", 926 }, 927 Key: "kiloBytes", 928 }, 929 RollupType: "minimum", 930 StatsType: "absolute", 931 Level: 4, 932 PerDeviceLevel: 4, 933 AssociatedCounterId: nil, 934 }, 935 { 936 Key: 31, 937 NameInfo: &types.ElementDescription{ 938 Description: types.Description{ 939 Label: "Granted", 940 Summary: "Amount of host physical memory or physical memory that is mapped for a virtual machine or a host", 941 }, 942 Key: "granted", 943 }, 944 GroupInfo: &types.ElementDescription{ 945 Description: types.Description{ 946 Label: "Memory", 947 Summary: "Memory", 948 }, 949 Key: "mem", 950 }, 951 UnitInfo: &types.ElementDescription{ 952 Description: types.Description{ 953 Label: "KB", 954 Summary: "Kilobyte", 955 }, 956 Key: "kiloBytes", 957 }, 958 RollupType: "maximum", 959 StatsType: "absolute", 960 Level: 4, 961 PerDeviceLevel: 4, 962 AssociatedCounterId: nil, 963 }, 964 { 965 Key: 32, 966 NameInfo: &types.ElementDescription{ 967 Description: types.Description{ 968 Label: "Active", 969 Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi", 970 }, 971 Key: "active", 972 }, 973 GroupInfo: &types.ElementDescription{ 974 Description: types.Description{ 975 Label: "Memory", 976 Summary: "Memory", 977 }, 978 Key: "mem", 979 }, 980 UnitInfo: &types.ElementDescription{ 981 Description: types.Description{ 982 Label: "KB", 983 Summary: "Kilobyte", 984 }, 985 Key: "kiloBytes", 986 }, 987 RollupType: "none", 988 StatsType: "absolute", 989 Level: 4, 990 PerDeviceLevel: 4, 991 AssociatedCounterId: nil, 992 }, 993 { 994 Key: 33, 995 NameInfo: &types.ElementDescription{ 996 Description: types.Description{ 997 Label: "Active", 998 Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi", 999 }, 1000 Key: "active", 1001 }, 1002 GroupInfo: &types.ElementDescription{ 1003 Description: types.Description{ 1004 Label: "Memory", 1005 Summary: "Memory", 1006 }, 1007 Key: "mem", 1008 }, 1009 UnitInfo: &types.ElementDescription{ 1010 Description: types.Description{ 1011 Label: "KB", 1012 Summary: "Kilobyte", 1013 }, 1014 Key: "kiloBytes", 1015 }, 1016 RollupType: "average", 1017 StatsType: "absolute", 1018 Level: 2, 1019 PerDeviceLevel: 3, 1020 AssociatedCounterId: nil, 1021 }, 1022 { 1023 Key: 34, 1024 NameInfo: &types.ElementDescription{ 1025 Description: types.Description{ 1026 Label: "Active", 1027 Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi", 1028 }, 1029 Key: "active", 1030 }, 1031 GroupInfo: &types.ElementDescription{ 1032 Description: types.Description{ 1033 Label: "Memory", 1034 Summary: "Memory", 1035 }, 1036 Key: "mem", 1037 }, 1038 UnitInfo: &types.ElementDescription{ 1039 Description: types.Description{ 1040 Label: "KB", 1041 Summary: "Kilobyte", 1042 }, 1043 Key: "kiloBytes", 1044 }, 1045 RollupType: "minimum", 1046 StatsType: "absolute", 1047 Level: 4, 1048 PerDeviceLevel: 4, 1049 AssociatedCounterId: nil, 1050 }, 1051 { 1052 Key: 35, 1053 NameInfo: &types.ElementDescription{ 1054 Description: types.Description{ 1055 Label: "Active", 1056 Summary: "Amount of guest physical memory that is being actively read or written by guest. Activeness is estimated by ESXi", 1057 }, 1058 Key: "active", 1059 }, 1060 GroupInfo: &types.ElementDescription{ 1061 Description: types.Description{ 1062 Label: "Memory", 1063 Summary: "Memory", 1064 }, 1065 Key: "mem", 1066 }, 1067 UnitInfo: &types.ElementDescription{ 1068 Description: types.Description{ 1069 Label: "KB", 1070 Summary: "Kilobyte", 1071 }, 1072 Key: "kiloBytes", 1073 }, 1074 RollupType: "maximum", 1075 StatsType: "absolute", 1076 Level: 4, 1077 PerDeviceLevel: 4, 1078 AssociatedCounterId: nil, 1079 }, 1080 { 1081 Key: 36, 1082 NameInfo: &types.ElementDescription{ 1083 Description: types.Description{ 1084 Label: "Shared", 1085 Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines", 1086 }, 1087 Key: "shared", 1088 }, 1089 GroupInfo: &types.ElementDescription{ 1090 Description: types.Description{ 1091 Label: "Memory", 1092 Summary: "Memory", 1093 }, 1094 Key: "mem", 1095 }, 1096 UnitInfo: &types.ElementDescription{ 1097 Description: types.Description{ 1098 Label: "KB", 1099 Summary: "Kilobyte", 1100 }, 1101 Key: "kiloBytes", 1102 }, 1103 RollupType: "none", 1104 StatsType: "absolute", 1105 Level: 4, 1106 PerDeviceLevel: 4, 1107 AssociatedCounterId: nil, 1108 }, 1109 { 1110 Key: 37, 1111 NameInfo: &types.ElementDescription{ 1112 Description: types.Description{ 1113 Label: "Shared", 1114 Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines", 1115 }, 1116 Key: "shared", 1117 }, 1118 GroupInfo: &types.ElementDescription{ 1119 Description: types.Description{ 1120 Label: "Memory", 1121 Summary: "Memory", 1122 }, 1123 Key: "mem", 1124 }, 1125 UnitInfo: &types.ElementDescription{ 1126 Description: types.Description{ 1127 Label: "KB", 1128 Summary: "Kilobyte", 1129 }, 1130 Key: "kiloBytes", 1131 }, 1132 RollupType: "average", 1133 StatsType: "absolute", 1134 Level: 2, 1135 PerDeviceLevel: 3, 1136 AssociatedCounterId: nil, 1137 }, 1138 { 1139 Key: 38, 1140 NameInfo: &types.ElementDescription{ 1141 Description: types.Description{ 1142 Label: "Shared", 1143 Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines", 1144 }, 1145 Key: "shared", 1146 }, 1147 GroupInfo: &types.ElementDescription{ 1148 Description: types.Description{ 1149 Label: "Memory", 1150 Summary: "Memory", 1151 }, 1152 Key: "mem", 1153 }, 1154 UnitInfo: &types.ElementDescription{ 1155 Description: types.Description{ 1156 Label: "KB", 1157 Summary: "Kilobyte", 1158 }, 1159 Key: "kiloBytes", 1160 }, 1161 RollupType: "minimum", 1162 StatsType: "absolute", 1163 Level: 4, 1164 PerDeviceLevel: 4, 1165 AssociatedCounterId: nil, 1166 }, 1167 { 1168 Key: 39, 1169 NameInfo: &types.ElementDescription{ 1170 Description: types.Description{ 1171 Label: "Shared", 1172 Summary: "Amount of guest physical memory that is shared within a single virtual machine or across virtual machines", 1173 }, 1174 Key: "shared", 1175 }, 1176 GroupInfo: &types.ElementDescription{ 1177 Description: types.Description{ 1178 Label: "Memory", 1179 Summary: "Memory", 1180 }, 1181 Key: "mem", 1182 }, 1183 UnitInfo: &types.ElementDescription{ 1184 Description: types.Description{ 1185 Label: "KB", 1186 Summary: "Kilobyte", 1187 }, 1188 Key: "kiloBytes", 1189 }, 1190 RollupType: "maximum", 1191 StatsType: "absolute", 1192 Level: 4, 1193 PerDeviceLevel: 4, 1194 AssociatedCounterId: nil, 1195 }, 1196 { 1197 Key: 40, 1198 NameInfo: &types.ElementDescription{ 1199 Description: types.Description{ 1200 Label: "Zero pages", 1201 Summary: "Guest physical memory pages whose content is 0x00", 1202 }, 1203 Key: "zero", 1204 }, 1205 GroupInfo: &types.ElementDescription{ 1206 Description: types.Description{ 1207 Label: "Memory", 1208 Summary: "Memory", 1209 }, 1210 Key: "mem", 1211 }, 1212 UnitInfo: &types.ElementDescription{ 1213 Description: types.Description{ 1214 Label: "KB", 1215 Summary: "Kilobyte", 1216 }, 1217 Key: "kiloBytes", 1218 }, 1219 RollupType: "none", 1220 StatsType: "absolute", 1221 Level: 4, 1222 PerDeviceLevel: 4, 1223 AssociatedCounterId: nil, 1224 }, 1225 { 1226 Key: 41, 1227 NameInfo: &types.ElementDescription{ 1228 Description: types.Description{ 1229 Label: "Zero pages", 1230 Summary: "Guest physical memory pages whose content is 0x00", 1231 }, 1232 Key: "zero", 1233 }, 1234 GroupInfo: &types.ElementDescription{ 1235 Description: types.Description{ 1236 Label: "Memory", 1237 Summary: "Memory", 1238 }, 1239 Key: "mem", 1240 }, 1241 UnitInfo: &types.ElementDescription{ 1242 Description: types.Description{ 1243 Label: "KB", 1244 Summary: "Kilobyte", 1245 }, 1246 Key: "kiloBytes", 1247 }, 1248 RollupType: "average", 1249 StatsType: "absolute", 1250 Level: 2, 1251 PerDeviceLevel: 3, 1252 AssociatedCounterId: nil, 1253 }, 1254 { 1255 Key: 42, 1256 NameInfo: &types.ElementDescription{ 1257 Description: types.Description{ 1258 Label: "Zero pages", 1259 Summary: "Guest physical memory pages whose content is 0x00", 1260 }, 1261 Key: "zero", 1262 }, 1263 GroupInfo: &types.ElementDescription{ 1264 Description: types.Description{ 1265 Label: "Memory", 1266 Summary: "Memory", 1267 }, 1268 Key: "mem", 1269 }, 1270 UnitInfo: &types.ElementDescription{ 1271 Description: types.Description{ 1272 Label: "KB", 1273 Summary: "Kilobyte", 1274 }, 1275 Key: "kiloBytes", 1276 }, 1277 RollupType: "minimum", 1278 StatsType: "absolute", 1279 Level: 4, 1280 PerDeviceLevel: 4, 1281 AssociatedCounterId: nil, 1282 }, 1283 { 1284 Key: 43, 1285 NameInfo: &types.ElementDescription{ 1286 Description: types.Description{ 1287 Label: "Zero pages", 1288 Summary: "Guest physical memory pages whose content is 0x00", 1289 }, 1290 Key: "zero", 1291 }, 1292 GroupInfo: &types.ElementDescription{ 1293 Description: types.Description{ 1294 Label: "Memory", 1295 Summary: "Memory", 1296 }, 1297 Key: "mem", 1298 }, 1299 UnitInfo: &types.ElementDescription{ 1300 Description: types.Description{ 1301 Label: "KB", 1302 Summary: "Kilobyte", 1303 }, 1304 Key: "kiloBytes", 1305 }, 1306 RollupType: "maximum", 1307 StatsType: "absolute", 1308 Level: 4, 1309 PerDeviceLevel: 4, 1310 AssociatedCounterId: nil, 1311 }, 1312 { 1313 Key: 44, 1314 NameInfo: &types.ElementDescription{ 1315 Description: types.Description{ 1316 Label: "Reservation available", 1317 Summary: "Amount by which reservation can be raised", 1318 }, 1319 Key: "unreserved", 1320 }, 1321 GroupInfo: &types.ElementDescription{ 1322 Description: types.Description{ 1323 Label: "Memory", 1324 Summary: "Memory", 1325 }, 1326 Key: "mem", 1327 }, 1328 UnitInfo: &types.ElementDescription{ 1329 Description: types.Description{ 1330 Label: "KB", 1331 Summary: "Kilobyte", 1332 }, 1333 Key: "kiloBytes", 1334 }, 1335 RollupType: "none", 1336 StatsType: "absolute", 1337 Level: 4, 1338 PerDeviceLevel: 4, 1339 AssociatedCounterId: nil, 1340 }, 1341 { 1342 Key: 45, 1343 NameInfo: &types.ElementDescription{ 1344 Description: types.Description{ 1345 Label: "Reservation available", 1346 Summary: "Amount by which reservation can be raised", 1347 }, 1348 Key: "unreserved", 1349 }, 1350 GroupInfo: &types.ElementDescription{ 1351 Description: types.Description{ 1352 Label: "Memory", 1353 Summary: "Memory", 1354 }, 1355 Key: "mem", 1356 }, 1357 UnitInfo: &types.ElementDescription{ 1358 Description: types.Description{ 1359 Label: "KB", 1360 Summary: "Kilobyte", 1361 }, 1362 Key: "kiloBytes", 1363 }, 1364 RollupType: "average", 1365 StatsType: "absolute", 1366 Level: 2, 1367 PerDeviceLevel: 3, 1368 AssociatedCounterId: nil, 1369 }, 1370 { 1371 Key: 46, 1372 NameInfo: &types.ElementDescription{ 1373 Description: types.Description{ 1374 Label: "Reservation available", 1375 Summary: "Amount by which reservation can be raised", 1376 }, 1377 Key: "unreserved", 1378 }, 1379 GroupInfo: &types.ElementDescription{ 1380 Description: types.Description{ 1381 Label: "Memory", 1382 Summary: "Memory", 1383 }, 1384 Key: "mem", 1385 }, 1386 UnitInfo: &types.ElementDescription{ 1387 Description: types.Description{ 1388 Label: "KB", 1389 Summary: "Kilobyte", 1390 }, 1391 Key: "kiloBytes", 1392 }, 1393 RollupType: "minimum", 1394 StatsType: "absolute", 1395 Level: 4, 1396 PerDeviceLevel: 4, 1397 AssociatedCounterId: nil, 1398 }, 1399 { 1400 Key: 47, 1401 NameInfo: &types.ElementDescription{ 1402 Description: types.Description{ 1403 Label: "Reservation available", 1404 Summary: "Amount by which reservation can be raised", 1405 }, 1406 Key: "unreserved", 1407 }, 1408 GroupInfo: &types.ElementDescription{ 1409 Description: types.Description{ 1410 Label: "Memory", 1411 Summary: "Memory", 1412 }, 1413 Key: "mem", 1414 }, 1415 UnitInfo: &types.ElementDescription{ 1416 Description: types.Description{ 1417 Label: "KB", 1418 Summary: "Kilobyte", 1419 }, 1420 Key: "kiloBytes", 1421 }, 1422 RollupType: "maximum", 1423 StatsType: "absolute", 1424 Level: 4, 1425 PerDeviceLevel: 4, 1426 AssociatedCounterId: nil, 1427 }, 1428 { 1429 Key: 48, 1430 NameInfo: &types.ElementDescription{ 1431 Description: types.Description{ 1432 Label: "Swap consumed", 1433 Summary: "Swap storage space consumed", 1434 }, 1435 Key: "swapused", 1436 }, 1437 GroupInfo: &types.ElementDescription{ 1438 Description: types.Description{ 1439 Label: "Memory", 1440 Summary: "Memory", 1441 }, 1442 Key: "mem", 1443 }, 1444 UnitInfo: &types.ElementDescription{ 1445 Description: types.Description{ 1446 Label: "KB", 1447 Summary: "Kilobyte", 1448 }, 1449 Key: "kiloBytes", 1450 }, 1451 RollupType: "none", 1452 StatsType: "absolute", 1453 Level: 4, 1454 PerDeviceLevel: 4, 1455 AssociatedCounterId: nil, 1456 }, 1457 { 1458 Key: 49, 1459 NameInfo: &types.ElementDescription{ 1460 Description: types.Description{ 1461 Label: "Swap consumed", 1462 Summary: "Swap storage space consumed", 1463 }, 1464 Key: "swapused", 1465 }, 1466 GroupInfo: &types.ElementDescription{ 1467 Description: types.Description{ 1468 Label: "Memory", 1469 Summary: "Memory", 1470 }, 1471 Key: "mem", 1472 }, 1473 UnitInfo: &types.ElementDescription{ 1474 Description: types.Description{ 1475 Label: "KB", 1476 Summary: "Kilobyte", 1477 }, 1478 Key: "kiloBytes", 1479 }, 1480 RollupType: "average", 1481 StatsType: "absolute", 1482 Level: 2, 1483 PerDeviceLevel: 3, 1484 AssociatedCounterId: nil, 1485 }, 1486 { 1487 Key: 50, 1488 NameInfo: &types.ElementDescription{ 1489 Description: types.Description{ 1490 Label: "Swap consumed", 1491 Summary: "Swap storage space consumed", 1492 }, 1493 Key: "swapused", 1494 }, 1495 GroupInfo: &types.ElementDescription{ 1496 Description: types.Description{ 1497 Label: "Memory", 1498 Summary: "Memory", 1499 }, 1500 Key: "mem", 1501 }, 1502 UnitInfo: &types.ElementDescription{ 1503 Description: types.Description{ 1504 Label: "KB", 1505 Summary: "Kilobyte", 1506 }, 1507 Key: "kiloBytes", 1508 }, 1509 RollupType: "minimum", 1510 StatsType: "absolute", 1511 Level: 4, 1512 PerDeviceLevel: 4, 1513 AssociatedCounterId: nil, 1514 }, 1515 { 1516 Key: 51, 1517 NameInfo: &types.ElementDescription{ 1518 Description: types.Description{ 1519 Label: "Swap consumed", 1520 Summary: "Swap storage space consumed", 1521 }, 1522 Key: "swapused", 1523 }, 1524 GroupInfo: &types.ElementDescription{ 1525 Description: types.Description{ 1526 Label: "Memory", 1527 Summary: "Memory", 1528 }, 1529 Key: "mem", 1530 }, 1531 UnitInfo: &types.ElementDescription{ 1532 Description: types.Description{ 1533 Label: "KB", 1534 Summary: "Kilobyte", 1535 }, 1536 Key: "kiloBytes", 1537 }, 1538 RollupType: "maximum", 1539 StatsType: "absolute", 1540 Level: 4, 1541 PerDeviceLevel: 4, 1542 AssociatedCounterId: nil, 1543 }, 1544 { 1545 Key: 52, 1546 NameInfo: &types.ElementDescription{ 1547 Description: types.Description{ 1548 Label: "swapunreserved", 1549 Summary: "swapunreserved", 1550 }, 1551 Key: "swapunreserved", 1552 }, 1553 GroupInfo: &types.ElementDescription{ 1554 Description: types.Description{ 1555 Label: "Memory", 1556 Summary: "Memory", 1557 }, 1558 Key: "mem", 1559 }, 1560 UnitInfo: &types.ElementDescription{ 1561 Description: types.Description{ 1562 Label: "KB", 1563 Summary: "Kilobyte", 1564 }, 1565 Key: "kiloBytes", 1566 }, 1567 RollupType: "none", 1568 StatsType: "absolute", 1569 Level: 4, 1570 PerDeviceLevel: 4, 1571 AssociatedCounterId: nil, 1572 }, 1573 { 1574 Key: 53, 1575 NameInfo: &types.ElementDescription{ 1576 Description: types.Description{ 1577 Label: "swapunreserved", 1578 Summary: "swapunreserved", 1579 }, 1580 Key: "swapunreserved", 1581 }, 1582 GroupInfo: &types.ElementDescription{ 1583 Description: types.Description{ 1584 Label: "Memory", 1585 Summary: "Memory", 1586 }, 1587 Key: "mem", 1588 }, 1589 UnitInfo: &types.ElementDescription{ 1590 Description: types.Description{ 1591 Label: "KB", 1592 Summary: "Kilobyte", 1593 }, 1594 Key: "kiloBytes", 1595 }, 1596 RollupType: "average", 1597 StatsType: "absolute", 1598 Level: 4, 1599 PerDeviceLevel: 4, 1600 AssociatedCounterId: nil, 1601 }, 1602 { 1603 Key: 54, 1604 NameInfo: &types.ElementDescription{ 1605 Description: types.Description{ 1606 Label: "swapunreserved", 1607 Summary: "swapunreserved", 1608 }, 1609 Key: "swapunreserved", 1610 }, 1611 GroupInfo: &types.ElementDescription{ 1612 Description: types.Description{ 1613 Label: "Memory", 1614 Summary: "Memory", 1615 }, 1616 Key: "mem", 1617 }, 1618 UnitInfo: &types.ElementDescription{ 1619 Description: types.Description{ 1620 Label: "KB", 1621 Summary: "Kilobyte", 1622 }, 1623 Key: "kiloBytes", 1624 }, 1625 RollupType: "minimum", 1626 StatsType: "absolute", 1627 Level: 4, 1628 PerDeviceLevel: 4, 1629 AssociatedCounterId: nil, 1630 }, 1631 { 1632 Key: 55, 1633 NameInfo: &types.ElementDescription{ 1634 Description: types.Description{ 1635 Label: "swapunreserved", 1636 Summary: "swapunreserved", 1637 }, 1638 Key: "swapunreserved", 1639 }, 1640 GroupInfo: &types.ElementDescription{ 1641 Description: types.Description{ 1642 Label: "Memory", 1643 Summary: "Memory", 1644 }, 1645 Key: "mem", 1646 }, 1647 UnitInfo: &types.ElementDescription{ 1648 Description: types.Description{ 1649 Label: "KB", 1650 Summary: "Kilobyte", 1651 }, 1652 Key: "kiloBytes", 1653 }, 1654 RollupType: "maximum", 1655 StatsType: "absolute", 1656 Level: 4, 1657 PerDeviceLevel: 4, 1658 AssociatedCounterId: nil, 1659 }, 1660 { 1661 Key: 56, 1662 NameInfo: &types.ElementDescription{ 1663 Description: types.Description{ 1664 Label: "Shared common", 1665 Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)", 1666 }, 1667 Key: "sharedcommon", 1668 }, 1669 GroupInfo: &types.ElementDescription{ 1670 Description: types.Description{ 1671 Label: "Memory", 1672 Summary: "Memory", 1673 }, 1674 Key: "mem", 1675 }, 1676 UnitInfo: &types.ElementDescription{ 1677 Description: types.Description{ 1678 Label: "KB", 1679 Summary: "Kilobyte", 1680 }, 1681 Key: "kiloBytes", 1682 }, 1683 RollupType: "none", 1684 StatsType: "absolute", 1685 Level: 4, 1686 PerDeviceLevel: 4, 1687 AssociatedCounterId: nil, 1688 }, 1689 { 1690 Key: 57, 1691 NameInfo: &types.ElementDescription{ 1692 Description: types.Description{ 1693 Label: "Shared common", 1694 Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)", 1695 }, 1696 Key: "sharedcommon", 1697 }, 1698 GroupInfo: &types.ElementDescription{ 1699 Description: types.Description{ 1700 Label: "Memory", 1701 Summary: "Memory", 1702 }, 1703 Key: "mem", 1704 }, 1705 UnitInfo: &types.ElementDescription{ 1706 Description: types.Description{ 1707 Label: "KB", 1708 Summary: "Kilobyte", 1709 }, 1710 Key: "kiloBytes", 1711 }, 1712 RollupType: "average", 1713 StatsType: "absolute", 1714 Level: 2, 1715 PerDeviceLevel: 3, 1716 AssociatedCounterId: nil, 1717 }, 1718 { 1719 Key: 58, 1720 NameInfo: &types.ElementDescription{ 1721 Description: types.Description{ 1722 Label: "Shared common", 1723 Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)", 1724 }, 1725 Key: "sharedcommon", 1726 }, 1727 GroupInfo: &types.ElementDescription{ 1728 Description: types.Description{ 1729 Label: "Memory", 1730 Summary: "Memory", 1731 }, 1732 Key: "mem", 1733 }, 1734 UnitInfo: &types.ElementDescription{ 1735 Description: types.Description{ 1736 Label: "KB", 1737 Summary: "Kilobyte", 1738 }, 1739 Key: "kiloBytes", 1740 }, 1741 RollupType: "minimum", 1742 StatsType: "absolute", 1743 Level: 4, 1744 PerDeviceLevel: 4, 1745 AssociatedCounterId: nil, 1746 }, 1747 { 1748 Key: 59, 1749 NameInfo: &types.ElementDescription{ 1750 Description: types.Description{ 1751 Label: "Shared common", 1752 Summary: "Amount of host physical memory that backs shared guest physical memory (Shared)", 1753 }, 1754 Key: "sharedcommon", 1755 }, 1756 GroupInfo: &types.ElementDescription{ 1757 Description: types.Description{ 1758 Label: "Memory", 1759 Summary: "Memory", 1760 }, 1761 Key: "mem", 1762 }, 1763 UnitInfo: &types.ElementDescription{ 1764 Description: types.Description{ 1765 Label: "KB", 1766 Summary: "Kilobyte", 1767 }, 1768 Key: "kiloBytes", 1769 }, 1770 RollupType: "maximum", 1771 StatsType: "absolute", 1772 Level: 4, 1773 PerDeviceLevel: 4, 1774 AssociatedCounterId: nil, 1775 }, 1776 { 1777 Key: 60, 1778 NameInfo: &types.ElementDescription{ 1779 Description: types.Description{ 1780 Label: "Heap", 1781 Summary: "Virtual address space of ESXi that is dedicated to its heap", 1782 }, 1783 Key: "heap", 1784 }, 1785 GroupInfo: &types.ElementDescription{ 1786 Description: types.Description{ 1787 Label: "Memory", 1788 Summary: "Memory", 1789 }, 1790 Key: "mem", 1791 }, 1792 UnitInfo: &types.ElementDescription{ 1793 Description: types.Description{ 1794 Label: "KB", 1795 Summary: "Kilobyte", 1796 }, 1797 Key: "kiloBytes", 1798 }, 1799 RollupType: "none", 1800 StatsType: "absolute", 1801 Level: 4, 1802 PerDeviceLevel: 4, 1803 AssociatedCounterId: nil, 1804 }, 1805 { 1806 Key: 61, 1807 NameInfo: &types.ElementDescription{ 1808 Description: types.Description{ 1809 Label: "Heap", 1810 Summary: "Virtual address space of ESXi that is dedicated to its heap", 1811 }, 1812 Key: "heap", 1813 }, 1814 GroupInfo: &types.ElementDescription{ 1815 Description: types.Description{ 1816 Label: "Memory", 1817 Summary: "Memory", 1818 }, 1819 Key: "mem", 1820 }, 1821 UnitInfo: &types.ElementDescription{ 1822 Description: types.Description{ 1823 Label: "KB", 1824 Summary: "Kilobyte", 1825 }, 1826 Key: "kiloBytes", 1827 }, 1828 RollupType: "average", 1829 StatsType: "absolute", 1830 Level: 4, 1831 PerDeviceLevel: 4, 1832 AssociatedCounterId: nil, 1833 }, 1834 { 1835 Key: 62, 1836 NameInfo: &types.ElementDescription{ 1837 Description: types.Description{ 1838 Label: "Heap", 1839 Summary: "Virtual address space of ESXi that is dedicated to its heap", 1840 }, 1841 Key: "heap", 1842 }, 1843 GroupInfo: &types.ElementDescription{ 1844 Description: types.Description{ 1845 Label: "Memory", 1846 Summary: "Memory", 1847 }, 1848 Key: "mem", 1849 }, 1850 UnitInfo: &types.ElementDescription{ 1851 Description: types.Description{ 1852 Label: "KB", 1853 Summary: "Kilobyte", 1854 }, 1855 Key: "kiloBytes", 1856 }, 1857 RollupType: "minimum", 1858 StatsType: "absolute", 1859 Level: 4, 1860 PerDeviceLevel: 4, 1861 AssociatedCounterId: nil, 1862 }, 1863 { 1864 Key: 63, 1865 NameInfo: &types.ElementDescription{ 1866 Description: types.Description{ 1867 Label: "Heap", 1868 Summary: "Virtual address space of ESXi that is dedicated to its heap", 1869 }, 1870 Key: "heap", 1871 }, 1872 GroupInfo: &types.ElementDescription{ 1873 Description: types.Description{ 1874 Label: "Memory", 1875 Summary: "Memory", 1876 }, 1877 Key: "mem", 1878 }, 1879 UnitInfo: &types.ElementDescription{ 1880 Description: types.Description{ 1881 Label: "KB", 1882 Summary: "Kilobyte", 1883 }, 1884 Key: "kiloBytes", 1885 }, 1886 RollupType: "maximum", 1887 StatsType: "absolute", 1888 Level: 4, 1889 PerDeviceLevel: 4, 1890 AssociatedCounterId: nil, 1891 }, 1892 { 1893 Key: 64, 1894 NameInfo: &types.ElementDescription{ 1895 Description: types.Description{ 1896 Label: "Heap free", 1897 Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap", 1898 }, 1899 Key: "heapfree", 1900 }, 1901 GroupInfo: &types.ElementDescription{ 1902 Description: types.Description{ 1903 Label: "Memory", 1904 Summary: "Memory", 1905 }, 1906 Key: "mem", 1907 }, 1908 UnitInfo: &types.ElementDescription{ 1909 Description: types.Description{ 1910 Label: "KB", 1911 Summary: "Kilobyte", 1912 }, 1913 Key: "kiloBytes", 1914 }, 1915 RollupType: "none", 1916 StatsType: "absolute", 1917 Level: 4, 1918 PerDeviceLevel: 4, 1919 AssociatedCounterId: nil, 1920 }, 1921 { 1922 Key: 65, 1923 NameInfo: &types.ElementDescription{ 1924 Description: types.Description{ 1925 Label: "Heap free", 1926 Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap", 1927 }, 1928 Key: "heapfree", 1929 }, 1930 GroupInfo: &types.ElementDescription{ 1931 Description: types.Description{ 1932 Label: "Memory", 1933 Summary: "Memory", 1934 }, 1935 Key: "mem", 1936 }, 1937 UnitInfo: &types.ElementDescription{ 1938 Description: types.Description{ 1939 Label: "KB", 1940 Summary: "Kilobyte", 1941 }, 1942 Key: "kiloBytes", 1943 }, 1944 RollupType: "average", 1945 StatsType: "absolute", 1946 Level: 4, 1947 PerDeviceLevel: 4, 1948 AssociatedCounterId: nil, 1949 }, 1950 { 1951 Key: 66, 1952 NameInfo: &types.ElementDescription{ 1953 Description: types.Description{ 1954 Label: "Heap free", 1955 Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap", 1956 }, 1957 Key: "heapfree", 1958 }, 1959 GroupInfo: &types.ElementDescription{ 1960 Description: types.Description{ 1961 Label: "Memory", 1962 Summary: "Memory", 1963 }, 1964 Key: "mem", 1965 }, 1966 UnitInfo: &types.ElementDescription{ 1967 Description: types.Description{ 1968 Label: "KB", 1969 Summary: "Kilobyte", 1970 }, 1971 Key: "kiloBytes", 1972 }, 1973 RollupType: "minimum", 1974 StatsType: "absolute", 1975 Level: 4, 1976 PerDeviceLevel: 4, 1977 AssociatedCounterId: nil, 1978 }, 1979 { 1980 Key: 67, 1981 NameInfo: &types.ElementDescription{ 1982 Description: types.Description{ 1983 Label: "Heap free", 1984 Summary: "Free address space in the heap of ESXi. This is less than or equal to Heap", 1985 }, 1986 Key: "heapfree", 1987 }, 1988 GroupInfo: &types.ElementDescription{ 1989 Description: types.Description{ 1990 Label: "Memory", 1991 Summary: "Memory", 1992 }, 1993 Key: "mem", 1994 }, 1995 UnitInfo: &types.ElementDescription{ 1996 Description: types.Description{ 1997 Label: "KB", 1998 Summary: "Kilobyte", 1999 }, 2000 Key: "kiloBytes", 2001 }, 2002 RollupType: "maximum", 2003 StatsType: "absolute", 2004 Level: 4, 2005 PerDeviceLevel: 4, 2006 AssociatedCounterId: nil, 2007 }, 2008 { 2009 Key: 68, 2010 NameInfo: &types.ElementDescription{ 2011 Description: types.Description{ 2012 Label: "Free state", 2013 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", 2014 }, 2015 Key: "state", 2016 }, 2017 GroupInfo: &types.ElementDescription{ 2018 Description: types.Description{ 2019 Label: "Memory", 2020 Summary: "Memory", 2021 }, 2022 Key: "mem", 2023 }, 2024 UnitInfo: &types.ElementDescription{ 2025 Description: types.Description{ 2026 Label: "num", 2027 Summary: "Number", 2028 }, 2029 Key: "number", 2030 }, 2031 RollupType: "latest", 2032 StatsType: "absolute", 2033 Level: 2, 2034 PerDeviceLevel: 3, 2035 AssociatedCounterId: nil, 2036 }, 2037 { 2038 Key: 69, 2039 NameInfo: &types.ElementDescription{ 2040 Description: types.Description{ 2041 Label: "Swapped", 2042 Summary: "Amount of guest physical memory that is swapped out to the swap space", 2043 }, 2044 Key: "swapped", 2045 }, 2046 GroupInfo: &types.ElementDescription{ 2047 Description: types.Description{ 2048 Label: "Memory", 2049 Summary: "Memory", 2050 }, 2051 Key: "mem", 2052 }, 2053 UnitInfo: &types.ElementDescription{ 2054 Description: types.Description{ 2055 Label: "KB", 2056 Summary: "Kilobyte", 2057 }, 2058 Key: "kiloBytes", 2059 }, 2060 RollupType: "none", 2061 StatsType: "absolute", 2062 Level: 4, 2063 PerDeviceLevel: 4, 2064 AssociatedCounterId: nil, 2065 }, 2066 { 2067 Key: 70, 2068 NameInfo: &types.ElementDescription{ 2069 Description: types.Description{ 2070 Label: "Swapped", 2071 Summary: "Amount of guest physical memory that is swapped out to the swap space", 2072 }, 2073 Key: "swapped", 2074 }, 2075 GroupInfo: &types.ElementDescription{ 2076 Description: types.Description{ 2077 Label: "Memory", 2078 Summary: "Memory", 2079 }, 2080 Key: "mem", 2081 }, 2082 UnitInfo: &types.ElementDescription{ 2083 Description: types.Description{ 2084 Label: "KB", 2085 Summary: "Kilobyte", 2086 }, 2087 Key: "kiloBytes", 2088 }, 2089 RollupType: "average", 2090 StatsType: "absolute", 2091 Level: 2, 2092 PerDeviceLevel: 3, 2093 AssociatedCounterId: nil, 2094 }, 2095 { 2096 Key: 71, 2097 NameInfo: &types.ElementDescription{ 2098 Description: types.Description{ 2099 Label: "Swapped", 2100 Summary: "Amount of guest physical memory that is swapped out to the swap space", 2101 }, 2102 Key: "swapped", 2103 }, 2104 GroupInfo: &types.ElementDescription{ 2105 Description: types.Description{ 2106 Label: "Memory", 2107 Summary: "Memory", 2108 }, 2109 Key: "mem", 2110 }, 2111 UnitInfo: &types.ElementDescription{ 2112 Description: types.Description{ 2113 Label: "KB", 2114 Summary: "Kilobyte", 2115 }, 2116 Key: "kiloBytes", 2117 }, 2118 RollupType: "minimum", 2119 StatsType: "absolute", 2120 Level: 4, 2121 PerDeviceLevel: 4, 2122 AssociatedCounterId: nil, 2123 }, 2124 { 2125 Key: 72, 2126 NameInfo: &types.ElementDescription{ 2127 Description: types.Description{ 2128 Label: "Swapped", 2129 Summary: "Amount of guest physical memory that is swapped out to the swap space", 2130 }, 2131 Key: "swapped", 2132 }, 2133 GroupInfo: &types.ElementDescription{ 2134 Description: types.Description{ 2135 Label: "Memory", 2136 Summary: "Memory", 2137 }, 2138 Key: "mem", 2139 }, 2140 UnitInfo: &types.ElementDescription{ 2141 Description: types.Description{ 2142 Label: "KB", 2143 Summary: "Kilobyte", 2144 }, 2145 Key: "kiloBytes", 2146 }, 2147 RollupType: "maximum", 2148 StatsType: "absolute", 2149 Level: 4, 2150 PerDeviceLevel: 4, 2151 AssociatedCounterId: nil, 2152 }, 2153 { 2154 Key: 73, 2155 NameInfo: &types.ElementDescription{ 2156 Description: types.Description{ 2157 Label: "Swap target", 2158 Summary: "Amount of memory that ESXi needs to reclaim by swapping", 2159 }, 2160 Key: "swaptarget", 2161 }, 2162 GroupInfo: &types.ElementDescription{ 2163 Description: types.Description{ 2164 Label: "Memory", 2165 Summary: "Memory", 2166 }, 2167 Key: "mem", 2168 }, 2169 UnitInfo: &types.ElementDescription{ 2170 Description: types.Description{ 2171 Label: "KB", 2172 Summary: "Kilobyte", 2173 }, 2174 Key: "kiloBytes", 2175 }, 2176 RollupType: "none", 2177 StatsType: "absolute", 2178 Level: 4, 2179 PerDeviceLevel: 4, 2180 AssociatedCounterId: nil, 2181 }, 2182 { 2183 Key: 74, 2184 NameInfo: &types.ElementDescription{ 2185 Description: types.Description{ 2186 Label: "Swap target", 2187 Summary: "Amount of memory that ESXi needs to reclaim by swapping", 2188 }, 2189 Key: "swaptarget", 2190 }, 2191 GroupInfo: &types.ElementDescription{ 2192 Description: types.Description{ 2193 Label: "Memory", 2194 Summary: "Memory", 2195 }, 2196 Key: "mem", 2197 }, 2198 UnitInfo: &types.ElementDescription{ 2199 Description: types.Description{ 2200 Label: "KB", 2201 Summary: "Kilobyte", 2202 }, 2203 Key: "kiloBytes", 2204 }, 2205 RollupType: "average", 2206 StatsType: "absolute", 2207 Level: 2, 2208 PerDeviceLevel: 3, 2209 AssociatedCounterId: nil, 2210 }, 2211 { 2212 Key: 75, 2213 NameInfo: &types.ElementDescription{ 2214 Description: types.Description{ 2215 Label: "Swap target", 2216 Summary: "Amount of memory that ESXi needs to reclaim by swapping", 2217 }, 2218 Key: "swaptarget", 2219 }, 2220 GroupInfo: &types.ElementDescription{ 2221 Description: types.Description{ 2222 Label: "Memory", 2223 Summary: "Memory", 2224 }, 2225 Key: "mem", 2226 }, 2227 UnitInfo: &types.ElementDescription{ 2228 Description: types.Description{ 2229 Label: "KB", 2230 Summary: "Kilobyte", 2231 }, 2232 Key: "kiloBytes", 2233 }, 2234 RollupType: "minimum", 2235 StatsType: "absolute", 2236 Level: 4, 2237 PerDeviceLevel: 4, 2238 AssociatedCounterId: nil, 2239 }, 2240 { 2241 Key: 76, 2242 NameInfo: &types.ElementDescription{ 2243 Description: types.Description{ 2244 Label: "Swap target", 2245 Summary: "Amount of memory that ESXi needs to reclaim by swapping", 2246 }, 2247 Key: "swaptarget", 2248 }, 2249 GroupInfo: &types.ElementDescription{ 2250 Description: types.Description{ 2251 Label: "Memory", 2252 Summary: "Memory", 2253 }, 2254 Key: "mem", 2255 }, 2256 UnitInfo: &types.ElementDescription{ 2257 Description: types.Description{ 2258 Label: "KB", 2259 Summary: "Kilobyte", 2260 }, 2261 Key: "kiloBytes", 2262 }, 2263 RollupType: "maximum", 2264 StatsType: "absolute", 2265 Level: 4, 2266 PerDeviceLevel: 4, 2267 AssociatedCounterId: nil, 2268 }, 2269 { 2270 Key: 77, 2271 NameInfo: &types.ElementDescription{ 2272 Description: types.Description{ 2273 Label: "swapIn", 2274 Summary: "swapIn", 2275 }, 2276 Key: "swapIn", 2277 }, 2278 GroupInfo: &types.ElementDescription{ 2279 Description: types.Description{ 2280 Label: "Memory", 2281 Summary: "Memory", 2282 }, 2283 Key: "mem", 2284 }, 2285 UnitInfo: &types.ElementDescription{ 2286 Description: types.Description{ 2287 Label: "KB", 2288 Summary: "Kilobyte", 2289 }, 2290 Key: "kiloBytes", 2291 }, 2292 RollupType: "none", 2293 StatsType: "absolute", 2294 Level: 4, 2295 PerDeviceLevel: 4, 2296 AssociatedCounterId: nil, 2297 }, 2298 { 2299 Key: 78, 2300 NameInfo: &types.ElementDescription{ 2301 Description: types.Description{ 2302 Label: "swapIn", 2303 Summary: "swapIn", 2304 }, 2305 Key: "swapIn", 2306 }, 2307 GroupInfo: &types.ElementDescription{ 2308 Description: types.Description{ 2309 Label: "Memory", 2310 Summary: "Memory", 2311 }, 2312 Key: "mem", 2313 }, 2314 UnitInfo: &types.ElementDescription{ 2315 Description: types.Description{ 2316 Label: "KB", 2317 Summary: "Kilobyte", 2318 }, 2319 Key: "kiloBytes", 2320 }, 2321 RollupType: "average", 2322 StatsType: "absolute", 2323 Level: 2, 2324 PerDeviceLevel: 3, 2325 AssociatedCounterId: nil, 2326 }, 2327 { 2328 Key: 79, 2329 NameInfo: &types.ElementDescription{ 2330 Description: types.Description{ 2331 Label: "swapIn", 2332 Summary: "swapIn", 2333 }, 2334 Key: "swapIn", 2335 }, 2336 GroupInfo: &types.ElementDescription{ 2337 Description: types.Description{ 2338 Label: "Memory", 2339 Summary: "Memory", 2340 }, 2341 Key: "mem", 2342 }, 2343 UnitInfo: &types.ElementDescription{ 2344 Description: types.Description{ 2345 Label: "KB", 2346 Summary: "Kilobyte", 2347 }, 2348 Key: "kiloBytes", 2349 }, 2350 RollupType: "minimum", 2351 StatsType: "absolute", 2352 Level: 4, 2353 PerDeviceLevel: 4, 2354 AssociatedCounterId: nil, 2355 }, 2356 { 2357 Key: 80, 2358 NameInfo: &types.ElementDescription{ 2359 Description: types.Description{ 2360 Label: "swapIn", 2361 Summary: "swapIn", 2362 }, 2363 Key: "swapIn", 2364 }, 2365 GroupInfo: &types.ElementDescription{ 2366 Description: types.Description{ 2367 Label: "Memory", 2368 Summary: "Memory", 2369 }, 2370 Key: "mem", 2371 }, 2372 UnitInfo: &types.ElementDescription{ 2373 Description: types.Description{ 2374 Label: "KB", 2375 Summary: "Kilobyte", 2376 }, 2377 Key: "kiloBytes", 2378 }, 2379 RollupType: "maximum", 2380 StatsType: "absolute", 2381 Level: 4, 2382 PerDeviceLevel: 4, 2383 AssociatedCounterId: nil, 2384 }, 2385 { 2386 Key: 81, 2387 NameInfo: &types.ElementDescription{ 2388 Description: types.Description{ 2389 Label: "swapOut", 2390 Summary: "swapOut", 2391 }, 2392 Key: "swapOut", 2393 }, 2394 GroupInfo: &types.ElementDescription{ 2395 Description: types.Description{ 2396 Label: "Memory", 2397 Summary: "Memory", 2398 }, 2399 Key: "mem", 2400 }, 2401 UnitInfo: &types.ElementDescription{ 2402 Description: types.Description{ 2403 Label: "KB", 2404 Summary: "Kilobyte", 2405 }, 2406 Key: "kiloBytes", 2407 }, 2408 RollupType: "none", 2409 StatsType: "absolute", 2410 Level: 4, 2411 PerDeviceLevel: 4, 2412 AssociatedCounterId: nil, 2413 }, 2414 { 2415 Key: 82, 2416 NameInfo: &types.ElementDescription{ 2417 Description: types.Description{ 2418 Label: "swapOut", 2419 Summary: "swapOut", 2420 }, 2421 Key: "swapOut", 2422 }, 2423 GroupInfo: &types.ElementDescription{ 2424 Description: types.Description{ 2425 Label: "Memory", 2426 Summary: "Memory", 2427 }, 2428 Key: "mem", 2429 }, 2430 UnitInfo: &types.ElementDescription{ 2431 Description: types.Description{ 2432 Label: "KB", 2433 Summary: "Kilobyte", 2434 }, 2435 Key: "kiloBytes", 2436 }, 2437 RollupType: "average", 2438 StatsType: "absolute", 2439 Level: 2, 2440 PerDeviceLevel: 3, 2441 AssociatedCounterId: nil, 2442 }, 2443 { 2444 Key: 83, 2445 NameInfo: &types.ElementDescription{ 2446 Description: types.Description{ 2447 Label: "swapOut", 2448 Summary: "swapOut", 2449 }, 2450 Key: "swapOut", 2451 }, 2452 GroupInfo: &types.ElementDescription{ 2453 Description: types.Description{ 2454 Label: "Memory", 2455 Summary: "Memory", 2456 }, 2457 Key: "mem", 2458 }, 2459 UnitInfo: &types.ElementDescription{ 2460 Description: types.Description{ 2461 Label: "KB", 2462 Summary: "Kilobyte", 2463 }, 2464 Key: "kiloBytes", 2465 }, 2466 RollupType: "minimum", 2467 StatsType: "absolute", 2468 Level: 4, 2469 PerDeviceLevel: 4, 2470 AssociatedCounterId: nil, 2471 }, 2472 { 2473 Key: 84, 2474 NameInfo: &types.ElementDescription{ 2475 Description: types.Description{ 2476 Label: "swapOut", 2477 Summary: "swapOut", 2478 }, 2479 Key: "swapOut", 2480 }, 2481 GroupInfo: &types.ElementDescription{ 2482 Description: types.Description{ 2483 Label: "Memory", 2484 Summary: "Memory", 2485 }, 2486 Key: "mem", 2487 }, 2488 UnitInfo: &types.ElementDescription{ 2489 Description: types.Description{ 2490 Label: "KB", 2491 Summary: "Kilobyte", 2492 }, 2493 Key: "kiloBytes", 2494 }, 2495 RollupType: "maximum", 2496 StatsType: "absolute", 2497 Level: 4, 2498 PerDeviceLevel: 4, 2499 AssociatedCounterId: nil, 2500 }, 2501 { 2502 Key: 85, 2503 NameInfo: &types.ElementDescription{ 2504 Description: types.Description{ 2505 Label: "Swap in rate", 2506 Summary: "Rate at which guest physical memory is swapped in from the swap space", 2507 }, 2508 Key: "swapinRate", 2509 }, 2510 GroupInfo: &types.ElementDescription{ 2511 Description: types.Description{ 2512 Label: "Memory", 2513 Summary: "Memory", 2514 }, 2515 Key: "mem", 2516 }, 2517 UnitInfo: &types.ElementDescription{ 2518 Description: types.Description{ 2519 Label: "KBps", 2520 Summary: "Kilobytes per second", 2521 }, 2522 Key: "kiloBytesPerSecond", 2523 }, 2524 RollupType: "average", 2525 StatsType: "rate", 2526 Level: 1, 2527 PerDeviceLevel: 3, 2528 AssociatedCounterId: nil, 2529 }, 2530 { 2531 Key: 86, 2532 NameInfo: &types.ElementDescription{ 2533 Description: types.Description{ 2534 Label: "Swap out rate", 2535 Summary: "Rate at which guest physical memory is swapped out to the swap space", 2536 }, 2537 Key: "swapoutRate", 2538 }, 2539 GroupInfo: &types.ElementDescription{ 2540 Description: types.Description{ 2541 Label: "Memory", 2542 Summary: "Memory", 2543 }, 2544 Key: "mem", 2545 }, 2546 UnitInfo: &types.ElementDescription{ 2547 Description: types.Description{ 2548 Label: "KBps", 2549 Summary: "Kilobytes per second", 2550 }, 2551 Key: "kiloBytesPerSecond", 2552 }, 2553 RollupType: "average", 2554 StatsType: "rate", 2555 Level: 1, 2556 PerDeviceLevel: 3, 2557 AssociatedCounterId: nil, 2558 }, 2559 { 2560 Key: 87, 2561 NameInfo: &types.ElementDescription{ 2562 Description: types.Description{ 2563 Label: "Memory swap out", 2564 Summary: "Amount of memory that is swapped out for the Service Console", 2565 }, 2566 Key: "swapOut", 2567 }, 2568 GroupInfo: &types.ElementDescription{ 2569 Description: types.Description{ 2570 Label: "Management agent", 2571 Summary: "Management agent", 2572 }, 2573 Key: "managementAgent", 2574 }, 2575 UnitInfo: &types.ElementDescription{ 2576 Description: types.Description{ 2577 Label: "KBps", 2578 Summary: "Kilobytes per second", 2579 }, 2580 Key: "kiloBytesPerSecond", 2581 }, 2582 RollupType: "average", 2583 StatsType: "rate", 2584 Level: 3, 2585 PerDeviceLevel: 3, 2586 AssociatedCounterId: nil, 2587 }, 2588 { 2589 Key: 88, 2590 NameInfo: &types.ElementDescription{ 2591 Description: types.Description{ 2592 Label: "Memory swap in", 2593 Summary: "Amount of memory that is swapped in for the Service Console", 2594 }, 2595 Key: "swapIn", 2596 }, 2597 GroupInfo: &types.ElementDescription{ 2598 Description: types.Description{ 2599 Label: "Management agent", 2600 Summary: "Management agent", 2601 }, 2602 Key: "managementAgent", 2603 }, 2604 UnitInfo: &types.ElementDescription{ 2605 Description: types.Description{ 2606 Label: "KBps", 2607 Summary: "Kilobytes per second", 2608 }, 2609 Key: "kiloBytesPerSecond", 2610 }, 2611 RollupType: "average", 2612 StatsType: "rate", 2613 Level: 3, 2614 PerDeviceLevel: 3, 2615 AssociatedCounterId: nil, 2616 }, 2617 { 2618 Key: 89, 2619 NameInfo: &types.ElementDescription{ 2620 Description: types.Description{ 2621 Label: "Ballooned memory", 2622 Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest", 2623 }, 2624 Key: "vmmemctl", 2625 }, 2626 GroupInfo: &types.ElementDescription{ 2627 Description: types.Description{ 2628 Label: "Memory", 2629 Summary: "Memory", 2630 }, 2631 Key: "mem", 2632 }, 2633 UnitInfo: &types.ElementDescription{ 2634 Description: types.Description{ 2635 Label: "KB", 2636 Summary: "Kilobyte", 2637 }, 2638 Key: "kiloBytes", 2639 }, 2640 RollupType: "none", 2641 StatsType: "absolute", 2642 Level: 4, 2643 PerDeviceLevel: 4, 2644 AssociatedCounterId: nil, 2645 }, 2646 { 2647 Key: 90, 2648 NameInfo: &types.ElementDescription{ 2649 Description: types.Description{ 2650 Label: "Ballooned memory", 2651 Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest", 2652 }, 2653 Key: "vmmemctl", 2654 }, 2655 GroupInfo: &types.ElementDescription{ 2656 Description: types.Description{ 2657 Label: "Memory", 2658 Summary: "Memory", 2659 }, 2660 Key: "mem", 2661 }, 2662 UnitInfo: &types.ElementDescription{ 2663 Description: types.Description{ 2664 Label: "KB", 2665 Summary: "Kilobyte", 2666 }, 2667 Key: "kiloBytes", 2668 }, 2669 RollupType: "average", 2670 StatsType: "absolute", 2671 Level: 1, 2672 PerDeviceLevel: 3, 2673 AssociatedCounterId: nil, 2674 }, 2675 { 2676 Key: 91, 2677 NameInfo: &types.ElementDescription{ 2678 Description: types.Description{ 2679 Label: "Ballooned memory", 2680 Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest", 2681 }, 2682 Key: "vmmemctl", 2683 }, 2684 GroupInfo: &types.ElementDescription{ 2685 Description: types.Description{ 2686 Label: "Memory", 2687 Summary: "Memory", 2688 }, 2689 Key: "mem", 2690 }, 2691 UnitInfo: &types.ElementDescription{ 2692 Description: types.Description{ 2693 Label: "KB", 2694 Summary: "Kilobyte", 2695 }, 2696 Key: "kiloBytes", 2697 }, 2698 RollupType: "minimum", 2699 StatsType: "absolute", 2700 Level: 4, 2701 PerDeviceLevel: 4, 2702 AssociatedCounterId: nil, 2703 }, 2704 { 2705 Key: 92, 2706 NameInfo: &types.ElementDescription{ 2707 Description: types.Description{ 2708 Label: "Ballooned memory", 2709 Summary: "Amount of guest physical memory reclaimed from the virtual machine by the balloon driver in the guest", 2710 }, 2711 Key: "vmmemctl", 2712 }, 2713 GroupInfo: &types.ElementDescription{ 2714 Description: types.Description{ 2715 Label: "Memory", 2716 Summary: "Memory", 2717 }, 2718 Key: "mem", 2719 }, 2720 UnitInfo: &types.ElementDescription{ 2721 Description: types.Description{ 2722 Label: "KB", 2723 Summary: "Kilobyte", 2724 }, 2725 Key: "kiloBytes", 2726 }, 2727 RollupType: "maximum", 2728 StatsType: "absolute", 2729 Level: 4, 2730 PerDeviceLevel: 4, 2731 AssociatedCounterId: nil, 2732 }, 2733 { 2734 Key: 93, 2735 NameInfo: &types.ElementDescription{ 2736 Description: types.Description{ 2737 Label: "Balloon target", 2738 Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi", 2739 }, 2740 Key: "vmmemctltarget", 2741 }, 2742 GroupInfo: &types.ElementDescription{ 2743 Description: types.Description{ 2744 Label: "Memory", 2745 Summary: "Memory", 2746 }, 2747 Key: "mem", 2748 }, 2749 UnitInfo: &types.ElementDescription{ 2750 Description: types.Description{ 2751 Label: "KB", 2752 Summary: "Kilobyte", 2753 }, 2754 Key: "kiloBytes", 2755 }, 2756 RollupType: "none", 2757 StatsType: "absolute", 2758 Level: 4, 2759 PerDeviceLevel: 4, 2760 AssociatedCounterId: nil, 2761 }, 2762 { 2763 Key: 94, 2764 NameInfo: &types.ElementDescription{ 2765 Description: types.Description{ 2766 Label: "Balloon target", 2767 Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi", 2768 }, 2769 Key: "vmmemctltarget", 2770 }, 2771 GroupInfo: &types.ElementDescription{ 2772 Description: types.Description{ 2773 Label: "Memory", 2774 Summary: "Memory", 2775 }, 2776 Key: "mem", 2777 }, 2778 UnitInfo: &types.ElementDescription{ 2779 Description: types.Description{ 2780 Label: "KB", 2781 Summary: "Kilobyte", 2782 }, 2783 Key: "kiloBytes", 2784 }, 2785 RollupType: "average", 2786 StatsType: "absolute", 2787 Level: 2, 2788 PerDeviceLevel: 3, 2789 AssociatedCounterId: nil, 2790 }, 2791 { 2792 Key: 95, 2793 NameInfo: &types.ElementDescription{ 2794 Description: types.Description{ 2795 Label: "Balloon target", 2796 Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi", 2797 }, 2798 Key: "vmmemctltarget", 2799 }, 2800 GroupInfo: &types.ElementDescription{ 2801 Description: types.Description{ 2802 Label: "Memory", 2803 Summary: "Memory", 2804 }, 2805 Key: "mem", 2806 }, 2807 UnitInfo: &types.ElementDescription{ 2808 Description: types.Description{ 2809 Label: "KB", 2810 Summary: "Kilobyte", 2811 }, 2812 Key: "kiloBytes", 2813 }, 2814 RollupType: "minimum", 2815 StatsType: "absolute", 2816 Level: 4, 2817 PerDeviceLevel: 4, 2818 AssociatedCounterId: nil, 2819 }, 2820 { 2821 Key: 96, 2822 NameInfo: &types.ElementDescription{ 2823 Description: types.Description{ 2824 Label: "Balloon target", 2825 Summary: "Desired amount of guest physical memory the balloon driver needs to reclaim, as determined by ESXi", 2826 }, 2827 Key: "vmmemctltarget", 2828 }, 2829 GroupInfo: &types.ElementDescription{ 2830 Description: types.Description{ 2831 Label: "Memory", 2832 Summary: "Memory", 2833 }, 2834 Key: "mem", 2835 }, 2836 UnitInfo: &types.ElementDescription{ 2837 Description: types.Description{ 2838 Label: "KB", 2839 Summary: "Kilobyte", 2840 }, 2841 Key: "kiloBytes", 2842 }, 2843 RollupType: "maximum", 2844 StatsType: "absolute", 2845 Level: 4, 2846 PerDeviceLevel: 4, 2847 AssociatedCounterId: nil, 2848 }, 2849 { 2850 Key: 97, 2851 NameInfo: &types.ElementDescription{ 2852 Description: types.Description{ 2853 Label: "Consumed", 2854 Summary: "Amount of host physical memory consumed for backing up guest physical memory pages", 2855 }, 2856 Key: "consumed", 2857 }, 2858 GroupInfo: &types.ElementDescription{ 2859 Description: types.Description{ 2860 Label: "Memory", 2861 Summary: "Memory", 2862 }, 2863 Key: "mem", 2864 }, 2865 UnitInfo: &types.ElementDescription{ 2866 Description: types.Description{ 2867 Label: "KB", 2868 Summary: "Kilobyte", 2869 }, 2870 Key: "kiloBytes", 2871 }, 2872 RollupType: "none", 2873 StatsType: "absolute", 2874 Level: 4, 2875 PerDeviceLevel: 4, 2876 AssociatedCounterId: nil, 2877 }, 2878 { 2879 Key: 98, 2880 NameInfo: &types.ElementDescription{ 2881 Description: types.Description{ 2882 Label: "Consumed", 2883 Summary: "Amount of host physical memory consumed for backing up guest physical memory pages", 2884 }, 2885 Key: "consumed", 2886 }, 2887 GroupInfo: &types.ElementDescription{ 2888 Description: types.Description{ 2889 Label: "Memory", 2890 Summary: "Memory", 2891 }, 2892 Key: "mem", 2893 }, 2894 UnitInfo: &types.ElementDescription{ 2895 Description: types.Description{ 2896 Label: "KB", 2897 Summary: "Kilobyte", 2898 }, 2899 Key: "kiloBytes", 2900 }, 2901 RollupType: "average", 2902 StatsType: "absolute", 2903 Level: 1, 2904 PerDeviceLevel: 3, 2905 AssociatedCounterId: nil, 2906 }, 2907 { 2908 Key: 99, 2909 NameInfo: &types.ElementDescription{ 2910 Description: types.Description{ 2911 Label: "Consumed", 2912 Summary: "Amount of host physical memory consumed for backing up guest physical memory pages", 2913 }, 2914 Key: "consumed", 2915 }, 2916 GroupInfo: &types.ElementDescription{ 2917 Description: types.Description{ 2918 Label: "Memory", 2919 Summary: "Memory", 2920 }, 2921 Key: "mem", 2922 }, 2923 UnitInfo: &types.ElementDescription{ 2924 Description: types.Description{ 2925 Label: "KB", 2926 Summary: "Kilobyte", 2927 }, 2928 Key: "kiloBytes", 2929 }, 2930 RollupType: "minimum", 2931 StatsType: "absolute", 2932 Level: 4, 2933 PerDeviceLevel: 4, 2934 AssociatedCounterId: nil, 2935 }, 2936 { 2937 Key: 100, 2938 NameInfo: &types.ElementDescription{ 2939 Description: types.Description{ 2940 Label: "Consumed", 2941 Summary: "Amount of host physical memory consumed for backing up guest physical memory pages", 2942 }, 2943 Key: "consumed", 2944 }, 2945 GroupInfo: &types.ElementDescription{ 2946 Description: types.Description{ 2947 Label: "Memory", 2948 Summary: "Memory", 2949 }, 2950 Key: "mem", 2951 }, 2952 UnitInfo: &types.ElementDescription{ 2953 Description: types.Description{ 2954 Label: "KB", 2955 Summary: "Kilobyte", 2956 }, 2957 Key: "kiloBytes", 2958 }, 2959 RollupType: "maximum", 2960 StatsType: "absolute", 2961 Level: 4, 2962 PerDeviceLevel: 4, 2963 AssociatedCounterId: nil, 2964 }, 2965 { 2966 Key: 101, 2967 NameInfo: &types.ElementDescription{ 2968 Description: types.Description{ 2969 Label: "Overhead consumed", 2970 Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines", 2971 }, 2972 Key: "overhead", 2973 }, 2974 GroupInfo: &types.ElementDescription{ 2975 Description: types.Description{ 2976 Label: "Memory", 2977 Summary: "Memory", 2978 }, 2979 Key: "mem", 2980 }, 2981 UnitInfo: &types.ElementDescription{ 2982 Description: types.Description{ 2983 Label: "KB", 2984 Summary: "Kilobyte", 2985 }, 2986 Key: "kiloBytes", 2987 }, 2988 RollupType: "none", 2989 StatsType: "absolute", 2990 Level: 4, 2991 PerDeviceLevel: 4, 2992 AssociatedCounterId: nil, 2993 }, 2994 { 2995 Key: 102, 2996 NameInfo: &types.ElementDescription{ 2997 Description: types.Description{ 2998 Label: "Overhead consumed", 2999 Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines", 3000 }, 3001 Key: "overhead", 3002 }, 3003 GroupInfo: &types.ElementDescription{ 3004 Description: types.Description{ 3005 Label: "Memory", 3006 Summary: "Memory", 3007 }, 3008 Key: "mem", 3009 }, 3010 UnitInfo: &types.ElementDescription{ 3011 Description: types.Description{ 3012 Label: "KB", 3013 Summary: "Kilobyte", 3014 }, 3015 Key: "kiloBytes", 3016 }, 3017 RollupType: "average", 3018 StatsType: "absolute", 3019 Level: 1, 3020 PerDeviceLevel: 1, 3021 AssociatedCounterId: nil, 3022 }, 3023 { 3024 Key: 103, 3025 NameInfo: &types.ElementDescription{ 3026 Description: types.Description{ 3027 Label: "Overhead consumed", 3028 Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines", 3029 }, 3030 Key: "overhead", 3031 }, 3032 GroupInfo: &types.ElementDescription{ 3033 Description: types.Description{ 3034 Label: "Memory", 3035 Summary: "Memory", 3036 }, 3037 Key: "mem", 3038 }, 3039 UnitInfo: &types.ElementDescription{ 3040 Description: types.Description{ 3041 Label: "KB", 3042 Summary: "Kilobyte", 3043 }, 3044 Key: "kiloBytes", 3045 }, 3046 RollupType: "minimum", 3047 StatsType: "absolute", 3048 Level: 4, 3049 PerDeviceLevel: 4, 3050 AssociatedCounterId: nil, 3051 }, 3052 { 3053 Key: 104, 3054 NameInfo: &types.ElementDescription{ 3055 Description: types.Description{ 3056 Label: "Overhead consumed", 3057 Summary: "Host physical memory consumed by ESXi data structures for running the virtual machines", 3058 }, 3059 Key: "overhead", 3060 }, 3061 GroupInfo: &types.ElementDescription{ 3062 Description: types.Description{ 3063 Label: "Memory", 3064 Summary: "Memory", 3065 }, 3066 Key: "mem", 3067 }, 3068 UnitInfo: &types.ElementDescription{ 3069 Description: types.Description{ 3070 Label: "KB", 3071 Summary: "Kilobyte", 3072 }, 3073 Key: "kiloBytes", 3074 }, 3075 RollupType: "maximum", 3076 StatsType: "absolute", 3077 Level: 4, 3078 PerDeviceLevel: 4, 3079 AssociatedCounterId: nil, 3080 }, 3081 { 3082 Key: 105, 3083 NameInfo: &types.ElementDescription{ 3084 Description: types.Description{ 3085 Label: "Compressed", 3086 Summary: "Guest physical memory pages that have undergone memory compression", 3087 }, 3088 Key: "compressed", 3089 }, 3090 GroupInfo: &types.ElementDescription{ 3091 Description: types.Description{ 3092 Label: "Memory", 3093 Summary: "Memory", 3094 }, 3095 Key: "mem", 3096 }, 3097 UnitInfo: &types.ElementDescription{ 3098 Description: types.Description{ 3099 Label: "KB", 3100 Summary: "Kilobyte", 3101 }, 3102 Key: "kiloBytes", 3103 }, 3104 RollupType: "average", 3105 StatsType: "absolute", 3106 Level: 2, 3107 PerDeviceLevel: 3, 3108 AssociatedCounterId: nil, 3109 }, 3110 { 3111 Key: 106, 3112 NameInfo: &types.ElementDescription{ 3113 Description: types.Description{ 3114 Label: "Compression rate", 3115 Summary: "Rate of guest physical memory page compression by ESXi", 3116 }, 3117 Key: "compressionRate", 3118 }, 3119 GroupInfo: &types.ElementDescription{ 3120 Description: types.Description{ 3121 Label: "Memory", 3122 Summary: "Memory", 3123 }, 3124 Key: "mem", 3125 }, 3126 UnitInfo: &types.ElementDescription{ 3127 Description: types.Description{ 3128 Label: "KBps", 3129 Summary: "Kilobytes per second", 3130 }, 3131 Key: "kiloBytesPerSecond", 3132 }, 3133 RollupType: "average", 3134 StatsType: "rate", 3135 Level: 2, 3136 PerDeviceLevel: 3, 3137 AssociatedCounterId: nil, 3138 }, 3139 { 3140 Key: 107, 3141 NameInfo: &types.ElementDescription{ 3142 Description: types.Description{ 3143 Label: "Decompression rate", 3144 Summary: "Rate of guest physical memory decompression", 3145 }, 3146 Key: "decompressionRate", 3147 }, 3148 GroupInfo: &types.ElementDescription{ 3149 Description: types.Description{ 3150 Label: "Memory", 3151 Summary: "Memory", 3152 }, 3153 Key: "mem", 3154 }, 3155 UnitInfo: &types.ElementDescription{ 3156 Description: types.Description{ 3157 Label: "KBps", 3158 Summary: "Kilobytes per second", 3159 }, 3160 Key: "kiloBytesPerSecond", 3161 }, 3162 RollupType: "average", 3163 StatsType: "rate", 3164 Level: 2, 3165 PerDeviceLevel: 3, 3166 AssociatedCounterId: nil, 3167 }, 3168 { 3169 Key: 108, 3170 NameInfo: &types.ElementDescription{ 3171 Description: types.Description{ 3172 Label: "Memory Capacity Provisioned", 3173 Summary: "Total amount of memory available to the host", 3174 }, 3175 Key: "capacity.provisioned", 3176 }, 3177 GroupInfo: &types.ElementDescription{ 3178 Description: types.Description{ 3179 Label: "Memory", 3180 Summary: "Memory", 3181 }, 3182 Key: "mem", 3183 }, 3184 UnitInfo: &types.ElementDescription{ 3185 Description: types.Description{ 3186 Label: "KB", 3187 Summary: "Kilobyte", 3188 }, 3189 Key: "kiloBytes", 3190 }, 3191 RollupType: "average", 3192 StatsType: "absolute", 3193 Level: 4, 3194 PerDeviceLevel: 4, 3195 AssociatedCounterId: nil, 3196 }, 3197 { 3198 Key: 109, 3199 NameInfo: &types.ElementDescription{ 3200 Description: types.Description{ 3201 Label: "Memory Capacity Entitlement", 3202 Summary: "Amount of host physical memory the VM is entitled to, as determined by the ESXi scheduler", 3203 }, 3204 Key: "capacity.entitlement", 3205 }, 3206 GroupInfo: &types.ElementDescription{ 3207 Description: types.Description{ 3208 Label: "Memory", 3209 Summary: "Memory", 3210 }, 3211 Key: "mem", 3212 }, 3213 UnitInfo: &types.ElementDescription{ 3214 Description: types.Description{ 3215 Label: "KB", 3216 Summary: "Kilobyte", 3217 }, 3218 Key: "kiloBytes", 3219 }, 3220 RollupType: "average", 3221 StatsType: "absolute", 3222 Level: 4, 3223 PerDeviceLevel: 4, 3224 AssociatedCounterId: nil, 3225 }, 3226 { 3227 Key: 110, 3228 NameInfo: &types.ElementDescription{ 3229 Description: types.Description{ 3230 Label: "Memory Capacity Usable", 3231 Summary: "Amount of physical memory available for use by virtual machines on this host", 3232 }, 3233 Key: "capacity.usable", 3234 }, 3235 GroupInfo: &types.ElementDescription{ 3236 Description: types.Description{ 3237 Label: "Memory", 3238 Summary: "Memory", 3239 }, 3240 Key: "mem", 3241 }, 3242 UnitInfo: &types.ElementDescription{ 3243 Description: types.Description{ 3244 Label: "KB", 3245 Summary: "Kilobyte", 3246 }, 3247 Key: "kiloBytes", 3248 }, 3249 RollupType: "average", 3250 StatsType: "absolute", 3251 Level: 4, 3252 PerDeviceLevel: 4, 3253 AssociatedCounterId: nil, 3254 }, 3255 { 3256 Key: 111, 3257 NameInfo: &types.ElementDescription{ 3258 Description: types.Description{ 3259 Label: "Memory Capacity Usage", 3260 Summary: "Amount of physical memory actively used", 3261 }, 3262 Key: "capacity.usage", 3263 }, 3264 GroupInfo: &types.ElementDescription{ 3265 Description: types.Description{ 3266 Label: "Memory", 3267 Summary: "Memory", 3268 }, 3269 Key: "mem", 3270 }, 3271 UnitInfo: &types.ElementDescription{ 3272 Description: types.Description{ 3273 Label: "KB", 3274 Summary: "Kilobyte", 3275 }, 3276 Key: "kiloBytes", 3277 }, 3278 RollupType: "average", 3279 StatsType: "absolute", 3280 Level: 4, 3281 PerDeviceLevel: 4, 3282 AssociatedCounterId: nil, 3283 }, 3284 { 3285 Key: 112, 3286 NameInfo: &types.ElementDescription{ 3287 Description: types.Description{ 3288 Label: "Memory Capacity Contention", 3289 Summary: "Percentage of time VMs are waiting to access swapped, compressed or ballooned memory", 3290 }, 3291 Key: "capacity.contention", 3292 }, 3293 GroupInfo: &types.ElementDescription{ 3294 Description: types.Description{ 3295 Label: "Memory", 3296 Summary: "Memory", 3297 }, 3298 Key: "mem", 3299 }, 3300 UnitInfo: &types.ElementDescription{ 3301 Description: types.Description{ 3302 Label: "%", 3303 Summary: "Percentage", 3304 }, 3305 Key: "percent", 3306 }, 3307 RollupType: "average", 3308 StatsType: "rate", 3309 Level: 4, 3310 PerDeviceLevel: 4, 3311 AssociatedCounterId: nil, 3312 }, 3313 { 3314 Key: 113, 3315 NameInfo: &types.ElementDescription{ 3316 Description: types.Description{ 3317 Label: "vm", 3318 Summary: "vm", 3319 }, 3320 Key: "capacity.usage.vm", 3321 }, 3322 GroupInfo: &types.ElementDescription{ 3323 Description: types.Description{ 3324 Label: "Memory", 3325 Summary: "Memory", 3326 }, 3327 Key: "mem", 3328 }, 3329 UnitInfo: &types.ElementDescription{ 3330 Description: types.Description{ 3331 Label: "KB", 3332 Summary: "Kilobyte", 3333 }, 3334 Key: "kiloBytes", 3335 }, 3336 RollupType: "average", 3337 StatsType: "absolute", 3338 Level: 2, 3339 PerDeviceLevel: 4, 3340 AssociatedCounterId: nil, 3341 }, 3342 { 3343 Key: 114, 3344 NameInfo: &types.ElementDescription{ 3345 Description: types.Description{ 3346 Label: "vmOvrhd", 3347 Summary: "vmOvrhd", 3348 }, 3349 Key: "capacity.usage.vmOvrhd", 3350 }, 3351 GroupInfo: &types.ElementDescription{ 3352 Description: types.Description{ 3353 Label: "Memory", 3354 Summary: "Memory", 3355 }, 3356 Key: "mem", 3357 }, 3358 UnitInfo: &types.ElementDescription{ 3359 Description: types.Description{ 3360 Label: "KB", 3361 Summary: "Kilobyte", 3362 }, 3363 Key: "kiloBytes", 3364 }, 3365 RollupType: "average", 3366 StatsType: "absolute", 3367 Level: 2, 3368 PerDeviceLevel: 4, 3369 AssociatedCounterId: nil, 3370 }, 3371 { 3372 Key: 115, 3373 NameInfo: &types.ElementDescription{ 3374 Description: types.Description{ 3375 Label: "vmkOvrhd", 3376 Summary: "vmkOvrhd", 3377 }, 3378 Key: "capacity.usage.vmkOvrhd", 3379 }, 3380 GroupInfo: &types.ElementDescription{ 3381 Description: types.Description{ 3382 Label: "Memory", 3383 Summary: "Memory", 3384 }, 3385 Key: "mem", 3386 }, 3387 UnitInfo: &types.ElementDescription{ 3388 Description: types.Description{ 3389 Label: "KB", 3390 Summary: "Kilobyte", 3391 }, 3392 Key: "kiloBytes", 3393 }, 3394 RollupType: "average", 3395 StatsType: "absolute", 3396 Level: 2, 3397 PerDeviceLevel: 4, 3398 AssociatedCounterId: nil, 3399 }, 3400 { 3401 Key: 116, 3402 NameInfo: &types.ElementDescription{ 3403 Description: types.Description{ 3404 Label: "userworld", 3405 Summary: "userworld", 3406 }, 3407 Key: "capacity.usage.userworld", 3408 }, 3409 GroupInfo: &types.ElementDescription{ 3410 Description: types.Description{ 3411 Label: "Memory", 3412 Summary: "Memory", 3413 }, 3414 Key: "mem", 3415 }, 3416 UnitInfo: &types.ElementDescription{ 3417 Description: types.Description{ 3418 Label: "KB", 3419 Summary: "Kilobyte", 3420 }, 3421 Key: "kiloBytes", 3422 }, 3423 RollupType: "average", 3424 StatsType: "absolute", 3425 Level: 2, 3426 PerDeviceLevel: 4, 3427 AssociatedCounterId: nil, 3428 }, 3429 { 3430 Key: 117, 3431 NameInfo: &types.ElementDescription{ 3432 Description: types.Description{ 3433 Label: "vm", 3434 Summary: "vm", 3435 }, 3436 Key: "reservedCapacity.vm", 3437 }, 3438 GroupInfo: &types.ElementDescription{ 3439 Description: types.Description{ 3440 Label: "Memory", 3441 Summary: "Memory", 3442 }, 3443 Key: "mem", 3444 }, 3445 UnitInfo: &types.ElementDescription{ 3446 Description: types.Description{ 3447 Label: "KB", 3448 Summary: "Kilobyte", 3449 }, 3450 Key: "kiloBytes", 3451 }, 3452 RollupType: "average", 3453 StatsType: "absolute", 3454 Level: 2, 3455 PerDeviceLevel: 4, 3456 AssociatedCounterId: nil, 3457 }, 3458 { 3459 Key: 118, 3460 NameInfo: &types.ElementDescription{ 3461 Description: types.Description{ 3462 Label: "vmOvhd", 3463 Summary: "vmOvhd", 3464 }, 3465 Key: "reservedCapacity.vmOvhd", 3466 }, 3467 GroupInfo: &types.ElementDescription{ 3468 Description: types.Description{ 3469 Label: "Memory", 3470 Summary: "Memory", 3471 }, 3472 Key: "mem", 3473 }, 3474 UnitInfo: &types.ElementDescription{ 3475 Description: types.Description{ 3476 Label: "KB", 3477 Summary: "Kilobyte", 3478 }, 3479 Key: "kiloBytes", 3480 }, 3481 RollupType: "average", 3482 StatsType: "absolute", 3483 Level: 2, 3484 PerDeviceLevel: 4, 3485 AssociatedCounterId: nil, 3486 }, 3487 { 3488 Key: 119, 3489 NameInfo: &types.ElementDescription{ 3490 Description: types.Description{ 3491 Label: "vmkOvrhd", 3492 Summary: "vmkOvrhd", 3493 }, 3494 Key: "reservedCapacity.vmkOvrhd", 3495 }, 3496 GroupInfo: &types.ElementDescription{ 3497 Description: types.Description{ 3498 Label: "Memory", 3499 Summary: "Memory", 3500 }, 3501 Key: "mem", 3502 }, 3503 UnitInfo: &types.ElementDescription{ 3504 Description: types.Description{ 3505 Label: "KB", 3506 Summary: "Kilobyte", 3507 }, 3508 Key: "kiloBytes", 3509 }, 3510 RollupType: "average", 3511 StatsType: "absolute", 3512 Level: 2, 3513 PerDeviceLevel: 4, 3514 AssociatedCounterId: nil, 3515 }, 3516 { 3517 Key: 120, 3518 NameInfo: &types.ElementDescription{ 3519 Description: types.Description{ 3520 Label: "userworld", 3521 Summary: "userworld", 3522 }, 3523 Key: "reservedCapacity.userworld", 3524 }, 3525 GroupInfo: &types.ElementDescription{ 3526 Description: types.Description{ 3527 Label: "Memory", 3528 Summary: "Memory", 3529 }, 3530 Key: "mem", 3531 }, 3532 UnitInfo: &types.ElementDescription{ 3533 Description: types.Description{ 3534 Label: "KB", 3535 Summary: "Kilobyte", 3536 }, 3537 Key: "kiloBytes", 3538 }, 3539 RollupType: "average", 3540 StatsType: "absolute", 3541 Level: 2, 3542 PerDeviceLevel: 4, 3543 AssociatedCounterId: nil, 3544 }, 3545 { 3546 Key: 121, 3547 NameInfo: &types.ElementDescription{ 3548 Description: types.Description{ 3549 Label: "Memory Reserved Capacity %", 3550 Summary: "Percent of memory that has been reserved either through VMkernel use, by userworlds or due to VM memory reservations", 3551 }, 3552 Key: "reservedCapacityPct", 3553 }, 3554 GroupInfo: &types.ElementDescription{ 3555 Description: types.Description{ 3556 Label: "Memory", 3557 Summary: "Memory", 3558 }, 3559 Key: "mem", 3560 }, 3561 UnitInfo: &types.ElementDescription{ 3562 Description: types.Description{ 3563 Label: "%", 3564 Summary: "Percentage", 3565 }, 3566 Key: "percent", 3567 }, 3568 RollupType: "average", 3569 StatsType: "absolute", 3570 Level: 4, 3571 PerDeviceLevel: 4, 3572 AssociatedCounterId: nil, 3573 }, 3574 { 3575 Key: 122, 3576 NameInfo: &types.ElementDescription{ 3577 Description: types.Description{ 3578 Label: "Memory Consumed by VMs", 3579 Summary: "Amount of physical memory consumed by VMs on this host", 3580 }, 3581 Key: "consumed.vms", 3582 }, 3583 GroupInfo: &types.ElementDescription{ 3584 Description: types.Description{ 3585 Label: "Memory", 3586 Summary: "Memory", 3587 }, 3588 Key: "mem", 3589 }, 3590 UnitInfo: &types.ElementDescription{ 3591 Description: types.Description{ 3592 Label: "KB", 3593 Summary: "Kilobyte", 3594 }, 3595 Key: "kiloBytes", 3596 }, 3597 RollupType: "average", 3598 StatsType: "absolute", 3599 Level: 2, 3600 PerDeviceLevel: 4, 3601 AssociatedCounterId: nil, 3602 }, 3603 { 3604 Key: 123, 3605 NameInfo: &types.ElementDescription{ 3606 Description: types.Description{ 3607 Label: "Memory Consumed by userworlds", 3608 Summary: "Amount of physical memory consumed by userworlds on this host", 3609 }, 3610 Key: "consumed.userworlds", 3611 }, 3612 GroupInfo: &types.ElementDescription{ 3613 Description: types.Description{ 3614 Label: "Memory", 3615 Summary: "Memory", 3616 }, 3617 Key: "mem", 3618 }, 3619 UnitInfo: &types.ElementDescription{ 3620 Description: types.Description{ 3621 Label: "KB", 3622 Summary: "Kilobyte", 3623 }, 3624 Key: "kiloBytes", 3625 }, 3626 RollupType: "average", 3627 StatsType: "absolute", 3628 Level: 2, 3629 PerDeviceLevel: 4, 3630 AssociatedCounterId: nil, 3631 }, 3632 { 3633 Key: 124, 3634 NameInfo: &types.ElementDescription{ 3635 Description: types.Description{ 3636 Label: "Usage", 3637 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.", 3638 }, 3639 Key: "usage", 3640 }, 3641 GroupInfo: &types.ElementDescription{ 3642 Description: types.Description{ 3643 Label: "Disk", 3644 Summary: "Disk", 3645 }, 3646 Key: "disk", 3647 }, 3648 UnitInfo: &types.ElementDescription{ 3649 Description: types.Description{ 3650 Label: "KBps", 3651 Summary: "Kilobytes per second", 3652 }, 3653 Key: "kiloBytesPerSecond", 3654 }, 3655 RollupType: "none", 3656 StatsType: "rate", 3657 Level: 4, 3658 PerDeviceLevel: 4, 3659 AssociatedCounterId: nil, 3660 }, 3661 { 3662 Key: 125, 3663 NameInfo: &types.ElementDescription{ 3664 Description: types.Description{ 3665 Label: "Usage", 3666 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.", 3667 }, 3668 Key: "usage", 3669 }, 3670 GroupInfo: &types.ElementDescription{ 3671 Description: types.Description{ 3672 Label: "Disk", 3673 Summary: "Disk", 3674 }, 3675 Key: "disk", 3676 }, 3677 UnitInfo: &types.ElementDescription{ 3678 Description: types.Description{ 3679 Label: "KBps", 3680 Summary: "Kilobytes per second", 3681 }, 3682 Key: "kiloBytesPerSecond", 3683 }, 3684 RollupType: "average", 3685 StatsType: "rate", 3686 Level: 1, 3687 PerDeviceLevel: 3, 3688 AssociatedCounterId: nil, 3689 }, 3690 { 3691 Key: 126, 3692 NameInfo: &types.ElementDescription{ 3693 Description: types.Description{ 3694 Label: "Usage", 3695 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.", 3696 }, 3697 Key: "usage", 3698 }, 3699 GroupInfo: &types.ElementDescription{ 3700 Description: types.Description{ 3701 Label: "Disk", 3702 Summary: "Disk", 3703 }, 3704 Key: "disk", 3705 }, 3706 UnitInfo: &types.ElementDescription{ 3707 Description: types.Description{ 3708 Label: "KBps", 3709 Summary: "Kilobytes per second", 3710 }, 3711 Key: "kiloBytesPerSecond", 3712 }, 3713 RollupType: "minimum", 3714 StatsType: "rate", 3715 Level: 4, 3716 PerDeviceLevel: 4, 3717 AssociatedCounterId: nil, 3718 }, 3719 { 3720 Key: 127, 3721 NameInfo: &types.ElementDescription{ 3722 Description: types.Description{ 3723 Label: "Usage", 3724 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.", 3725 }, 3726 Key: "usage", 3727 }, 3728 GroupInfo: &types.ElementDescription{ 3729 Description: types.Description{ 3730 Label: "Disk", 3731 Summary: "Disk", 3732 }, 3733 Key: "disk", 3734 }, 3735 UnitInfo: &types.ElementDescription{ 3736 Description: types.Description{ 3737 Label: "KBps", 3738 Summary: "Kilobytes per second", 3739 }, 3740 Key: "kiloBytesPerSecond", 3741 }, 3742 RollupType: "maximum", 3743 StatsType: "rate", 3744 Level: 4, 3745 PerDeviceLevel: 4, 3746 AssociatedCounterId: nil, 3747 }, 3748 { 3749 Key: 128, 3750 NameInfo: &types.ElementDescription{ 3751 Description: types.Description{ 3752 Label: "Read requests", 3753 Summary: "Number of disk reads during the collection interval", 3754 }, 3755 Key: "numberRead", 3756 }, 3757 GroupInfo: &types.ElementDescription{ 3758 Description: types.Description{ 3759 Label: "Disk", 3760 Summary: "Disk", 3761 }, 3762 Key: "disk", 3763 }, 3764 UnitInfo: &types.ElementDescription{ 3765 Description: types.Description{ 3766 Label: "num", 3767 Summary: "Number", 3768 }, 3769 Key: "number", 3770 }, 3771 RollupType: "summation", 3772 StatsType: "delta", 3773 Level: 3, 3774 PerDeviceLevel: 3, 3775 AssociatedCounterId: nil, 3776 }, 3777 { 3778 Key: 129, 3779 NameInfo: &types.ElementDescription{ 3780 Description: types.Description{ 3781 Label: "Write requests", 3782 Summary: "Number of disk writes during the collection interval", 3783 }, 3784 Key: "numberWrite", 3785 }, 3786 GroupInfo: &types.ElementDescription{ 3787 Description: types.Description{ 3788 Label: "Disk", 3789 Summary: "Disk", 3790 }, 3791 Key: "disk", 3792 }, 3793 UnitInfo: &types.ElementDescription{ 3794 Description: types.Description{ 3795 Label: "num", 3796 Summary: "Number", 3797 }, 3798 Key: "number", 3799 }, 3800 RollupType: "summation", 3801 StatsType: "delta", 3802 Level: 3, 3803 PerDeviceLevel: 3, 3804 AssociatedCounterId: nil, 3805 }, 3806 { 3807 Key: 130, 3808 NameInfo: &types.ElementDescription{ 3809 Description: types.Description{ 3810 Label: "Read rate", 3811 Summary: "Average number of kilobytes read from the disk each second during the collection interval", 3812 }, 3813 Key: "read", 3814 }, 3815 GroupInfo: &types.ElementDescription{ 3816 Description: types.Description{ 3817 Label: "Disk", 3818 Summary: "Disk", 3819 }, 3820 Key: "disk", 3821 }, 3822 UnitInfo: &types.ElementDescription{ 3823 Description: types.Description{ 3824 Label: "KBps", 3825 Summary: "Kilobytes per second", 3826 }, 3827 Key: "kiloBytesPerSecond", 3828 }, 3829 RollupType: "average", 3830 StatsType: "rate", 3831 Level: 2, 3832 PerDeviceLevel: 3, 3833 AssociatedCounterId: nil, 3834 }, 3835 { 3836 Key: 131, 3837 NameInfo: &types.ElementDescription{ 3838 Description: types.Description{ 3839 Label: "Write rate", 3840 Summary: "Average number of kilobytes written to disk each second during the collection interval", 3841 }, 3842 Key: "write", 3843 }, 3844 GroupInfo: &types.ElementDescription{ 3845 Description: types.Description{ 3846 Label: "Disk", 3847 Summary: "Disk", 3848 }, 3849 Key: "disk", 3850 }, 3851 UnitInfo: &types.ElementDescription{ 3852 Description: types.Description{ 3853 Label: "KBps", 3854 Summary: "Kilobytes per second", 3855 }, 3856 Key: "kiloBytesPerSecond", 3857 }, 3858 RollupType: "average", 3859 StatsType: "rate", 3860 Level: 2, 3861 PerDeviceLevel: 3, 3862 AssociatedCounterId: nil, 3863 }, 3864 { 3865 Key: 132, 3866 NameInfo: &types.ElementDescription{ 3867 Description: types.Description{ 3868 Label: "Command latency", 3869 Summary: "Average amount of time taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine", 3870 }, 3871 Key: "totalLatency", 3872 }, 3873 GroupInfo: &types.ElementDescription{ 3874 Description: types.Description{ 3875 Label: "Disk", 3876 Summary: "Disk", 3877 }, 3878 Key: "disk", 3879 }, 3880 UnitInfo: &types.ElementDescription{ 3881 Description: types.Description{ 3882 Label: "ms", 3883 Summary: "Millisecond", 3884 }, 3885 Key: "millisecond", 3886 }, 3887 RollupType: "average", 3888 StatsType: "absolute", 3889 Level: 3, 3890 PerDeviceLevel: 3, 3891 AssociatedCounterId: nil, 3892 }, 3893 { 3894 Key: 133, 3895 NameInfo: &types.ElementDescription{ 3896 Description: types.Description{ 3897 Label: "Highest latency", 3898 Summary: "Highest latency value across all disks used by the host", 3899 }, 3900 Key: "maxTotalLatency", 3901 }, 3902 GroupInfo: &types.ElementDescription{ 3903 Description: types.Description{ 3904 Label: "Disk", 3905 Summary: "Disk", 3906 }, 3907 Key: "disk", 3908 }, 3909 UnitInfo: &types.ElementDescription{ 3910 Description: types.Description{ 3911 Label: "ms", 3912 Summary: "Millisecond", 3913 }, 3914 Key: "millisecond", 3915 }, 3916 RollupType: "latest", 3917 StatsType: "absolute", 3918 Level: 1, 3919 PerDeviceLevel: 3, 3920 AssociatedCounterId: nil, 3921 }, 3922 { 3923 Key: 134, 3924 NameInfo: &types.ElementDescription{ 3925 Description: types.Description{ 3926 Label: "Commands aborted", 3927 Summary: "Number of SCSI commands aborted during the collection interval", 3928 }, 3929 Key: "commandsAborted", 3930 }, 3931 GroupInfo: &types.ElementDescription{ 3932 Description: types.Description{ 3933 Label: "Disk", 3934 Summary: "Disk", 3935 }, 3936 Key: "disk", 3937 }, 3938 UnitInfo: &types.ElementDescription{ 3939 Description: types.Description{ 3940 Label: "num", 3941 Summary: "Number", 3942 }, 3943 Key: "number", 3944 }, 3945 RollupType: "summation", 3946 StatsType: "delta", 3947 Level: 2, 3948 PerDeviceLevel: 3, 3949 AssociatedCounterId: nil, 3950 }, 3951 { 3952 Key: 135, 3953 NameInfo: &types.ElementDescription{ 3954 Description: types.Description{ 3955 Label: "Bus resets", 3956 Summary: "Number of SCSI-bus reset commands issued during the collection interval", 3957 }, 3958 Key: "busResets", 3959 }, 3960 GroupInfo: &types.ElementDescription{ 3961 Description: types.Description{ 3962 Label: "Disk", 3963 Summary: "Disk", 3964 }, 3965 Key: "disk", 3966 }, 3967 UnitInfo: &types.ElementDescription{ 3968 Description: types.Description{ 3969 Label: "num", 3970 Summary: "Number", 3971 }, 3972 Key: "number", 3973 }, 3974 RollupType: "summation", 3975 StatsType: "delta", 3976 Level: 2, 3977 PerDeviceLevel: 3, 3978 AssociatedCounterId: nil, 3979 }, 3980 { 3981 Key: 136, 3982 NameInfo: &types.ElementDescription{ 3983 Description: types.Description{ 3984 Label: "Average read requests per second", 3985 Summary: "Average number of disk reads per second during the collection interval", 3986 }, 3987 Key: "numberReadAveraged", 3988 }, 3989 GroupInfo: &types.ElementDescription{ 3990 Description: types.Description{ 3991 Label: "Disk", 3992 Summary: "Disk", 3993 }, 3994 Key: "disk", 3995 }, 3996 UnitInfo: &types.ElementDescription{ 3997 Description: types.Description{ 3998 Label: "num", 3999 Summary: "Number", 4000 }, 4001 Key: "number", 4002 }, 4003 RollupType: "average", 4004 StatsType: "rate", 4005 Level: 1, 4006 PerDeviceLevel: 3, 4007 AssociatedCounterId: nil, 4008 }, 4009 { 4010 Key: 137, 4011 NameInfo: &types.ElementDescription{ 4012 Description: types.Description{ 4013 Label: "Average write requests per second", 4014 Summary: "Average number of disk writes per second during the collection interval", 4015 }, 4016 Key: "numberWriteAveraged", 4017 }, 4018 GroupInfo: &types.ElementDescription{ 4019 Description: types.Description{ 4020 Label: "Disk", 4021 Summary: "Disk", 4022 }, 4023 Key: "disk", 4024 }, 4025 UnitInfo: &types.ElementDescription{ 4026 Description: types.Description{ 4027 Label: "num", 4028 Summary: "Number", 4029 }, 4030 Key: "number", 4031 }, 4032 RollupType: "average", 4033 StatsType: "rate", 4034 Level: 1, 4035 PerDeviceLevel: 3, 4036 AssociatedCounterId: nil, 4037 }, 4038 { 4039 Key: 138, 4040 NameInfo: &types.ElementDescription{ 4041 Description: types.Description{ 4042 Label: "Disk Throughput Usage", 4043 Summary: "Aggregated disk I/O rate, including the rates for all virtual machines running on the host during the collection interval", 4044 }, 4045 Key: "throughput.usage", 4046 }, 4047 GroupInfo: &types.ElementDescription{ 4048 Description: types.Description{ 4049 Label: "Disk", 4050 Summary: "Disk", 4051 }, 4052 Key: "disk", 4053 }, 4054 UnitInfo: &types.ElementDescription{ 4055 Description: types.Description{ 4056 Label: "KBps", 4057 Summary: "Kilobytes per second", 4058 }, 4059 Key: "kiloBytesPerSecond", 4060 }, 4061 RollupType: "average", 4062 StatsType: "rate", 4063 Level: 4, 4064 PerDeviceLevel: 4, 4065 AssociatedCounterId: nil, 4066 }, 4067 { 4068 Key: 139, 4069 NameInfo: &types.ElementDescription{ 4070 Description: types.Description{ 4071 Label: "Disk Throughput Contention", 4072 Summary: "Average amount of time for an I/O operation to complete successfully", 4073 }, 4074 Key: "throughput.contention", 4075 }, 4076 GroupInfo: &types.ElementDescription{ 4077 Description: types.Description{ 4078 Label: "Disk", 4079 Summary: "Disk", 4080 }, 4081 Key: "disk", 4082 }, 4083 UnitInfo: &types.ElementDescription{ 4084 Description: types.Description{ 4085 Label: "ms", 4086 Summary: "Millisecond", 4087 }, 4088 Key: "millisecond", 4089 }, 4090 RollupType: "average", 4091 StatsType: "absolute", 4092 Level: 4, 4093 PerDeviceLevel: 4, 4094 AssociatedCounterId: nil, 4095 }, 4096 { 4097 Key: 140, 4098 NameInfo: &types.ElementDescription{ 4099 Description: types.Description{ 4100 Label: "Disk SCSI Reservation Conflicts", 4101 Summary: "Number of SCSI reservation conflicts for the LUN during the collection interval", 4102 }, 4103 Key: "scsiReservationConflicts", 4104 }, 4105 GroupInfo: &types.ElementDescription{ 4106 Description: types.Description{ 4107 Label: "Disk", 4108 Summary: "Disk", 4109 }, 4110 Key: "disk", 4111 }, 4112 UnitInfo: &types.ElementDescription{ 4113 Description: types.Description{ 4114 Label: "num", 4115 Summary: "Number", 4116 }, 4117 Key: "number", 4118 }, 4119 RollupType: "summation", 4120 StatsType: "delta", 4121 Level: 2, 4122 PerDeviceLevel: 2, 4123 AssociatedCounterId: nil, 4124 }, 4125 { 4126 Key: 141, 4127 NameInfo: &types.ElementDescription{ 4128 Description: types.Description{ 4129 Label: "Disk SCSI Reservation Conflicts %", 4130 Summary: "Number of SCSI reservation conflicts for the LUN as a percent of total commands during the collection interval", 4131 }, 4132 Key: "scsiReservationCnflctsPct", 4133 }, 4134 GroupInfo: &types.ElementDescription{ 4135 Description: types.Description{ 4136 Label: "Disk", 4137 Summary: "Disk", 4138 }, 4139 Key: "disk", 4140 }, 4141 UnitInfo: &types.ElementDescription{ 4142 Description: types.Description{ 4143 Label: "%", 4144 Summary: "Percentage", 4145 }, 4146 Key: "percent", 4147 }, 4148 RollupType: "average", 4149 StatsType: "absolute", 4150 Level: 4, 4151 PerDeviceLevel: 4, 4152 AssociatedCounterId: nil, 4153 }, 4154 { 4155 Key: 142, 4156 NameInfo: &types.ElementDescription{ 4157 Description: types.Description{ 4158 Label: "Usage", 4159 Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval", 4160 }, 4161 Key: "usage", 4162 }, 4163 GroupInfo: &types.ElementDescription{ 4164 Description: types.Description{ 4165 Label: "Network", 4166 Summary: "Network", 4167 }, 4168 Key: "net", 4169 }, 4170 UnitInfo: &types.ElementDescription{ 4171 Description: types.Description{ 4172 Label: "KBps", 4173 Summary: "Kilobytes per second", 4174 }, 4175 Key: "kiloBytesPerSecond", 4176 }, 4177 RollupType: "none", 4178 StatsType: "rate", 4179 Level: 4, 4180 PerDeviceLevel: 4, 4181 AssociatedCounterId: nil, 4182 }, 4183 { 4184 Key: 143, 4185 NameInfo: &types.ElementDescription{ 4186 Description: types.Description{ 4187 Label: "Usage", 4188 Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval", 4189 }, 4190 Key: "usage", 4191 }, 4192 GroupInfo: &types.ElementDescription{ 4193 Description: types.Description{ 4194 Label: "Network", 4195 Summary: "Network", 4196 }, 4197 Key: "net", 4198 }, 4199 UnitInfo: &types.ElementDescription{ 4200 Description: types.Description{ 4201 Label: "KBps", 4202 Summary: "Kilobytes per second", 4203 }, 4204 Key: "kiloBytesPerSecond", 4205 }, 4206 RollupType: "average", 4207 StatsType: "rate", 4208 Level: 1, 4209 PerDeviceLevel: 3, 4210 AssociatedCounterId: nil, 4211 }, 4212 { 4213 Key: 144, 4214 NameInfo: &types.ElementDescription{ 4215 Description: types.Description{ 4216 Label: "Usage", 4217 Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval", 4218 }, 4219 Key: "usage", 4220 }, 4221 GroupInfo: &types.ElementDescription{ 4222 Description: types.Description{ 4223 Label: "Network", 4224 Summary: "Network", 4225 }, 4226 Key: "net", 4227 }, 4228 UnitInfo: &types.ElementDescription{ 4229 Description: types.Description{ 4230 Label: "KBps", 4231 Summary: "Kilobytes per second", 4232 }, 4233 Key: "kiloBytesPerSecond", 4234 }, 4235 RollupType: "minimum", 4236 StatsType: "rate", 4237 Level: 4, 4238 PerDeviceLevel: 4, 4239 AssociatedCounterId: nil, 4240 }, 4241 { 4242 Key: 145, 4243 NameInfo: &types.ElementDescription{ 4244 Description: types.Description{ 4245 Label: "Usage", 4246 Summary: "Network utilization (combined transmit-rates and receive-rates) during the interval", 4247 }, 4248 Key: "usage", 4249 }, 4250 GroupInfo: &types.ElementDescription{ 4251 Description: types.Description{ 4252 Label: "Network", 4253 Summary: "Network", 4254 }, 4255 Key: "net", 4256 }, 4257 UnitInfo: &types.ElementDescription{ 4258 Description: types.Description{ 4259 Label: "KBps", 4260 Summary: "Kilobytes per second", 4261 }, 4262 Key: "kiloBytesPerSecond", 4263 }, 4264 RollupType: "maximum", 4265 StatsType: "rate", 4266 Level: 4, 4267 PerDeviceLevel: 4, 4268 AssociatedCounterId: nil, 4269 }, 4270 { 4271 Key: 146, 4272 NameInfo: &types.ElementDescription{ 4273 Description: types.Description{ 4274 Label: "Packets received", 4275 Summary: "Number of packets received during the interval", 4276 }, 4277 Key: "packetsRx", 4278 }, 4279 GroupInfo: &types.ElementDescription{ 4280 Description: types.Description{ 4281 Label: "Network", 4282 Summary: "Network", 4283 }, 4284 Key: "net", 4285 }, 4286 UnitInfo: &types.ElementDescription{ 4287 Description: types.Description{ 4288 Label: "num", 4289 Summary: "Number", 4290 }, 4291 Key: "number", 4292 }, 4293 RollupType: "summation", 4294 StatsType: "delta", 4295 Level: 2, 4296 PerDeviceLevel: 3, 4297 AssociatedCounterId: nil, 4298 }, 4299 { 4300 Key: 147, 4301 NameInfo: &types.ElementDescription{ 4302 Description: types.Description{ 4303 Label: "Packets transmitted", 4304 Summary: "Number of packets transmitted during the interval", 4305 }, 4306 Key: "packetsTx", 4307 }, 4308 GroupInfo: &types.ElementDescription{ 4309 Description: types.Description{ 4310 Label: "Network", 4311 Summary: "Network", 4312 }, 4313 Key: "net", 4314 }, 4315 UnitInfo: &types.ElementDescription{ 4316 Description: types.Description{ 4317 Label: "num", 4318 Summary: "Number", 4319 }, 4320 Key: "number", 4321 }, 4322 RollupType: "summation", 4323 StatsType: "delta", 4324 Level: 2, 4325 PerDeviceLevel: 3, 4326 AssociatedCounterId: nil, 4327 }, 4328 { 4329 Key: 148, 4330 NameInfo: &types.ElementDescription{ 4331 Description: types.Description{ 4332 Label: "Data receive rate", 4333 Summary: "Average rate at which data was received during the interval", 4334 }, 4335 Key: "received", 4336 }, 4337 GroupInfo: &types.ElementDescription{ 4338 Description: types.Description{ 4339 Label: "Network", 4340 Summary: "Network", 4341 }, 4342 Key: "net", 4343 }, 4344 UnitInfo: &types.ElementDescription{ 4345 Description: types.Description{ 4346 Label: "KBps", 4347 Summary: "Kilobytes per second", 4348 }, 4349 Key: "kiloBytesPerSecond", 4350 }, 4351 RollupType: "average", 4352 StatsType: "rate", 4353 Level: 2, 4354 PerDeviceLevel: 3, 4355 AssociatedCounterId: nil, 4356 }, 4357 { 4358 Key: 149, 4359 NameInfo: &types.ElementDescription{ 4360 Description: types.Description{ 4361 Label: "Data transmit rate", 4362 Summary: "Average rate at which data was transmitted during the interval", 4363 }, 4364 Key: "transmitted", 4365 }, 4366 GroupInfo: &types.ElementDescription{ 4367 Description: types.Description{ 4368 Label: "Network", 4369 Summary: "Network", 4370 }, 4371 Key: "net", 4372 }, 4373 UnitInfo: &types.ElementDescription{ 4374 Description: types.Description{ 4375 Label: "KBps", 4376 Summary: "Kilobytes per second", 4377 }, 4378 Key: "kiloBytesPerSecond", 4379 }, 4380 RollupType: "average", 4381 StatsType: "rate", 4382 Level: 2, 4383 PerDeviceLevel: 3, 4384 AssociatedCounterId: nil, 4385 }, 4386 { 4387 Key: 150, 4388 NameInfo: &types.ElementDescription{ 4389 Description: types.Description{ 4390 Label: "Net Throughput Provisioned", 4391 Summary: "The maximum network bandwidth for the host", 4392 }, 4393 Key: "throughput.provisioned", 4394 }, 4395 GroupInfo: &types.ElementDescription{ 4396 Description: types.Description{ 4397 Label: "Network", 4398 Summary: "Network", 4399 }, 4400 Key: "net", 4401 }, 4402 UnitInfo: &types.ElementDescription{ 4403 Description: types.Description{ 4404 Label: "KBps", 4405 Summary: "Kilobytes per second", 4406 }, 4407 Key: "kiloBytesPerSecond", 4408 }, 4409 RollupType: "average", 4410 StatsType: "absolute", 4411 Level: 4, 4412 PerDeviceLevel: 4, 4413 AssociatedCounterId: nil, 4414 }, 4415 { 4416 Key: 151, 4417 NameInfo: &types.ElementDescription{ 4418 Description: types.Description{ 4419 Label: "Net Throughput Usable", 4420 Summary: "The current available network bandwidth for the host", 4421 }, 4422 Key: "throughput.usable", 4423 }, 4424 GroupInfo: &types.ElementDescription{ 4425 Description: types.Description{ 4426 Label: "Network", 4427 Summary: "Network", 4428 }, 4429 Key: "net", 4430 }, 4431 UnitInfo: &types.ElementDescription{ 4432 Description: types.Description{ 4433 Label: "KBps", 4434 Summary: "Kilobytes per second", 4435 }, 4436 Key: "kiloBytesPerSecond", 4437 }, 4438 RollupType: "average", 4439 StatsType: "absolute", 4440 Level: 4, 4441 PerDeviceLevel: 4, 4442 AssociatedCounterId: nil, 4443 }, 4444 { 4445 Key: 152, 4446 NameInfo: &types.ElementDescription{ 4447 Description: types.Description{ 4448 Label: "Net Throughput Usage", 4449 Summary: "The current network bandwidth usage for the host", 4450 }, 4451 Key: "throughput.usage", 4452 }, 4453 GroupInfo: &types.ElementDescription{ 4454 Description: types.Description{ 4455 Label: "Network", 4456 Summary: "Network", 4457 }, 4458 Key: "net", 4459 }, 4460 UnitInfo: &types.ElementDescription{ 4461 Description: types.Description{ 4462 Label: "KBps", 4463 Summary: "Kilobytes per second", 4464 }, 4465 Key: "kiloBytesPerSecond", 4466 }, 4467 RollupType: "average", 4468 StatsType: "rate", 4469 Level: 4, 4470 PerDeviceLevel: 4, 4471 AssociatedCounterId: nil, 4472 }, 4473 { 4474 Key: 153, 4475 NameInfo: &types.ElementDescription{ 4476 Description: types.Description{ 4477 Label: "Net Throughput Contention", 4478 Summary: "The aggregate network dropped packets for the host", 4479 }, 4480 Key: "throughput.contention", 4481 }, 4482 GroupInfo: &types.ElementDescription{ 4483 Description: types.Description{ 4484 Label: "Network", 4485 Summary: "Network", 4486 }, 4487 Key: "net", 4488 }, 4489 UnitInfo: &types.ElementDescription{ 4490 Description: types.Description{ 4491 Label: "num", 4492 Summary: "Number", 4493 }, 4494 Key: "number", 4495 }, 4496 RollupType: "summation", 4497 StatsType: "delta", 4498 Level: 4, 4499 PerDeviceLevel: 4, 4500 AssociatedCounterId: nil, 4501 }, 4502 { 4503 Key: 154, 4504 NameInfo: &types.ElementDescription{ 4505 Description: types.Description{ 4506 Label: "pNic Packets Received and Transmitted per Second", 4507 Summary: "Average rate of packets received and transmitted per second", 4508 }, 4509 Key: "throughput.packetsPerSec", 4510 }, 4511 GroupInfo: &types.ElementDescription{ 4512 Description: types.Description{ 4513 Label: "Network", 4514 Summary: "Network", 4515 }, 4516 Key: "net", 4517 }, 4518 UnitInfo: &types.ElementDescription{ 4519 Description: types.Description{ 4520 Label: "num", 4521 Summary: "Number", 4522 }, 4523 Key: "number", 4524 }, 4525 RollupType: "average", 4526 StatsType: "rate", 4527 Level: 4, 4528 PerDeviceLevel: 4, 4529 AssociatedCounterId: nil, 4530 }, 4531 { 4532 Key: 155, 4533 NameInfo: &types.ElementDescription{ 4534 Description: types.Description{ 4535 Label: "Uptime", 4536 Summary: "Total time elapsed, in seconds, since last system startup", 4537 }, 4538 Key: "uptime", 4539 }, 4540 GroupInfo: &types.ElementDescription{ 4541 Description: types.Description{ 4542 Label: "System", 4543 Summary: "System", 4544 }, 4545 Key: "sys", 4546 }, 4547 UnitInfo: &types.ElementDescription{ 4548 Description: types.Description{ 4549 Label: "s", 4550 Summary: "Second", 4551 }, 4552 Key: "second", 4553 }, 4554 RollupType: "latest", 4555 StatsType: "absolute", 4556 Level: 1, 4557 PerDeviceLevel: 3, 4558 AssociatedCounterId: nil, 4559 }, 4560 { 4561 Key: 156, 4562 NameInfo: &types.ElementDescription{ 4563 Description: types.Description{ 4564 Label: "Heartbeat", 4565 Summary: "Number of heartbeats issued per virtual machine during the interval", 4566 }, 4567 Key: "heartbeat", 4568 }, 4569 GroupInfo: &types.ElementDescription{ 4570 Description: types.Description{ 4571 Label: "System", 4572 Summary: "System", 4573 }, 4574 Key: "sys", 4575 }, 4576 UnitInfo: &types.ElementDescription{ 4577 Description: types.Description{ 4578 Label: "num", 4579 Summary: "Number", 4580 }, 4581 Key: "number", 4582 }, 4583 RollupType: "summation", 4584 StatsType: "delta", 4585 Level: 1, 4586 PerDeviceLevel: 3, 4587 AssociatedCounterId: nil, 4588 }, 4589 { 4590 Key: 157, 4591 NameInfo: &types.ElementDescription{ 4592 Description: types.Description{ 4593 Label: "Usage", 4594 Summary: "Current power usage", 4595 }, 4596 Key: "power", 4597 }, 4598 GroupInfo: &types.ElementDescription{ 4599 Description: types.Description{ 4600 Label: "Power", 4601 Summary: "Power", 4602 }, 4603 Key: "power", 4604 }, 4605 UnitInfo: &types.ElementDescription{ 4606 Description: types.Description{ 4607 Label: "W", 4608 Summary: "Watt", 4609 }, 4610 Key: "watt", 4611 }, 4612 RollupType: "average", 4613 StatsType: "rate", 4614 Level: 2, 4615 PerDeviceLevel: 3, 4616 AssociatedCounterId: nil, 4617 }, 4618 { 4619 Key: 158, 4620 NameInfo: &types.ElementDescription{ 4621 Description: types.Description{ 4622 Label: "Cap", 4623 Summary: "Maximum allowed power usage", 4624 }, 4625 Key: "powerCap", 4626 }, 4627 GroupInfo: &types.ElementDescription{ 4628 Description: types.Description{ 4629 Label: "Power", 4630 Summary: "Power", 4631 }, 4632 Key: "power", 4633 }, 4634 UnitInfo: &types.ElementDescription{ 4635 Description: types.Description{ 4636 Label: "W", 4637 Summary: "Watt", 4638 }, 4639 Key: "watt", 4640 }, 4641 RollupType: "average", 4642 StatsType: "absolute", 4643 Level: 3, 4644 PerDeviceLevel: 3, 4645 AssociatedCounterId: nil, 4646 }, 4647 { 4648 Key: 159, 4649 NameInfo: &types.ElementDescription{ 4650 Description: types.Description{ 4651 Label: "Energy usage", 4652 Summary: "Total energy used since last stats reset", 4653 }, 4654 Key: "energy", 4655 }, 4656 GroupInfo: &types.ElementDescription{ 4657 Description: types.Description{ 4658 Label: "Power", 4659 Summary: "Power", 4660 }, 4661 Key: "power", 4662 }, 4663 UnitInfo: &types.ElementDescription{ 4664 Description: types.Description{ 4665 Label: "J", 4666 Summary: "Joule", 4667 }, 4668 Key: "joule", 4669 }, 4670 RollupType: "summation", 4671 StatsType: "delta", 4672 Level: 3, 4673 PerDeviceLevel: 3, 4674 AssociatedCounterId: nil, 4675 }, 4676 { 4677 Key: 160, 4678 NameInfo: &types.ElementDescription{ 4679 Description: types.Description{ 4680 Label: "Host Power Capacity Provisioned", 4681 Summary: "Current power usage as a percentage of maximum allowed power.", 4682 }, 4683 Key: "capacity.usagePct", 4684 }, 4685 GroupInfo: &types.ElementDescription{ 4686 Description: types.Description{ 4687 Label: "Power", 4688 Summary: "Power", 4689 }, 4690 Key: "power", 4691 }, 4692 UnitInfo: &types.ElementDescription{ 4693 Description: types.Description{ 4694 Label: "%", 4695 Summary: "Percentage", 4696 }, 4697 Key: "percent", 4698 }, 4699 RollupType: "average", 4700 StatsType: "absolute", 4701 Level: 4, 4702 PerDeviceLevel: 4, 4703 AssociatedCounterId: nil, 4704 }, 4705 { 4706 Key: 161, 4707 NameInfo: &types.ElementDescription{ 4708 Description: types.Description{ 4709 Label: "Average commands issued per second", 4710 Summary: "Average number of commands issued per second by the storage adapter during the collection interval", 4711 }, 4712 Key: "commandsAveraged", 4713 }, 4714 GroupInfo: &types.ElementDescription{ 4715 Description: types.Description{ 4716 Label: "Storage adapter", 4717 Summary: "Storage adapter", 4718 }, 4719 Key: "storageAdapter", 4720 }, 4721 UnitInfo: &types.ElementDescription{ 4722 Description: types.Description{ 4723 Label: "num", 4724 Summary: "Number", 4725 }, 4726 Key: "number", 4727 }, 4728 RollupType: "average", 4729 StatsType: "rate", 4730 Level: 2, 4731 PerDeviceLevel: 2, 4732 AssociatedCounterId: nil, 4733 }, 4734 { 4735 Key: 162, 4736 NameInfo: &types.ElementDescription{ 4737 Description: types.Description{ 4738 Label: "Average read requests per second", 4739 Summary: "Average number of read commands issued per second by the storage adapter during the collection interval", 4740 }, 4741 Key: "numberReadAveraged", 4742 }, 4743 GroupInfo: &types.ElementDescription{ 4744 Description: types.Description{ 4745 Label: "Storage adapter", 4746 Summary: "Storage adapter", 4747 }, 4748 Key: "storageAdapter", 4749 }, 4750 UnitInfo: &types.ElementDescription{ 4751 Description: types.Description{ 4752 Label: "num", 4753 Summary: "Number", 4754 }, 4755 Key: "number", 4756 }, 4757 RollupType: "average", 4758 StatsType: "rate", 4759 Level: 2, 4760 PerDeviceLevel: 2, 4761 AssociatedCounterId: nil, 4762 }, 4763 { 4764 Key: 163, 4765 NameInfo: &types.ElementDescription{ 4766 Description: types.Description{ 4767 Label: "Average write requests per second", 4768 Summary: "Average number of write commands issued per second by the storage adapter during the collection interval", 4769 }, 4770 Key: "numberWriteAveraged", 4771 }, 4772 GroupInfo: &types.ElementDescription{ 4773 Description: types.Description{ 4774 Label: "Storage adapter", 4775 Summary: "Storage adapter", 4776 }, 4777 Key: "storageAdapter", 4778 }, 4779 UnitInfo: &types.ElementDescription{ 4780 Description: types.Description{ 4781 Label: "num", 4782 Summary: "Number", 4783 }, 4784 Key: "number", 4785 }, 4786 RollupType: "average", 4787 StatsType: "rate", 4788 Level: 2, 4789 PerDeviceLevel: 2, 4790 AssociatedCounterId: nil, 4791 }, 4792 { 4793 Key: 164, 4794 NameInfo: &types.ElementDescription{ 4795 Description: types.Description{ 4796 Label: "Read rate", 4797 Summary: "Rate of reading data by the storage adapter", 4798 }, 4799 Key: "read", 4800 }, 4801 GroupInfo: &types.ElementDescription{ 4802 Description: types.Description{ 4803 Label: "Storage adapter", 4804 Summary: "Storage adapter", 4805 }, 4806 Key: "storageAdapter", 4807 }, 4808 UnitInfo: &types.ElementDescription{ 4809 Description: types.Description{ 4810 Label: "KBps", 4811 Summary: "Kilobytes per second", 4812 }, 4813 Key: "kiloBytesPerSecond", 4814 }, 4815 RollupType: "average", 4816 StatsType: "rate", 4817 Level: 2, 4818 PerDeviceLevel: 2, 4819 AssociatedCounterId: nil, 4820 }, 4821 { 4822 Key: 165, 4823 NameInfo: &types.ElementDescription{ 4824 Description: types.Description{ 4825 Label: "Write rate", 4826 Summary: "Rate of writing data by the storage adapter", 4827 }, 4828 Key: "write", 4829 }, 4830 GroupInfo: &types.ElementDescription{ 4831 Description: types.Description{ 4832 Label: "Storage adapter", 4833 Summary: "Storage adapter", 4834 }, 4835 Key: "storageAdapter", 4836 }, 4837 UnitInfo: &types.ElementDescription{ 4838 Description: types.Description{ 4839 Label: "KBps", 4840 Summary: "Kilobytes per second", 4841 }, 4842 Key: "kiloBytesPerSecond", 4843 }, 4844 RollupType: "average", 4845 StatsType: "rate", 4846 Level: 2, 4847 PerDeviceLevel: 2, 4848 AssociatedCounterId: nil, 4849 }, 4850 { 4851 Key: 166, 4852 NameInfo: &types.ElementDescription{ 4853 Description: types.Description{ 4854 Label: "Read latency", 4855 Summary: "The average time a read by the storage adapter takes", 4856 }, 4857 Key: "totalReadLatency", 4858 }, 4859 GroupInfo: &types.ElementDescription{ 4860 Description: types.Description{ 4861 Label: "Storage adapter", 4862 Summary: "Storage adapter", 4863 }, 4864 Key: "storageAdapter", 4865 }, 4866 UnitInfo: &types.ElementDescription{ 4867 Description: types.Description{ 4868 Label: "ms", 4869 Summary: "Millisecond", 4870 }, 4871 Key: "millisecond", 4872 }, 4873 RollupType: "average", 4874 StatsType: "absolute", 4875 Level: 2, 4876 PerDeviceLevel: 2, 4877 AssociatedCounterId: nil, 4878 }, 4879 { 4880 Key: 167, 4881 NameInfo: &types.ElementDescription{ 4882 Description: types.Description{ 4883 Label: "Write latency", 4884 Summary: "The average time a write by the storage adapter takes", 4885 }, 4886 Key: "totalWriteLatency", 4887 }, 4888 GroupInfo: &types.ElementDescription{ 4889 Description: types.Description{ 4890 Label: "Storage adapter", 4891 Summary: "Storage adapter", 4892 }, 4893 Key: "storageAdapter", 4894 }, 4895 UnitInfo: &types.ElementDescription{ 4896 Description: types.Description{ 4897 Label: "ms", 4898 Summary: "Millisecond", 4899 }, 4900 Key: "millisecond", 4901 }, 4902 RollupType: "average", 4903 StatsType: "absolute", 4904 Level: 2, 4905 PerDeviceLevel: 2, 4906 AssociatedCounterId: nil, 4907 }, 4908 { 4909 Key: 168, 4910 NameInfo: &types.ElementDescription{ 4911 Description: types.Description{ 4912 Label: "Highest latency", 4913 Summary: "Highest latency value across all storage adapters used by the host", 4914 }, 4915 Key: "maxTotalLatency", 4916 }, 4917 GroupInfo: &types.ElementDescription{ 4918 Description: types.Description{ 4919 Label: "Storage adapter", 4920 Summary: "Storage adapter", 4921 }, 4922 Key: "storageAdapter", 4923 }, 4924 UnitInfo: &types.ElementDescription{ 4925 Description: types.Description{ 4926 Label: "ms", 4927 Summary: "Millisecond", 4928 }, 4929 Key: "millisecond", 4930 }, 4931 RollupType: "latest", 4932 StatsType: "absolute", 4933 Level: 3, 4934 PerDeviceLevel: 3, 4935 AssociatedCounterId: nil, 4936 }, 4937 { 4938 Key: 169, 4939 NameInfo: &types.ElementDescription{ 4940 Description: types.Description{ 4941 Label: "Storage Adapter Throughput Contention", 4942 Summary: "Average amount of time for an I/O operation to complete successfully", 4943 }, 4944 Key: "throughput.cont", 4945 }, 4946 GroupInfo: &types.ElementDescription{ 4947 Description: types.Description{ 4948 Label: "Storage adapter", 4949 Summary: "Storage adapter", 4950 }, 4951 Key: "storageAdapter", 4952 }, 4953 UnitInfo: &types.ElementDescription{ 4954 Description: types.Description{ 4955 Label: "ms", 4956 Summary: "Millisecond", 4957 }, 4958 Key: "millisecond", 4959 }, 4960 RollupType: "average", 4961 StatsType: "absolute", 4962 Level: 4, 4963 PerDeviceLevel: 4, 4964 AssociatedCounterId: nil, 4965 }, 4966 { 4967 Key: 170, 4968 NameInfo: &types.ElementDescription{ 4969 Description: types.Description{ 4970 Label: "Storage Adapter Outstanding I/Os", 4971 Summary: "The percent of I/Os that have been issued but have not yet completed", 4972 }, 4973 Key: "OIOsPct", 4974 }, 4975 GroupInfo: &types.ElementDescription{ 4976 Description: types.Description{ 4977 Label: "Storage adapter", 4978 Summary: "Storage adapter", 4979 }, 4980 Key: "storageAdapter", 4981 }, 4982 UnitInfo: &types.ElementDescription{ 4983 Description: types.Description{ 4984 Label: "%", 4985 Summary: "Percentage", 4986 }, 4987 Key: "percent", 4988 }, 4989 RollupType: "average", 4990 StatsType: "absolute", 4991 Level: 4, 4992 PerDeviceLevel: 4, 4993 AssociatedCounterId: nil, 4994 }, 4995 { 4996 Key: 171, 4997 NameInfo: &types.ElementDescription{ 4998 Description: types.Description{ 4999 Label: "Average read requests per second", 5000 Summary: "Average number of read commands issued per second to the virtual disk during the collection interval", 5001 }, 5002 Key: "numberReadAveraged", 5003 }, 5004 GroupInfo: &types.ElementDescription{ 5005 Description: types.Description{ 5006 Label: "Virtual disk", 5007 Summary: "Virtual disk", 5008 }, 5009 Key: "virtualDisk", 5010 }, 5011 UnitInfo: &types.ElementDescription{ 5012 Description: types.Description{ 5013 Label: "num", 5014 Summary: "Number", 5015 }, 5016 Key: "number", 5017 }, 5018 RollupType: "average", 5019 StatsType: "rate", 5020 Level: 1, 5021 PerDeviceLevel: 3, 5022 AssociatedCounterId: nil, 5023 }, 5024 { 5025 Key: 172, 5026 NameInfo: &types.ElementDescription{ 5027 Description: types.Description{ 5028 Label: "Average write requests per second", 5029 Summary: "Average number of write commands issued per second to the virtual disk during the collection interval", 5030 }, 5031 Key: "numberWriteAveraged", 5032 }, 5033 GroupInfo: &types.ElementDescription{ 5034 Description: types.Description{ 5035 Label: "Virtual disk", 5036 Summary: "Virtual disk", 5037 }, 5038 Key: "virtualDisk", 5039 }, 5040 UnitInfo: &types.ElementDescription{ 5041 Description: types.Description{ 5042 Label: "num", 5043 Summary: "Number", 5044 }, 5045 Key: "number", 5046 }, 5047 RollupType: "average", 5048 StatsType: "rate", 5049 Level: 1, 5050 PerDeviceLevel: 3, 5051 AssociatedCounterId: nil, 5052 }, 5053 { 5054 Key: 173, 5055 NameInfo: &types.ElementDescription{ 5056 Description: types.Description{ 5057 Label: "Read rate", 5058 Summary: "Rate of reading data from the virtual disk", 5059 }, 5060 Key: "read", 5061 }, 5062 GroupInfo: &types.ElementDescription{ 5063 Description: types.Description{ 5064 Label: "Virtual disk", 5065 Summary: "Virtual disk", 5066 }, 5067 Key: "virtualDisk", 5068 }, 5069 UnitInfo: &types.ElementDescription{ 5070 Description: types.Description{ 5071 Label: "KBps", 5072 Summary: "Kilobytes per second", 5073 }, 5074 Key: "kiloBytesPerSecond", 5075 }, 5076 RollupType: "average", 5077 StatsType: "rate", 5078 Level: 2, 5079 PerDeviceLevel: 2, 5080 AssociatedCounterId: nil, 5081 }, 5082 { 5083 Key: 174, 5084 NameInfo: &types.ElementDescription{ 5085 Description: types.Description{ 5086 Label: "Write rate", 5087 Summary: "Rate of writing data to the virtual disk", 5088 }, 5089 Key: "write", 5090 }, 5091 GroupInfo: &types.ElementDescription{ 5092 Description: types.Description{ 5093 Label: "Virtual disk", 5094 Summary: "Virtual disk", 5095 }, 5096 Key: "virtualDisk", 5097 }, 5098 UnitInfo: &types.ElementDescription{ 5099 Description: types.Description{ 5100 Label: "KBps", 5101 Summary: "Kilobytes per second", 5102 }, 5103 Key: "kiloBytesPerSecond", 5104 }, 5105 RollupType: "average", 5106 StatsType: "rate", 5107 Level: 2, 5108 PerDeviceLevel: 2, 5109 AssociatedCounterId: nil, 5110 }, 5111 { 5112 Key: 175, 5113 NameInfo: &types.ElementDescription{ 5114 Description: types.Description{ 5115 Label: "Read latency", 5116 Summary: "The average time a read from the virtual disk takes", 5117 }, 5118 Key: "totalReadLatency", 5119 }, 5120 GroupInfo: &types.ElementDescription{ 5121 Description: types.Description{ 5122 Label: "Virtual disk", 5123 Summary: "Virtual disk", 5124 }, 5125 Key: "virtualDisk", 5126 }, 5127 UnitInfo: &types.ElementDescription{ 5128 Description: types.Description{ 5129 Label: "ms", 5130 Summary: "Millisecond", 5131 }, 5132 Key: "millisecond", 5133 }, 5134 RollupType: "average", 5135 StatsType: "absolute", 5136 Level: 1, 5137 PerDeviceLevel: 3, 5138 AssociatedCounterId: nil, 5139 }, 5140 { 5141 Key: 176, 5142 NameInfo: &types.ElementDescription{ 5143 Description: types.Description{ 5144 Label: "Write latency", 5145 Summary: "The average time a write to the virtual disk takes", 5146 }, 5147 Key: "totalWriteLatency", 5148 }, 5149 GroupInfo: &types.ElementDescription{ 5150 Description: types.Description{ 5151 Label: "Virtual disk", 5152 Summary: "Virtual disk", 5153 }, 5154 Key: "virtualDisk", 5155 }, 5156 UnitInfo: &types.ElementDescription{ 5157 Description: types.Description{ 5158 Label: "ms", 5159 Summary: "Millisecond", 5160 }, 5161 Key: "millisecond", 5162 }, 5163 RollupType: "average", 5164 StatsType: "absolute", 5165 Level: 1, 5166 PerDeviceLevel: 3, 5167 AssociatedCounterId: nil, 5168 }, 5169 { 5170 Key: 177, 5171 NameInfo: &types.ElementDescription{ 5172 Description: types.Description{ 5173 Label: "Virtual Disk Throughput Contention", 5174 Summary: "Average amount of time for an I/O operation to complete successfully", 5175 }, 5176 Key: "throughput.cont", 5177 }, 5178 GroupInfo: &types.ElementDescription{ 5179 Description: types.Description{ 5180 Label: "Virtual disk", 5181 Summary: "Virtual disk", 5182 }, 5183 Key: "virtualDisk", 5184 }, 5185 UnitInfo: &types.ElementDescription{ 5186 Description: types.Description{ 5187 Label: "ms", 5188 Summary: "Millisecond", 5189 }, 5190 Key: "millisecond", 5191 }, 5192 RollupType: "average", 5193 StatsType: "absolute", 5194 Level: 4, 5195 PerDeviceLevel: 4, 5196 AssociatedCounterId: nil, 5197 }, 5198 { 5199 Key: 178, 5200 NameInfo: &types.ElementDescription{ 5201 Description: types.Description{ 5202 Label: "Average read requests per second", 5203 Summary: "Average number of read commands issued per second to the datastore during the collection interval", 5204 }, 5205 Key: "numberReadAveraged", 5206 }, 5207 GroupInfo: &types.ElementDescription{ 5208 Description: types.Description{ 5209 Label: "Datastore", 5210 Summary: "Datastore", 5211 }, 5212 Key: "datastore", 5213 }, 5214 UnitInfo: &types.ElementDescription{ 5215 Description: types.Description{ 5216 Label: "num", 5217 Summary: "Number", 5218 }, 5219 Key: "number", 5220 }, 5221 RollupType: "average", 5222 StatsType: "rate", 5223 Level: 1, 5224 PerDeviceLevel: 3, 5225 AssociatedCounterId: nil, 5226 }, 5227 { 5228 Key: 179, 5229 NameInfo: &types.ElementDescription{ 5230 Description: types.Description{ 5231 Label: "Average write requests per second", 5232 Summary: "Average number of write commands issued per second to the datastore during the collection interval", 5233 }, 5234 Key: "numberWriteAveraged", 5235 }, 5236 GroupInfo: &types.ElementDescription{ 5237 Description: types.Description{ 5238 Label: "Datastore", 5239 Summary: "Datastore", 5240 }, 5241 Key: "datastore", 5242 }, 5243 UnitInfo: &types.ElementDescription{ 5244 Description: types.Description{ 5245 Label: "num", 5246 Summary: "Number", 5247 }, 5248 Key: "number", 5249 }, 5250 RollupType: "average", 5251 StatsType: "rate", 5252 Level: 1, 5253 PerDeviceLevel: 3, 5254 AssociatedCounterId: nil, 5255 }, 5256 { 5257 Key: 180, 5258 NameInfo: &types.ElementDescription{ 5259 Description: types.Description{ 5260 Label: "Read rate", 5261 Summary: "Rate of reading data from the datastore", 5262 }, 5263 Key: "read", 5264 }, 5265 GroupInfo: &types.ElementDescription{ 5266 Description: types.Description{ 5267 Label: "Datastore", 5268 Summary: "Datastore", 5269 }, 5270 Key: "datastore", 5271 }, 5272 UnitInfo: &types.ElementDescription{ 5273 Description: types.Description{ 5274 Label: "KBps", 5275 Summary: "Kilobytes per second", 5276 }, 5277 Key: "kiloBytesPerSecond", 5278 }, 5279 RollupType: "average", 5280 StatsType: "rate", 5281 Level: 2, 5282 PerDeviceLevel: 2, 5283 AssociatedCounterId: nil, 5284 }, 5285 { 5286 Key: 181, 5287 NameInfo: &types.ElementDescription{ 5288 Description: types.Description{ 5289 Label: "Write rate", 5290 Summary: "Rate of writing data to the datastore", 5291 }, 5292 Key: "write", 5293 }, 5294 GroupInfo: &types.ElementDescription{ 5295 Description: types.Description{ 5296 Label: "Datastore", 5297 Summary: "Datastore", 5298 }, 5299 Key: "datastore", 5300 }, 5301 UnitInfo: &types.ElementDescription{ 5302 Description: types.Description{ 5303 Label: "KBps", 5304 Summary: "Kilobytes per second", 5305 }, 5306 Key: "kiloBytesPerSecond", 5307 }, 5308 RollupType: "average", 5309 StatsType: "rate", 5310 Level: 2, 5311 PerDeviceLevel: 2, 5312 AssociatedCounterId: nil, 5313 }, 5314 { 5315 Key: 182, 5316 NameInfo: &types.ElementDescription{ 5317 Description: types.Description{ 5318 Label: "Read latency", 5319 Summary: "The average time a read from the datastore takes", 5320 }, 5321 Key: "totalReadLatency", 5322 }, 5323 GroupInfo: &types.ElementDescription{ 5324 Description: types.Description{ 5325 Label: "Datastore", 5326 Summary: "Datastore", 5327 }, 5328 Key: "datastore", 5329 }, 5330 UnitInfo: &types.ElementDescription{ 5331 Description: types.Description{ 5332 Label: "ms", 5333 Summary: "Millisecond", 5334 }, 5335 Key: "millisecond", 5336 }, 5337 RollupType: "average", 5338 StatsType: "absolute", 5339 Level: 1, 5340 PerDeviceLevel: 3, 5341 AssociatedCounterId: nil, 5342 }, 5343 { 5344 Key: 183, 5345 NameInfo: &types.ElementDescription{ 5346 Description: types.Description{ 5347 Label: "Write latency", 5348 Summary: "The average time a write to the datastore takes", 5349 }, 5350 Key: "totalWriteLatency", 5351 }, 5352 GroupInfo: &types.ElementDescription{ 5353 Description: types.Description{ 5354 Label: "Datastore", 5355 Summary: "Datastore", 5356 }, 5357 Key: "datastore", 5358 }, 5359 UnitInfo: &types.ElementDescription{ 5360 Description: types.Description{ 5361 Label: "ms", 5362 Summary: "Millisecond", 5363 }, 5364 Key: "millisecond", 5365 }, 5366 RollupType: "average", 5367 StatsType: "absolute", 5368 Level: 1, 5369 PerDeviceLevel: 3, 5370 AssociatedCounterId: nil, 5371 }, 5372 { 5373 Key: 184, 5374 NameInfo: &types.ElementDescription{ 5375 Description: types.Description{ 5376 Label: "Highest latency", 5377 Summary: "Highest latency value across all datastores used by the host", 5378 }, 5379 Key: "maxTotalLatency", 5380 }, 5381 GroupInfo: &types.ElementDescription{ 5382 Description: types.Description{ 5383 Label: "Datastore", 5384 Summary: "Datastore", 5385 }, 5386 Key: "datastore", 5387 }, 5388 UnitInfo: &types.ElementDescription{ 5389 Description: types.Description{ 5390 Label: "ms", 5391 Summary: "Millisecond", 5392 }, 5393 Key: "millisecond", 5394 }, 5395 RollupType: "latest", 5396 StatsType: "absolute", 5397 Level: 3, 5398 PerDeviceLevel: 3, 5399 AssociatedCounterId: nil, 5400 }, 5401 { 5402 Key: 185, 5403 NameInfo: &types.ElementDescription{ 5404 Description: types.Description{ 5405 Label: "Storage I/O Control aggregated IOPS", 5406 Summary: "Storage I/O Control aggregated IOPS", 5407 }, 5408 Key: "datastoreIops", 5409 }, 5410 GroupInfo: &types.ElementDescription{ 5411 Description: types.Description{ 5412 Label: "Datastore", 5413 Summary: "Datastore", 5414 }, 5415 Key: "datastore", 5416 }, 5417 UnitInfo: &types.ElementDescription{ 5418 Description: types.Description{ 5419 Label: "num", 5420 Summary: "Number", 5421 }, 5422 Key: "number", 5423 }, 5424 RollupType: "average", 5425 StatsType: "absolute", 5426 Level: 1, 5427 PerDeviceLevel: 3, 5428 AssociatedCounterId: nil, 5429 }, 5430 { 5431 Key: 186, 5432 NameInfo: &types.ElementDescription{ 5433 Description: types.Description{ 5434 Label: "Storage I/O Control normalized latency", 5435 Summary: "Storage I/O Control size-normalized I/O latency", 5436 }, 5437 Key: "sizeNormalizedDatastoreLatency", 5438 }, 5439 GroupInfo: &types.ElementDescription{ 5440 Description: types.Description{ 5441 Label: "Datastore", 5442 Summary: "Datastore", 5443 }, 5444 Key: "datastore", 5445 }, 5446 UnitInfo: &types.ElementDescription{ 5447 Description: types.Description{ 5448 Label: "µs", 5449 Summary: "Microsecond", 5450 }, 5451 Key: "microsecond", 5452 }, 5453 RollupType: "average", 5454 StatsType: "absolute", 5455 Level: 1, 5456 PerDeviceLevel: 3, 5457 AssociatedCounterId: nil, 5458 }, 5459 { 5460 Key: 187, 5461 NameInfo: &types.ElementDescription{ 5462 Description: types.Description{ 5463 Label: "usage", 5464 Summary: "usage", 5465 }, 5466 Key: "throughput.usage", 5467 }, 5468 GroupInfo: &types.ElementDescription{ 5469 Description: types.Description{ 5470 Label: "Datastore", 5471 Summary: "Datastore", 5472 }, 5473 Key: "datastore", 5474 }, 5475 UnitInfo: &types.ElementDescription{ 5476 Description: types.Description{ 5477 Label: "KBps", 5478 Summary: "Kilobytes per second", 5479 }, 5480 Key: "kiloBytesPerSecond", 5481 }, 5482 RollupType: "average", 5483 StatsType: "absolute", 5484 Level: 4, 5485 PerDeviceLevel: 4, 5486 AssociatedCounterId: nil, 5487 }, 5488 { 5489 Key: 188, 5490 NameInfo: &types.ElementDescription{ 5491 Description: types.Description{ 5492 Label: "contention", 5493 Summary: "contention", 5494 }, 5495 Key: "throughput.contention", 5496 }, 5497 GroupInfo: &types.ElementDescription{ 5498 Description: types.Description{ 5499 Label: "Datastore", 5500 Summary: "Datastore", 5501 }, 5502 Key: "datastore", 5503 }, 5504 UnitInfo: &types.ElementDescription{ 5505 Description: types.Description{ 5506 Label: "ms", 5507 Summary: "Millisecond", 5508 }, 5509 Key: "millisecond", 5510 }, 5511 RollupType: "average", 5512 StatsType: "absolute", 5513 Level: 4, 5514 PerDeviceLevel: 4, 5515 AssociatedCounterId: nil, 5516 }, 5517 { 5518 Key: 189, 5519 NameInfo: &types.ElementDescription{ 5520 Description: types.Description{ 5521 Label: "busResets", 5522 Summary: "busResets", 5523 }, 5524 Key: "busResets", 5525 }, 5526 GroupInfo: &types.ElementDescription{ 5527 Description: types.Description{ 5528 Label: "Datastore", 5529 Summary: "Datastore", 5530 }, 5531 Key: "datastore", 5532 }, 5533 UnitInfo: &types.ElementDescription{ 5534 Description: types.Description{ 5535 Label: "num", 5536 Summary: "Number", 5537 }, 5538 Key: "number", 5539 }, 5540 RollupType: "summation", 5541 StatsType: "delta", 5542 Level: 2, 5543 PerDeviceLevel: 2, 5544 AssociatedCounterId: nil, 5545 }, 5546 { 5547 Key: 190, 5548 NameInfo: &types.ElementDescription{ 5549 Description: types.Description{ 5550 Label: "commandsAborted", 5551 Summary: "commandsAborted", 5552 }, 5553 Key: "commandsAborted", 5554 }, 5555 GroupInfo: &types.ElementDescription{ 5556 Description: types.Description{ 5557 Label: "Datastore", 5558 Summary: "Datastore", 5559 }, 5560 Key: "datastore", 5561 }, 5562 UnitInfo: &types.ElementDescription{ 5563 Description: types.Description{ 5564 Label: "num", 5565 Summary: "Number", 5566 }, 5567 Key: "number", 5568 }, 5569 RollupType: "summation", 5570 StatsType: "delta", 5571 Level: 2, 5572 PerDeviceLevel: 2, 5573 AssociatedCounterId: nil, 5574 }, 5575 { 5576 Key: 191, 5577 NameInfo: &types.ElementDescription{ 5578 Description: types.Description{ 5579 Label: "Storage I/O Control active time percentage", 5580 Summary: "Percentage of time Storage I/O Control actively controlled datastore latency", 5581 }, 5582 Key: "siocActiveTimePercentage", 5583 }, 5584 GroupInfo: &types.ElementDescription{ 5585 Description: types.Description{ 5586 Label: "Datastore", 5587 Summary: "Datastore", 5588 }, 5589 Key: "datastore", 5590 }, 5591 UnitInfo: &types.ElementDescription{ 5592 Description: types.Description{ 5593 Label: "%", 5594 Summary: "Percentage", 5595 }, 5596 Key: "percent", 5597 }, 5598 RollupType: "average", 5599 StatsType: "absolute", 5600 Level: 1, 5601 PerDeviceLevel: 3, 5602 AssociatedCounterId: nil, 5603 }, 5604 { 5605 Key: 192, 5606 NameInfo: &types.ElementDescription{ 5607 Description: types.Description{ 5608 Label: "Storage Path Throughput Contention", 5609 Summary: "Average amount of time for an I/O operation to complete successfully", 5610 }, 5611 Key: "throughput.cont", 5612 }, 5613 GroupInfo: &types.ElementDescription{ 5614 Description: types.Description{ 5615 Label: "Storage path", 5616 Summary: "Storage path", 5617 }, 5618 Key: "storagePath", 5619 }, 5620 UnitInfo: &types.ElementDescription{ 5621 Description: types.Description{ 5622 Label: "ms", 5623 Summary: "Millisecond", 5624 }, 5625 Key: "millisecond", 5626 }, 5627 RollupType: "average", 5628 StatsType: "absolute", 5629 Level: 4, 5630 PerDeviceLevel: 4, 5631 AssociatedCounterId: nil, 5632 }, 5633 { 5634 Key: 193, 5635 NameInfo: &types.ElementDescription{ 5636 Description: types.Description{ 5637 Label: "Highest latency", 5638 Summary: "Highest latency value across all storage paths used by the host", 5639 }, 5640 Key: "maxTotalLatency", 5641 }, 5642 GroupInfo: &types.ElementDescription{ 5643 Description: types.Description{ 5644 Label: "Storage path", 5645 Summary: "Storage path", 5646 }, 5647 Key: "storagePath", 5648 }, 5649 UnitInfo: &types.ElementDescription{ 5650 Description: types.Description{ 5651 Label: "ms", 5652 Summary: "Millisecond", 5653 }, 5654 Key: "millisecond", 5655 }, 5656 RollupType: "latest", 5657 StatsType: "absolute", 5658 Level: 3, 5659 PerDeviceLevel: 3, 5660 AssociatedCounterId: nil, 5661 }, 5662 { 5663 Key: 194, 5664 NameInfo: &types.ElementDescription{ 5665 Description: types.Description{ 5666 Label: "Virtual Disk Throughput Usage", 5667 Summary: "Virtual disk I/O rate", 5668 }, 5669 Key: "throughput.usage", 5670 }, 5671 GroupInfo: &types.ElementDescription{ 5672 Description: types.Description{ 5673 Label: "Virtual disk", 5674 Summary: "Virtual disk", 5675 }, 5676 Key: "virtualDisk", 5677 }, 5678 UnitInfo: &types.ElementDescription{ 5679 Description: types.Description{ 5680 Label: "KBps", 5681 Summary: "Kilobytes per second", 5682 }, 5683 Key: "kiloBytesPerSecond", 5684 }, 5685 RollupType: "average", 5686 StatsType: "rate", 5687 Level: 4, 5688 PerDeviceLevel: 4, 5689 AssociatedCounterId: nil, 5690 }, 5691 { 5692 Key: 195, 5693 NameInfo: &types.ElementDescription{ 5694 Description: types.Description{ 5695 Label: "Virtual Disk Number of Terminations", 5696 Summary: "Number of terminations to a virtual disk", 5697 }, 5698 Key: "commandsAborted", 5699 }, 5700 GroupInfo: &types.ElementDescription{ 5701 Description: types.Description{ 5702 Label: "Virtual disk", 5703 Summary: "Virtual disk", 5704 }, 5705 Key: "virtualDisk", 5706 }, 5707 UnitInfo: &types.ElementDescription{ 5708 Description: types.Description{ 5709 Label: "num", 5710 Summary: "Number", 5711 }, 5712 Key: "number", 5713 }, 5714 RollupType: "summation", 5715 StatsType: "delta", 5716 Level: 2, 5717 PerDeviceLevel: 4, 5718 AssociatedCounterId: nil, 5719 }, 5720 { 5721 Key: 196, 5722 NameInfo: &types.ElementDescription{ 5723 Description: types.Description{ 5724 Label: "Virtual Disk Number of Resets", 5725 Summary: "Number of resets to a virtual disk", 5726 }, 5727 Key: "busResets", 5728 }, 5729 GroupInfo: &types.ElementDescription{ 5730 Description: types.Description{ 5731 Label: "Virtual disk", 5732 Summary: "Virtual disk", 5733 }, 5734 Key: "virtualDisk", 5735 }, 5736 UnitInfo: &types.ElementDescription{ 5737 Description: types.Description{ 5738 Label: "num", 5739 Summary: "Number", 5740 }, 5741 Key: "number", 5742 }, 5743 RollupType: "summation", 5744 StatsType: "delta", 5745 Level: 2, 5746 PerDeviceLevel: 4, 5747 AssociatedCounterId: nil, 5748 }, 5749 { 5750 Key: 197, 5751 NameInfo: &types.ElementDescription{ 5752 Description: types.Description{ 5753 Label: "Storage Adapter Outstanding I/Os", 5754 Summary: "The number of I/Os that have been issued but have not yet completed", 5755 }, 5756 Key: "outstandingIOs", 5757 }, 5758 GroupInfo: &types.ElementDescription{ 5759 Description: types.Description{ 5760 Label: "Storage adapter", 5761 Summary: "Storage adapter", 5762 }, 5763 Key: "storageAdapter", 5764 }, 5765 UnitInfo: &types.ElementDescription{ 5766 Description: types.Description{ 5767 Label: "num", 5768 Summary: "Number", 5769 }, 5770 Key: "number", 5771 }, 5772 RollupType: "average", 5773 StatsType: "absolute", 5774 Level: 2, 5775 PerDeviceLevel: 2, 5776 AssociatedCounterId: nil, 5777 }, 5778 { 5779 Key: 198, 5780 NameInfo: &types.ElementDescription{ 5781 Description: types.Description{ 5782 Label: "Storage Adapter Number Queued", 5783 Summary: "The current number of I/Os that are waiting to be issued", 5784 }, 5785 Key: "queued", 5786 }, 5787 GroupInfo: &types.ElementDescription{ 5788 Description: types.Description{ 5789 Label: "Storage adapter", 5790 Summary: "Storage adapter", 5791 }, 5792 Key: "storageAdapter", 5793 }, 5794 UnitInfo: &types.ElementDescription{ 5795 Description: types.Description{ 5796 Label: "num", 5797 Summary: "Number", 5798 }, 5799 Key: "number", 5800 }, 5801 RollupType: "average", 5802 StatsType: "absolute", 5803 Level: 2, 5804 PerDeviceLevel: 2, 5805 AssociatedCounterId: nil, 5806 }, 5807 { 5808 Key: 199, 5809 NameInfo: &types.ElementDescription{ 5810 Description: types.Description{ 5811 Label: "Storage Adapter Queue Depth", 5812 Summary: "The maximum number of I/Os that can be outstanding at a given time", 5813 }, 5814 Key: "queueDepth", 5815 }, 5816 GroupInfo: &types.ElementDescription{ 5817 Description: types.Description{ 5818 Label: "Storage adapter", 5819 Summary: "Storage adapter", 5820 }, 5821 Key: "storageAdapter", 5822 }, 5823 UnitInfo: &types.ElementDescription{ 5824 Description: types.Description{ 5825 Label: "num", 5826 Summary: "Number", 5827 }, 5828 Key: "number", 5829 }, 5830 RollupType: "average", 5831 StatsType: "absolute", 5832 Level: 2, 5833 PerDeviceLevel: 2, 5834 AssociatedCounterId: nil, 5835 }, 5836 { 5837 Key: 200, 5838 NameInfo: &types.ElementDescription{ 5839 Description: types.Description{ 5840 Label: "Storage Adapter Queue Command Latency", 5841 Summary: "Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval", 5842 }, 5843 Key: "queueLatency", 5844 }, 5845 GroupInfo: &types.ElementDescription{ 5846 Description: types.Description{ 5847 Label: "Storage adapter", 5848 Summary: "Storage adapter", 5849 }, 5850 Key: "storageAdapter", 5851 }, 5852 UnitInfo: &types.ElementDescription{ 5853 Description: types.Description{ 5854 Label: "ms", 5855 Summary: "Millisecond", 5856 }, 5857 Key: "millisecond", 5858 }, 5859 RollupType: "average", 5860 StatsType: "absolute", 5861 Level: 2, 5862 PerDeviceLevel: 2, 5863 AssociatedCounterId: nil, 5864 }, 5865 { 5866 Key: 201, 5867 NameInfo: &types.ElementDescription{ 5868 Description: types.Description{ 5869 Label: "Storage Adapter Throughput Usage", 5870 Summary: "The storage adapter's I/O rate", 5871 }, 5872 Key: "throughput.usag", 5873 }, 5874 GroupInfo: &types.ElementDescription{ 5875 Description: types.Description{ 5876 Label: "Storage adapter", 5877 Summary: "Storage adapter", 5878 }, 5879 Key: "storageAdapter", 5880 }, 5881 UnitInfo: &types.ElementDescription{ 5882 Description: types.Description{ 5883 Label: "KBps", 5884 Summary: "Kilobytes per second", 5885 }, 5886 Key: "kiloBytesPerSecond", 5887 }, 5888 RollupType: "average", 5889 StatsType: "rate", 5890 Level: 4, 5891 PerDeviceLevel: 4, 5892 AssociatedCounterId: nil, 5893 }, 5894 { 5895 Key: 202, 5896 NameInfo: &types.ElementDescription{ 5897 Description: types.Description{ 5898 Label: "Storage Path Bus Resets", 5899 Summary: "Number of SCSI-bus reset commands issued during the collection interval", 5900 }, 5901 Key: "busResets", 5902 }, 5903 GroupInfo: &types.ElementDescription{ 5904 Description: types.Description{ 5905 Label: "Storage path", 5906 Summary: "Storage path", 5907 }, 5908 Key: "storagePath", 5909 }, 5910 UnitInfo: &types.ElementDescription{ 5911 Description: types.Description{ 5912 Label: "num", 5913 Summary: "Number", 5914 }, 5915 Key: "number", 5916 }, 5917 RollupType: "summation", 5918 StatsType: "delta", 5919 Level: 2, 5920 PerDeviceLevel: 3, 5921 AssociatedCounterId: nil, 5922 }, 5923 { 5924 Key: 203, 5925 NameInfo: &types.ElementDescription{ 5926 Description: types.Description{ 5927 Label: "Storage Path Command Terminations", 5928 Summary: "Number of SCSI commands terminated during the collection interval", 5929 }, 5930 Key: "commandsAborted", 5931 }, 5932 GroupInfo: &types.ElementDescription{ 5933 Description: types.Description{ 5934 Label: "Storage path", 5935 Summary: "Storage path", 5936 }, 5937 Key: "storagePath", 5938 }, 5939 UnitInfo: &types.ElementDescription{ 5940 Description: types.Description{ 5941 Label: "num", 5942 Summary: "Number", 5943 }, 5944 Key: "number", 5945 }, 5946 RollupType: "summation", 5947 StatsType: "delta", 5948 Level: 2, 5949 PerDeviceLevel: 3, 5950 AssociatedCounterId: nil, 5951 }, 5952 { 5953 Key: 204, 5954 NameInfo: &types.ElementDescription{ 5955 Description: types.Description{ 5956 Label: "Storage Path Throughput Usage", 5957 Summary: "Storage path I/O rate", 5958 }, 5959 Key: "throughput.usage", 5960 }, 5961 GroupInfo: &types.ElementDescription{ 5962 Description: types.Description{ 5963 Label: "Storage path", 5964 Summary: "Storage path", 5965 }, 5966 Key: "storagePath", 5967 }, 5968 UnitInfo: &types.ElementDescription{ 5969 Description: types.Description{ 5970 Label: "KBps", 5971 Summary: "Kilobytes per second", 5972 }, 5973 Key: "kiloBytesPerSecond", 5974 }, 5975 RollupType: "average", 5976 StatsType: "rate", 5977 Level: 4, 5978 PerDeviceLevel: 4, 5979 AssociatedCounterId: nil, 5980 }, 5981 { 5982 Key: 205, 5983 NameInfo: &types.ElementDescription{ 5984 Description: types.Description{ 5985 Label: "pNic Throughput Usage for VMs", 5986 Summary: "Average pNic I/O rate for VMs", 5987 }, 5988 Key: "throughput.usage.vm", 5989 }, 5990 GroupInfo: &types.ElementDescription{ 5991 Description: types.Description{ 5992 Label: "Network", 5993 Summary: "Network", 5994 }, 5995 Key: "net", 5996 }, 5997 UnitInfo: &types.ElementDescription{ 5998 Description: types.Description{ 5999 Label: "KBps", 6000 Summary: "Kilobytes per second", 6001 }, 6002 Key: "kiloBytesPerSecond", 6003 }, 6004 RollupType: "average", 6005 StatsType: "rate", 6006 Level: 3, 6007 PerDeviceLevel: 3, 6008 AssociatedCounterId: nil, 6009 }, 6010 { 6011 Key: 206, 6012 NameInfo: &types.ElementDescription{ 6013 Description: types.Description{ 6014 Label: "pNic Throughput Usage for NFS", 6015 Summary: "Average pNic I/O rate for NFS", 6016 }, 6017 Key: "throughput.usage.nfs", 6018 }, 6019 GroupInfo: &types.ElementDescription{ 6020 Description: types.Description{ 6021 Label: "Network", 6022 Summary: "Network", 6023 }, 6024 Key: "net", 6025 }, 6026 UnitInfo: &types.ElementDescription{ 6027 Description: types.Description{ 6028 Label: "KBps", 6029 Summary: "Kilobytes per second", 6030 }, 6031 Key: "kiloBytesPerSecond", 6032 }, 6033 RollupType: "average", 6034 StatsType: "rate", 6035 Level: 3, 6036 PerDeviceLevel: 3, 6037 AssociatedCounterId: nil, 6038 }, 6039 { 6040 Key: 207, 6041 NameInfo: &types.ElementDescription{ 6042 Description: types.Description{ 6043 Label: "pNic Throughput Usage for vMotion", 6044 Summary: "Average pNic I/O rate for vMotion", 6045 }, 6046 Key: "throughput.usage.vmotion", 6047 }, 6048 GroupInfo: &types.ElementDescription{ 6049 Description: types.Description{ 6050 Label: "Network", 6051 Summary: "Network", 6052 }, 6053 Key: "net", 6054 }, 6055 UnitInfo: &types.ElementDescription{ 6056 Description: types.Description{ 6057 Label: "KBps", 6058 Summary: "Kilobytes per second", 6059 }, 6060 Key: "kiloBytesPerSecond", 6061 }, 6062 RollupType: "average", 6063 StatsType: "rate", 6064 Level: 3, 6065 PerDeviceLevel: 3, 6066 AssociatedCounterId: nil, 6067 }, 6068 { 6069 Key: 208, 6070 NameInfo: &types.ElementDescription{ 6071 Description: types.Description{ 6072 Label: "pNic Throughput Usage for FT", 6073 Summary: "Average pNic I/O rate for FT", 6074 }, 6075 Key: "throughput.usage.ft", 6076 }, 6077 GroupInfo: &types.ElementDescription{ 6078 Description: types.Description{ 6079 Label: "Network", 6080 Summary: "Network", 6081 }, 6082 Key: "net", 6083 }, 6084 UnitInfo: &types.ElementDescription{ 6085 Description: types.Description{ 6086 Label: "KBps", 6087 Summary: "Kilobytes per second", 6088 }, 6089 Key: "kiloBytesPerSecond", 6090 }, 6091 RollupType: "average", 6092 StatsType: "rate", 6093 Level: 3, 6094 PerDeviceLevel: 3, 6095 AssociatedCounterId: nil, 6096 }, 6097 { 6098 Key: 209, 6099 NameInfo: &types.ElementDescription{ 6100 Description: types.Description{ 6101 Label: "pNic Throughput Usage for iSCSI", 6102 Summary: "Average pNic I/O rate for iSCSI", 6103 }, 6104 Key: "throughput.usage.iscsi", 6105 }, 6106 GroupInfo: &types.ElementDescription{ 6107 Description: types.Description{ 6108 Label: "Network", 6109 Summary: "Network", 6110 }, 6111 Key: "net", 6112 }, 6113 UnitInfo: &types.ElementDescription{ 6114 Description: types.Description{ 6115 Label: "KBps", 6116 Summary: "Kilobytes per second", 6117 }, 6118 Key: "kiloBytesPerSecond", 6119 }, 6120 RollupType: "average", 6121 StatsType: "rate", 6122 Level: 3, 6123 PerDeviceLevel: 3, 6124 AssociatedCounterId: nil, 6125 }, 6126 { 6127 Key: 210, 6128 NameInfo: &types.ElementDescription{ 6129 Description: types.Description{ 6130 Label: "pNic Throughput Usage for HBR", 6131 Summary: "Average pNic I/O rate for HBR", 6132 }, 6133 Key: "throughput.usage.hbr", 6134 }, 6135 GroupInfo: &types.ElementDescription{ 6136 Description: types.Description{ 6137 Label: "Network", 6138 Summary: "Network", 6139 }, 6140 Key: "net", 6141 }, 6142 UnitInfo: &types.ElementDescription{ 6143 Description: types.Description{ 6144 Label: "KBps", 6145 Summary: "Kilobytes per second", 6146 }, 6147 Key: "kiloBytesPerSecond", 6148 }, 6149 RollupType: "average", 6150 StatsType: "rate", 6151 Level: 3, 6152 PerDeviceLevel: 3, 6153 AssociatedCounterId: nil, 6154 }, 6155 { 6156 Key: 211, 6157 NameInfo: &types.ElementDescription{ 6158 Description: types.Description{ 6159 Label: "Host Power Capacity Usable", 6160 Summary: "Current maximum allowed power usage.", 6161 }, 6162 Key: "capacity.usable", 6163 }, 6164 GroupInfo: &types.ElementDescription{ 6165 Description: types.Description{ 6166 Label: "Power", 6167 Summary: "Power", 6168 }, 6169 Key: "power", 6170 }, 6171 UnitInfo: &types.ElementDescription{ 6172 Description: types.Description{ 6173 Label: "W", 6174 Summary: "Watt", 6175 }, 6176 Key: "watt", 6177 }, 6178 RollupType: "average", 6179 StatsType: "absolute", 6180 Level: 4, 6181 PerDeviceLevel: 4, 6182 AssociatedCounterId: nil, 6183 }, 6184 { 6185 Key: 212, 6186 NameInfo: &types.ElementDescription{ 6187 Description: types.Description{ 6188 Label: "Host Power Capacity Usage", 6189 Summary: "Current power usage", 6190 }, 6191 Key: "capacity.usage", 6192 }, 6193 GroupInfo: &types.ElementDescription{ 6194 Description: types.Description{ 6195 Label: "Power", 6196 Summary: "Power", 6197 }, 6198 Key: "power", 6199 }, 6200 UnitInfo: &types.ElementDescription{ 6201 Description: types.Description{ 6202 Label: "W", 6203 Summary: "Watt", 6204 }, 6205 Key: "watt", 6206 }, 6207 RollupType: "average", 6208 StatsType: "absolute", 6209 Level: 4, 6210 PerDeviceLevel: 4, 6211 AssociatedCounterId: nil, 6212 }, 6213 { 6214 Key: 213, 6215 NameInfo: &types.ElementDescription{ 6216 Description: types.Description{ 6217 Label: "Worst case allocation", 6218 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", 6219 }, 6220 Key: "cpuentitlement", 6221 }, 6222 GroupInfo: &types.ElementDescription{ 6223 Description: types.Description{ 6224 Label: "CPU", 6225 Summary: "CPU", 6226 }, 6227 Key: "cpu", 6228 }, 6229 UnitInfo: &types.ElementDescription{ 6230 Description: types.Description{ 6231 Label: "MHz", 6232 Summary: "Megahertz", 6233 }, 6234 Key: "megaHertz", 6235 }, 6236 RollupType: "latest", 6237 StatsType: "absolute", 6238 Level: 2, 6239 PerDeviceLevel: 3, 6240 AssociatedCounterId: nil, 6241 }, 6242 { 6243 Key: 214, 6244 NameInfo: &types.ElementDescription{ 6245 Description: types.Description{ 6246 Label: "Entitlement", 6247 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", 6248 }, 6249 Key: "mementitlement", 6250 }, 6251 GroupInfo: &types.ElementDescription{ 6252 Description: types.Description{ 6253 Label: "Memory", 6254 Summary: "Memory", 6255 }, 6256 Key: "mem", 6257 }, 6258 UnitInfo: &types.ElementDescription{ 6259 Description: types.Description{ 6260 Label: "MB", 6261 Summary: "Megabyte", 6262 }, 6263 Key: "megaBytes", 6264 }, 6265 RollupType: "latest", 6266 StatsType: "absolute", 6267 Level: 2, 6268 PerDeviceLevel: 3, 6269 AssociatedCounterId: nil, 6270 }, 6271 { 6272 Key: 215, 6273 NameInfo: &types.ElementDescription{ 6274 Description: types.Description{ 6275 Label: "CPU fairness", 6276 Summary: "Fairness of distributed CPU resource allocation", 6277 }, 6278 Key: "cpufairness", 6279 }, 6280 GroupInfo: &types.ElementDescription{ 6281 Description: types.Description{ 6282 Label: "Cluster services", 6283 Summary: "Cluster services", 6284 }, 6285 Key: "clusterServices", 6286 }, 6287 UnitInfo: &types.ElementDescription{ 6288 Description: types.Description{ 6289 Label: "num", 6290 Summary: "Number", 6291 }, 6292 Key: "number", 6293 }, 6294 RollupType: "latest", 6295 StatsType: "absolute", 6296 Level: 1, 6297 PerDeviceLevel: 3, 6298 AssociatedCounterId: nil, 6299 }, 6300 { 6301 Key: 216, 6302 NameInfo: &types.ElementDescription{ 6303 Description: types.Description{ 6304 Label: "Memory fairness", 6305 Summary: "Aggregate available memory resources of all the hosts within a cluster", 6306 }, 6307 Key: "memfairness", 6308 }, 6309 GroupInfo: &types.ElementDescription{ 6310 Description: types.Description{ 6311 Label: "Cluster services", 6312 Summary: "Cluster services", 6313 }, 6314 Key: "clusterServices", 6315 }, 6316 UnitInfo: &types.ElementDescription{ 6317 Description: types.Description{ 6318 Label: "num", 6319 Summary: "Number", 6320 }, 6321 Key: "number", 6322 }, 6323 RollupType: "latest", 6324 StatsType: "absolute", 6325 Level: 1, 6326 PerDeviceLevel: 3, 6327 AssociatedCounterId: nil, 6328 }, 6329 { 6330 Key: 217, 6331 NameInfo: &types.ElementDescription{ 6332 Description: types.Description{ 6333 Label: "VDS Packets Throughput Transmitted", 6334 Summary: "The rate of transmitted packets for this VDS", 6335 }, 6336 Key: "throughput.pktsTx", 6337 }, 6338 GroupInfo: &types.ElementDescription{ 6339 Description: types.Description{ 6340 Label: "Network", 6341 Summary: "Network", 6342 }, 6343 Key: "net", 6344 }, 6345 UnitInfo: &types.ElementDescription{ 6346 Description: types.Description{ 6347 Label: "num", 6348 Summary: "Number", 6349 }, 6350 Key: "number", 6351 }, 6352 RollupType: "average", 6353 StatsType: "absolute", 6354 Level: 3, 6355 PerDeviceLevel: 3, 6356 AssociatedCounterId: nil, 6357 }, 6358 { 6359 Key: 218, 6360 NameInfo: &types.ElementDescription{ 6361 Description: types.Description{ 6362 Label: "VDS Multicast Packets Throughput Transmitted", 6363 Summary: "The rate of transmitted Multicast packets for this VDS", 6364 }, 6365 Key: "throughput.pktsTxMulticast", 6366 }, 6367 GroupInfo: &types.ElementDescription{ 6368 Description: types.Description{ 6369 Label: "Network", 6370 Summary: "Network", 6371 }, 6372 Key: "net", 6373 }, 6374 UnitInfo: &types.ElementDescription{ 6375 Description: types.Description{ 6376 Label: "num", 6377 Summary: "Number", 6378 }, 6379 Key: "number", 6380 }, 6381 RollupType: "average", 6382 StatsType: "absolute", 6383 Level: 3, 6384 PerDeviceLevel: 3, 6385 AssociatedCounterId: nil, 6386 }, 6387 { 6388 Key: 219, 6389 NameInfo: &types.ElementDescription{ 6390 Description: types.Description{ 6391 Label: "VDS Broadcast Packets Throughput Transmitted", 6392 Summary: "The rate of transmitted Broadcast packets for this VDS", 6393 }, 6394 Key: "throughput.pktsTxBroadcast", 6395 }, 6396 GroupInfo: &types.ElementDescription{ 6397 Description: types.Description{ 6398 Label: "Network", 6399 Summary: "Network", 6400 }, 6401 Key: "net", 6402 }, 6403 UnitInfo: &types.ElementDescription{ 6404 Description: types.Description{ 6405 Label: "num", 6406 Summary: "Number", 6407 }, 6408 Key: "number", 6409 }, 6410 RollupType: "average", 6411 StatsType: "absolute", 6412 Level: 3, 6413 PerDeviceLevel: 3, 6414 AssociatedCounterId: nil, 6415 }, 6416 { 6417 Key: 220, 6418 NameInfo: &types.ElementDescription{ 6419 Description: types.Description{ 6420 Label: "VDS Packets Throughput Received", 6421 Summary: "The rate of received packets for this vDS", 6422 }, 6423 Key: "throughput.pktsRx", 6424 }, 6425 GroupInfo: &types.ElementDescription{ 6426 Description: types.Description{ 6427 Label: "Network", 6428 Summary: "Network", 6429 }, 6430 Key: "net", 6431 }, 6432 UnitInfo: &types.ElementDescription{ 6433 Description: types.Description{ 6434 Label: "num", 6435 Summary: "Number", 6436 }, 6437 Key: "number", 6438 }, 6439 RollupType: "average", 6440 StatsType: "absolute", 6441 Level: 3, 6442 PerDeviceLevel: 3, 6443 AssociatedCounterId: nil, 6444 }, 6445 { 6446 Key: 221, 6447 NameInfo: &types.ElementDescription{ 6448 Description: types.Description{ 6449 Label: "VDS Multicast Packets Throughput Received", 6450 Summary: "The rate of received Multicast packets for this VDS", 6451 }, 6452 Key: "throughput.pktsRxMulticast", 6453 }, 6454 GroupInfo: &types.ElementDescription{ 6455 Description: types.Description{ 6456 Label: "Network", 6457 Summary: "Network", 6458 }, 6459 Key: "net", 6460 }, 6461 UnitInfo: &types.ElementDescription{ 6462 Description: types.Description{ 6463 Label: "num", 6464 Summary: "Number", 6465 }, 6466 Key: "number", 6467 }, 6468 RollupType: "average", 6469 StatsType: "absolute", 6470 Level: 3, 6471 PerDeviceLevel: 3, 6472 AssociatedCounterId: nil, 6473 }, 6474 { 6475 Key: 222, 6476 NameInfo: &types.ElementDescription{ 6477 Description: types.Description{ 6478 Label: "VDS Broadcast Packets Throughput Received", 6479 Summary: "The rate of received Broadcast packets for this VDS", 6480 }, 6481 Key: "throughput.pktsRxBroadcast", 6482 }, 6483 GroupInfo: &types.ElementDescription{ 6484 Description: types.Description{ 6485 Label: "Network", 6486 Summary: "Network", 6487 }, 6488 Key: "net", 6489 }, 6490 UnitInfo: &types.ElementDescription{ 6491 Description: types.Description{ 6492 Label: "num", 6493 Summary: "Number", 6494 }, 6495 Key: "number", 6496 }, 6497 RollupType: "average", 6498 StatsType: "absolute", 6499 Level: 3, 6500 PerDeviceLevel: 3, 6501 AssociatedCounterId: nil, 6502 }, 6503 { 6504 Key: 223, 6505 NameInfo: &types.ElementDescription{ 6506 Description: types.Description{ 6507 Label: "VDS Dropped Transmitted Packets Throughput", 6508 Summary: "Count of dropped transmitted packets for this VDS", 6509 }, 6510 Key: "throughput.droppedTx", 6511 }, 6512 GroupInfo: &types.ElementDescription{ 6513 Description: types.Description{ 6514 Label: "Network", 6515 Summary: "Network", 6516 }, 6517 Key: "net", 6518 }, 6519 UnitInfo: &types.ElementDescription{ 6520 Description: types.Description{ 6521 Label: "num", 6522 Summary: "Number", 6523 }, 6524 Key: "number", 6525 }, 6526 RollupType: "average", 6527 StatsType: "absolute", 6528 Level: 3, 6529 PerDeviceLevel: 3, 6530 AssociatedCounterId: nil, 6531 }, 6532 { 6533 Key: 224, 6534 NameInfo: &types.ElementDescription{ 6535 Description: types.Description{ 6536 Label: "VDS Dropped Received Packets Throughput", 6537 Summary: "Count of dropped received packets for this VDS", 6538 }, 6539 Key: "throughput.droppedRx", 6540 }, 6541 GroupInfo: &types.ElementDescription{ 6542 Description: types.Description{ 6543 Label: "Network", 6544 Summary: "Network", 6545 }, 6546 Key: "net", 6547 }, 6548 UnitInfo: &types.ElementDescription{ 6549 Description: types.Description{ 6550 Label: "num", 6551 Summary: "Number", 6552 }, 6553 Key: "number", 6554 }, 6555 RollupType: "average", 6556 StatsType: "absolute", 6557 Level: 3, 6558 PerDeviceLevel: 3, 6559 AssociatedCounterId: nil, 6560 }, 6561 { 6562 Key: 225, 6563 NameInfo: &types.ElementDescription{ 6564 Description: types.Description{ 6565 Label: "DVPort Packets Throughput Transmitted", 6566 Summary: "The rate of transmitted packets for this DVPort", 6567 }, 6568 Key: "throughput.vds.pktsTx", 6569 }, 6570 GroupInfo: &types.ElementDescription{ 6571 Description: types.Description{ 6572 Label: "Network", 6573 Summary: "Network", 6574 }, 6575 Key: "net", 6576 }, 6577 UnitInfo: &types.ElementDescription{ 6578 Description: types.Description{ 6579 Label: "num", 6580 Summary: "Number", 6581 }, 6582 Key: "number", 6583 }, 6584 RollupType: "average", 6585 StatsType: "absolute", 6586 Level: 3, 6587 PerDeviceLevel: 3, 6588 AssociatedCounterId: nil, 6589 }, 6590 { 6591 Key: 226, 6592 NameInfo: &types.ElementDescription{ 6593 Description: types.Description{ 6594 Label: "DVPort Multicast Packets Throughput Transmitted", 6595 Summary: "The rate of transmitted multicast packets for this DVPort", 6596 }, 6597 Key: "throughput.vds.pktsTxMcast", 6598 }, 6599 GroupInfo: &types.ElementDescription{ 6600 Description: types.Description{ 6601 Label: "Network", 6602 Summary: "Network", 6603 }, 6604 Key: "net", 6605 }, 6606 UnitInfo: &types.ElementDescription{ 6607 Description: types.Description{ 6608 Label: "num", 6609 Summary: "Number", 6610 }, 6611 Key: "number", 6612 }, 6613 RollupType: "average", 6614 StatsType: "absolute", 6615 Level: 3, 6616 PerDeviceLevel: 3, 6617 AssociatedCounterId: nil, 6618 }, 6619 { 6620 Key: 227, 6621 NameInfo: &types.ElementDescription{ 6622 Description: types.Description{ 6623 Label: "DVPort Broadcast Packets Throughput Transmitted", 6624 Summary: "The rate of transmitted broadcast packets for this DVPort", 6625 }, 6626 Key: "throughput.vds.pktsTxBcast", 6627 }, 6628 GroupInfo: &types.ElementDescription{ 6629 Description: types.Description{ 6630 Label: "Network", 6631 Summary: "Network", 6632 }, 6633 Key: "net", 6634 }, 6635 UnitInfo: &types.ElementDescription{ 6636 Description: types.Description{ 6637 Label: "num", 6638 Summary: "Number", 6639 }, 6640 Key: "number", 6641 }, 6642 RollupType: "average", 6643 StatsType: "absolute", 6644 Level: 3, 6645 PerDeviceLevel: 3, 6646 AssociatedCounterId: nil, 6647 }, 6648 { 6649 Key: 228, 6650 NameInfo: &types.ElementDescription{ 6651 Description: types.Description{ 6652 Label: "DVPort Packets Throughput Received", 6653 Summary: "The rate of received packets for this DVPort", 6654 }, 6655 Key: "throughput.vds.pktsRx", 6656 }, 6657 GroupInfo: &types.ElementDescription{ 6658 Description: types.Description{ 6659 Label: "Network", 6660 Summary: "Network", 6661 }, 6662 Key: "net", 6663 }, 6664 UnitInfo: &types.ElementDescription{ 6665 Description: types.Description{ 6666 Label: "num", 6667 Summary: "Number", 6668 }, 6669 Key: "number", 6670 }, 6671 RollupType: "average", 6672 StatsType: "absolute", 6673 Level: 3, 6674 PerDeviceLevel: 3, 6675 AssociatedCounterId: nil, 6676 }, 6677 { 6678 Key: 229, 6679 NameInfo: &types.ElementDescription{ 6680 Description: types.Description{ 6681 Label: "DVPort Multicast Packets Throughput Received", 6682 Summary: "The rate of received multicast packets for this DVPort", 6683 }, 6684 Key: "throughput.vds.pktsRxMcast", 6685 }, 6686 GroupInfo: &types.ElementDescription{ 6687 Description: types.Description{ 6688 Label: "Network", 6689 Summary: "Network", 6690 }, 6691 Key: "net", 6692 }, 6693 UnitInfo: &types.ElementDescription{ 6694 Description: types.Description{ 6695 Label: "num", 6696 Summary: "Number", 6697 }, 6698 Key: "number", 6699 }, 6700 RollupType: "average", 6701 StatsType: "absolute", 6702 Level: 3, 6703 PerDeviceLevel: 3, 6704 AssociatedCounterId: nil, 6705 }, 6706 { 6707 Key: 230, 6708 NameInfo: &types.ElementDescription{ 6709 Description: types.Description{ 6710 Label: "DVPort Broadcast Packets Throughput Received", 6711 Summary: "The rate of received broadcast packets for this DVPort", 6712 }, 6713 Key: "throughput.vds.pktsRxBcast", 6714 }, 6715 GroupInfo: &types.ElementDescription{ 6716 Description: types.Description{ 6717 Label: "Network", 6718 Summary: "Network", 6719 }, 6720 Key: "net", 6721 }, 6722 UnitInfo: &types.ElementDescription{ 6723 Description: types.Description{ 6724 Label: "num", 6725 Summary: "Number", 6726 }, 6727 Key: "number", 6728 }, 6729 RollupType: "average", 6730 StatsType: "absolute", 6731 Level: 3, 6732 PerDeviceLevel: 3, 6733 AssociatedCounterId: nil, 6734 }, 6735 { 6736 Key: 231, 6737 NameInfo: &types.ElementDescription{ 6738 Description: types.Description{ 6739 Label: "DVPort dropped transmitted packets throughput", 6740 Summary: "Count of dropped transmitted packets for this DVPort", 6741 }, 6742 Key: "throughput.vds.droppedTx", 6743 }, 6744 GroupInfo: &types.ElementDescription{ 6745 Description: types.Description{ 6746 Label: "Network", 6747 Summary: "Network", 6748 }, 6749 Key: "net", 6750 }, 6751 UnitInfo: &types.ElementDescription{ 6752 Description: types.Description{ 6753 Label: "num", 6754 Summary: "Number", 6755 }, 6756 Key: "number", 6757 }, 6758 RollupType: "average", 6759 StatsType: "absolute", 6760 Level: 3, 6761 PerDeviceLevel: 3, 6762 AssociatedCounterId: nil, 6763 }, 6764 { 6765 Key: 232, 6766 NameInfo: &types.ElementDescription{ 6767 Description: types.Description{ 6768 Label: "DVPort dropped received packets throughput", 6769 Summary: "Count of dropped received packets for this DVPort", 6770 }, 6771 Key: "throughput.vds.droppedRx", 6772 }, 6773 GroupInfo: &types.ElementDescription{ 6774 Description: types.Description{ 6775 Label: "Network", 6776 Summary: "Network", 6777 }, 6778 Key: "net", 6779 }, 6780 UnitInfo: &types.ElementDescription{ 6781 Description: types.Description{ 6782 Label: "num", 6783 Summary: "Number", 6784 }, 6785 Key: "number", 6786 }, 6787 RollupType: "average", 6788 StatsType: "absolute", 6789 Level: 3, 6790 PerDeviceLevel: 3, 6791 AssociatedCounterId: nil, 6792 }, 6793 { 6794 Key: 233, 6795 NameInfo: &types.ElementDescription{ 6796 Description: types.Description{ 6797 Label: "LAG Packets Throughput Transmitted", 6798 Summary: "The rate of transmitted packets for this LAG", 6799 }, 6800 Key: "throughput.vds.lagTx", 6801 }, 6802 GroupInfo: &types.ElementDescription{ 6803 Description: types.Description{ 6804 Label: "Network", 6805 Summary: "Network", 6806 }, 6807 Key: "net", 6808 }, 6809 UnitInfo: &types.ElementDescription{ 6810 Description: types.Description{ 6811 Label: "num", 6812 Summary: "Number", 6813 }, 6814 Key: "number", 6815 }, 6816 RollupType: "average", 6817 StatsType: "absolute", 6818 Level: 3, 6819 PerDeviceLevel: 3, 6820 AssociatedCounterId: nil, 6821 }, 6822 { 6823 Key: 234, 6824 NameInfo: &types.ElementDescription{ 6825 Description: types.Description{ 6826 Label: "LAG Multicast Packets Throughput Transmitted", 6827 Summary: "The rate of transmitted Multicast packets for this LAG", 6828 }, 6829 Key: "throughput.vds.lagTxMcast", 6830 }, 6831 GroupInfo: &types.ElementDescription{ 6832 Description: types.Description{ 6833 Label: "Network", 6834 Summary: "Network", 6835 }, 6836 Key: "net", 6837 }, 6838 UnitInfo: &types.ElementDescription{ 6839 Description: types.Description{ 6840 Label: "num", 6841 Summary: "Number", 6842 }, 6843 Key: "number", 6844 }, 6845 RollupType: "average", 6846 StatsType: "absolute", 6847 Level: 3, 6848 PerDeviceLevel: 3, 6849 AssociatedCounterId: nil, 6850 }, 6851 { 6852 Key: 235, 6853 NameInfo: &types.ElementDescription{ 6854 Description: types.Description{ 6855 Label: "LAG Broadcast Packets Throughput Transmitted", 6856 Summary: "The rate of transmitted Broadcast packets for this LAG", 6857 }, 6858 Key: "throughput.vds.lagTxBcast", 6859 }, 6860 GroupInfo: &types.ElementDescription{ 6861 Description: types.Description{ 6862 Label: "Network", 6863 Summary: "Network", 6864 }, 6865 Key: "net", 6866 }, 6867 UnitInfo: &types.ElementDescription{ 6868 Description: types.Description{ 6869 Label: "num", 6870 Summary: "Number", 6871 }, 6872 Key: "number", 6873 }, 6874 RollupType: "average", 6875 StatsType: "absolute", 6876 Level: 3, 6877 PerDeviceLevel: 3, 6878 AssociatedCounterId: nil, 6879 }, 6880 { 6881 Key: 236, 6882 NameInfo: &types.ElementDescription{ 6883 Description: types.Description{ 6884 Label: "LAG packets Throughput received", 6885 Summary: "The rate of received packets for this LAG", 6886 }, 6887 Key: "throughput.vds.lagRx", 6888 }, 6889 GroupInfo: &types.ElementDescription{ 6890 Description: types.Description{ 6891 Label: "Network", 6892 Summary: "Network", 6893 }, 6894 Key: "net", 6895 }, 6896 UnitInfo: &types.ElementDescription{ 6897 Description: types.Description{ 6898 Label: "num", 6899 Summary: "Number", 6900 }, 6901 Key: "number", 6902 }, 6903 RollupType: "average", 6904 StatsType: "absolute", 6905 Level: 3, 6906 PerDeviceLevel: 3, 6907 AssociatedCounterId: nil, 6908 }, 6909 { 6910 Key: 237, 6911 NameInfo: &types.ElementDescription{ 6912 Description: types.Description{ 6913 Label: "LAG multicast packets throughput received", 6914 Summary: "The rate of received multicast packets for this LAG", 6915 }, 6916 Key: "throughput.vds.lagRxMcast", 6917 }, 6918 GroupInfo: &types.ElementDescription{ 6919 Description: types.Description{ 6920 Label: "Network", 6921 Summary: "Network", 6922 }, 6923 Key: "net", 6924 }, 6925 UnitInfo: &types.ElementDescription{ 6926 Description: types.Description{ 6927 Label: "num", 6928 Summary: "Number", 6929 }, 6930 Key: "number", 6931 }, 6932 RollupType: "average", 6933 StatsType: "absolute", 6934 Level: 3, 6935 PerDeviceLevel: 3, 6936 AssociatedCounterId: nil, 6937 }, 6938 { 6939 Key: 238, 6940 NameInfo: &types.ElementDescription{ 6941 Description: types.Description{ 6942 Label: "LAG Broadcast packets Throughput received", 6943 Summary: "The rate of received Broadcast packets for this LAG", 6944 }, 6945 Key: "throughput.vds.lagRxBcast", 6946 }, 6947 GroupInfo: &types.ElementDescription{ 6948 Description: types.Description{ 6949 Label: "Network", 6950 Summary: "Network", 6951 }, 6952 Key: "net", 6953 }, 6954 UnitInfo: &types.ElementDescription{ 6955 Description: types.Description{ 6956 Label: "num", 6957 Summary: "Number", 6958 }, 6959 Key: "number", 6960 }, 6961 RollupType: "average", 6962 StatsType: "absolute", 6963 Level: 3, 6964 PerDeviceLevel: 3, 6965 AssociatedCounterId: nil, 6966 }, 6967 { 6968 Key: 239, 6969 NameInfo: &types.ElementDescription{ 6970 Description: types.Description{ 6971 Label: "LAG dropped transmitted packets throughput", 6972 Summary: "Count of dropped transmitted packets for this LAG", 6973 }, 6974 Key: "throughput.vds.lagDropTx", 6975 }, 6976 GroupInfo: &types.ElementDescription{ 6977 Description: types.Description{ 6978 Label: "Network", 6979 Summary: "Network", 6980 }, 6981 Key: "net", 6982 }, 6983 UnitInfo: &types.ElementDescription{ 6984 Description: types.Description{ 6985 Label: "num", 6986 Summary: "Number", 6987 }, 6988 Key: "number", 6989 }, 6990 RollupType: "average", 6991 StatsType: "absolute", 6992 Level: 3, 6993 PerDeviceLevel: 3, 6994 AssociatedCounterId: nil, 6995 }, 6996 { 6997 Key: 240, 6998 NameInfo: &types.ElementDescription{ 6999 Description: types.Description{ 7000 Label: "LAG dropped received packets throughput", 7001 Summary: "Count of dropped received packets for this LAG", 7002 }, 7003 Key: "throughput.vds.lagDropRx", 7004 }, 7005 GroupInfo: &types.ElementDescription{ 7006 Description: types.Description{ 7007 Label: "Network", 7008 Summary: "Network", 7009 }, 7010 Key: "net", 7011 }, 7012 UnitInfo: &types.ElementDescription{ 7013 Description: types.Description{ 7014 Label: "num", 7015 Summary: "Number", 7016 }, 7017 Key: "number", 7018 }, 7019 RollupType: "average", 7020 StatsType: "absolute", 7021 Level: 3, 7022 PerDeviceLevel: 3, 7023 AssociatedCounterId: nil, 7024 }, 7025 { 7026 Key: 241, 7027 NameInfo: &types.ElementDescription{ 7028 Description: types.Description{ 7029 Label: "VXLAN network packets throughput transmitted", 7030 Summary: "The rate of transmitted packets for this network", 7031 }, 7032 Key: "throughput.vds.txTotal", 7033 }, 7034 GroupInfo: &types.ElementDescription{ 7035 Description: types.Description{ 7036 Label: "Network", 7037 Summary: "Network", 7038 }, 7039 Key: "net", 7040 }, 7041 UnitInfo: &types.ElementDescription{ 7042 Description: types.Description{ 7043 Label: "num", 7044 Summary: "Number", 7045 }, 7046 Key: "number", 7047 }, 7048 RollupType: "average", 7049 StatsType: "absolute", 7050 Level: 3, 7051 PerDeviceLevel: 3, 7052 AssociatedCounterId: nil, 7053 }, 7054 { 7055 Key: 242, 7056 NameInfo: &types.ElementDescription{ 7057 Description: types.Description{ 7058 Label: "VXLAN network non-unicast packets throughput transmitted", 7059 Summary: "The rate of transmitted non-unicast packets for this network", 7060 }, 7061 Key: "throughput.vds.txNoUnicast", 7062 }, 7063 GroupInfo: &types.ElementDescription{ 7064 Description: types.Description{ 7065 Label: "Network", 7066 Summary: "Network", 7067 }, 7068 Key: "net", 7069 }, 7070 UnitInfo: &types.ElementDescription{ 7071 Description: types.Description{ 7072 Label: "num", 7073 Summary: "Number", 7074 }, 7075 Key: "number", 7076 }, 7077 RollupType: "average", 7078 StatsType: "absolute", 7079 Level: 3, 7080 PerDeviceLevel: 3, 7081 AssociatedCounterId: nil, 7082 }, 7083 { 7084 Key: 243, 7085 NameInfo: &types.ElementDescription{ 7086 Description: types.Description{ 7087 Label: "VXLAN network cross-router packets throughput transmitted", 7088 Summary: "The rate of transmitted cross-router packets for this network", 7089 }, 7090 Key: "throughput.vds.txCrsRouter", 7091 }, 7092 GroupInfo: &types.ElementDescription{ 7093 Description: types.Description{ 7094 Label: "Network", 7095 Summary: "Network", 7096 }, 7097 Key: "net", 7098 }, 7099 UnitInfo: &types.ElementDescription{ 7100 Description: types.Description{ 7101 Label: "num", 7102 Summary: "Number", 7103 }, 7104 Key: "number", 7105 }, 7106 RollupType: "average", 7107 StatsType: "absolute", 7108 Level: 3, 7109 PerDeviceLevel: 3, 7110 AssociatedCounterId: nil, 7111 }, 7112 { 7113 Key: 244, 7114 NameInfo: &types.ElementDescription{ 7115 Description: types.Description{ 7116 Label: "VXLAN network dropped transmitted packets throughput", 7117 Summary: "Count of dropped transmitted packets for this network", 7118 }, 7119 Key: "throughput.vds.txDrop", 7120 }, 7121 GroupInfo: &types.ElementDescription{ 7122 Description: types.Description{ 7123 Label: "Network", 7124 Summary: "Network", 7125 }, 7126 Key: "net", 7127 }, 7128 UnitInfo: &types.ElementDescription{ 7129 Description: types.Description{ 7130 Label: "num", 7131 Summary: "Number", 7132 }, 7133 Key: "number", 7134 }, 7135 RollupType: "average", 7136 StatsType: "absolute", 7137 Level: 3, 7138 PerDeviceLevel: 3, 7139 AssociatedCounterId: nil, 7140 }, 7141 { 7142 Key: 245, 7143 NameInfo: &types.ElementDescription{ 7144 Description: types.Description{ 7145 Label: "VXLAN network packets throughput received", 7146 Summary: "The rate of received packets for this network", 7147 }, 7148 Key: "throughput.vds.rxTotal", 7149 }, 7150 GroupInfo: &types.ElementDescription{ 7151 Description: types.Description{ 7152 Label: "Network", 7153 Summary: "Network", 7154 }, 7155 Key: "net", 7156 }, 7157 UnitInfo: &types.ElementDescription{ 7158 Description: types.Description{ 7159 Label: "num", 7160 Summary: "Number", 7161 }, 7162 Key: "number", 7163 }, 7164 RollupType: "average", 7165 StatsType: "absolute", 7166 Level: 3, 7167 PerDeviceLevel: 3, 7168 AssociatedCounterId: nil, 7169 }, 7170 { 7171 Key: 246, 7172 NameInfo: &types.ElementDescription{ 7173 Description: types.Description{ 7174 Label: "VXLAN network dropped received packets due to destination IP error throughput", 7175 Summary: "Count of dropped received packets with destination IP error for this network", 7176 }, 7177 Key: "throughput.vds.rxDestErr", 7178 }, 7179 GroupInfo: &types.ElementDescription{ 7180 Description: types.Description{ 7181 Label: "Network", 7182 Summary: "Network", 7183 }, 7184 Key: "net", 7185 }, 7186 UnitInfo: &types.ElementDescription{ 7187 Description: types.Description{ 7188 Label: "num", 7189 Summary: "Number", 7190 }, 7191 Key: "number", 7192 }, 7193 RollupType: "average", 7194 StatsType: "absolute", 7195 Level: 3, 7196 PerDeviceLevel: 3, 7197 AssociatedCounterId: nil, 7198 }, 7199 { 7200 Key: 247, 7201 NameInfo: &types.ElementDescription{ 7202 Description: types.Description{ 7203 Label: "VXLAN network dropped received packets throughput", 7204 Summary: "Count of dropped received packets for this network", 7205 }, 7206 Key: "throughput.vds.rxDrop", 7207 }, 7208 GroupInfo: &types.ElementDescription{ 7209 Description: types.Description{ 7210 Label: "Network", 7211 Summary: "Network", 7212 }, 7213 Key: "net", 7214 }, 7215 UnitInfo: &types.ElementDescription{ 7216 Description: types.Description{ 7217 Label: "num", 7218 Summary: "Number", 7219 }, 7220 Key: "number", 7221 }, 7222 RollupType: "average", 7223 StatsType: "absolute", 7224 Level: 3, 7225 PerDeviceLevel: 3, 7226 AssociatedCounterId: nil, 7227 }, 7228 { 7229 Key: 248, 7230 NameInfo: &types.ElementDescription{ 7231 Description: types.Description{ 7232 Label: "VXLAN network failed to match mapping entry for a unicast MAC throughput", 7233 Summary: "Count of transmitted packets that cannot find matched mapping entry for this network", 7234 }, 7235 Key: "throughput.vds.macFlood", 7236 }, 7237 GroupInfo: &types.ElementDescription{ 7238 Description: types.Description{ 7239 Label: "Network", 7240 Summary: "Network", 7241 }, 7242 Key: "net", 7243 }, 7244 UnitInfo: &types.ElementDescription{ 7245 Description: types.Description{ 7246 Label: "num", 7247 Summary: "Number", 7248 }, 7249 Key: "number", 7250 }, 7251 RollupType: "average", 7252 StatsType: "absolute", 7253 Level: 3, 7254 PerDeviceLevel: 3, 7255 AssociatedCounterId: nil, 7256 }, 7257 { 7258 Key: 249, 7259 NameInfo: &types.ElementDescription{ 7260 Description: types.Description{ 7261 Label: "VXLAN network failed to allocate a new mapping entry during translation phase", 7262 Summary: "Count of transmitted packets that failed to acquire new mapping entry during translation phase for this network", 7263 }, 7264 Key: "throughput.vds.macLKUPFull", 7265 }, 7266 GroupInfo: &types.ElementDescription{ 7267 Description: types.Description{ 7268 Label: "Network", 7269 Summary: "Network", 7270 }, 7271 Key: "net", 7272 }, 7273 UnitInfo: &types.ElementDescription{ 7274 Description: types.Description{ 7275 Label: "num", 7276 Summary: "Number", 7277 }, 7278 Key: "number", 7279 }, 7280 RollupType: "average", 7281 StatsType: "absolute", 7282 Level: 3, 7283 PerDeviceLevel: 3, 7284 AssociatedCounterId: nil, 7285 }, 7286 { 7287 Key: 250, 7288 NameInfo: &types.ElementDescription{ 7289 Description: types.Description{ 7290 Label: "VXLAN network failed to allocate a new mapping entry during learning phase", 7291 Summary: "Count of transmitted packets that failed to acquire new mapping entry during learning phase for this network", 7292 }, 7293 Key: "throughput.vds.macUPDTFull", 7294 }, 7295 GroupInfo: &types.ElementDescription{ 7296 Description: types.Description{ 7297 Label: "Network", 7298 Summary: "Network", 7299 }, 7300 Key: "net", 7301 }, 7302 UnitInfo: &types.ElementDescription{ 7303 Description: types.Description{ 7304 Label: "num", 7305 Summary: "Number", 7306 }, 7307 Key: "number", 7308 }, 7309 RollupType: "average", 7310 StatsType: "absolute", 7311 Level: 3, 7312 PerDeviceLevel: 3, 7313 AssociatedCounterId: nil, 7314 }, 7315 { 7316 Key: 251, 7317 NameInfo: &types.ElementDescription{ 7318 Description: types.Description{ 7319 Label: "VXLAN Network Found Matched ARP Entry Throughput", 7320 Summary: "Count of transmitted packets that found matched ARP entry for this network", 7321 }, 7322 Key: "throughput.vds.arpFound", 7323 }, 7324 GroupInfo: &types.ElementDescription{ 7325 Description: types.Description{ 7326 Label: "Network", 7327 Summary: "Network", 7328 }, 7329 Key: "net", 7330 }, 7331 UnitInfo: &types.ElementDescription{ 7332 Description: types.Description{ 7333 Label: "num", 7334 Summary: "Number", 7335 }, 7336 Key: "number", 7337 }, 7338 RollupType: "average", 7339 StatsType: "absolute", 7340 Level: 3, 7341 PerDeviceLevel: 3, 7342 AssociatedCounterId: nil, 7343 }, 7344 { 7345 Key: 252, 7346 NameInfo: &types.ElementDescription{ 7347 Description: types.Description{ 7348 Label: "VXLAN Network Found Matched ARP Entry Marked as Unknown Throughput", 7349 Summary: "Count of transmitted packets whose matched arp entry is marked as unknown for this network", 7350 }, 7351 Key: "throughput.vds.arpUnknown", 7352 }, 7353 GroupInfo: &types.ElementDescription{ 7354 Description: types.Description{ 7355 Label: "Network", 7356 Summary: "Network", 7357 }, 7358 Key: "net", 7359 }, 7360 UnitInfo: &types.ElementDescription{ 7361 Description: types.Description{ 7362 Label: "num", 7363 Summary: "Number", 7364 }, 7365 Key: "number", 7366 }, 7367 RollupType: "average", 7368 StatsType: "absolute", 7369 Level: 3, 7370 PerDeviceLevel: 3, 7371 AssociatedCounterId: nil, 7372 }, 7373 { 7374 Key: 253, 7375 NameInfo: &types.ElementDescription{ 7376 Description: types.Description{ 7377 Label: "VXLAN Network Failed to Allocate ARP Entry During Translation Phase Throughput", 7378 Summary: "Count of transmitted packets that failed to acquire new ARP entry during translation phase for this network", 7379 }, 7380 Key: "throughput.vds.arpLKUPFull", 7381 }, 7382 GroupInfo: &types.ElementDescription{ 7383 Description: types.Description{ 7384 Label: "Network", 7385 Summary: "Network", 7386 }, 7387 Key: "net", 7388 }, 7389 UnitInfo: &types.ElementDescription{ 7390 Description: types.Description{ 7391 Label: "num", 7392 Summary: "Number", 7393 }, 7394 Key: "number", 7395 }, 7396 RollupType: "average", 7397 StatsType: "absolute", 7398 Level: 3, 7399 PerDeviceLevel: 3, 7400 AssociatedCounterId: nil, 7401 }, 7402 { 7403 Key: 254, 7404 NameInfo: &types.ElementDescription{ 7405 Description: types.Description{ 7406 Label: "VXLAN network found the same ARP requests have been sent into queue throughput", 7407 Summary: "Count of transmitted packets whose ARP requests have already been sent into queue for this network", 7408 }, 7409 Key: "throughput.vds.arpWait", 7410 }, 7411 GroupInfo: &types.ElementDescription{ 7412 Description: types.Description{ 7413 Label: "Network", 7414 Summary: "Network", 7415 }, 7416 Key: "net", 7417 }, 7418 UnitInfo: &types.ElementDescription{ 7419 Description: types.Description{ 7420 Label: "num", 7421 Summary: "Number", 7422 }, 7423 Key: "number", 7424 }, 7425 RollupType: "average", 7426 StatsType: "absolute", 7427 Level: 3, 7428 PerDeviceLevel: 3, 7429 AssociatedCounterId: nil, 7430 }, 7431 { 7432 Key: 255, 7433 NameInfo: &types.ElementDescription{ 7434 Description: types.Description{ 7435 Label: "VXLAN Network Found ARP Queries Have Been Expired Throughput", 7436 Summary: "Count of arp queries that have been expired for this network", 7437 }, 7438 Key: "throughput.vds.arpTimeout", 7439 }, 7440 GroupInfo: &types.ElementDescription{ 7441 Description: types.Description{ 7442 Label: "Network", 7443 Summary: "Network", 7444 }, 7445 Key: "net", 7446 }, 7447 UnitInfo: &types.ElementDescription{ 7448 Description: types.Description{ 7449 Label: "num", 7450 Summary: "Number", 7451 }, 7452 Key: "number", 7453 }, 7454 RollupType: "average", 7455 StatsType: "absolute", 7456 Level: 3, 7457 PerDeviceLevel: 3, 7458 AssociatedCounterId: nil, 7459 }, 7460 { 7461 Key: 256, 7462 NameInfo: &types.ElementDescription{ 7463 Description: types.Description{ 7464 Label: "VM power on count", 7465 Summary: "Number of virtual machine power on operations", 7466 }, 7467 Key: "numPoweron", 7468 }, 7469 GroupInfo: &types.ElementDescription{ 7470 Description: types.Description{ 7471 Label: "Virtual machine operations", 7472 Summary: "Virtual machine operations", 7473 }, 7474 Key: "vmop", 7475 }, 7476 UnitInfo: &types.ElementDescription{ 7477 Description: types.Description{ 7478 Label: "num", 7479 Summary: "Number", 7480 }, 7481 Key: "number", 7482 }, 7483 RollupType: "latest", 7484 StatsType: "absolute", 7485 Level: 1, 7486 PerDeviceLevel: 3, 7487 AssociatedCounterId: nil, 7488 }, 7489 { 7490 Key: 257, 7491 NameInfo: &types.ElementDescription{ 7492 Description: types.Description{ 7493 Label: "VM power off count", 7494 Summary: "Number of virtual machine power off operations", 7495 }, 7496 Key: "numPoweroff", 7497 }, 7498 GroupInfo: &types.ElementDescription{ 7499 Description: types.Description{ 7500 Label: "Virtual machine operations", 7501 Summary: "Virtual machine operations", 7502 }, 7503 Key: "vmop", 7504 }, 7505 UnitInfo: &types.ElementDescription{ 7506 Description: types.Description{ 7507 Label: "num", 7508 Summary: "Number", 7509 }, 7510 Key: "number", 7511 }, 7512 RollupType: "latest", 7513 StatsType: "absolute", 7514 Level: 1, 7515 PerDeviceLevel: 3, 7516 AssociatedCounterId: nil, 7517 }, 7518 { 7519 Key: 258, 7520 NameInfo: &types.ElementDescription{ 7521 Description: types.Description{ 7522 Label: "VM suspend count", 7523 Summary: "Number of virtual machine suspend operations", 7524 }, 7525 Key: "numSuspend", 7526 }, 7527 GroupInfo: &types.ElementDescription{ 7528 Description: types.Description{ 7529 Label: "Virtual machine operations", 7530 Summary: "Virtual machine operations", 7531 }, 7532 Key: "vmop", 7533 }, 7534 UnitInfo: &types.ElementDescription{ 7535 Description: types.Description{ 7536 Label: "num", 7537 Summary: "Number", 7538 }, 7539 Key: "number", 7540 }, 7541 RollupType: "latest", 7542 StatsType: "absolute", 7543 Level: 1, 7544 PerDeviceLevel: 3, 7545 AssociatedCounterId: nil, 7546 }, 7547 { 7548 Key: 259, 7549 NameInfo: &types.ElementDescription{ 7550 Description: types.Description{ 7551 Label: "VM reset count", 7552 Summary: "Number of virtual machine reset operations", 7553 }, 7554 Key: "numReset", 7555 }, 7556 GroupInfo: &types.ElementDescription{ 7557 Description: types.Description{ 7558 Label: "Virtual machine operations", 7559 Summary: "Virtual machine operations", 7560 }, 7561 Key: "vmop", 7562 }, 7563 UnitInfo: &types.ElementDescription{ 7564 Description: types.Description{ 7565 Label: "num", 7566 Summary: "Number", 7567 }, 7568 Key: "number", 7569 }, 7570 RollupType: "latest", 7571 StatsType: "absolute", 7572 Level: 1, 7573 PerDeviceLevel: 3, 7574 AssociatedCounterId: nil, 7575 }, 7576 { 7577 Key: 260, 7578 NameInfo: &types.ElementDescription{ 7579 Description: types.Description{ 7580 Label: "VM guest reboot count", 7581 Summary: "Number of virtual machine guest reboot operations", 7582 }, 7583 Key: "numRebootGuest", 7584 }, 7585 GroupInfo: &types.ElementDescription{ 7586 Description: types.Description{ 7587 Label: "Virtual machine operations", 7588 Summary: "Virtual machine operations", 7589 }, 7590 Key: "vmop", 7591 }, 7592 UnitInfo: &types.ElementDescription{ 7593 Description: types.Description{ 7594 Label: "num", 7595 Summary: "Number", 7596 }, 7597 Key: "number", 7598 }, 7599 RollupType: "latest", 7600 StatsType: "absolute", 7601 Level: 1, 7602 PerDeviceLevel: 3, 7603 AssociatedCounterId: nil, 7604 }, 7605 { 7606 Key: 261, 7607 NameInfo: &types.ElementDescription{ 7608 Description: types.Description{ 7609 Label: "VM standby guest count", 7610 Summary: "Number of virtual machine standby guest operations", 7611 }, 7612 Key: "numStandbyGuest", 7613 }, 7614 GroupInfo: &types.ElementDescription{ 7615 Description: types.Description{ 7616 Label: "Virtual machine operations", 7617 Summary: "Virtual machine operations", 7618 }, 7619 Key: "vmop", 7620 }, 7621 UnitInfo: &types.ElementDescription{ 7622 Description: types.Description{ 7623 Label: "num", 7624 Summary: "Number", 7625 }, 7626 Key: "number", 7627 }, 7628 RollupType: "latest", 7629 StatsType: "absolute", 7630 Level: 1, 7631 PerDeviceLevel: 3, 7632 AssociatedCounterId: nil, 7633 }, 7634 { 7635 Key: 262, 7636 NameInfo: &types.ElementDescription{ 7637 Description: types.Description{ 7638 Label: "VM guest shutdown count", 7639 Summary: "Number of virtual machine guest shutdown operations", 7640 }, 7641 Key: "numShutdownGuest", 7642 }, 7643 GroupInfo: &types.ElementDescription{ 7644 Description: types.Description{ 7645 Label: "Virtual machine operations", 7646 Summary: "Virtual machine operations", 7647 }, 7648 Key: "vmop", 7649 }, 7650 UnitInfo: &types.ElementDescription{ 7651 Description: types.Description{ 7652 Label: "num", 7653 Summary: "Number", 7654 }, 7655 Key: "number", 7656 }, 7657 RollupType: "latest", 7658 StatsType: "absolute", 7659 Level: 1, 7660 PerDeviceLevel: 3, 7661 AssociatedCounterId: nil, 7662 }, 7663 { 7664 Key: 263, 7665 NameInfo: &types.ElementDescription{ 7666 Description: types.Description{ 7667 Label: "VM create count", 7668 Summary: "Number of virtual machine create operations", 7669 }, 7670 Key: "numCreate", 7671 }, 7672 GroupInfo: &types.ElementDescription{ 7673 Description: types.Description{ 7674 Label: "Virtual machine operations", 7675 Summary: "Virtual machine operations", 7676 }, 7677 Key: "vmop", 7678 }, 7679 UnitInfo: &types.ElementDescription{ 7680 Description: types.Description{ 7681 Label: "num", 7682 Summary: "Number", 7683 }, 7684 Key: "number", 7685 }, 7686 RollupType: "latest", 7687 StatsType: "absolute", 7688 Level: 1, 7689 PerDeviceLevel: 3, 7690 AssociatedCounterId: nil, 7691 }, 7692 { 7693 Key: 264, 7694 NameInfo: &types.ElementDescription{ 7695 Description: types.Description{ 7696 Label: "VM delete count", 7697 Summary: "Number of virtual machine delete operations", 7698 }, 7699 Key: "numDestroy", 7700 }, 7701 GroupInfo: &types.ElementDescription{ 7702 Description: types.Description{ 7703 Label: "Virtual machine operations", 7704 Summary: "Virtual machine operations", 7705 }, 7706 Key: "vmop", 7707 }, 7708 UnitInfo: &types.ElementDescription{ 7709 Description: types.Description{ 7710 Label: "num", 7711 Summary: "Number", 7712 }, 7713 Key: "number", 7714 }, 7715 RollupType: "latest", 7716 StatsType: "absolute", 7717 Level: 1, 7718 PerDeviceLevel: 3, 7719 AssociatedCounterId: nil, 7720 }, 7721 { 7722 Key: 265, 7723 NameInfo: &types.ElementDescription{ 7724 Description: types.Description{ 7725 Label: "VM register count", 7726 Summary: "Number of virtual machine register operations", 7727 }, 7728 Key: "numRegister", 7729 }, 7730 GroupInfo: &types.ElementDescription{ 7731 Description: types.Description{ 7732 Label: "Virtual machine operations", 7733 Summary: "Virtual machine operations", 7734 }, 7735 Key: "vmop", 7736 }, 7737 UnitInfo: &types.ElementDescription{ 7738 Description: types.Description{ 7739 Label: "num", 7740 Summary: "Number", 7741 }, 7742 Key: "number", 7743 }, 7744 RollupType: "latest", 7745 StatsType: "absolute", 7746 Level: 1, 7747 PerDeviceLevel: 3, 7748 AssociatedCounterId: nil, 7749 }, 7750 { 7751 Key: 266, 7752 NameInfo: &types.ElementDescription{ 7753 Description: types.Description{ 7754 Label: "VM unregister count", 7755 Summary: "Number of virtual machine unregister operations", 7756 }, 7757 Key: "numUnregister", 7758 }, 7759 GroupInfo: &types.ElementDescription{ 7760 Description: types.Description{ 7761 Label: "Virtual machine operations", 7762 Summary: "Virtual machine operations", 7763 }, 7764 Key: "vmop", 7765 }, 7766 UnitInfo: &types.ElementDescription{ 7767 Description: types.Description{ 7768 Label: "num", 7769 Summary: "Number", 7770 }, 7771 Key: "number", 7772 }, 7773 RollupType: "latest", 7774 StatsType: "absolute", 7775 Level: 1, 7776 PerDeviceLevel: 3, 7777 AssociatedCounterId: nil, 7778 }, 7779 { 7780 Key: 267, 7781 NameInfo: &types.ElementDescription{ 7782 Description: types.Description{ 7783 Label: "VM reconfigure count", 7784 Summary: "Number of virtual machine reconfigure operations", 7785 }, 7786 Key: "numReconfigure", 7787 }, 7788 GroupInfo: &types.ElementDescription{ 7789 Description: types.Description{ 7790 Label: "Virtual machine operations", 7791 Summary: "Virtual machine operations", 7792 }, 7793 Key: "vmop", 7794 }, 7795 UnitInfo: &types.ElementDescription{ 7796 Description: types.Description{ 7797 Label: "num", 7798 Summary: "Number", 7799 }, 7800 Key: "number", 7801 }, 7802 RollupType: "latest", 7803 StatsType: "absolute", 7804 Level: 1, 7805 PerDeviceLevel: 3, 7806 AssociatedCounterId: nil, 7807 }, 7808 { 7809 Key: 268, 7810 NameInfo: &types.ElementDescription{ 7811 Description: types.Description{ 7812 Label: "VM clone count", 7813 Summary: "Number of virtual machine clone operations", 7814 }, 7815 Key: "numClone", 7816 }, 7817 GroupInfo: &types.ElementDescription{ 7818 Description: types.Description{ 7819 Label: "Virtual machine operations", 7820 Summary: "Virtual machine operations", 7821 }, 7822 Key: "vmop", 7823 }, 7824 UnitInfo: &types.ElementDescription{ 7825 Description: types.Description{ 7826 Label: "num", 7827 Summary: "Number", 7828 }, 7829 Key: "number", 7830 }, 7831 RollupType: "latest", 7832 StatsType: "absolute", 7833 Level: 1, 7834 PerDeviceLevel: 3, 7835 AssociatedCounterId: nil, 7836 }, 7837 { 7838 Key: 269, 7839 NameInfo: &types.ElementDescription{ 7840 Description: types.Description{ 7841 Label: "VM template deploy count", 7842 Summary: "Number of virtual machine template deploy operations", 7843 }, 7844 Key: "numDeploy", 7845 }, 7846 GroupInfo: &types.ElementDescription{ 7847 Description: types.Description{ 7848 Label: "Virtual machine operations", 7849 Summary: "Virtual machine operations", 7850 }, 7851 Key: "vmop", 7852 }, 7853 UnitInfo: &types.ElementDescription{ 7854 Description: types.Description{ 7855 Label: "num", 7856 Summary: "Number", 7857 }, 7858 Key: "number", 7859 }, 7860 RollupType: "latest", 7861 StatsType: "absolute", 7862 Level: 1, 7863 PerDeviceLevel: 3, 7864 AssociatedCounterId: nil, 7865 }, 7866 { 7867 Key: 270, 7868 NameInfo: &types.ElementDescription{ 7869 Description: types.Description{ 7870 Label: "VM host change count (non-powered-on VMs)", 7871 Summary: "Number of host change operations for powered-off and suspended VMs", 7872 }, 7873 Key: "numChangeHost", 7874 }, 7875 GroupInfo: &types.ElementDescription{ 7876 Description: types.Description{ 7877 Label: "Virtual machine operations", 7878 Summary: "Virtual machine operations", 7879 }, 7880 Key: "vmop", 7881 }, 7882 UnitInfo: &types.ElementDescription{ 7883 Description: types.Description{ 7884 Label: "num", 7885 Summary: "Number", 7886 }, 7887 Key: "number", 7888 }, 7889 RollupType: "latest", 7890 StatsType: "absolute", 7891 Level: 1, 7892 PerDeviceLevel: 3, 7893 AssociatedCounterId: nil, 7894 }, 7895 { 7896 Key: 271, 7897 NameInfo: &types.ElementDescription{ 7898 Description: types.Description{ 7899 Label: "VM datastore change count (non-powered-on VMs)", 7900 Summary: "Number of datastore change operations for powered-off and suspended virtual machines", 7901 }, 7902 Key: "numChangeDS", 7903 }, 7904 GroupInfo: &types.ElementDescription{ 7905 Description: types.Description{ 7906 Label: "Virtual machine operations", 7907 Summary: "Virtual machine operations", 7908 }, 7909 Key: "vmop", 7910 }, 7911 UnitInfo: &types.ElementDescription{ 7912 Description: types.Description{ 7913 Label: "num", 7914 Summary: "Number", 7915 }, 7916 Key: "number", 7917 }, 7918 RollupType: "latest", 7919 StatsType: "absolute", 7920 Level: 1, 7921 PerDeviceLevel: 3, 7922 AssociatedCounterId: nil, 7923 }, 7924 { 7925 Key: 272, 7926 NameInfo: &types.ElementDescription{ 7927 Description: types.Description{ 7928 Label: "VM host and datastore change count (non-powered-on VMs)", 7929 Summary: "Number of host and datastore change operations for powered-off and suspended virtual machines", 7930 }, 7931 Key: "numChangeHostDS", 7932 }, 7933 GroupInfo: &types.ElementDescription{ 7934 Description: types.Description{ 7935 Label: "Virtual machine operations", 7936 Summary: "Virtual machine operations", 7937 }, 7938 Key: "vmop", 7939 }, 7940 UnitInfo: &types.ElementDescription{ 7941 Description: types.Description{ 7942 Label: "num", 7943 Summary: "Number", 7944 }, 7945 Key: "number", 7946 }, 7947 RollupType: "latest", 7948 StatsType: "absolute", 7949 Level: 1, 7950 PerDeviceLevel: 3, 7951 AssociatedCounterId: nil, 7952 }, 7953 { 7954 Key: 273, 7955 NameInfo: &types.ElementDescription{ 7956 Description: types.Description{ 7957 Label: "vMotion count", 7958 Summary: "Number of migrations with vMotion (host change operations for powered-on VMs)", 7959 }, 7960 Key: "numVMotion", 7961 }, 7962 GroupInfo: &types.ElementDescription{ 7963 Description: types.Description{ 7964 Label: "Virtual machine operations", 7965 Summary: "Virtual machine operations", 7966 }, 7967 Key: "vmop", 7968 }, 7969 UnitInfo: &types.ElementDescription{ 7970 Description: types.Description{ 7971 Label: "num", 7972 Summary: "Number", 7973 }, 7974 Key: "number", 7975 }, 7976 RollupType: "latest", 7977 StatsType: "absolute", 7978 Level: 1, 7979 PerDeviceLevel: 3, 7980 AssociatedCounterId: nil, 7981 }, 7982 { 7983 Key: 274, 7984 NameInfo: &types.ElementDescription{ 7985 Description: types.Description{ 7986 Label: "Storage vMotion count", 7987 Summary: "Number of migrations with Storage vMotion (datastore change operations for powered-on VMs)", 7988 }, 7989 Key: "numSVMotion", 7990 }, 7991 GroupInfo: &types.ElementDescription{ 7992 Description: types.Description{ 7993 Label: "Virtual machine operations", 7994 Summary: "Virtual machine operations", 7995 }, 7996 Key: "vmop", 7997 }, 7998 UnitInfo: &types.ElementDescription{ 7999 Description: types.Description{ 8000 Label: "num", 8001 Summary: "Number", 8002 }, 8003 Key: "number", 8004 }, 8005 RollupType: "latest", 8006 StatsType: "absolute", 8007 Level: 1, 8008 PerDeviceLevel: 3, 8009 AssociatedCounterId: nil, 8010 }, 8011 { 8012 Key: 275, 8013 NameInfo: &types.ElementDescription{ 8014 Description: types.Description{ 8015 Label: "VM host and datastore change count (powered-on VMs)", 8016 Summary: "Number of host and datastore change operations for powered-on and suspended virtual machines", 8017 }, 8018 Key: "numXVMotion", 8019 }, 8020 GroupInfo: &types.ElementDescription{ 8021 Description: types.Description{ 8022 Label: "Virtual machine operations", 8023 Summary: "Virtual machine operations", 8024 }, 8025 Key: "vmop", 8026 }, 8027 UnitInfo: &types.ElementDescription{ 8028 Description: types.Description{ 8029 Label: "num", 8030 Summary: "Number", 8031 }, 8032 Key: "number", 8033 }, 8034 RollupType: "latest", 8035 StatsType: "absolute", 8036 Level: 1, 8037 PerDeviceLevel: 3, 8038 AssociatedCounterId: nil, 8039 }, 8040 { 8041 Key: 276, 8042 NameInfo: &types.ElementDescription{ 8043 Description: types.Description{ 8044 Label: "Effective CPU resources", 8045 Summary: "Total available CPU resources of all hosts within a cluster", 8046 }, 8047 Key: "effectivecpu", 8048 }, 8049 GroupInfo: &types.ElementDescription{ 8050 Description: types.Description{ 8051 Label: "Cluster services", 8052 Summary: "Cluster services", 8053 }, 8054 Key: "clusterServices", 8055 }, 8056 UnitInfo: &types.ElementDescription{ 8057 Description: types.Description{ 8058 Label: "MHz", 8059 Summary: "Megahertz", 8060 }, 8061 Key: "megaHertz", 8062 }, 8063 RollupType: "average", 8064 StatsType: "rate", 8065 Level: 1, 8066 PerDeviceLevel: 3, 8067 AssociatedCounterId: nil, 8068 }, 8069 { 8070 Key: 277, 8071 NameInfo: &types.ElementDescription{ 8072 Description: types.Description{ 8073 Label: "Effective memory resources", 8074 Summary: "Total amount of machine memory of all hosts in the cluster that is available for use for virtual machine memory and overhead memory", 8075 }, 8076 Key: "effectivemem", 8077 }, 8078 GroupInfo: &types.ElementDescription{ 8079 Description: types.Description{ 8080 Label: "Cluster services", 8081 Summary: "Cluster services", 8082 }, 8083 Key: "clusterServices", 8084 }, 8085 UnitInfo: &types.ElementDescription{ 8086 Description: types.Description{ 8087 Label: "MB", 8088 Summary: "Megabyte", 8089 }, 8090 Key: "megaBytes", 8091 }, 8092 RollupType: "average", 8093 StatsType: "absolute", 8094 Level: 1, 8095 PerDeviceLevel: 3, 8096 AssociatedCounterId: nil, 8097 }, 8098 { 8099 Key: 278, 8100 NameInfo: &types.ElementDescription{ 8101 Description: types.Description{ 8102 Label: "Total", 8103 Summary: "Total amount of CPU resources of all hosts in the cluster", 8104 }, 8105 Key: "totalmhz", 8106 }, 8107 GroupInfo: &types.ElementDescription{ 8108 Description: types.Description{ 8109 Label: "CPU", 8110 Summary: "CPU", 8111 }, 8112 Key: "cpu", 8113 }, 8114 UnitInfo: &types.ElementDescription{ 8115 Description: types.Description{ 8116 Label: "MHz", 8117 Summary: "Megahertz", 8118 }, 8119 Key: "megaHertz", 8120 }, 8121 RollupType: "average", 8122 StatsType: "rate", 8123 Level: 1, 8124 PerDeviceLevel: 3, 8125 AssociatedCounterId: nil, 8126 }, 8127 { 8128 Key: 279, 8129 NameInfo: &types.ElementDescription{ 8130 Description: types.Description{ 8131 Label: "Total", 8132 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", 8133 }, 8134 Key: "totalmb", 8135 }, 8136 GroupInfo: &types.ElementDescription{ 8137 Description: types.Description{ 8138 Label: "Memory", 8139 Summary: "Memory", 8140 }, 8141 Key: "mem", 8142 }, 8143 UnitInfo: &types.ElementDescription{ 8144 Description: types.Description{ 8145 Label: "MB", 8146 Summary: "Megabyte", 8147 }, 8148 Key: "megaBytes", 8149 }, 8150 RollupType: "average", 8151 StatsType: "absolute", 8152 Level: 1, 8153 PerDeviceLevel: 3, 8154 AssociatedCounterId: nil, 8155 }, 8156 { 8157 Key: 280, 8158 NameInfo: &types.ElementDescription{ 8159 Description: types.Description{ 8160 Label: "Current failover level", 8161 Summary: "vSphere HA number of failures that can be tolerated", 8162 }, 8163 Key: "failover", 8164 }, 8165 GroupInfo: &types.ElementDescription{ 8166 Description: types.Description{ 8167 Label: "Cluster services", 8168 Summary: "Cluster services", 8169 }, 8170 Key: "clusterServices", 8171 }, 8172 UnitInfo: &types.ElementDescription{ 8173 Description: types.Description{ 8174 Label: "num", 8175 Summary: "Number", 8176 }, 8177 Key: "number", 8178 }, 8179 RollupType: "latest", 8180 StatsType: "absolute", 8181 Level: 1, 8182 PerDeviceLevel: 3, 8183 AssociatedCounterId: nil, 8184 }, 8185 { 8186 Key: 281, 8187 NameInfo: &types.ElementDescription{ 8188 Description: types.Description{ 8189 Label: "Space actually used", 8190 Summary: "Amount of space actually used by the virtual machine or the datastore", 8191 }, 8192 Key: "used", 8193 }, 8194 GroupInfo: &types.ElementDescription{ 8195 Description: types.Description{ 8196 Label: "Disk", 8197 Summary: "Disk", 8198 }, 8199 Key: "disk", 8200 }, 8201 UnitInfo: &types.ElementDescription{ 8202 Description: types.Description{ 8203 Label: "KB", 8204 Summary: "Kilobyte", 8205 }, 8206 Key: "kiloBytes", 8207 }, 8208 RollupType: "latest", 8209 StatsType: "absolute", 8210 Level: 1, 8211 PerDeviceLevel: 1, 8212 AssociatedCounterId: nil, 8213 }, 8214 { 8215 Key: 282, 8216 NameInfo: &types.ElementDescription{ 8217 Description: types.Description{ 8218 Label: "Space potentially used", 8219 Summary: "Amount of storage set aside for use by a datastore or a virtual machine", 8220 }, 8221 Key: "provisioned", 8222 }, 8223 GroupInfo: &types.ElementDescription{ 8224 Description: types.Description{ 8225 Label: "Disk", 8226 Summary: "Disk", 8227 }, 8228 Key: "disk", 8229 }, 8230 UnitInfo: &types.ElementDescription{ 8231 Description: types.Description{ 8232 Label: "KB", 8233 Summary: "Kilobyte", 8234 }, 8235 Key: "kiloBytes", 8236 }, 8237 RollupType: "latest", 8238 StatsType: "absolute", 8239 Level: 1, 8240 PerDeviceLevel: 1, 8241 AssociatedCounterId: nil, 8242 }, 8243 { 8244 Key: 283, 8245 NameInfo: &types.ElementDescription{ 8246 Description: types.Description{ 8247 Label: "Capacity", 8248 Summary: "Configured size of the datastore", 8249 }, 8250 Key: "capacity", 8251 }, 8252 GroupInfo: &types.ElementDescription{ 8253 Description: types.Description{ 8254 Label: "Disk", 8255 Summary: "Disk", 8256 }, 8257 Key: "disk", 8258 }, 8259 UnitInfo: &types.ElementDescription{ 8260 Description: types.Description{ 8261 Label: "KB", 8262 Summary: "Kilobyte", 8263 }, 8264 Key: "kiloBytes", 8265 }, 8266 RollupType: "latest", 8267 StatsType: "absolute", 8268 Level: 1, 8269 PerDeviceLevel: 3, 8270 AssociatedCounterId: nil, 8271 }, 8272 { 8273 Key: 284, 8274 NameInfo: &types.ElementDescription{ 8275 Description: types.Description{ 8276 Label: "Space not shared", 8277 Summary: "Amount of space associated exclusively with a virtual machine", 8278 }, 8279 Key: "unshared", 8280 }, 8281 GroupInfo: &types.ElementDescription{ 8282 Description: types.Description{ 8283 Label: "Disk", 8284 Summary: "Disk", 8285 }, 8286 Key: "disk", 8287 }, 8288 UnitInfo: &types.ElementDescription{ 8289 Description: types.Description{ 8290 Label: "KB", 8291 Summary: "Kilobyte", 8292 }, 8293 Key: "kiloBytes", 8294 }, 8295 RollupType: "latest", 8296 StatsType: "absolute", 8297 Level: 1, 8298 PerDeviceLevel: 1, 8299 AssociatedCounterId: nil, 8300 }, 8301 { 8302 Key: 285, 8303 NameInfo: &types.ElementDescription{ 8304 Description: types.Description{ 8305 Label: "Overhead due to delta disk backings", 8306 Summary: "Storage overhead of a virtual machine or a datastore due to delta disk backings", 8307 }, 8308 Key: "deltaused", 8309 }, 8310 GroupInfo: &types.ElementDescription{ 8311 Description: types.Description{ 8312 Label: "Disk", 8313 Summary: "Disk", 8314 }, 8315 Key: "disk", 8316 }, 8317 UnitInfo: &types.ElementDescription{ 8318 Description: types.Description{ 8319 Label: "KB", 8320 Summary: "Kilobyte", 8321 }, 8322 Key: "kiloBytes", 8323 }, 8324 RollupType: "latest", 8325 StatsType: "absolute", 8326 Level: 2, 8327 PerDeviceLevel: 3, 8328 AssociatedCounterId: nil, 8329 }, 8330 { 8331 Key: 286, 8332 NameInfo: &types.ElementDescription{ 8333 Description: types.Description{ 8334 Label: "provisioned", 8335 Summary: "provisioned", 8336 }, 8337 Key: "capacity.provisioned", 8338 }, 8339 GroupInfo: &types.ElementDescription{ 8340 Description: types.Description{ 8341 Label: "Disk", 8342 Summary: "Disk", 8343 }, 8344 Key: "disk", 8345 }, 8346 UnitInfo: &types.ElementDescription{ 8347 Description: types.Description{ 8348 Label: "KB", 8349 Summary: "Kilobyte", 8350 }, 8351 Key: "kiloBytes", 8352 }, 8353 RollupType: "average", 8354 StatsType: "absolute", 8355 Level: 4, 8356 PerDeviceLevel: 4, 8357 AssociatedCounterId: nil, 8358 }, 8359 { 8360 Key: 287, 8361 NameInfo: &types.ElementDescription{ 8362 Description: types.Description{ 8363 Label: "usage", 8364 Summary: "usage", 8365 }, 8366 Key: "capacity.usage", 8367 }, 8368 GroupInfo: &types.ElementDescription{ 8369 Description: types.Description{ 8370 Label: "Disk", 8371 Summary: "Disk", 8372 }, 8373 Key: "disk", 8374 }, 8375 UnitInfo: &types.ElementDescription{ 8376 Description: types.Description{ 8377 Label: "KB", 8378 Summary: "Kilobyte", 8379 }, 8380 Key: "kiloBytes", 8381 }, 8382 RollupType: "average", 8383 StatsType: "absolute", 8384 Level: 4, 8385 PerDeviceLevel: 4, 8386 AssociatedCounterId: nil, 8387 }, 8388 { 8389 Key: 288, 8390 NameInfo: &types.ElementDescription{ 8391 Description: types.Description{ 8392 Label: "contention", 8393 Summary: "contention", 8394 }, 8395 Key: "capacity.contention", 8396 }, 8397 GroupInfo: &types.ElementDescription{ 8398 Description: types.Description{ 8399 Label: "Disk", 8400 Summary: "Disk", 8401 }, 8402 Key: "disk", 8403 }, 8404 UnitInfo: &types.ElementDescription{ 8405 Description: types.Description{ 8406 Label: "%", 8407 Summary: "Percentage", 8408 }, 8409 Key: "percent", 8410 }, 8411 RollupType: "average", 8412 StatsType: "absolute", 8413 Level: 4, 8414 PerDeviceLevel: 4, 8415 AssociatedCounterId: nil, 8416 }, 8417 { 8418 Key: 289, 8419 NameInfo: &types.ElementDescription{ 8420 Description: types.Description{ 8421 Label: "Activation latency", 8422 Summary: "The latency of an activation operation in vCenter Server", 8423 }, 8424 Key: "activationlatencystats", 8425 }, 8426 GroupInfo: &types.ElementDescription{ 8427 Description: types.Description{ 8428 Label: "vCenter debugging information", 8429 Summary: "vCenter debugging information", 8430 }, 8431 Key: "vcDebugInfo", 8432 }, 8433 UnitInfo: &types.ElementDescription{ 8434 Description: types.Description{ 8435 Label: "ms", 8436 Summary: "Millisecond", 8437 }, 8438 Key: "millisecond", 8439 }, 8440 RollupType: "maximum", 8441 StatsType: "absolute", 8442 Level: 4, 8443 PerDeviceLevel: 4, 8444 AssociatedCounterId: nil, 8445 }, 8446 { 8447 Key: 290, 8448 NameInfo: &types.ElementDescription{ 8449 Description: types.Description{ 8450 Label: "Activation latency", 8451 Summary: "The latency of an activation operation in vCenter Server", 8452 }, 8453 Key: "activationlatencystats", 8454 }, 8455 GroupInfo: &types.ElementDescription{ 8456 Description: types.Description{ 8457 Label: "vCenter debugging information", 8458 Summary: "vCenter debugging information", 8459 }, 8460 Key: "vcDebugInfo", 8461 }, 8462 UnitInfo: &types.ElementDescription{ 8463 Description: types.Description{ 8464 Label: "ms", 8465 Summary: "Millisecond", 8466 }, 8467 Key: "millisecond", 8468 }, 8469 RollupType: "minimum", 8470 StatsType: "absolute", 8471 Level: 4, 8472 PerDeviceLevel: 4, 8473 AssociatedCounterId: nil, 8474 }, 8475 { 8476 Key: 291, 8477 NameInfo: &types.ElementDescription{ 8478 Description: types.Description{ 8479 Label: "Activation latency", 8480 Summary: "The latency of an activation operation in vCenter Server", 8481 }, 8482 Key: "activationlatencystats", 8483 }, 8484 GroupInfo: &types.ElementDescription{ 8485 Description: types.Description{ 8486 Label: "vCenter debugging information", 8487 Summary: "vCenter debugging information", 8488 }, 8489 Key: "vcDebugInfo", 8490 }, 8491 UnitInfo: &types.ElementDescription{ 8492 Description: types.Description{ 8493 Label: "ms", 8494 Summary: "Millisecond", 8495 }, 8496 Key: "millisecond", 8497 }, 8498 RollupType: "summation", 8499 StatsType: "absolute", 8500 Level: 1, 8501 PerDeviceLevel: 1, 8502 AssociatedCounterId: nil, 8503 }, 8504 { 8505 Key: 292, 8506 NameInfo: &types.ElementDescription{ 8507 Description: types.Description{ 8508 Label: "Activation count", 8509 Summary: "Activation operations in vCenter Server", 8510 }, 8511 Key: "activationstats", 8512 }, 8513 GroupInfo: &types.ElementDescription{ 8514 Description: types.Description{ 8515 Label: "vCenter debugging information", 8516 Summary: "vCenter debugging information", 8517 }, 8518 Key: "vcDebugInfo", 8519 }, 8520 UnitInfo: &types.ElementDescription{ 8521 Description: types.Description{ 8522 Label: "num", 8523 Summary: "Number", 8524 }, 8525 Key: "number", 8526 }, 8527 RollupType: "maximum", 8528 StatsType: "absolute", 8529 Level: 4, 8530 PerDeviceLevel: 4, 8531 AssociatedCounterId: nil, 8532 }, 8533 { 8534 Key: 293, 8535 NameInfo: &types.ElementDescription{ 8536 Description: types.Description{ 8537 Label: "Activation count", 8538 Summary: "Activation operations in vCenter Server", 8539 }, 8540 Key: "activationstats", 8541 }, 8542 GroupInfo: &types.ElementDescription{ 8543 Description: types.Description{ 8544 Label: "vCenter debugging information", 8545 Summary: "vCenter debugging information", 8546 }, 8547 Key: "vcDebugInfo", 8548 }, 8549 UnitInfo: &types.ElementDescription{ 8550 Description: types.Description{ 8551 Label: "num", 8552 Summary: "Number", 8553 }, 8554 Key: "number", 8555 }, 8556 RollupType: "minimum", 8557 StatsType: "absolute", 8558 Level: 4, 8559 PerDeviceLevel: 4, 8560 AssociatedCounterId: nil, 8561 }, 8562 { 8563 Key: 294, 8564 NameInfo: &types.ElementDescription{ 8565 Description: types.Description{ 8566 Label: "Activation count", 8567 Summary: "Activation operations in vCenter Server", 8568 }, 8569 Key: "activationstats", 8570 }, 8571 GroupInfo: &types.ElementDescription{ 8572 Description: types.Description{ 8573 Label: "vCenter debugging information", 8574 Summary: "vCenter debugging information", 8575 }, 8576 Key: "vcDebugInfo", 8577 }, 8578 UnitInfo: &types.ElementDescription{ 8579 Description: types.Description{ 8580 Label: "num", 8581 Summary: "Number", 8582 }, 8583 Key: "number", 8584 }, 8585 RollupType: "summation", 8586 StatsType: "absolute", 8587 Level: 1, 8588 PerDeviceLevel: 1, 8589 AssociatedCounterId: nil, 8590 }, 8591 { 8592 Key: 295, 8593 NameInfo: &types.ElementDescription{ 8594 Description: types.Description{ 8595 Label: "buffersz", 8596 Summary: "buffersz", 8597 }, 8598 Key: "buffersz", 8599 }, 8600 GroupInfo: &types.ElementDescription{ 8601 Description: types.Description{ 8602 Label: "vCenter resource usage information", 8603 Summary: "vCenter resource usage information", 8604 }, 8605 Key: "vcResources", 8606 }, 8607 UnitInfo: &types.ElementDescription{ 8608 Description: types.Description{ 8609 Label: "KB", 8610 Summary: "Kilobyte", 8611 }, 8612 Key: "kiloBytes", 8613 }, 8614 RollupType: "average", 8615 StatsType: "absolute", 8616 Level: 4, 8617 PerDeviceLevel: 4, 8618 AssociatedCounterId: nil, 8619 }, 8620 { 8621 Key: 296, 8622 NameInfo: &types.ElementDescription{ 8623 Description: types.Description{ 8624 Label: "cachesz", 8625 Summary: "cachesz", 8626 }, 8627 Key: "cachesz", 8628 }, 8629 GroupInfo: &types.ElementDescription{ 8630 Description: types.Description{ 8631 Label: "vCenter resource usage information", 8632 Summary: "vCenter resource usage information", 8633 }, 8634 Key: "vcResources", 8635 }, 8636 UnitInfo: &types.ElementDescription{ 8637 Description: types.Description{ 8638 Label: "KB", 8639 Summary: "Kilobyte", 8640 }, 8641 Key: "kiloBytes", 8642 }, 8643 RollupType: "average", 8644 StatsType: "absolute", 8645 Level: 4, 8646 PerDeviceLevel: 4, 8647 AssociatedCounterId: nil, 8648 }, 8649 { 8650 Key: 297, 8651 NameInfo: &types.ElementDescription{ 8652 Description: types.Description{ 8653 Label: "Context switch rate", 8654 Summary: "Number of context switches per second on the system where vCenter Server is running", 8655 }, 8656 Key: "ctxswitchesrate", 8657 }, 8658 GroupInfo: &types.ElementDescription{ 8659 Description: types.Description{ 8660 Label: "vCenter resource usage information", 8661 Summary: "vCenter resource usage information", 8662 }, 8663 Key: "vcResources", 8664 }, 8665 UnitInfo: &types.ElementDescription{ 8666 Description: types.Description{ 8667 Label: "num", 8668 Summary: "Number", 8669 }, 8670 Key: "number", 8671 }, 8672 RollupType: "average", 8673 StatsType: "rate", 8674 Level: 1, 8675 PerDeviceLevel: 1, 8676 AssociatedCounterId: nil, 8677 }, 8678 { 8679 Key: 298, 8680 NameInfo: &types.ElementDescription{ 8681 Description: types.Description{ 8682 Label: "diskreadsectorrate", 8683 Summary: "diskreadsectorrate", 8684 }, 8685 Key: "diskreadsectorrate", 8686 }, 8687 GroupInfo: &types.ElementDescription{ 8688 Description: types.Description{ 8689 Label: "vCenter resource usage information", 8690 Summary: "vCenter resource usage information", 8691 }, 8692 Key: "vcResources", 8693 }, 8694 UnitInfo: &types.ElementDescription{ 8695 Description: types.Description{ 8696 Label: "num", 8697 Summary: "Number", 8698 }, 8699 Key: "number", 8700 }, 8701 RollupType: "average", 8702 StatsType: "rate", 8703 Level: 4, 8704 PerDeviceLevel: 4, 8705 AssociatedCounterId: nil, 8706 }, 8707 { 8708 Key: 299, 8709 NameInfo: &types.ElementDescription{ 8710 Description: types.Description{ 8711 Label: "Disk read rate", 8712 Summary: "Number of disk reads per second on the system where vCenter Server is running", 8713 }, 8714 Key: "diskreadsrate", 8715 }, 8716 GroupInfo: &types.ElementDescription{ 8717 Description: types.Description{ 8718 Label: "vCenter resource usage information", 8719 Summary: "vCenter resource usage information", 8720 }, 8721 Key: "vcResources", 8722 }, 8723 UnitInfo: &types.ElementDescription{ 8724 Description: types.Description{ 8725 Label: "num", 8726 Summary: "Number", 8727 }, 8728 Key: "number", 8729 }, 8730 RollupType: "average", 8731 StatsType: "rate", 8732 Level: 1, 8733 PerDeviceLevel: 1, 8734 AssociatedCounterId: nil, 8735 }, 8736 { 8737 Key: 300, 8738 NameInfo: &types.ElementDescription{ 8739 Description: types.Description{ 8740 Label: "diskwritesectorrate", 8741 Summary: "diskwritesectorrate", 8742 }, 8743 Key: "diskwritesectorrate", 8744 }, 8745 GroupInfo: &types.ElementDescription{ 8746 Description: types.Description{ 8747 Label: "vCenter resource usage information", 8748 Summary: "vCenter resource usage information", 8749 }, 8750 Key: "vcResources", 8751 }, 8752 UnitInfo: &types.ElementDescription{ 8753 Description: types.Description{ 8754 Label: "num", 8755 Summary: "Number", 8756 }, 8757 Key: "number", 8758 }, 8759 RollupType: "average", 8760 StatsType: "rate", 8761 Level: 4, 8762 PerDeviceLevel: 4, 8763 AssociatedCounterId: nil, 8764 }, 8765 { 8766 Key: 301, 8767 NameInfo: &types.ElementDescription{ 8768 Description: types.Description{ 8769 Label: "Disk write rate", 8770 Summary: "Number of disk writes per second on the system where vCenter Server is running", 8771 }, 8772 Key: "diskwritesrate", 8773 }, 8774 GroupInfo: &types.ElementDescription{ 8775 Description: types.Description{ 8776 Label: "vCenter resource usage information", 8777 Summary: "vCenter resource usage information", 8778 }, 8779 Key: "vcResources", 8780 }, 8781 UnitInfo: &types.ElementDescription{ 8782 Description: types.Description{ 8783 Label: "num", 8784 Summary: "Number", 8785 }, 8786 Key: "number", 8787 }, 8788 RollupType: "average", 8789 StatsType: "rate", 8790 Level: 1, 8791 PerDeviceLevel: 1, 8792 AssociatedCounterId: nil, 8793 }, 8794 { 8795 Key: 302, 8796 NameInfo: &types.ElementDescription{ 8797 Description: types.Description{ 8798 Label: "Host sync latency", 8799 Summary: "The latency of a host sync operation in vCenter Server", 8800 }, 8801 Key: "hostsynclatencystats", 8802 }, 8803 GroupInfo: &types.ElementDescription{ 8804 Description: types.Description{ 8805 Label: "vCenter debugging information", 8806 Summary: "vCenter debugging information", 8807 }, 8808 Key: "vcDebugInfo", 8809 }, 8810 UnitInfo: &types.ElementDescription{ 8811 Description: types.Description{ 8812 Label: "ms", 8813 Summary: "Millisecond", 8814 }, 8815 Key: "millisecond", 8816 }, 8817 RollupType: "maximum", 8818 StatsType: "absolute", 8819 Level: 4, 8820 PerDeviceLevel: 4, 8821 AssociatedCounterId: nil, 8822 }, 8823 { 8824 Key: 303, 8825 NameInfo: &types.ElementDescription{ 8826 Description: types.Description{ 8827 Label: "Host sync latency", 8828 Summary: "The latency of a host sync operation in vCenter Server", 8829 }, 8830 Key: "hostsynclatencystats", 8831 }, 8832 GroupInfo: &types.ElementDescription{ 8833 Description: types.Description{ 8834 Label: "vCenter debugging information", 8835 Summary: "vCenter debugging information", 8836 }, 8837 Key: "vcDebugInfo", 8838 }, 8839 UnitInfo: &types.ElementDescription{ 8840 Description: types.Description{ 8841 Label: "ms", 8842 Summary: "Millisecond", 8843 }, 8844 Key: "millisecond", 8845 }, 8846 RollupType: "minimum", 8847 StatsType: "absolute", 8848 Level: 4, 8849 PerDeviceLevel: 4, 8850 AssociatedCounterId: nil, 8851 }, 8852 { 8853 Key: 304, 8854 NameInfo: &types.ElementDescription{ 8855 Description: types.Description{ 8856 Label: "Host sync latency", 8857 Summary: "The latency of a host sync operation in vCenter Server", 8858 }, 8859 Key: "hostsynclatencystats", 8860 }, 8861 GroupInfo: &types.ElementDescription{ 8862 Description: types.Description{ 8863 Label: "vCenter debugging information", 8864 Summary: "vCenter debugging information", 8865 }, 8866 Key: "vcDebugInfo", 8867 }, 8868 UnitInfo: &types.ElementDescription{ 8869 Description: types.Description{ 8870 Label: "ms", 8871 Summary: "Millisecond", 8872 }, 8873 Key: "millisecond", 8874 }, 8875 RollupType: "summation", 8876 StatsType: "absolute", 8877 Level: 1, 8878 PerDeviceLevel: 1, 8879 AssociatedCounterId: nil, 8880 }, 8881 { 8882 Key: 305, 8883 NameInfo: &types.ElementDescription{ 8884 Description: types.Description{ 8885 Label: "Host sync count", 8886 Summary: "The number of host sync operations in vCenter Server", 8887 }, 8888 Key: "hostsyncstats", 8889 }, 8890 GroupInfo: &types.ElementDescription{ 8891 Description: types.Description{ 8892 Label: "vCenter debugging information", 8893 Summary: "vCenter debugging information", 8894 }, 8895 Key: "vcDebugInfo", 8896 }, 8897 UnitInfo: &types.ElementDescription{ 8898 Description: types.Description{ 8899 Label: "num", 8900 Summary: "Number", 8901 }, 8902 Key: "number", 8903 }, 8904 RollupType: "maximum", 8905 StatsType: "absolute", 8906 Level: 4, 8907 PerDeviceLevel: 4, 8908 AssociatedCounterId: nil, 8909 }, 8910 { 8911 Key: 306, 8912 NameInfo: &types.ElementDescription{ 8913 Description: types.Description{ 8914 Label: "Host sync count", 8915 Summary: "The number of host sync operations in vCenter Server", 8916 }, 8917 Key: "hostsyncstats", 8918 }, 8919 GroupInfo: &types.ElementDescription{ 8920 Description: types.Description{ 8921 Label: "vCenter debugging information", 8922 Summary: "vCenter debugging information", 8923 }, 8924 Key: "vcDebugInfo", 8925 }, 8926 UnitInfo: &types.ElementDescription{ 8927 Description: types.Description{ 8928 Label: "num", 8929 Summary: "Number", 8930 }, 8931 Key: "number", 8932 }, 8933 RollupType: "minimum", 8934 StatsType: "absolute", 8935 Level: 4, 8936 PerDeviceLevel: 4, 8937 AssociatedCounterId: nil, 8938 }, 8939 { 8940 Key: 307, 8941 NameInfo: &types.ElementDescription{ 8942 Description: types.Description{ 8943 Label: "Host sync count", 8944 Summary: "The number of host sync operations in vCenter Server", 8945 }, 8946 Key: "hostsyncstats", 8947 }, 8948 GroupInfo: &types.ElementDescription{ 8949 Description: types.Description{ 8950 Label: "vCenter debugging information", 8951 Summary: "vCenter debugging information", 8952 }, 8953 Key: "vcDebugInfo", 8954 }, 8955 UnitInfo: &types.ElementDescription{ 8956 Description: types.Description{ 8957 Label: "num", 8958 Summary: "Number", 8959 }, 8960 Key: "number", 8961 }, 8962 RollupType: "summation", 8963 StatsType: "absolute", 8964 Level: 1, 8965 PerDeviceLevel: 1, 8966 AssociatedCounterId: nil, 8967 }, 8968 { 8969 Key: 308, 8970 NameInfo: &types.ElementDescription{ 8971 Description: types.Description{ 8972 Label: "Inventory statistics", 8973 Summary: "vCenter Server inventory statistics", 8974 }, 8975 Key: "inventorystats", 8976 }, 8977 GroupInfo: &types.ElementDescription{ 8978 Description: types.Description{ 8979 Label: "vCenter debugging information", 8980 Summary: "vCenter debugging information", 8981 }, 8982 Key: "vcDebugInfo", 8983 }, 8984 UnitInfo: &types.ElementDescription{ 8985 Description: types.Description{ 8986 Label: "num", 8987 Summary: "Number", 8988 }, 8989 Key: "number", 8990 }, 8991 RollupType: "maximum", 8992 StatsType: "absolute", 8993 Level: 4, 8994 PerDeviceLevel: 4, 8995 AssociatedCounterId: nil, 8996 }, 8997 { 8998 Key: 309, 8999 NameInfo: &types.ElementDescription{ 9000 Description: types.Description{ 9001 Label: "Inventory statistics", 9002 Summary: "vCenter Server inventory statistics", 9003 }, 9004 Key: "inventorystats", 9005 }, 9006 GroupInfo: &types.ElementDescription{ 9007 Description: types.Description{ 9008 Label: "vCenter debugging information", 9009 Summary: "vCenter debugging information", 9010 }, 9011 Key: "vcDebugInfo", 9012 }, 9013 UnitInfo: &types.ElementDescription{ 9014 Description: types.Description{ 9015 Label: "num", 9016 Summary: "Number", 9017 }, 9018 Key: "number", 9019 }, 9020 RollupType: "minimum", 9021 StatsType: "absolute", 9022 Level: 4, 9023 PerDeviceLevel: 4, 9024 AssociatedCounterId: nil, 9025 }, 9026 { 9027 Key: 310, 9028 NameInfo: &types.ElementDescription{ 9029 Description: types.Description{ 9030 Label: "Inventory statistics", 9031 Summary: "vCenter Server inventory statistics", 9032 }, 9033 Key: "inventorystats", 9034 }, 9035 GroupInfo: &types.ElementDescription{ 9036 Description: types.Description{ 9037 Label: "vCenter debugging information", 9038 Summary: "vCenter debugging information", 9039 }, 9040 Key: "vcDebugInfo", 9041 }, 9042 UnitInfo: &types.ElementDescription{ 9043 Description: types.Description{ 9044 Label: "num", 9045 Summary: "Number", 9046 }, 9047 Key: "number", 9048 }, 9049 RollupType: "summation", 9050 StatsType: "absolute", 9051 Level: 1, 9052 PerDeviceLevel: 1, 9053 AssociatedCounterId: nil, 9054 }, 9055 { 9056 Key: 311, 9057 NameInfo: &types.ElementDescription{ 9058 Description: types.Description{ 9059 Label: "Locking statistics", 9060 Summary: "vCenter Server locking statistics", 9061 }, 9062 Key: "lockstats", 9063 }, 9064 GroupInfo: &types.ElementDescription{ 9065 Description: types.Description{ 9066 Label: "vCenter debugging information", 9067 Summary: "vCenter debugging information", 9068 }, 9069 Key: "vcDebugInfo", 9070 }, 9071 UnitInfo: &types.ElementDescription{ 9072 Description: types.Description{ 9073 Label: "num", 9074 Summary: "Number", 9075 }, 9076 Key: "number", 9077 }, 9078 RollupType: "maximum", 9079 StatsType: "absolute", 9080 Level: 4, 9081 PerDeviceLevel: 4, 9082 AssociatedCounterId: nil, 9083 }, 9084 { 9085 Key: 312, 9086 NameInfo: &types.ElementDescription{ 9087 Description: types.Description{ 9088 Label: "Locking statistics", 9089 Summary: "vCenter Server locking statistics", 9090 }, 9091 Key: "lockstats", 9092 }, 9093 GroupInfo: &types.ElementDescription{ 9094 Description: types.Description{ 9095 Label: "vCenter debugging information", 9096 Summary: "vCenter debugging information", 9097 }, 9098 Key: "vcDebugInfo", 9099 }, 9100 UnitInfo: &types.ElementDescription{ 9101 Description: types.Description{ 9102 Label: "num", 9103 Summary: "Number", 9104 }, 9105 Key: "number", 9106 }, 9107 RollupType: "minimum", 9108 StatsType: "absolute", 9109 Level: 4, 9110 PerDeviceLevel: 4, 9111 AssociatedCounterId: nil, 9112 }, 9113 { 9114 Key: 313, 9115 NameInfo: &types.ElementDescription{ 9116 Description: types.Description{ 9117 Label: "Locking statistics", 9118 Summary: "vCenter Server locking statistics", 9119 }, 9120 Key: "lockstats", 9121 }, 9122 GroupInfo: &types.ElementDescription{ 9123 Description: types.Description{ 9124 Label: "vCenter debugging information", 9125 Summary: "vCenter debugging information", 9126 }, 9127 Key: "vcDebugInfo", 9128 }, 9129 UnitInfo: &types.ElementDescription{ 9130 Description: types.Description{ 9131 Label: "num", 9132 Summary: "Number", 9133 }, 9134 Key: "number", 9135 }, 9136 RollupType: "summation", 9137 StatsType: "absolute", 9138 Level: 1, 9139 PerDeviceLevel: 1, 9140 AssociatedCounterId: nil, 9141 }, 9142 { 9143 Key: 314, 9144 NameInfo: &types.ElementDescription{ 9145 Description: types.Description{ 9146 Label: "vCenter Server LRO statistics", 9147 Summary: "vCenter Server LRO statistics", 9148 }, 9149 Key: "lrostats", 9150 }, 9151 GroupInfo: &types.ElementDescription{ 9152 Description: types.Description{ 9153 Label: "vCenter debugging information", 9154 Summary: "vCenter debugging information", 9155 }, 9156 Key: "vcDebugInfo", 9157 }, 9158 UnitInfo: &types.ElementDescription{ 9159 Description: types.Description{ 9160 Label: "num", 9161 Summary: "Number", 9162 }, 9163 Key: "number", 9164 }, 9165 RollupType: "maximum", 9166 StatsType: "absolute", 9167 Level: 4, 9168 PerDeviceLevel: 4, 9169 AssociatedCounterId: nil, 9170 }, 9171 { 9172 Key: 315, 9173 NameInfo: &types.ElementDescription{ 9174 Description: types.Description{ 9175 Label: "vCenter Server LRO statistics", 9176 Summary: "vCenter Server LRO statistics", 9177 }, 9178 Key: "lrostats", 9179 }, 9180 GroupInfo: &types.ElementDescription{ 9181 Description: types.Description{ 9182 Label: "vCenter debugging information", 9183 Summary: "vCenter debugging information", 9184 }, 9185 Key: "vcDebugInfo", 9186 }, 9187 UnitInfo: &types.ElementDescription{ 9188 Description: types.Description{ 9189 Label: "num", 9190 Summary: "Number", 9191 }, 9192 Key: "number", 9193 }, 9194 RollupType: "minimum", 9195 StatsType: "absolute", 9196 Level: 4, 9197 PerDeviceLevel: 4, 9198 AssociatedCounterId: nil, 9199 }, 9200 { 9201 Key: 316, 9202 NameInfo: &types.ElementDescription{ 9203 Description: types.Description{ 9204 Label: "vCenter Server LRO statistics", 9205 Summary: "vCenter Server LRO statistics", 9206 }, 9207 Key: "lrostats", 9208 }, 9209 GroupInfo: &types.ElementDescription{ 9210 Description: types.Description{ 9211 Label: "vCenter debugging information", 9212 Summary: "vCenter debugging information", 9213 }, 9214 Key: "vcDebugInfo", 9215 }, 9216 UnitInfo: &types.ElementDescription{ 9217 Description: types.Description{ 9218 Label: "num", 9219 Summary: "Number", 9220 }, 9221 Key: "number", 9222 }, 9223 RollupType: "summation", 9224 StatsType: "absolute", 9225 Level: 1, 9226 PerDeviceLevel: 1, 9227 AssociatedCounterId: nil, 9228 }, 9229 { 9230 Key: 317, 9231 NameInfo: &types.ElementDescription{ 9232 Description: types.Description{ 9233 Label: "Miscellaneous", 9234 Summary: "Miscellaneous statistics", 9235 }, 9236 Key: "miscstats", 9237 }, 9238 GroupInfo: &types.ElementDescription{ 9239 Description: types.Description{ 9240 Label: "vCenter debugging information", 9241 Summary: "vCenter debugging information", 9242 }, 9243 Key: "vcDebugInfo", 9244 }, 9245 UnitInfo: &types.ElementDescription{ 9246 Description: types.Description{ 9247 Label: "num", 9248 Summary: "Number", 9249 }, 9250 Key: "number", 9251 }, 9252 RollupType: "maximum", 9253 StatsType: "absolute", 9254 Level: 4, 9255 PerDeviceLevel: 4, 9256 AssociatedCounterId: nil, 9257 }, 9258 { 9259 Key: 318, 9260 NameInfo: &types.ElementDescription{ 9261 Description: types.Description{ 9262 Label: "Miscellaneous", 9263 Summary: "Miscellaneous statistics", 9264 }, 9265 Key: "miscstats", 9266 }, 9267 GroupInfo: &types.ElementDescription{ 9268 Description: types.Description{ 9269 Label: "vCenter debugging information", 9270 Summary: "vCenter debugging information", 9271 }, 9272 Key: "vcDebugInfo", 9273 }, 9274 UnitInfo: &types.ElementDescription{ 9275 Description: types.Description{ 9276 Label: "num", 9277 Summary: "Number", 9278 }, 9279 Key: "number", 9280 }, 9281 RollupType: "minimum", 9282 StatsType: "absolute", 9283 Level: 4, 9284 PerDeviceLevel: 4, 9285 AssociatedCounterId: nil, 9286 }, 9287 { 9288 Key: 319, 9289 NameInfo: &types.ElementDescription{ 9290 Description: types.Description{ 9291 Label: "Miscellaneous", 9292 Summary: "Miscellaneous statistics", 9293 }, 9294 Key: "miscstats", 9295 }, 9296 GroupInfo: &types.ElementDescription{ 9297 Description: types.Description{ 9298 Label: "vCenter debugging information", 9299 Summary: "vCenter debugging information", 9300 }, 9301 Key: "vcDebugInfo", 9302 }, 9303 UnitInfo: &types.ElementDescription{ 9304 Description: types.Description{ 9305 Label: "num", 9306 Summary: "Number", 9307 }, 9308 Key: "number", 9309 }, 9310 RollupType: "summation", 9311 StatsType: "absolute", 9312 Level: 1, 9313 PerDeviceLevel: 1, 9314 AssociatedCounterId: nil, 9315 }, 9316 { 9317 Key: 320, 9318 NameInfo: &types.ElementDescription{ 9319 Description: types.Description{ 9320 Label: "Managed object reference statistics", 9321 Summary: "Managed object reference counts in vCenter Server", 9322 }, 9323 Key: "morefregstats", 9324 }, 9325 GroupInfo: &types.ElementDescription{ 9326 Description: types.Description{ 9327 Label: "vCenter debugging information", 9328 Summary: "vCenter debugging information", 9329 }, 9330 Key: "vcDebugInfo", 9331 }, 9332 UnitInfo: &types.ElementDescription{ 9333 Description: types.Description{ 9334 Label: "num", 9335 Summary: "Number", 9336 }, 9337 Key: "number", 9338 }, 9339 RollupType: "maximum", 9340 StatsType: "absolute", 9341 Level: 4, 9342 PerDeviceLevel: 4, 9343 AssociatedCounterId: nil, 9344 }, 9345 { 9346 Key: 321, 9347 NameInfo: &types.ElementDescription{ 9348 Description: types.Description{ 9349 Label: "Managed object reference statistics", 9350 Summary: "Managed object reference counts in vCenter Server", 9351 }, 9352 Key: "morefregstats", 9353 }, 9354 GroupInfo: &types.ElementDescription{ 9355 Description: types.Description{ 9356 Label: "vCenter debugging information", 9357 Summary: "vCenter debugging information", 9358 }, 9359 Key: "vcDebugInfo", 9360 }, 9361 UnitInfo: &types.ElementDescription{ 9362 Description: types.Description{ 9363 Label: "num", 9364 Summary: "Number", 9365 }, 9366 Key: "number", 9367 }, 9368 RollupType: "minimum", 9369 StatsType: "absolute", 9370 Level: 4, 9371 PerDeviceLevel: 4, 9372 AssociatedCounterId: nil, 9373 }, 9374 { 9375 Key: 322, 9376 NameInfo: &types.ElementDescription{ 9377 Description: types.Description{ 9378 Label: "Managed object reference statistics", 9379 Summary: "Managed object reference counts in vCenter Server", 9380 }, 9381 Key: "morefregstats", 9382 }, 9383 GroupInfo: &types.ElementDescription{ 9384 Description: types.Description{ 9385 Label: "vCenter debugging information", 9386 Summary: "vCenter debugging information", 9387 }, 9388 Key: "vcDebugInfo", 9389 }, 9390 UnitInfo: &types.ElementDescription{ 9391 Description: types.Description{ 9392 Label: "num", 9393 Summary: "Number", 9394 }, 9395 Key: "number", 9396 }, 9397 RollupType: "summation", 9398 StatsType: "absolute", 9399 Level: 1, 9400 PerDeviceLevel: 1, 9401 AssociatedCounterId: nil, 9402 }, 9403 { 9404 Key: 323, 9405 NameInfo: &types.ElementDescription{ 9406 Description: types.Description{ 9407 Label: "Received packet rate", 9408 Summary: "Rate of the number of total packets received per second on the system where vCenter Server is running", 9409 }, 9410 Key: "packetrecvrate", 9411 }, 9412 GroupInfo: &types.ElementDescription{ 9413 Description: types.Description{ 9414 Label: "vCenter resource usage information", 9415 Summary: "vCenter resource usage information", 9416 }, 9417 Key: "vcResources", 9418 }, 9419 UnitInfo: &types.ElementDescription{ 9420 Description: types.Description{ 9421 Label: "num", 9422 Summary: "Number", 9423 }, 9424 Key: "number", 9425 }, 9426 RollupType: "average", 9427 StatsType: "rate", 9428 Level: 1, 9429 PerDeviceLevel: 1, 9430 AssociatedCounterId: nil, 9431 }, 9432 { 9433 Key: 324, 9434 NameInfo: &types.ElementDescription{ 9435 Description: types.Description{ 9436 Label: "Sent packet rate", 9437 Summary: "Number of total packets sent per second on the system where vCenter Server is running", 9438 }, 9439 Key: "packetsentrate", 9440 }, 9441 GroupInfo: &types.ElementDescription{ 9442 Description: types.Description{ 9443 Label: "vCenter resource usage information", 9444 Summary: "vCenter resource usage information", 9445 }, 9446 Key: "vcResources", 9447 }, 9448 UnitInfo: &types.ElementDescription{ 9449 Description: types.Description{ 9450 Label: "num", 9451 Summary: "Number", 9452 }, 9453 Key: "number", 9454 }, 9455 RollupType: "average", 9456 StatsType: "rate", 9457 Level: 1, 9458 PerDeviceLevel: 1, 9459 AssociatedCounterId: nil, 9460 }, 9461 { 9462 Key: 325, 9463 NameInfo: &types.ElementDescription{ 9464 Description: types.Description{ 9465 Label: "CPU system", 9466 Summary: "Total system CPU used on the system where vCenter Server in running", 9467 }, 9468 Key: "systemcpuusage", 9469 }, 9470 GroupInfo: &types.ElementDescription{ 9471 Description: types.Description{ 9472 Label: "vCenter resource usage information", 9473 Summary: "vCenter resource usage information", 9474 }, 9475 Key: "vcResources", 9476 }, 9477 UnitInfo: &types.ElementDescription{ 9478 Description: types.Description{ 9479 Label: "%", 9480 Summary: "Percentage", 9481 }, 9482 Key: "percent", 9483 }, 9484 RollupType: "average", 9485 StatsType: "rate", 9486 Level: 1, 9487 PerDeviceLevel: 1, 9488 AssociatedCounterId: nil, 9489 }, 9490 { 9491 Key: 326, 9492 NameInfo: &types.ElementDescription{ 9493 Description: types.Description{ 9494 Label: "Page fault rate", 9495 Summary: "Number of page faults per second on the system where vCenter Server is running", 9496 }, 9497 Key: "pagefaultrate", 9498 }, 9499 GroupInfo: &types.ElementDescription{ 9500 Description: types.Description{ 9501 Label: "vCenter resource usage information", 9502 Summary: "vCenter resource usage information", 9503 }, 9504 Key: "vcResources", 9505 }, 9506 UnitInfo: &types.ElementDescription{ 9507 Description: types.Description{ 9508 Label: "num", 9509 Summary: "Number", 9510 }, 9511 Key: "number", 9512 }, 9513 RollupType: "average", 9514 StatsType: "rate", 9515 Level: 1, 9516 PerDeviceLevel: 1, 9517 AssociatedCounterId: nil, 9518 }, 9519 { 9520 Key: 327, 9521 NameInfo: &types.ElementDescription{ 9522 Description: types.Description{ 9523 Label: "Physical memory", 9524 Summary: "Physical memory used by vCenter", 9525 }, 9526 Key: "physicalmemusage", 9527 }, 9528 GroupInfo: &types.ElementDescription{ 9529 Description: types.Description{ 9530 Label: "vCenter resource usage information", 9531 Summary: "vCenter resource usage information", 9532 }, 9533 Key: "vcResources", 9534 }, 9535 UnitInfo: &types.ElementDescription{ 9536 Description: types.Description{ 9537 Label: "KB", 9538 Summary: "Kilobyte", 9539 }, 9540 Key: "kiloBytes", 9541 }, 9542 RollupType: "average", 9543 StatsType: "absolute", 9544 Level: 1, 9545 PerDeviceLevel: 1, 9546 AssociatedCounterId: nil, 9547 }, 9548 { 9549 Key: 328, 9550 NameInfo: &types.ElementDescription{ 9551 Description: types.Description{ 9552 Label: "CPU privileged", 9553 Summary: "CPU used by vCenter Server in privileged mode", 9554 }, 9555 Key: "priviledgedcpuusage", 9556 }, 9557 GroupInfo: &types.ElementDescription{ 9558 Description: types.Description{ 9559 Label: "vCenter resource usage information", 9560 Summary: "vCenter resource usage information", 9561 }, 9562 Key: "vcResources", 9563 }, 9564 UnitInfo: &types.ElementDescription{ 9565 Description: types.Description{ 9566 Label: "%", 9567 Summary: "Percentage", 9568 }, 9569 Key: "percent", 9570 }, 9571 RollupType: "average", 9572 StatsType: "rate", 9573 Level: 1, 9574 PerDeviceLevel: 1, 9575 AssociatedCounterId: nil, 9576 }, 9577 { 9578 Key: 329, 9579 NameInfo: &types.ElementDescription{ 9580 Description: types.Description{ 9581 Label: "Scoreboard statistics", 9582 Summary: "Object counts in vCenter Server", 9583 }, 9584 Key: "scoreboard", 9585 }, 9586 GroupInfo: &types.ElementDescription{ 9587 Description: types.Description{ 9588 Label: "vCenter debugging information", 9589 Summary: "vCenter debugging information", 9590 }, 9591 Key: "vcDebugInfo", 9592 }, 9593 UnitInfo: &types.ElementDescription{ 9594 Description: types.Description{ 9595 Label: "num", 9596 Summary: "Number", 9597 }, 9598 Key: "number", 9599 }, 9600 RollupType: "maximum", 9601 StatsType: "absolute", 9602 Level: 4, 9603 PerDeviceLevel: 4, 9604 AssociatedCounterId: nil, 9605 }, 9606 { 9607 Key: 330, 9608 NameInfo: &types.ElementDescription{ 9609 Description: types.Description{ 9610 Label: "Scoreboard statistics", 9611 Summary: "Object counts in vCenter Server", 9612 }, 9613 Key: "scoreboard", 9614 }, 9615 GroupInfo: &types.ElementDescription{ 9616 Description: types.Description{ 9617 Label: "vCenter debugging information", 9618 Summary: "vCenter debugging information", 9619 }, 9620 Key: "vcDebugInfo", 9621 }, 9622 UnitInfo: &types.ElementDescription{ 9623 Description: types.Description{ 9624 Label: "num", 9625 Summary: "Number", 9626 }, 9627 Key: "number", 9628 }, 9629 RollupType: "minimum", 9630 StatsType: "absolute", 9631 Level: 4, 9632 PerDeviceLevel: 4, 9633 AssociatedCounterId: nil, 9634 }, 9635 { 9636 Key: 331, 9637 NameInfo: &types.ElementDescription{ 9638 Description: types.Description{ 9639 Label: "Scoreboard statistics", 9640 Summary: "Object counts in vCenter Server", 9641 }, 9642 Key: "scoreboard", 9643 }, 9644 GroupInfo: &types.ElementDescription{ 9645 Description: types.Description{ 9646 Label: "vCenter debugging information", 9647 Summary: "vCenter debugging information", 9648 }, 9649 Key: "vcDebugInfo", 9650 }, 9651 UnitInfo: &types.ElementDescription{ 9652 Description: types.Description{ 9653 Label: "num", 9654 Summary: "Number", 9655 }, 9656 Key: "number", 9657 }, 9658 RollupType: "summation", 9659 StatsType: "absolute", 9660 Level: 3, 9661 PerDeviceLevel: 3, 9662 AssociatedCounterId: nil, 9663 }, 9664 { 9665 Key: 332, 9666 NameInfo: &types.ElementDescription{ 9667 Description: types.Description{ 9668 Label: "Session statistics", 9669 Summary: "The statistics of client sessions connected to vCenter Server", 9670 }, 9671 Key: "sessionstats", 9672 }, 9673 GroupInfo: &types.ElementDescription{ 9674 Description: types.Description{ 9675 Label: "vCenter debugging information", 9676 Summary: "vCenter debugging information", 9677 }, 9678 Key: "vcDebugInfo", 9679 }, 9680 UnitInfo: &types.ElementDescription{ 9681 Description: types.Description{ 9682 Label: "num", 9683 Summary: "Number", 9684 }, 9685 Key: "number", 9686 }, 9687 RollupType: "maximum", 9688 StatsType: "absolute", 9689 Level: 4, 9690 PerDeviceLevel: 4, 9691 AssociatedCounterId: nil, 9692 }, 9693 { 9694 Key: 333, 9695 NameInfo: &types.ElementDescription{ 9696 Description: types.Description{ 9697 Label: "Session statistics", 9698 Summary: "The statistics of client sessions connected to vCenter Server", 9699 }, 9700 Key: "sessionstats", 9701 }, 9702 GroupInfo: &types.ElementDescription{ 9703 Description: types.Description{ 9704 Label: "vCenter debugging information", 9705 Summary: "vCenter debugging information", 9706 }, 9707 Key: "vcDebugInfo", 9708 }, 9709 UnitInfo: &types.ElementDescription{ 9710 Description: types.Description{ 9711 Label: "num", 9712 Summary: "Number", 9713 }, 9714 Key: "number", 9715 }, 9716 RollupType: "minimum", 9717 StatsType: "absolute", 9718 Level: 4, 9719 PerDeviceLevel: 4, 9720 AssociatedCounterId: nil, 9721 }, 9722 { 9723 Key: 334, 9724 NameInfo: &types.ElementDescription{ 9725 Description: types.Description{ 9726 Label: "Session statistics", 9727 Summary: "The statistics of client sessions connected to vCenter Server", 9728 }, 9729 Key: "sessionstats", 9730 }, 9731 GroupInfo: &types.ElementDescription{ 9732 Description: types.Description{ 9733 Label: "vCenter debugging information", 9734 Summary: "vCenter debugging information", 9735 }, 9736 Key: "vcDebugInfo", 9737 }, 9738 UnitInfo: &types.ElementDescription{ 9739 Description: types.Description{ 9740 Label: "num", 9741 Summary: "Number", 9742 }, 9743 Key: "number", 9744 }, 9745 RollupType: "summation", 9746 StatsType: "absolute", 9747 Level: 1, 9748 PerDeviceLevel: 1, 9749 AssociatedCounterId: nil, 9750 }, 9751 { 9752 Key: 335, 9753 NameInfo: &types.ElementDescription{ 9754 Description: types.Description{ 9755 Label: "System call rate", 9756 Summary: "Number of systems calls made per second on the system where vCenter Server is running", 9757 }, 9758 Key: "syscallsrate", 9759 }, 9760 GroupInfo: &types.ElementDescription{ 9761 Description: types.Description{ 9762 Label: "vCenter resource usage information", 9763 Summary: "vCenter resource usage information", 9764 }, 9765 Key: "vcResources", 9766 }, 9767 UnitInfo: &types.ElementDescription{ 9768 Description: types.Description{ 9769 Label: "num", 9770 Summary: "Number", 9771 }, 9772 Key: "number", 9773 }, 9774 RollupType: "average", 9775 StatsType: "rate", 9776 Level: 1, 9777 PerDeviceLevel: 1, 9778 AssociatedCounterId: nil, 9779 }, 9780 { 9781 Key: 336, 9782 NameInfo: &types.ElementDescription{ 9783 Description: types.Description{ 9784 Label: "System statistics", 9785 Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics", 9786 }, 9787 Key: "systemstats", 9788 }, 9789 GroupInfo: &types.ElementDescription{ 9790 Description: types.Description{ 9791 Label: "vCenter debugging information", 9792 Summary: "vCenter debugging information", 9793 }, 9794 Key: "vcDebugInfo", 9795 }, 9796 UnitInfo: &types.ElementDescription{ 9797 Description: types.Description{ 9798 Label: "num", 9799 Summary: "Number", 9800 }, 9801 Key: "number", 9802 }, 9803 RollupType: "maximum", 9804 StatsType: "absolute", 9805 Level: 4, 9806 PerDeviceLevel: 4, 9807 AssociatedCounterId: nil, 9808 }, 9809 { 9810 Key: 337, 9811 NameInfo: &types.ElementDescription{ 9812 Description: types.Description{ 9813 Label: "System statistics", 9814 Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics", 9815 }, 9816 Key: "systemstats", 9817 }, 9818 GroupInfo: &types.ElementDescription{ 9819 Description: types.Description{ 9820 Label: "vCenter debugging information", 9821 Summary: "vCenter debugging information", 9822 }, 9823 Key: "vcDebugInfo", 9824 }, 9825 UnitInfo: &types.ElementDescription{ 9826 Description: types.Description{ 9827 Label: "num", 9828 Summary: "Number", 9829 }, 9830 Key: "number", 9831 }, 9832 RollupType: "minimum", 9833 StatsType: "absolute", 9834 Level: 4, 9835 PerDeviceLevel: 4, 9836 AssociatedCounterId: nil, 9837 }, 9838 { 9839 Key: 338, 9840 NameInfo: &types.ElementDescription{ 9841 Description: types.Description{ 9842 Label: "System statistics", 9843 Summary: "The statistics of vCenter Server as a running system such as thread statistics and heap statistics", 9844 }, 9845 Key: "systemstats", 9846 }, 9847 GroupInfo: &types.ElementDescription{ 9848 Description: types.Description{ 9849 Label: "vCenter debugging information", 9850 Summary: "vCenter debugging information", 9851 }, 9852 Key: "vcDebugInfo", 9853 }, 9854 UnitInfo: &types.ElementDescription{ 9855 Description: types.Description{ 9856 Label: "num", 9857 Summary: "Number", 9858 }, 9859 Key: "number", 9860 }, 9861 RollupType: "summation", 9862 StatsType: "absolute", 9863 Level: 1, 9864 PerDeviceLevel: 1, 9865 AssociatedCounterId: nil, 9866 }, 9867 { 9868 Key: 339, 9869 NameInfo: &types.ElementDescription{ 9870 Description: types.Description{ 9871 Label: "CPU user", 9872 Summary: "CPU used by vCenter Server in user mode", 9873 }, 9874 Key: "usercpuusage", 9875 }, 9876 GroupInfo: &types.ElementDescription{ 9877 Description: types.Description{ 9878 Label: "vCenter resource usage information", 9879 Summary: "vCenter resource usage information", 9880 }, 9881 Key: "vcResources", 9882 }, 9883 UnitInfo: &types.ElementDescription{ 9884 Description: types.Description{ 9885 Label: "%", 9886 Summary: "Percentage", 9887 }, 9888 Key: "percent", 9889 }, 9890 RollupType: "average", 9891 StatsType: "rate", 9892 Level: 1, 9893 PerDeviceLevel: 1, 9894 AssociatedCounterId: nil, 9895 }, 9896 { 9897 Key: 340, 9898 NameInfo: &types.ElementDescription{ 9899 Description: types.Description{ 9900 Label: "vCenter Server service statistics", 9901 Summary: "vCenter service statistics such as events, alarms, and tasks", 9902 }, 9903 Key: "vcservicestats", 9904 }, 9905 GroupInfo: &types.ElementDescription{ 9906 Description: types.Description{ 9907 Label: "vCenter debugging information", 9908 Summary: "vCenter debugging information", 9909 }, 9910 Key: "vcDebugInfo", 9911 }, 9912 UnitInfo: &types.ElementDescription{ 9913 Description: types.Description{ 9914 Label: "num", 9915 Summary: "Number", 9916 }, 9917 Key: "number", 9918 }, 9919 RollupType: "maximum", 9920 StatsType: "absolute", 9921 Level: 4, 9922 PerDeviceLevel: 4, 9923 AssociatedCounterId: nil, 9924 }, 9925 { 9926 Key: 341, 9927 NameInfo: &types.ElementDescription{ 9928 Description: types.Description{ 9929 Label: "vCenter Server service statistics", 9930 Summary: "vCenter service statistics such as events, alarms, and tasks", 9931 }, 9932 Key: "vcservicestats", 9933 }, 9934 GroupInfo: &types.ElementDescription{ 9935 Description: types.Description{ 9936 Label: "vCenter debugging information", 9937 Summary: "vCenter debugging information", 9938 }, 9939 Key: "vcDebugInfo", 9940 }, 9941 UnitInfo: &types.ElementDescription{ 9942 Description: types.Description{ 9943 Label: "num", 9944 Summary: "Number", 9945 }, 9946 Key: "number", 9947 }, 9948 RollupType: "minimum", 9949 StatsType: "absolute", 9950 Level: 4, 9951 PerDeviceLevel: 4, 9952 AssociatedCounterId: nil, 9953 }, 9954 { 9955 Key: 342, 9956 NameInfo: &types.ElementDescription{ 9957 Description: types.Description{ 9958 Label: "vCenter Server service statistics", 9959 Summary: "vCenter service statistics such as events, alarms, and tasks", 9960 }, 9961 Key: "vcservicestats", 9962 }, 9963 GroupInfo: &types.ElementDescription{ 9964 Description: types.Description{ 9965 Label: "vCenter debugging information", 9966 Summary: "vCenter debugging information", 9967 }, 9968 Key: "vcDebugInfo", 9969 }, 9970 UnitInfo: &types.ElementDescription{ 9971 Description: types.Description{ 9972 Label: "num", 9973 Summary: "Number", 9974 }, 9975 Key: "number", 9976 }, 9977 RollupType: "summation", 9978 StatsType: "absolute", 9979 Level: 1, 9980 PerDeviceLevel: 1, 9981 AssociatedCounterId: nil, 9982 }, 9983 { 9984 Key: 343, 9985 NameInfo: &types.ElementDescription{ 9986 Description: types.Description{ 9987 Label: "Virtual memory", 9988 Summary: "Virtual memory used by vCenter Server", 9989 }, 9990 Key: "virtualmemusage", 9991 }, 9992 GroupInfo: &types.ElementDescription{ 9993 Description: types.Description{ 9994 Label: "vCenter resource usage information", 9995 Summary: "vCenter resource usage information", 9996 }, 9997 Key: "vcResources", 9998 }, 9999 UnitInfo: &types.ElementDescription{ 10000 Description: types.Description{ 10001 Label: "KB", 10002 Summary: "Kilobyte", 10003 }, 10004 Key: "kiloBytes", 10005 }, 10006 RollupType: "average", 10007 StatsType: "absolute", 10008 Level: 1, 10009 PerDeviceLevel: 1, 10010 AssociatedCounterId: nil, 10011 }, 10012 { 10013 Key: 344, 10014 NameInfo: &types.ElementDescription{ 10015 Description: types.Description{ 10016 Label: "Average number of outstanding read requests", 10017 Summary: "Average number of outstanding read requests to the virtual disk during the collection interval", 10018 }, 10019 Key: "readOIO", 10020 }, 10021 GroupInfo: &types.ElementDescription{ 10022 Description: types.Description{ 10023 Label: "Virtual disk", 10024 Summary: "Virtual disk", 10025 }, 10026 Key: "virtualDisk", 10027 }, 10028 UnitInfo: &types.ElementDescription{ 10029 Description: types.Description{ 10030 Label: "num", 10031 Summary: "Number", 10032 }, 10033 Key: "number", 10034 }, 10035 RollupType: "latest", 10036 StatsType: "absolute", 10037 Level: 2, 10038 PerDeviceLevel: 2, 10039 AssociatedCounterId: nil, 10040 }, 10041 { 10042 Key: 345, 10043 NameInfo: &types.ElementDescription{ 10044 Description: types.Description{ 10045 Label: "Average number of outstanding write requests", 10046 Summary: "Average number of outstanding write requests to the virtual disk during the collection interval", 10047 }, 10048 Key: "writeOIO", 10049 }, 10050 GroupInfo: &types.ElementDescription{ 10051 Description: types.Description{ 10052 Label: "Virtual disk", 10053 Summary: "Virtual disk", 10054 }, 10055 Key: "virtualDisk", 10056 }, 10057 UnitInfo: &types.ElementDescription{ 10058 Description: types.Description{ 10059 Label: "num", 10060 Summary: "Number", 10061 }, 10062 Key: "number", 10063 }, 10064 RollupType: "latest", 10065 StatsType: "absolute", 10066 Level: 2, 10067 PerDeviceLevel: 2, 10068 AssociatedCounterId: nil, 10069 }, 10070 { 10071 Key: 346, 10072 NameInfo: &types.ElementDescription{ 10073 Description: types.Description{ 10074 Label: "Read workload metric", 10075 Summary: "Storage DRS virtual disk metric for the read workload model", 10076 }, 10077 Key: "readLoadMetric", 10078 }, 10079 GroupInfo: &types.ElementDescription{ 10080 Description: types.Description{ 10081 Label: "Virtual disk", 10082 Summary: "Virtual disk", 10083 }, 10084 Key: "virtualDisk", 10085 }, 10086 UnitInfo: &types.ElementDescription{ 10087 Description: types.Description{ 10088 Label: "num", 10089 Summary: "Number", 10090 }, 10091 Key: "number", 10092 }, 10093 RollupType: "latest", 10094 StatsType: "absolute", 10095 Level: 2, 10096 PerDeviceLevel: 2, 10097 AssociatedCounterId: nil, 10098 }, 10099 { 10100 Key: 347, 10101 NameInfo: &types.ElementDescription{ 10102 Description: types.Description{ 10103 Label: "Write workload metric", 10104 Summary: "Storage DRS virtual disk metric for the write workload model", 10105 }, 10106 Key: "writeLoadMetric", 10107 }, 10108 GroupInfo: &types.ElementDescription{ 10109 Description: types.Description{ 10110 Label: "Virtual disk", 10111 Summary: "Virtual disk", 10112 }, 10113 Key: "virtualDisk", 10114 }, 10115 UnitInfo: &types.ElementDescription{ 10116 Description: types.Description{ 10117 Label: "num", 10118 Summary: "Number", 10119 }, 10120 Key: "number", 10121 }, 10122 RollupType: "latest", 10123 StatsType: "absolute", 10124 Level: 2, 10125 PerDeviceLevel: 2, 10126 AssociatedCounterId: nil, 10127 }, 10128 { 10129 Key: 348, 10130 NameInfo: &types.ElementDescription{ 10131 Description: types.Description{ 10132 Label: "Active (1 min average)", 10133 Summary: "CPU active average over 1 minute", 10134 }, 10135 Key: "actav1", 10136 }, 10137 GroupInfo: &types.ElementDescription{ 10138 Description: types.Description{ 10139 Label: "Resource group CPU", 10140 Summary: "Resource group CPU", 10141 }, 10142 Key: "rescpu", 10143 }, 10144 UnitInfo: &types.ElementDescription{ 10145 Description: types.Description{ 10146 Label: "%", 10147 Summary: "Percentage", 10148 }, 10149 Key: "percent", 10150 }, 10151 RollupType: "latest", 10152 StatsType: "absolute", 10153 Level: 3, 10154 PerDeviceLevel: 3, 10155 AssociatedCounterId: nil, 10156 }, 10157 { 10158 Key: 349, 10159 NameInfo: &types.ElementDescription{ 10160 Description: types.Description{ 10161 Label: "Storage DRS datastore bytes read", 10162 Summary: "Storage DRS datastore bytes read", 10163 }, 10164 Key: "datastoreReadBytes", 10165 }, 10166 GroupInfo: &types.ElementDescription{ 10167 Description: types.Description{ 10168 Label: "Datastore", 10169 Summary: "Datastore", 10170 }, 10171 Key: "datastore", 10172 }, 10173 UnitInfo: &types.ElementDescription{ 10174 Description: types.Description{ 10175 Label: "num", 10176 Summary: "Number", 10177 }, 10178 Key: "number", 10179 }, 10180 RollupType: "latest", 10181 StatsType: "absolute", 10182 Level: 2, 10183 PerDeviceLevel: 2, 10184 AssociatedCounterId: nil, 10185 }, 10186 { 10187 Key: 350, 10188 NameInfo: &types.ElementDescription{ 10189 Description: types.Description{ 10190 Label: "Storage DRS datastore bytes written", 10191 Summary: "Storage DRS datastore bytes written", 10192 }, 10193 Key: "datastoreWriteBytes", 10194 }, 10195 GroupInfo: &types.ElementDescription{ 10196 Description: types.Description{ 10197 Label: "Datastore", 10198 Summary: "Datastore", 10199 }, 10200 Key: "datastore", 10201 }, 10202 UnitInfo: &types.ElementDescription{ 10203 Description: types.Description{ 10204 Label: "num", 10205 Summary: "Number", 10206 }, 10207 Key: "number", 10208 }, 10209 RollupType: "latest", 10210 StatsType: "absolute", 10211 Level: 2, 10212 PerDeviceLevel: 2, 10213 AssociatedCounterId: nil, 10214 }, 10215 { 10216 Key: 351, 10217 NameInfo: &types.ElementDescription{ 10218 Description: types.Description{ 10219 Label: "Storage DRS datastore read I/O rate", 10220 Summary: "Storage DRS datastore read I/O rate", 10221 }, 10222 Key: "datastoreReadIops", 10223 }, 10224 GroupInfo: &types.ElementDescription{ 10225 Description: types.Description{ 10226 Label: "Datastore", 10227 Summary: "Datastore", 10228 }, 10229 Key: "datastore", 10230 }, 10231 UnitInfo: &types.ElementDescription{ 10232 Description: types.Description{ 10233 Label: "num", 10234 Summary: "Number", 10235 }, 10236 Key: "number", 10237 }, 10238 RollupType: "latest", 10239 StatsType: "absolute", 10240 Level: 1, 10241 PerDeviceLevel: 3, 10242 AssociatedCounterId: nil, 10243 }, 10244 { 10245 Key: 352, 10246 NameInfo: &types.ElementDescription{ 10247 Description: types.Description{ 10248 Label: "Storage DRS datastore write I/O rate", 10249 Summary: "Storage DRS datastore write I/O rate", 10250 }, 10251 Key: "datastoreWriteIops", 10252 }, 10253 GroupInfo: &types.ElementDescription{ 10254 Description: types.Description{ 10255 Label: "Datastore", 10256 Summary: "Datastore", 10257 }, 10258 Key: "datastore", 10259 }, 10260 UnitInfo: &types.ElementDescription{ 10261 Description: types.Description{ 10262 Label: "num", 10263 Summary: "Number", 10264 }, 10265 Key: "number", 10266 }, 10267 RollupType: "latest", 10268 StatsType: "absolute", 10269 Level: 1, 10270 PerDeviceLevel: 3, 10271 AssociatedCounterId: nil, 10272 }, 10273 { 10274 Key: 353, 10275 NameInfo: &types.ElementDescription{ 10276 Description: types.Description{ 10277 Label: "Storage DRS datastore outstanding read requests", 10278 Summary: "Storage DRS datastore outstanding read requests", 10279 }, 10280 Key: "datastoreReadOIO", 10281 }, 10282 GroupInfo: &types.ElementDescription{ 10283 Description: types.Description{ 10284 Label: "Datastore", 10285 Summary: "Datastore", 10286 }, 10287 Key: "datastore", 10288 }, 10289 UnitInfo: &types.ElementDescription{ 10290 Description: types.Description{ 10291 Label: "num", 10292 Summary: "Number", 10293 }, 10294 Key: "number", 10295 }, 10296 RollupType: "latest", 10297 StatsType: "absolute", 10298 Level: 1, 10299 PerDeviceLevel: 3, 10300 AssociatedCounterId: nil, 10301 }, 10302 { 10303 Key: 354, 10304 NameInfo: &types.ElementDescription{ 10305 Description: types.Description{ 10306 Label: "Storage DRS datastore outstanding write requests", 10307 Summary: "Storage DRS datastore outstanding write requests", 10308 }, 10309 Key: "datastoreWriteOIO", 10310 }, 10311 GroupInfo: &types.ElementDescription{ 10312 Description: types.Description{ 10313 Label: "Datastore", 10314 Summary: "Datastore", 10315 }, 10316 Key: "datastore", 10317 }, 10318 UnitInfo: &types.ElementDescription{ 10319 Description: types.Description{ 10320 Label: "num", 10321 Summary: "Number", 10322 }, 10323 Key: "number", 10324 }, 10325 RollupType: "latest", 10326 StatsType: "absolute", 10327 Level: 1, 10328 PerDeviceLevel: 3, 10329 AssociatedCounterId: nil, 10330 }, 10331 { 10332 Key: 355, 10333 NameInfo: &types.ElementDescription{ 10334 Description: types.Description{ 10335 Label: "Storage DRS datastore normalized read latency", 10336 Summary: "Storage DRS datastore normalized read latency", 10337 }, 10338 Key: "datastoreNormalReadLatency", 10339 }, 10340 GroupInfo: &types.ElementDescription{ 10341 Description: types.Description{ 10342 Label: "Datastore", 10343 Summary: "Datastore", 10344 }, 10345 Key: "datastore", 10346 }, 10347 UnitInfo: &types.ElementDescription{ 10348 Description: types.Description{ 10349 Label: "num", 10350 Summary: "Number", 10351 }, 10352 Key: "number", 10353 }, 10354 RollupType: "latest", 10355 StatsType: "absolute", 10356 Level: 2, 10357 PerDeviceLevel: 2, 10358 AssociatedCounterId: nil, 10359 }, 10360 { 10361 Key: 356, 10362 NameInfo: &types.ElementDescription{ 10363 Description: types.Description{ 10364 Label: "Storage DRS datastore normalized write latency", 10365 Summary: "Storage DRS datastore normalized write latency", 10366 }, 10367 Key: "datastoreNormalWriteLatency", 10368 }, 10369 GroupInfo: &types.ElementDescription{ 10370 Description: types.Description{ 10371 Label: "Datastore", 10372 Summary: "Datastore", 10373 }, 10374 Key: "datastore", 10375 }, 10376 UnitInfo: &types.ElementDescription{ 10377 Description: types.Description{ 10378 Label: "num", 10379 Summary: "Number", 10380 }, 10381 Key: "number", 10382 }, 10383 RollupType: "latest", 10384 StatsType: "absolute", 10385 Level: 2, 10386 PerDeviceLevel: 2, 10387 AssociatedCounterId: nil, 10388 }, 10389 { 10390 Key: 357, 10391 NameInfo: &types.ElementDescription{ 10392 Description: types.Description{ 10393 Label: "Storage DRS datastore read workload metric", 10394 Summary: "Storage DRS datastore metric for read workload model", 10395 }, 10396 Key: "datastoreReadLoadMetric", 10397 }, 10398 GroupInfo: &types.ElementDescription{ 10399 Description: types.Description{ 10400 Label: "Datastore", 10401 Summary: "Datastore", 10402 }, 10403 Key: "datastore", 10404 }, 10405 UnitInfo: &types.ElementDescription{ 10406 Description: types.Description{ 10407 Label: "num", 10408 Summary: "Number", 10409 }, 10410 Key: "number", 10411 }, 10412 RollupType: "latest", 10413 StatsType: "absolute", 10414 Level: 4, 10415 PerDeviceLevel: 4, 10416 AssociatedCounterId: nil, 10417 }, 10418 { 10419 Key: 358, 10420 NameInfo: &types.ElementDescription{ 10421 Description: types.Description{ 10422 Label: "Storage DRS datastore write workload metric", 10423 Summary: "Storage DRS datastore metric for write workload model", 10424 }, 10425 Key: "datastoreWriteLoadMetric", 10426 }, 10427 GroupInfo: &types.ElementDescription{ 10428 Description: types.Description{ 10429 Label: "Datastore", 10430 Summary: "Datastore", 10431 }, 10432 Key: "datastore", 10433 }, 10434 UnitInfo: &types.ElementDescription{ 10435 Description: types.Description{ 10436 Label: "num", 10437 Summary: "Number", 10438 }, 10439 Key: "number", 10440 }, 10441 RollupType: "latest", 10442 StatsType: "absolute", 10443 Level: 4, 10444 PerDeviceLevel: 4, 10445 AssociatedCounterId: nil, 10446 }, 10447 { 10448 Key: 359, 10449 NameInfo: &types.ElementDescription{ 10450 Description: types.Description{ 10451 Label: "Datastore latency observed by VMs", 10452 Summary: "The average datastore latency as seen by virtual machines", 10453 }, 10454 Key: "datastoreVMObservedLatency", 10455 }, 10456 GroupInfo: &types.ElementDescription{ 10457 Description: types.Description{ 10458 Label: "Datastore", 10459 Summary: "Datastore", 10460 }, 10461 Key: "datastore", 10462 }, 10463 UnitInfo: &types.ElementDescription{ 10464 Description: types.Description{ 10465 Label: "µs", 10466 Summary: "Microsecond", 10467 }, 10468 Key: "microsecond", 10469 }, 10470 RollupType: "latest", 10471 StatsType: "absolute", 10472 Level: 1, 10473 PerDeviceLevel: 3, 10474 AssociatedCounterId: nil, 10475 }, 10476 { 10477 Key: 360, 10478 NameInfo: &types.ElementDescription{ 10479 Description: types.Description{ 10480 Label: "VXLAN network packets throughput transmitted", 10481 Summary: "The rate of transmitted packets for this network", 10482 }, 10483 Key: "throughput.vds.txTotal", 10484 }, 10485 GroupInfo: &types.ElementDescription{ 10486 Description: types.Description{ 10487 Label: "Network", 10488 Summary: "Network", 10489 }, 10490 Key: "net", 10491 }, 10492 UnitInfo: &types.ElementDescription{ 10493 Description: types.Description{ 10494 Label: "num", 10495 Summary: "Number", 10496 }, 10497 Key: "number", 10498 }, 10499 RollupType: "summation", 10500 StatsType: "delta", 10501 Level: 4, 10502 PerDeviceLevel: 4, 10503 AssociatedCounterId: nil, 10504 }, 10505 { 10506 Key: 361, 10507 NameInfo: &types.ElementDescription{ 10508 Description: types.Description{ 10509 Label: "VXLAN network non-unicast packets throughput transmitted", 10510 Summary: "The rate of transmitted non-unicast packets for this network", 10511 }, 10512 Key: "throughput.vds.txNoUnicast", 10513 }, 10514 GroupInfo: &types.ElementDescription{ 10515 Description: types.Description{ 10516 Label: "Network", 10517 Summary: "Network", 10518 }, 10519 Key: "net", 10520 }, 10521 UnitInfo: &types.ElementDescription{ 10522 Description: types.Description{ 10523 Label: "num", 10524 Summary: "Number", 10525 }, 10526 Key: "number", 10527 }, 10528 RollupType: "summation", 10529 StatsType: "delta", 10530 Level: 4, 10531 PerDeviceLevel: 4, 10532 AssociatedCounterId: nil, 10533 }, 10534 { 10535 Key: 362, 10536 NameInfo: &types.ElementDescription{ 10537 Description: types.Description{ 10538 Label: "VXLAN network cross-router packets throughput transmitted", 10539 Summary: "The rate of transmitted cross-router packets for this network", 10540 }, 10541 Key: "throughput.vds.txCrsRouter", 10542 }, 10543 GroupInfo: &types.ElementDescription{ 10544 Description: types.Description{ 10545 Label: "Network", 10546 Summary: "Network", 10547 }, 10548 Key: "net", 10549 }, 10550 UnitInfo: &types.ElementDescription{ 10551 Description: types.Description{ 10552 Label: "num", 10553 Summary: "Number", 10554 }, 10555 Key: "number", 10556 }, 10557 RollupType: "summation", 10558 StatsType: "delta", 10559 Level: 4, 10560 PerDeviceLevel: 4, 10561 AssociatedCounterId: nil, 10562 }, 10563 { 10564 Key: 363, 10565 NameInfo: &types.ElementDescription{ 10566 Description: types.Description{ 10567 Label: "VXLAN network dropped transmitted packets throughput", 10568 Summary: "Count of dropped transmitted packets for this network", 10569 }, 10570 Key: "throughput.vds.txDrop", 10571 }, 10572 GroupInfo: &types.ElementDescription{ 10573 Description: types.Description{ 10574 Label: "Network", 10575 Summary: "Network", 10576 }, 10577 Key: "net", 10578 }, 10579 UnitInfo: &types.ElementDescription{ 10580 Description: types.Description{ 10581 Label: "num", 10582 Summary: "Number", 10583 }, 10584 Key: "number", 10585 }, 10586 RollupType: "summation", 10587 StatsType: "delta", 10588 Level: 4, 10589 PerDeviceLevel: 4, 10590 AssociatedCounterId: nil, 10591 }, 10592 { 10593 Key: 364, 10594 NameInfo: &types.ElementDescription{ 10595 Description: types.Description{ 10596 Label: "VXLAN network packets throughput received", 10597 Summary: "The rate of received packets for this network", 10598 }, 10599 Key: "throughput.vds.rxTotal", 10600 }, 10601 GroupInfo: &types.ElementDescription{ 10602 Description: types.Description{ 10603 Label: "Network", 10604 Summary: "Network", 10605 }, 10606 Key: "net", 10607 }, 10608 UnitInfo: &types.ElementDescription{ 10609 Description: types.Description{ 10610 Label: "num", 10611 Summary: "Number", 10612 }, 10613 Key: "number", 10614 }, 10615 RollupType: "summation", 10616 StatsType: "delta", 10617 Level: 4, 10618 PerDeviceLevel: 4, 10619 AssociatedCounterId: nil, 10620 }, 10621 { 10622 Key: 365, 10623 NameInfo: &types.ElementDescription{ 10624 Description: types.Description{ 10625 Label: "VXLAN network dropped received packets due to destination IP error throughput", 10626 Summary: "Count of dropped received packets with destination IP error for this network", 10627 }, 10628 Key: "throughput.vds.rxDestErr", 10629 }, 10630 GroupInfo: &types.ElementDescription{ 10631 Description: types.Description{ 10632 Label: "Network", 10633 Summary: "Network", 10634 }, 10635 Key: "net", 10636 }, 10637 UnitInfo: &types.ElementDescription{ 10638 Description: types.Description{ 10639 Label: "num", 10640 Summary: "Number", 10641 }, 10642 Key: "number", 10643 }, 10644 RollupType: "summation", 10645 StatsType: "delta", 10646 Level: 4, 10647 PerDeviceLevel: 4, 10648 AssociatedCounterId: nil, 10649 }, 10650 { 10651 Key: 366, 10652 NameInfo: &types.ElementDescription{ 10653 Description: types.Description{ 10654 Label: "VXLAN network dropped received packets throughput", 10655 Summary: "Count of dropped received packets for this network", 10656 }, 10657 Key: "throughput.vds.rxDrop", 10658 }, 10659 GroupInfo: &types.ElementDescription{ 10660 Description: types.Description{ 10661 Label: "Network", 10662 Summary: "Network", 10663 }, 10664 Key: "net", 10665 }, 10666 UnitInfo: &types.ElementDescription{ 10667 Description: types.Description{ 10668 Label: "num", 10669 Summary: "Number", 10670 }, 10671 Key: "number", 10672 }, 10673 RollupType: "summation", 10674 StatsType: "delta", 10675 Level: 4, 10676 PerDeviceLevel: 4, 10677 AssociatedCounterId: nil, 10678 }, 10679 { 10680 Key: 367, 10681 NameInfo: &types.ElementDescription{ 10682 Description: types.Description{ 10683 Label: "VXLAN network failed to match mapping entry for a unicast MAC throughput", 10684 Summary: "Count of transmitted packets that cannot find matched mapping entry for this network", 10685 }, 10686 Key: "throughput.vds.macFlood", 10687 }, 10688 GroupInfo: &types.ElementDescription{ 10689 Description: types.Description{ 10690 Label: "Network", 10691 Summary: "Network", 10692 }, 10693 Key: "net", 10694 }, 10695 UnitInfo: &types.ElementDescription{ 10696 Description: types.Description{ 10697 Label: "num", 10698 Summary: "Number", 10699 }, 10700 Key: "number", 10701 }, 10702 RollupType: "summation", 10703 StatsType: "delta", 10704 Level: 4, 10705 PerDeviceLevel: 4, 10706 AssociatedCounterId: nil, 10707 }, 10708 { 10709 Key: 368, 10710 NameInfo: &types.ElementDescription{ 10711 Description: types.Description{ 10712 Label: "VXLAN network failed to allocate a new mapping entry during translation phase", 10713 Summary: "Count of transmitted packets that failed to acquire new mapping entry during translation phase for this network", 10714 }, 10715 Key: "throughput.vds.macLKUPFull", 10716 }, 10717 GroupInfo: &types.ElementDescription{ 10718 Description: types.Description{ 10719 Label: "Network", 10720 Summary: "Network", 10721 }, 10722 Key: "net", 10723 }, 10724 UnitInfo: &types.ElementDescription{ 10725 Description: types.Description{ 10726 Label: "num", 10727 Summary: "Number", 10728 }, 10729 Key: "number", 10730 }, 10731 RollupType: "summation", 10732 StatsType: "delta", 10733 Level: 4, 10734 PerDeviceLevel: 4, 10735 AssociatedCounterId: nil, 10736 }, 10737 { 10738 Key: 369, 10739 NameInfo: &types.ElementDescription{ 10740 Description: types.Description{ 10741 Label: "VXLAN network failed to allocate a new mapping entry during learning phase", 10742 Summary: "Count of transmitted packets that failed to acquire new mapping entry during learning phase for this network", 10743 }, 10744 Key: "throughput.vds.macUPDTFull", 10745 }, 10746 GroupInfo: &types.ElementDescription{ 10747 Description: types.Description{ 10748 Label: "Network", 10749 Summary: "Network", 10750 }, 10751 Key: "net", 10752 }, 10753 UnitInfo: &types.ElementDescription{ 10754 Description: types.Description{ 10755 Label: "num", 10756 Summary: "Number", 10757 }, 10758 Key: "number", 10759 }, 10760 RollupType: "summation", 10761 StatsType: "delta", 10762 Level: 4, 10763 PerDeviceLevel: 4, 10764 AssociatedCounterId: nil, 10765 }, 10766 { 10767 Key: 370, 10768 NameInfo: &types.ElementDescription{ 10769 Description: types.Description{ 10770 Label: "VXLAN Network Found Matched ARP Entry Throughput", 10771 Summary: "Count of transmitted packets that found matched ARP entry for this network", 10772 }, 10773 Key: "throughput.vds.arpFound", 10774 }, 10775 GroupInfo: &types.ElementDescription{ 10776 Description: types.Description{ 10777 Label: "Network", 10778 Summary: "Network", 10779 }, 10780 Key: "net", 10781 }, 10782 UnitInfo: &types.ElementDescription{ 10783 Description: types.Description{ 10784 Label: "num", 10785 Summary: "Number", 10786 }, 10787 Key: "number", 10788 }, 10789 RollupType: "summation", 10790 StatsType: "delta", 10791 Level: 4, 10792 PerDeviceLevel: 4, 10793 AssociatedCounterId: nil, 10794 }, 10795 { 10796 Key: 371, 10797 NameInfo: &types.ElementDescription{ 10798 Description: types.Description{ 10799 Label: "VXLAN Network Found Matched ARP Entry Marked as Unknown Throughput", 10800 Summary: "Count of transmitted packets whose matched arp entry is marked as unknown for this network", 10801 }, 10802 Key: "throughput.vds.arpUnknown", 10803 }, 10804 GroupInfo: &types.ElementDescription{ 10805 Description: types.Description{ 10806 Label: "Network", 10807 Summary: "Network", 10808 }, 10809 Key: "net", 10810 }, 10811 UnitInfo: &types.ElementDescription{ 10812 Description: types.Description{ 10813 Label: "num", 10814 Summary: "Number", 10815 }, 10816 Key: "number", 10817 }, 10818 RollupType: "summation", 10819 StatsType: "delta", 10820 Level: 4, 10821 PerDeviceLevel: 4, 10822 AssociatedCounterId: nil, 10823 }, 10824 { 10825 Key: 372, 10826 NameInfo: &types.ElementDescription{ 10827 Description: types.Description{ 10828 Label: "VXLAN Network Failed to Allocate ARP Entry During Translation Phase Throughput", 10829 Summary: "Count of transmitted packets that failed to acquire new ARP entry during translation phase for this network", 10830 }, 10831 Key: "throughput.vds.arpLKUPFull", 10832 }, 10833 GroupInfo: &types.ElementDescription{ 10834 Description: types.Description{ 10835 Label: "Network", 10836 Summary: "Network", 10837 }, 10838 Key: "net", 10839 }, 10840 UnitInfo: &types.ElementDescription{ 10841 Description: types.Description{ 10842 Label: "num", 10843 Summary: "Number", 10844 }, 10845 Key: "number", 10846 }, 10847 RollupType: "summation", 10848 StatsType: "delta", 10849 Level: 4, 10850 PerDeviceLevel: 4, 10851 AssociatedCounterId: nil, 10852 }, 10853 { 10854 Key: 373, 10855 NameInfo: &types.ElementDescription{ 10856 Description: types.Description{ 10857 Label: "VXLAN network found the same ARP requests have been sent into queue throughput", 10858 Summary: "Count of transmitted packets whose ARP requests have already been sent into queue for this network", 10859 }, 10860 Key: "throughput.vds.arpWait", 10861 }, 10862 GroupInfo: &types.ElementDescription{ 10863 Description: types.Description{ 10864 Label: "Network", 10865 Summary: "Network", 10866 }, 10867 Key: "net", 10868 }, 10869 UnitInfo: &types.ElementDescription{ 10870 Description: types.Description{ 10871 Label: "num", 10872 Summary: "Number", 10873 }, 10874 Key: "number", 10875 }, 10876 RollupType: "summation", 10877 StatsType: "delta", 10878 Level: 4, 10879 PerDeviceLevel: 4, 10880 AssociatedCounterId: nil, 10881 }, 10882 { 10883 Key: 374, 10884 NameInfo: &types.ElementDescription{ 10885 Description: types.Description{ 10886 Label: "VXLAN Network Found ARP Queries Have Been Expired Throughput", 10887 Summary: "Count of arp queries that have been expired for this network", 10888 }, 10889 Key: "throughput.vds.arpTimeout", 10890 }, 10891 GroupInfo: &types.ElementDescription{ 10892 Description: types.Description{ 10893 Label: "Network", 10894 Summary: "Network", 10895 }, 10896 Key: "net", 10897 }, 10898 UnitInfo: &types.ElementDescription{ 10899 Description: types.Description{ 10900 Label: "num", 10901 Summary: "Number", 10902 }, 10903 Key: "number", 10904 }, 10905 RollupType: "summation", 10906 StatsType: "delta", 10907 Level: 4, 10908 PerDeviceLevel: 4, 10909 AssociatedCounterId: nil, 10910 }, 10911 { 10912 Key: 386, 10913 NameInfo: &types.ElementDescription{ 10914 Description: types.Description{ 10915 Label: "Swap wait", 10916 Summary: "CPU time spent waiting for swap-in", 10917 }, 10918 Key: "swapwait", 10919 }, 10920 GroupInfo: &types.ElementDescription{ 10921 Description: types.Description{ 10922 Label: "CPU", 10923 Summary: "CPU", 10924 }, 10925 Key: "cpu", 10926 }, 10927 UnitInfo: &types.ElementDescription{ 10928 Description: types.Description{ 10929 Label: "ms", 10930 Summary: "Millisecond", 10931 }, 10932 Key: "millisecond", 10933 }, 10934 RollupType: "summation", 10935 StatsType: "delta", 10936 Level: 3, 10937 PerDeviceLevel: 3, 10938 AssociatedCounterId: nil, 10939 }, 10940 { 10941 Key: 387, 10942 NameInfo: &types.ElementDescription{ 10943 Description: types.Description{ 10944 Label: "Utilization", 10945 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)", 10946 }, 10947 Key: "utilization", 10948 }, 10949 GroupInfo: &types.ElementDescription{ 10950 Description: types.Description{ 10951 Label: "CPU", 10952 Summary: "CPU", 10953 }, 10954 Key: "cpu", 10955 }, 10956 UnitInfo: &types.ElementDescription{ 10957 Description: types.Description{ 10958 Label: "%", 10959 Summary: "Percentage", 10960 }, 10961 Key: "percent", 10962 }, 10963 RollupType: "none", 10964 StatsType: "rate", 10965 Level: 4, 10966 PerDeviceLevel: 4, 10967 AssociatedCounterId: nil, 10968 }, 10969 { 10970 Key: 388, 10971 NameInfo: &types.ElementDescription{ 10972 Description: types.Description{ 10973 Label: "Utilization", 10974 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)", 10975 }, 10976 Key: "utilization", 10977 }, 10978 GroupInfo: &types.ElementDescription{ 10979 Description: types.Description{ 10980 Label: "CPU", 10981 Summary: "CPU", 10982 }, 10983 Key: "cpu", 10984 }, 10985 UnitInfo: &types.ElementDescription{ 10986 Description: types.Description{ 10987 Label: "%", 10988 Summary: "Percentage", 10989 }, 10990 Key: "percent", 10991 }, 10992 RollupType: "average", 10993 StatsType: "rate", 10994 Level: 2, 10995 PerDeviceLevel: 3, 10996 AssociatedCounterId: nil, 10997 }, 10998 { 10999 Key: 389, 11000 NameInfo: &types.ElementDescription{ 11001 Description: types.Description{ 11002 Label: "Utilization", 11003 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)", 11004 }, 11005 Key: "utilization", 11006 }, 11007 GroupInfo: &types.ElementDescription{ 11008 Description: types.Description{ 11009 Label: "CPU", 11010 Summary: "CPU", 11011 }, 11012 Key: "cpu", 11013 }, 11014 UnitInfo: &types.ElementDescription{ 11015 Description: types.Description{ 11016 Label: "%", 11017 Summary: "Percentage", 11018 }, 11019 Key: "percent", 11020 }, 11021 RollupType: "maximum", 11022 StatsType: "rate", 11023 Level: 4, 11024 PerDeviceLevel: 4, 11025 AssociatedCounterId: nil, 11026 }, 11027 { 11028 Key: 390, 11029 NameInfo: &types.ElementDescription{ 11030 Description: types.Description{ 11031 Label: "Utilization", 11032 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)", 11033 }, 11034 Key: "utilization", 11035 }, 11036 GroupInfo: &types.ElementDescription{ 11037 Description: types.Description{ 11038 Label: "CPU", 11039 Summary: "CPU", 11040 }, 11041 Key: "cpu", 11042 }, 11043 UnitInfo: &types.ElementDescription{ 11044 Description: types.Description{ 11045 Label: "%", 11046 Summary: "Percentage", 11047 }, 11048 Key: "percent", 11049 }, 11050 RollupType: "minimum", 11051 StatsType: "rate", 11052 Level: 4, 11053 PerDeviceLevel: 4, 11054 AssociatedCounterId: nil, 11055 }, 11056 { 11057 Key: 391, 11058 NameInfo: &types.ElementDescription{ 11059 Description: types.Description{ 11060 Label: "Core Utilization", 11061 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)", 11062 }, 11063 Key: "coreUtilization", 11064 }, 11065 GroupInfo: &types.ElementDescription{ 11066 Description: types.Description{ 11067 Label: "CPU", 11068 Summary: "CPU", 11069 }, 11070 Key: "cpu", 11071 }, 11072 UnitInfo: &types.ElementDescription{ 11073 Description: types.Description{ 11074 Label: "%", 11075 Summary: "Percentage", 11076 }, 11077 Key: "percent", 11078 }, 11079 RollupType: "none", 11080 StatsType: "rate", 11081 Level: 4, 11082 PerDeviceLevel: 4, 11083 AssociatedCounterId: nil, 11084 }, 11085 { 11086 Key: 392, 11087 NameInfo: &types.ElementDescription{ 11088 Description: types.Description{ 11089 Label: "Core Utilization", 11090 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)", 11091 }, 11092 Key: "coreUtilization", 11093 }, 11094 GroupInfo: &types.ElementDescription{ 11095 Description: types.Description{ 11096 Label: "CPU", 11097 Summary: "CPU", 11098 }, 11099 Key: "cpu", 11100 }, 11101 UnitInfo: &types.ElementDescription{ 11102 Description: types.Description{ 11103 Label: "%", 11104 Summary: "Percentage", 11105 }, 11106 Key: "percent", 11107 }, 11108 RollupType: "average", 11109 StatsType: "rate", 11110 Level: 2, 11111 PerDeviceLevel: 3, 11112 AssociatedCounterId: nil, 11113 }, 11114 { 11115 Key: 393, 11116 NameInfo: &types.ElementDescription{ 11117 Description: types.Description{ 11118 Label: "Core Utilization", 11119 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)", 11120 }, 11121 Key: "coreUtilization", 11122 }, 11123 GroupInfo: &types.ElementDescription{ 11124 Description: types.Description{ 11125 Label: "CPU", 11126 Summary: "CPU", 11127 }, 11128 Key: "cpu", 11129 }, 11130 UnitInfo: &types.ElementDescription{ 11131 Description: types.Description{ 11132 Label: "%", 11133 Summary: "Percentage", 11134 }, 11135 Key: "percent", 11136 }, 11137 RollupType: "maximum", 11138 StatsType: "rate", 11139 Level: 4, 11140 PerDeviceLevel: 4, 11141 AssociatedCounterId: nil, 11142 }, 11143 { 11144 Key: 394, 11145 NameInfo: &types.ElementDescription{ 11146 Description: types.Description{ 11147 Label: "Core Utilization", 11148 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)", 11149 }, 11150 Key: "coreUtilization", 11151 }, 11152 GroupInfo: &types.ElementDescription{ 11153 Description: types.Description{ 11154 Label: "CPU", 11155 Summary: "CPU", 11156 }, 11157 Key: "cpu", 11158 }, 11159 UnitInfo: &types.ElementDescription{ 11160 Description: types.Description{ 11161 Label: "%", 11162 Summary: "Percentage", 11163 }, 11164 Key: "percent", 11165 }, 11166 RollupType: "minimum", 11167 StatsType: "rate", 11168 Level: 4, 11169 PerDeviceLevel: 4, 11170 AssociatedCounterId: nil, 11171 }, 11172 { 11173 Key: 395, 11174 NameInfo: &types.ElementDescription{ 11175 Description: types.Description{ 11176 Label: "Total capacity", 11177 Summary: "Total CPU capacity reserved by and available for virtual machines", 11178 }, 11179 Key: "totalCapacity", 11180 }, 11181 GroupInfo: &types.ElementDescription{ 11182 Description: types.Description{ 11183 Label: "CPU", 11184 Summary: "CPU", 11185 }, 11186 Key: "cpu", 11187 }, 11188 UnitInfo: &types.ElementDescription{ 11189 Description: types.Description{ 11190 Label: "MHz", 11191 Summary: "Megahertz", 11192 }, 11193 Key: "megaHertz", 11194 }, 11195 RollupType: "average", 11196 StatsType: "absolute", 11197 Level: 2, 11198 PerDeviceLevel: 3, 11199 AssociatedCounterId: nil, 11200 }, 11201 { 11202 Key: 396, 11203 NameInfo: &types.ElementDescription{ 11204 Description: types.Description{ 11205 Label: "Latency", 11206 Summary: "Percent of time the virtual machine is unable to run because it is contending for access to the physical CPU(s)", 11207 }, 11208 Key: "latency", 11209 }, 11210 GroupInfo: &types.ElementDescription{ 11211 Description: types.Description{ 11212 Label: "CPU", 11213 Summary: "CPU", 11214 }, 11215 Key: "cpu", 11216 }, 11217 UnitInfo: &types.ElementDescription{ 11218 Description: types.Description{ 11219 Label: "%", 11220 Summary: "Percentage", 11221 }, 11222 Key: "percent", 11223 }, 11224 RollupType: "average", 11225 StatsType: "rate", 11226 Level: 2, 11227 PerDeviceLevel: 3, 11228 AssociatedCounterId: nil, 11229 }, 11230 { 11231 Key: 397, 11232 NameInfo: &types.ElementDescription{ 11233 Description: types.Description{ 11234 Label: "Entitlement", 11235 Summary: "CPU resources devoted by the ESX scheduler", 11236 }, 11237 Key: "entitlement", 11238 }, 11239 GroupInfo: &types.ElementDescription{ 11240 Description: types.Description{ 11241 Label: "CPU", 11242 Summary: "CPU", 11243 }, 11244 Key: "cpu", 11245 }, 11246 UnitInfo: &types.ElementDescription{ 11247 Description: types.Description{ 11248 Label: "MHz", 11249 Summary: "Megahertz", 11250 }, 11251 Key: "megaHertz", 11252 }, 11253 RollupType: "latest", 11254 StatsType: "absolute", 11255 Level: 2, 11256 PerDeviceLevel: 3, 11257 AssociatedCounterId: nil, 11258 }, 11259 { 11260 Key: 398, 11261 NameInfo: &types.ElementDescription{ 11262 Description: types.Description{ 11263 Label: "Demand", 11264 Summary: "The amount of CPU resources a virtual machine would use if there were no CPU contention or CPU limit", 11265 }, 11266 Key: "demand", 11267 }, 11268 GroupInfo: &types.ElementDescription{ 11269 Description: types.Description{ 11270 Label: "CPU", 11271 Summary: "CPU", 11272 }, 11273 Key: "cpu", 11274 }, 11275 UnitInfo: &types.ElementDescription{ 11276 Description: types.Description{ 11277 Label: "MHz", 11278 Summary: "Megahertz", 11279 }, 11280 Key: "megaHertz", 11281 }, 11282 RollupType: "average", 11283 StatsType: "absolute", 11284 Level: 2, 11285 PerDeviceLevel: 3, 11286 AssociatedCounterId: nil, 11287 }, 11288 { 11289 Key: 399, 11290 NameInfo: &types.ElementDescription{ 11291 Description: types.Description{ 11292 Label: "Co-stop", 11293 Summary: "Time the virtual machine is ready to run, but is unable to run due to co-scheduling constraints", 11294 }, 11295 Key: "costop", 11296 }, 11297 GroupInfo: &types.ElementDescription{ 11298 Description: types.Description{ 11299 Label: "CPU", 11300 Summary: "CPU", 11301 }, 11302 Key: "cpu", 11303 }, 11304 UnitInfo: &types.ElementDescription{ 11305 Description: types.Description{ 11306 Label: "ms", 11307 Summary: "Millisecond", 11308 }, 11309 Key: "millisecond", 11310 }, 11311 RollupType: "summation", 11312 StatsType: "delta", 11313 Level: 2, 11314 PerDeviceLevel: 3, 11315 AssociatedCounterId: nil, 11316 }, 11317 { 11318 Key: 400, 11319 NameInfo: &types.ElementDescription{ 11320 Description: types.Description{ 11321 Label: "Max limited", 11322 Summary: "Time the virtual machine is ready to run, but is not run due to maxing out its CPU limit setting", 11323 }, 11324 Key: "maxlimited", 11325 }, 11326 GroupInfo: &types.ElementDescription{ 11327 Description: types.Description{ 11328 Label: "CPU", 11329 Summary: "CPU", 11330 }, 11331 Key: "cpu", 11332 }, 11333 UnitInfo: &types.ElementDescription{ 11334 Description: types.Description{ 11335 Label: "ms", 11336 Summary: "Millisecond", 11337 }, 11338 Key: "millisecond", 11339 }, 11340 RollupType: "summation", 11341 StatsType: "delta", 11342 Level: 2, 11343 PerDeviceLevel: 3, 11344 AssociatedCounterId: nil, 11345 }, 11346 { 11347 Key: 401, 11348 NameInfo: &types.ElementDescription{ 11349 Description: types.Description{ 11350 Label: "Overlap", 11351 Summary: "Time the virtual machine was interrupted to perform system services on behalf of itself or other virtual machines", 11352 }, 11353 Key: "overlap", 11354 }, 11355 GroupInfo: &types.ElementDescription{ 11356 Description: types.Description{ 11357 Label: "CPU", 11358 Summary: "CPU", 11359 }, 11360 Key: "cpu", 11361 }, 11362 UnitInfo: &types.ElementDescription{ 11363 Description: types.Description{ 11364 Label: "ms", 11365 Summary: "Millisecond", 11366 }, 11367 Key: "millisecond", 11368 }, 11369 RollupType: "summation", 11370 StatsType: "delta", 11371 Level: 3, 11372 PerDeviceLevel: 3, 11373 AssociatedCounterId: nil, 11374 }, 11375 { 11376 Key: 402, 11377 NameInfo: &types.ElementDescription{ 11378 Description: types.Description{ 11379 Label: "Run", 11380 Summary: "Time the virtual machine is scheduled to run", 11381 }, 11382 Key: "run", 11383 }, 11384 GroupInfo: &types.ElementDescription{ 11385 Description: types.Description{ 11386 Label: "CPU", 11387 Summary: "CPU", 11388 }, 11389 Key: "cpu", 11390 }, 11391 UnitInfo: &types.ElementDescription{ 11392 Description: types.Description{ 11393 Label: "ms", 11394 Summary: "Millisecond", 11395 }, 11396 Key: "millisecond", 11397 }, 11398 RollupType: "summation", 11399 StatsType: "delta", 11400 Level: 2, 11401 PerDeviceLevel: 3, 11402 AssociatedCounterId: nil, 11403 }, 11404 { 11405 Key: 403, 11406 NameInfo: &types.ElementDescription{ 11407 Description: types.Description{ 11408 Label: "Demand-to-entitlement ratio", 11409 Summary: "CPU resource entitlement to CPU demand ratio (in percents)", 11410 }, 11411 Key: "demandEntitlementRatio", 11412 }, 11413 GroupInfo: &types.ElementDescription{ 11414 Description: types.Description{ 11415 Label: "CPU", 11416 Summary: "CPU", 11417 }, 11418 Key: "cpu", 11419 }, 11420 UnitInfo: &types.ElementDescription{ 11421 Description: types.Description{ 11422 Label: "%", 11423 Summary: "Percentage", 11424 }, 11425 Key: "percent", 11426 }, 11427 RollupType: "latest", 11428 StatsType: "absolute", 11429 Level: 4, 11430 PerDeviceLevel: 4, 11431 AssociatedCounterId: nil, 11432 }, 11433 { 11434 Key: 404, 11435 NameInfo: &types.ElementDescription{ 11436 Description: types.Description{ 11437 Label: "Readiness", 11438 Summary: "Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU", 11439 }, 11440 Key: "readiness", 11441 }, 11442 GroupInfo: &types.ElementDescription{ 11443 Description: types.Description{ 11444 Label: "CPU", 11445 Summary: "CPU", 11446 }, 11447 Key: "cpu", 11448 }, 11449 UnitInfo: &types.ElementDescription{ 11450 Description: types.Description{ 11451 Label: "%", 11452 Summary: "Percentage", 11453 }, 11454 Key: "percent", 11455 }, 11456 RollupType: "average", 11457 StatsType: "rate", 11458 Level: 4, 11459 PerDeviceLevel: 4, 11460 AssociatedCounterId: nil, 11461 }, 11462 { 11463 Key: 405, 11464 NameInfo: &types.ElementDescription{ 11465 Description: types.Description{ 11466 Label: "Swap in", 11467 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", 11468 }, 11469 Key: "swapin", 11470 }, 11471 GroupInfo: &types.ElementDescription{ 11472 Description: types.Description{ 11473 Label: "Memory", 11474 Summary: "Memory", 11475 }, 11476 Key: "mem", 11477 }, 11478 UnitInfo: &types.ElementDescription{ 11479 Description: types.Description{ 11480 Label: "KB", 11481 Summary: "Kilobyte", 11482 }, 11483 Key: "kiloBytes", 11484 }, 11485 RollupType: "none", 11486 StatsType: "absolute", 11487 Level: 4, 11488 PerDeviceLevel: 4, 11489 AssociatedCounterId: nil, 11490 }, 11491 { 11492 Key: 406, 11493 NameInfo: &types.ElementDescription{ 11494 Description: types.Description{ 11495 Label: "Swap in", 11496 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", 11497 }, 11498 Key: "swapin", 11499 }, 11500 GroupInfo: &types.ElementDescription{ 11501 Description: types.Description{ 11502 Label: "Memory", 11503 Summary: "Memory", 11504 }, 11505 Key: "mem", 11506 }, 11507 UnitInfo: &types.ElementDescription{ 11508 Description: types.Description{ 11509 Label: "KB", 11510 Summary: "Kilobyte", 11511 }, 11512 Key: "kiloBytes", 11513 }, 11514 RollupType: "average", 11515 StatsType: "absolute", 11516 Level: 2, 11517 PerDeviceLevel: 3, 11518 AssociatedCounterId: nil, 11519 }, 11520 { 11521 Key: 407, 11522 NameInfo: &types.ElementDescription{ 11523 Description: types.Description{ 11524 Label: "Swap in", 11525 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", 11526 }, 11527 Key: "swapin", 11528 }, 11529 GroupInfo: &types.ElementDescription{ 11530 Description: types.Description{ 11531 Label: "Memory", 11532 Summary: "Memory", 11533 }, 11534 Key: "mem", 11535 }, 11536 UnitInfo: &types.ElementDescription{ 11537 Description: types.Description{ 11538 Label: "KB", 11539 Summary: "Kilobyte", 11540 }, 11541 Key: "kiloBytes", 11542 }, 11543 RollupType: "maximum", 11544 StatsType: "absolute", 11545 Level: 4, 11546 PerDeviceLevel: 4, 11547 AssociatedCounterId: nil, 11548 }, 11549 { 11550 Key: 408, 11551 NameInfo: &types.ElementDescription{ 11552 Description: types.Description{ 11553 Label: "Swap in", 11554 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", 11555 }, 11556 Key: "swapin", 11557 }, 11558 GroupInfo: &types.ElementDescription{ 11559 Description: types.Description{ 11560 Label: "Memory", 11561 Summary: "Memory", 11562 }, 11563 Key: "mem", 11564 }, 11565 UnitInfo: &types.ElementDescription{ 11566 Description: types.Description{ 11567 Label: "KB", 11568 Summary: "Kilobyte", 11569 }, 11570 Key: "kiloBytes", 11571 }, 11572 RollupType: "minimum", 11573 StatsType: "absolute", 11574 Level: 4, 11575 PerDeviceLevel: 4, 11576 AssociatedCounterId: nil, 11577 }, 11578 { 11579 Key: 409, 11580 NameInfo: &types.ElementDescription{ 11581 Description: types.Description{ 11582 Label: "Swap out", 11583 Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.", 11584 }, 11585 Key: "swapout", 11586 }, 11587 GroupInfo: &types.ElementDescription{ 11588 Description: types.Description{ 11589 Label: "Memory", 11590 Summary: "Memory", 11591 }, 11592 Key: "mem", 11593 }, 11594 UnitInfo: &types.ElementDescription{ 11595 Description: types.Description{ 11596 Label: "KB", 11597 Summary: "Kilobyte", 11598 }, 11599 Key: "kiloBytes", 11600 }, 11601 RollupType: "none", 11602 StatsType: "absolute", 11603 Level: 4, 11604 PerDeviceLevel: 4, 11605 AssociatedCounterId: nil, 11606 }, 11607 { 11608 Key: 410, 11609 NameInfo: &types.ElementDescription{ 11610 Description: types.Description{ 11611 Label: "Swap out", 11612 Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.", 11613 }, 11614 Key: "swapout", 11615 }, 11616 GroupInfo: &types.ElementDescription{ 11617 Description: types.Description{ 11618 Label: "Memory", 11619 Summary: "Memory", 11620 }, 11621 Key: "mem", 11622 }, 11623 UnitInfo: &types.ElementDescription{ 11624 Description: types.Description{ 11625 Label: "KB", 11626 Summary: "Kilobyte", 11627 }, 11628 Key: "kiloBytes", 11629 }, 11630 RollupType: "average", 11631 StatsType: "absolute", 11632 Level: 2, 11633 PerDeviceLevel: 3, 11634 AssociatedCounterId: nil, 11635 }, 11636 { 11637 Key: 411, 11638 NameInfo: &types.ElementDescription{ 11639 Description: types.Description{ 11640 Label: "Swap out", 11641 Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.", 11642 }, 11643 Key: "swapout", 11644 }, 11645 GroupInfo: &types.ElementDescription{ 11646 Description: types.Description{ 11647 Label: "Memory", 11648 Summary: "Memory", 11649 }, 11650 Key: "mem", 11651 }, 11652 UnitInfo: &types.ElementDescription{ 11653 Description: types.Description{ 11654 Label: "KB", 11655 Summary: "Kilobyte", 11656 }, 11657 Key: "kiloBytes", 11658 }, 11659 RollupType: "maximum", 11660 StatsType: "absolute", 11661 Level: 4, 11662 PerDeviceLevel: 4, 11663 AssociatedCounterId: nil, 11664 }, 11665 { 11666 Key: 412, 11667 NameInfo: &types.ElementDescription{ 11668 Description: types.Description{ 11669 Label: "Swap out", 11670 Summary: "Amount of guest physical memory that is swapped out from the virtual machine to its swap space since it has been powered on.", 11671 }, 11672 Key: "swapout", 11673 }, 11674 GroupInfo: &types.ElementDescription{ 11675 Description: types.Description{ 11676 Label: "Memory", 11677 Summary: "Memory", 11678 }, 11679 Key: "mem", 11680 }, 11681 UnitInfo: &types.ElementDescription{ 11682 Description: types.Description{ 11683 Label: "KB", 11684 Summary: "Kilobyte", 11685 }, 11686 Key: "kiloBytes", 11687 }, 11688 RollupType: "minimum", 11689 StatsType: "absolute", 11690 Level: 4, 11691 PerDeviceLevel: 4, 11692 AssociatedCounterId: nil, 11693 }, 11694 { 11695 Key: 413, 11696 NameInfo: &types.ElementDescription{ 11697 Description: types.Description{ 11698 Label: "VMkernel consumed", 11699 Summary: "Amount of host physical memory consumed by VMkernel", 11700 }, 11701 Key: "sysUsage", 11702 }, 11703 GroupInfo: &types.ElementDescription{ 11704 Description: types.Description{ 11705 Label: "Memory", 11706 Summary: "Memory", 11707 }, 11708 Key: "mem", 11709 }, 11710 UnitInfo: &types.ElementDescription{ 11711 Description: types.Description{ 11712 Label: "KB", 11713 Summary: "Kilobyte", 11714 }, 11715 Key: "kiloBytes", 11716 }, 11717 RollupType: "none", 11718 StatsType: "absolute", 11719 Level: 4, 11720 PerDeviceLevel: 4, 11721 AssociatedCounterId: nil, 11722 }, 11723 { 11724 Key: 414, 11725 NameInfo: &types.ElementDescription{ 11726 Description: types.Description{ 11727 Label: "VMkernel consumed", 11728 Summary: "Amount of host physical memory consumed by VMkernel", 11729 }, 11730 Key: "sysUsage", 11731 }, 11732 GroupInfo: &types.ElementDescription{ 11733 Description: types.Description{ 11734 Label: "Memory", 11735 Summary: "Memory", 11736 }, 11737 Key: "mem", 11738 }, 11739 UnitInfo: &types.ElementDescription{ 11740 Description: types.Description{ 11741 Label: "KB", 11742 Summary: "Kilobyte", 11743 }, 11744 Key: "kiloBytes", 11745 }, 11746 RollupType: "average", 11747 StatsType: "absolute", 11748 Level: 2, 11749 PerDeviceLevel: 3, 11750 AssociatedCounterId: nil, 11751 }, 11752 { 11753 Key: 415, 11754 NameInfo: &types.ElementDescription{ 11755 Description: types.Description{ 11756 Label: "VMkernel consumed", 11757 Summary: "Amount of host physical memory consumed by VMkernel", 11758 }, 11759 Key: "sysUsage", 11760 }, 11761 GroupInfo: &types.ElementDescription{ 11762 Description: types.Description{ 11763 Label: "Memory", 11764 Summary: "Memory", 11765 }, 11766 Key: "mem", 11767 }, 11768 UnitInfo: &types.ElementDescription{ 11769 Description: types.Description{ 11770 Label: "KB", 11771 Summary: "Kilobyte", 11772 }, 11773 Key: "kiloBytes", 11774 }, 11775 RollupType: "maximum", 11776 StatsType: "absolute", 11777 Level: 4, 11778 PerDeviceLevel: 4, 11779 AssociatedCounterId: nil, 11780 }, 11781 { 11782 Key: 416, 11783 NameInfo: &types.ElementDescription{ 11784 Description: types.Description{ 11785 Label: "VMkernel consumed", 11786 Summary: "Amount of host physical memory consumed by VMkernel", 11787 }, 11788 Key: "sysUsage", 11789 }, 11790 GroupInfo: &types.ElementDescription{ 11791 Description: types.Description{ 11792 Label: "Memory", 11793 Summary: "Memory", 11794 }, 11795 Key: "mem", 11796 }, 11797 UnitInfo: &types.ElementDescription{ 11798 Description: types.Description{ 11799 Label: "KB", 11800 Summary: "Kilobyte", 11801 }, 11802 Key: "kiloBytes", 11803 }, 11804 RollupType: "minimum", 11805 StatsType: "absolute", 11806 Level: 4, 11807 PerDeviceLevel: 4, 11808 AssociatedCounterId: nil, 11809 }, 11810 { 11811 Key: 417, 11812 NameInfo: &types.ElementDescription{ 11813 Description: types.Description{ 11814 Label: "Active write", 11815 Summary: "Amount of guest physical memory that is being actively written by guest. Activeness is estimated by ESXi", 11816 }, 11817 Key: "activewrite", 11818 }, 11819 GroupInfo: &types.ElementDescription{ 11820 Description: types.Description{ 11821 Label: "Memory", 11822 Summary: "Memory", 11823 }, 11824 Key: "mem", 11825 }, 11826 UnitInfo: &types.ElementDescription{ 11827 Description: types.Description{ 11828 Label: "KB", 11829 Summary: "Kilobyte", 11830 }, 11831 Key: "kiloBytes", 11832 }, 11833 RollupType: "average", 11834 StatsType: "absolute", 11835 Level: 2, 11836 PerDeviceLevel: 3, 11837 AssociatedCounterId: nil, 11838 }, 11839 { 11840 Key: 418, 11841 NameInfo: &types.ElementDescription{ 11842 Description: types.Description{ 11843 Label: "Overhead reserved", 11844 Summary: "Host physical memory reserved by ESXi, for its data structures, for running the virtual machine", 11845 }, 11846 Key: "overheadMax", 11847 }, 11848 GroupInfo: &types.ElementDescription{ 11849 Description: types.Description{ 11850 Label: "Memory", 11851 Summary: "Memory", 11852 }, 11853 Key: "mem", 11854 }, 11855 UnitInfo: &types.ElementDescription{ 11856 Description: types.Description{ 11857 Label: "KB", 11858 Summary: "Kilobyte", 11859 }, 11860 Key: "kiloBytes", 11861 }, 11862 RollupType: "average", 11863 StatsType: "absolute", 11864 Level: 2, 11865 PerDeviceLevel: 3, 11866 AssociatedCounterId: nil, 11867 }, 11868 { 11869 Key: 419, 11870 NameInfo: &types.ElementDescription{ 11871 Description: types.Description{ 11872 Label: "Total reservation", 11873 Summary: "Total reservation, available and consumed, for powered-on virtual machines", 11874 }, 11875 Key: "totalCapacity", 11876 }, 11877 GroupInfo: &types.ElementDescription{ 11878 Description: types.Description{ 11879 Label: "Memory", 11880 Summary: "Memory", 11881 }, 11882 Key: "mem", 11883 }, 11884 UnitInfo: &types.ElementDescription{ 11885 Description: types.Description{ 11886 Label: "MB", 11887 Summary: "Megabyte", 11888 }, 11889 Key: "megaBytes", 11890 }, 11891 RollupType: "average", 11892 StatsType: "absolute", 11893 Level: 2, 11894 PerDeviceLevel: 3, 11895 AssociatedCounterId: nil, 11896 }, 11897 { 11898 Key: 420, 11899 NameInfo: &types.ElementDescription{ 11900 Description: types.Description{ 11901 Label: "Compressed", 11902 Summary: "Amount of guest physical memory pages compressed by ESXi", 11903 }, 11904 Key: "zipped", 11905 }, 11906 GroupInfo: &types.ElementDescription{ 11907 Description: types.Description{ 11908 Label: "Memory", 11909 Summary: "Memory", 11910 }, 11911 Key: "mem", 11912 }, 11913 UnitInfo: &types.ElementDescription{ 11914 Description: types.Description{ 11915 Label: "KB", 11916 Summary: "Kilobyte", 11917 }, 11918 Key: "kiloBytes", 11919 }, 11920 RollupType: "latest", 11921 StatsType: "absolute", 11922 Level: 2, 11923 PerDeviceLevel: 3, 11924 AssociatedCounterId: nil, 11925 }, 11926 { 11927 Key: 421, 11928 NameInfo: &types.ElementDescription{ 11929 Description: types.Description{ 11930 Label: "Compression saved", 11931 Summary: "Host physical memory, reclaimed from a virtual machine, by memory compression. This value is less than the value of 'Compressed' memory", 11932 }, 11933 Key: "zipSaved", 11934 }, 11935 GroupInfo: &types.ElementDescription{ 11936 Description: types.Description{ 11937 Label: "Memory", 11938 Summary: "Memory", 11939 }, 11940 Key: "mem", 11941 }, 11942 UnitInfo: &types.ElementDescription{ 11943 Description: types.Description{ 11944 Label: "KB", 11945 Summary: "Kilobyte", 11946 }, 11947 Key: "kiloBytes", 11948 }, 11949 RollupType: "latest", 11950 StatsType: "absolute", 11951 Level: 2, 11952 PerDeviceLevel: 3, 11953 AssociatedCounterId: nil, 11954 }, 11955 { 11956 Key: 422, 11957 NameInfo: &types.ElementDescription{ 11958 Description: types.Description{ 11959 Label: "Page-fault latency", 11960 Summary: "Percentage of time the virtual machine spent waiting to swap in or decompress guest physical memory", 11961 }, 11962 Key: "latency", 11963 }, 11964 GroupInfo: &types.ElementDescription{ 11965 Description: types.Description{ 11966 Label: "Memory", 11967 Summary: "Memory", 11968 }, 11969 Key: "mem", 11970 }, 11971 UnitInfo: &types.ElementDescription{ 11972 Description: types.Description{ 11973 Label: "%", 11974 Summary: "Percentage", 11975 }, 11976 Key: "percent", 11977 }, 11978 RollupType: "average", 11979 StatsType: "absolute", 11980 Level: 2, 11981 PerDeviceLevel: 3, 11982 AssociatedCounterId: nil, 11983 }, 11984 { 11985 Key: 423, 11986 NameInfo: &types.ElementDescription{ 11987 Description: types.Description{ 11988 Label: "Entitlement", 11989 Summary: "Amount of host physical memory the virtual machine deserves, as determined by ESXi", 11990 }, 11991 Key: "entitlement", 11992 }, 11993 GroupInfo: &types.ElementDescription{ 11994 Description: types.Description{ 11995 Label: "Memory", 11996 Summary: "Memory", 11997 }, 11998 Key: "mem", 11999 }, 12000 UnitInfo: &types.ElementDescription{ 12001 Description: types.Description{ 12002 Label: "KB", 12003 Summary: "Kilobyte", 12004 }, 12005 Key: "kiloBytes", 12006 }, 12007 RollupType: "average", 12008 StatsType: "absolute", 12009 Level: 2, 12010 PerDeviceLevel: 3, 12011 AssociatedCounterId: nil, 12012 }, 12013 { 12014 Key: 424, 12015 NameInfo: &types.ElementDescription{ 12016 Description: types.Description{ 12017 Label: "Reclamation threshold", 12018 Summary: "Threshold of free host physical memory below which ESXi will begin actively reclaiming memory from virtual machines by swapping, compression and ballooning", 12019 }, 12020 Key: "lowfreethreshold", 12021 }, 12022 GroupInfo: &types.ElementDescription{ 12023 Description: types.Description{ 12024 Label: "Memory", 12025 Summary: "Memory", 12026 }, 12027 Key: "mem", 12028 }, 12029 UnitInfo: &types.ElementDescription{ 12030 Description: types.Description{ 12031 Label: "KB", 12032 Summary: "Kilobyte", 12033 }, 12034 Key: "kiloBytes", 12035 }, 12036 RollupType: "average", 12037 StatsType: "absolute", 12038 Level: 2, 12039 PerDeviceLevel: 3, 12040 AssociatedCounterId: nil, 12041 }, 12042 { 12043 Key: 425, 12044 NameInfo: &types.ElementDescription{ 12045 Description: types.Description{ 12046 Label: "Host cache consumed", 12047 Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages", 12048 }, 12049 Key: "llSwapUsed", 12050 }, 12051 GroupInfo: &types.ElementDescription{ 12052 Description: types.Description{ 12053 Label: "Memory", 12054 Summary: "Memory", 12055 }, 12056 Key: "mem", 12057 }, 12058 UnitInfo: &types.ElementDescription{ 12059 Description: types.Description{ 12060 Label: "KB", 12061 Summary: "Kilobyte", 12062 }, 12063 Key: "kiloBytes", 12064 }, 12065 RollupType: "none", 12066 StatsType: "absolute", 12067 Level: 4, 12068 PerDeviceLevel: 4, 12069 AssociatedCounterId: nil, 12070 }, 12071 { 12072 Key: 426, 12073 NameInfo: &types.ElementDescription{ 12074 Description: types.Description{ 12075 Label: "Host cache swap in rate", 12076 Summary: "Rate at which guest physical memory is swapped in from the host swap cache", 12077 }, 12078 Key: "llSwapInRate", 12079 }, 12080 GroupInfo: &types.ElementDescription{ 12081 Description: types.Description{ 12082 Label: "Memory", 12083 Summary: "Memory", 12084 }, 12085 Key: "mem", 12086 }, 12087 UnitInfo: &types.ElementDescription{ 12088 Description: types.Description{ 12089 Label: "KBps", 12090 Summary: "Kilobytes per second", 12091 }, 12092 Key: "kiloBytesPerSecond", 12093 }, 12094 RollupType: "average", 12095 StatsType: "rate", 12096 Level: 2, 12097 PerDeviceLevel: 3, 12098 AssociatedCounterId: nil, 12099 }, 12100 { 12101 Key: 427, 12102 NameInfo: &types.ElementDescription{ 12103 Description: types.Description{ 12104 Label: "Host cache swap out rate", 12105 Summary: "Rate at which guest physical memory is swapped out to the host swap cache", 12106 }, 12107 Key: "llSwapOutRate", 12108 }, 12109 GroupInfo: &types.ElementDescription{ 12110 Description: types.Description{ 12111 Label: "Memory", 12112 Summary: "Memory", 12113 }, 12114 Key: "mem", 12115 }, 12116 UnitInfo: &types.ElementDescription{ 12117 Description: types.Description{ 12118 Label: "KBps", 12119 Summary: "Kilobytes per second", 12120 }, 12121 Key: "kiloBytesPerSecond", 12122 }, 12123 RollupType: "average", 12124 StatsType: "rate", 12125 Level: 2, 12126 PerDeviceLevel: 3, 12127 AssociatedCounterId: nil, 12128 }, 12129 { 12130 Key: 428, 12131 NameInfo: &types.ElementDescription{ 12132 Description: types.Description{ 12133 Label: "Overhead active", 12134 Summary: "Estimate of the host physical memory, from Overhead consumed, that is actively read or written to by ESXi", 12135 }, 12136 Key: "overheadTouched", 12137 }, 12138 GroupInfo: &types.ElementDescription{ 12139 Description: types.Description{ 12140 Label: "Memory", 12141 Summary: "Memory", 12142 }, 12143 Key: "mem", 12144 }, 12145 UnitInfo: &types.ElementDescription{ 12146 Description: types.Description{ 12147 Label: "KB", 12148 Summary: "Kilobyte", 12149 }, 12150 Key: "kiloBytes", 12151 }, 12152 RollupType: "average", 12153 StatsType: "absolute", 12154 Level: 4, 12155 PerDeviceLevel: 4, 12156 AssociatedCounterId: nil, 12157 }, 12158 { 12159 Key: 429, 12160 NameInfo: &types.ElementDescription{ 12161 Description: types.Description{ 12162 Label: "Host cache consumed", 12163 Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages", 12164 }, 12165 Key: "llSwapUsed", 12166 }, 12167 GroupInfo: &types.ElementDescription{ 12168 Description: types.Description{ 12169 Label: "Memory", 12170 Summary: "Memory", 12171 }, 12172 Key: "mem", 12173 }, 12174 UnitInfo: &types.ElementDescription{ 12175 Description: types.Description{ 12176 Label: "KB", 12177 Summary: "Kilobyte", 12178 }, 12179 Key: "kiloBytes", 12180 }, 12181 RollupType: "average", 12182 StatsType: "absolute", 12183 Level: 4, 12184 PerDeviceLevel: 4, 12185 AssociatedCounterId: nil, 12186 }, 12187 { 12188 Key: 430, 12189 NameInfo: &types.ElementDescription{ 12190 Description: types.Description{ 12191 Label: "Host cache consumed", 12192 Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages", 12193 }, 12194 Key: "llSwapUsed", 12195 }, 12196 GroupInfo: &types.ElementDescription{ 12197 Description: types.Description{ 12198 Label: "Memory", 12199 Summary: "Memory", 12200 }, 12201 Key: "mem", 12202 }, 12203 UnitInfo: &types.ElementDescription{ 12204 Description: types.Description{ 12205 Label: "KB", 12206 Summary: "Kilobyte", 12207 }, 12208 Key: "kiloBytes", 12209 }, 12210 RollupType: "maximum", 12211 StatsType: "absolute", 12212 Level: 4, 12213 PerDeviceLevel: 4, 12214 AssociatedCounterId: nil, 12215 }, 12216 { 12217 Key: 431, 12218 NameInfo: &types.ElementDescription{ 12219 Description: types.Description{ 12220 Label: "Host cache consumed", 12221 Summary: "Storage space consumed on the host swap cache for storing swapped guest physical memory pages", 12222 }, 12223 Key: "llSwapUsed", 12224 }, 12225 GroupInfo: &types.ElementDescription{ 12226 Description: types.Description{ 12227 Label: "Memory", 12228 Summary: "Memory", 12229 }, 12230 Key: "mem", 12231 }, 12232 UnitInfo: &types.ElementDescription{ 12233 Description: types.Description{ 12234 Label: "KB", 12235 Summary: "Kilobyte", 12236 }, 12237 Key: "kiloBytes", 12238 }, 12239 RollupType: "minimum", 12240 StatsType: "absolute", 12241 Level: 4, 12242 PerDeviceLevel: 4, 12243 AssociatedCounterId: nil, 12244 }, 12245 { 12246 Key: 432, 12247 NameInfo: &types.ElementDescription{ 12248 Description: types.Description{ 12249 Label: "Host cache swap in", 12250 Summary: "Amount of guest physical memory swapped in from host cache", 12251 }, 12252 Key: "llSwapIn", 12253 }, 12254 GroupInfo: &types.ElementDescription{ 12255 Description: types.Description{ 12256 Label: "Memory", 12257 Summary: "Memory", 12258 }, 12259 Key: "mem", 12260 }, 12261 UnitInfo: &types.ElementDescription{ 12262 Description: types.Description{ 12263 Label: "KB", 12264 Summary: "Kilobyte", 12265 }, 12266 Key: "kiloBytes", 12267 }, 12268 RollupType: "none", 12269 StatsType: "absolute", 12270 Level: 4, 12271 PerDeviceLevel: 4, 12272 AssociatedCounterId: nil, 12273 }, 12274 { 12275 Key: 433, 12276 NameInfo: &types.ElementDescription{ 12277 Description: types.Description{ 12278 Label: "Host cache swap in", 12279 Summary: "Amount of guest physical memory swapped in from host cache", 12280 }, 12281 Key: "llSwapIn", 12282 }, 12283 GroupInfo: &types.ElementDescription{ 12284 Description: types.Description{ 12285 Label: "Memory", 12286 Summary: "Memory", 12287 }, 12288 Key: "mem", 12289 }, 12290 UnitInfo: &types.ElementDescription{ 12291 Description: types.Description{ 12292 Label: "KB", 12293 Summary: "Kilobyte", 12294 }, 12295 Key: "kiloBytes", 12296 }, 12297 RollupType: "average", 12298 StatsType: "absolute", 12299 Level: 4, 12300 PerDeviceLevel: 4, 12301 AssociatedCounterId: nil, 12302 }, 12303 { 12304 Key: 434, 12305 NameInfo: &types.ElementDescription{ 12306 Description: types.Description{ 12307 Label: "Host cache swap in", 12308 Summary: "Amount of guest physical memory swapped in from host cache", 12309 }, 12310 Key: "llSwapIn", 12311 }, 12312 GroupInfo: &types.ElementDescription{ 12313 Description: types.Description{ 12314 Label: "Memory", 12315 Summary: "Memory", 12316 }, 12317 Key: "mem", 12318 }, 12319 UnitInfo: &types.ElementDescription{ 12320 Description: types.Description{ 12321 Label: "KB", 12322 Summary: "Kilobyte", 12323 }, 12324 Key: "kiloBytes", 12325 }, 12326 RollupType: "maximum", 12327 StatsType: "absolute", 12328 Level: 4, 12329 PerDeviceLevel: 4, 12330 AssociatedCounterId: nil, 12331 }, 12332 { 12333 Key: 435, 12334 NameInfo: &types.ElementDescription{ 12335 Description: types.Description{ 12336 Label: "Host cache swap in", 12337 Summary: "Amount of guest physical memory swapped in from host cache", 12338 }, 12339 Key: "llSwapIn", 12340 }, 12341 GroupInfo: &types.ElementDescription{ 12342 Description: types.Description{ 12343 Label: "Memory", 12344 Summary: "Memory", 12345 }, 12346 Key: "mem", 12347 }, 12348 UnitInfo: &types.ElementDescription{ 12349 Description: types.Description{ 12350 Label: "KB", 12351 Summary: "Kilobyte", 12352 }, 12353 Key: "kiloBytes", 12354 }, 12355 RollupType: "minimum", 12356 StatsType: "absolute", 12357 Level: 4, 12358 PerDeviceLevel: 4, 12359 AssociatedCounterId: nil, 12360 }, 12361 { 12362 Key: 436, 12363 NameInfo: &types.ElementDescription{ 12364 Description: types.Description{ 12365 Label: "Host cache swap out", 12366 Summary: "Amount of guest physical memory swapped out to the host swap cache", 12367 }, 12368 Key: "llSwapOut", 12369 }, 12370 GroupInfo: &types.ElementDescription{ 12371 Description: types.Description{ 12372 Label: "Memory", 12373 Summary: "Memory", 12374 }, 12375 Key: "mem", 12376 }, 12377 UnitInfo: &types.ElementDescription{ 12378 Description: types.Description{ 12379 Label: "KB", 12380 Summary: "Kilobyte", 12381 }, 12382 Key: "kiloBytes", 12383 }, 12384 RollupType: "none", 12385 StatsType: "absolute", 12386 Level: 4, 12387 PerDeviceLevel: 4, 12388 AssociatedCounterId: nil, 12389 }, 12390 { 12391 Key: 437, 12392 NameInfo: &types.ElementDescription{ 12393 Description: types.Description{ 12394 Label: "Host cache swap out", 12395 Summary: "Amount of guest physical memory swapped out to the host swap cache", 12396 }, 12397 Key: "llSwapOut", 12398 }, 12399 GroupInfo: &types.ElementDescription{ 12400 Description: types.Description{ 12401 Label: "Memory", 12402 Summary: "Memory", 12403 }, 12404 Key: "mem", 12405 }, 12406 UnitInfo: &types.ElementDescription{ 12407 Description: types.Description{ 12408 Label: "KB", 12409 Summary: "Kilobyte", 12410 }, 12411 Key: "kiloBytes", 12412 }, 12413 RollupType: "average", 12414 StatsType: "absolute", 12415 Level: 4, 12416 PerDeviceLevel: 4, 12417 AssociatedCounterId: nil, 12418 }, 12419 { 12420 Key: 438, 12421 NameInfo: &types.ElementDescription{ 12422 Description: types.Description{ 12423 Label: "Host cache swap out", 12424 Summary: "Amount of guest physical memory swapped out to the host swap cache", 12425 }, 12426 Key: "llSwapOut", 12427 }, 12428 GroupInfo: &types.ElementDescription{ 12429 Description: types.Description{ 12430 Label: "Memory", 12431 Summary: "Memory", 12432 }, 12433 Key: "mem", 12434 }, 12435 UnitInfo: &types.ElementDescription{ 12436 Description: types.Description{ 12437 Label: "KB", 12438 Summary: "Kilobyte", 12439 }, 12440 Key: "kiloBytes", 12441 }, 12442 RollupType: "maximum", 12443 StatsType: "absolute", 12444 Level: 4, 12445 PerDeviceLevel: 4, 12446 AssociatedCounterId: nil, 12447 }, 12448 { 12449 Key: 439, 12450 NameInfo: &types.ElementDescription{ 12451 Description: types.Description{ 12452 Label: "Host cache swap out", 12453 Summary: "Amount of guest physical memory swapped out to the host swap cache", 12454 }, 12455 Key: "llSwapOut", 12456 }, 12457 GroupInfo: &types.ElementDescription{ 12458 Description: types.Description{ 12459 Label: "Memory", 12460 Summary: "Memory", 12461 }, 12462 Key: "mem", 12463 }, 12464 UnitInfo: &types.ElementDescription{ 12465 Description: types.Description{ 12466 Label: "KB", 12467 Summary: "Kilobyte", 12468 }, 12469 Key: "kiloBytes", 12470 }, 12471 RollupType: "minimum", 12472 StatsType: "absolute", 12473 Level: 4, 12474 PerDeviceLevel: 4, 12475 AssociatedCounterId: nil, 12476 }, 12477 { 12478 Key: 440, 12479 NameInfo: &types.ElementDescription{ 12480 Description: types.Description{ 12481 Label: "VMFS PB Cache Size", 12482 Summary: "Space used for holding VMFS Pointer Blocks in memory", 12483 }, 12484 Key: "vmfs.pbc.size", 12485 }, 12486 GroupInfo: &types.ElementDescription{ 12487 Description: types.Description{ 12488 Label: "Memory", 12489 Summary: "Memory", 12490 }, 12491 Key: "mem", 12492 }, 12493 UnitInfo: &types.ElementDescription{ 12494 Description: types.Description{ 12495 Label: "MB", 12496 Summary: "Megabyte", 12497 }, 12498 Key: "megaBytes", 12499 }, 12500 RollupType: "latest", 12501 StatsType: "absolute", 12502 Level: 4, 12503 PerDeviceLevel: 4, 12504 AssociatedCounterId: nil, 12505 }, 12506 { 12507 Key: 441, 12508 NameInfo: &types.ElementDescription{ 12509 Description: types.Description{ 12510 Label: "Maximum VMFS PB Cache Size", 12511 Summary: "Maximum size the VMFS Pointer Block Cache can grow to", 12512 }, 12513 Key: "vmfs.pbc.sizeMax", 12514 }, 12515 GroupInfo: &types.ElementDescription{ 12516 Description: types.Description{ 12517 Label: "Memory", 12518 Summary: "Memory", 12519 }, 12520 Key: "mem", 12521 }, 12522 UnitInfo: &types.ElementDescription{ 12523 Description: types.Description{ 12524 Label: "MB", 12525 Summary: "Megabyte", 12526 }, 12527 Key: "megaBytes", 12528 }, 12529 RollupType: "latest", 12530 StatsType: "absolute", 12531 Level: 4, 12532 PerDeviceLevel: 4, 12533 AssociatedCounterId: nil, 12534 }, 12535 { 12536 Key: 442, 12537 NameInfo: &types.ElementDescription{ 12538 Description: types.Description{ 12539 Label: "VMFS Working Set", 12540 Summary: "Amount of file blocks whose addresses are cached in the VMFS PB Cache", 12541 }, 12542 Key: "vmfs.pbc.workingSet", 12543 }, 12544 GroupInfo: &types.ElementDescription{ 12545 Description: types.Description{ 12546 Label: "Memory", 12547 Summary: "Memory", 12548 }, 12549 Key: "mem", 12550 }, 12551 UnitInfo: &types.ElementDescription{ 12552 Description: types.Description{ 12553 Label: "TB", 12554 Summary: "Terabyte", 12555 }, 12556 Key: "teraBytes", 12557 }, 12558 RollupType: "latest", 12559 StatsType: "absolute", 12560 Level: 4, 12561 PerDeviceLevel: 4, 12562 AssociatedCounterId: nil, 12563 }, 12564 { 12565 Key: 443, 12566 NameInfo: &types.ElementDescription{ 12567 Description: types.Description{ 12568 Label: "Maximum VMFS Working Set", 12569 Summary: "Maximum amount of file blocks whose addresses are cached in the VMFS PB Cache", 12570 }, 12571 Key: "vmfs.pbc.workingSetMax", 12572 }, 12573 GroupInfo: &types.ElementDescription{ 12574 Description: types.Description{ 12575 Label: "Memory", 12576 Summary: "Memory", 12577 }, 12578 Key: "mem", 12579 }, 12580 UnitInfo: &types.ElementDescription{ 12581 Description: types.Description{ 12582 Label: "TB", 12583 Summary: "Terabyte", 12584 }, 12585 Key: "teraBytes", 12586 }, 12587 RollupType: "latest", 12588 StatsType: "absolute", 12589 Level: 4, 12590 PerDeviceLevel: 4, 12591 AssociatedCounterId: nil, 12592 }, 12593 { 12594 Key: 444, 12595 NameInfo: &types.ElementDescription{ 12596 Description: types.Description{ 12597 Label: "VMFS PB Cache Overhead", 12598 Summary: "Amount of VMFS heap used by the VMFS PB Cache", 12599 }, 12600 Key: "vmfs.pbc.overhead", 12601 }, 12602 GroupInfo: &types.ElementDescription{ 12603 Description: types.Description{ 12604 Label: "Memory", 12605 Summary: "Memory", 12606 }, 12607 Key: "mem", 12608 }, 12609 UnitInfo: &types.ElementDescription{ 12610 Description: types.Description{ 12611 Label: "KB", 12612 Summary: "Kilobyte", 12613 }, 12614 Key: "kiloBytes", 12615 }, 12616 RollupType: "latest", 12617 StatsType: "absolute", 12618 Level: 4, 12619 PerDeviceLevel: 4, 12620 AssociatedCounterId: nil, 12621 }, 12622 { 12623 Key: 445, 12624 NameInfo: &types.ElementDescription{ 12625 Description: types.Description{ 12626 Label: "VMFS PB Cache Capacity Miss Ratio", 12627 Summary: "Trailing average of the ratio of capacity misses to compulsory misses for the VMFS PB Cache", 12628 }, 12629 Key: "vmfs.pbc.capMissRatio", 12630 }, 12631 GroupInfo: &types.ElementDescription{ 12632 Description: types.Description{ 12633 Label: "Memory", 12634 Summary: "Memory", 12635 }, 12636 Key: "mem", 12637 }, 12638 UnitInfo: &types.ElementDescription{ 12639 Description: types.Description{ 12640 Label: "%", 12641 Summary: "Percentage", 12642 }, 12643 Key: "percent", 12644 }, 12645 RollupType: "latest", 12646 StatsType: "absolute", 12647 Level: 4, 12648 PerDeviceLevel: 4, 12649 AssociatedCounterId: nil, 12650 }, 12651 { 12652 Key: 446, 12653 NameInfo: &types.ElementDescription{ 12654 Description: types.Description{ 12655 Label: "Commands issued", 12656 Summary: "Number of SCSI commands issued during the collection interval", 12657 }, 12658 Key: "commands", 12659 }, 12660 GroupInfo: &types.ElementDescription{ 12661 Description: types.Description{ 12662 Label: "Disk", 12663 Summary: "Disk", 12664 }, 12665 Key: "disk", 12666 }, 12667 UnitInfo: &types.ElementDescription{ 12668 Description: types.Description{ 12669 Label: "num", 12670 Summary: "Number", 12671 }, 12672 Key: "number", 12673 }, 12674 RollupType: "summation", 12675 StatsType: "delta", 12676 Level: 2, 12677 PerDeviceLevel: 3, 12678 AssociatedCounterId: nil, 12679 }, 12680 { 12681 Key: 447, 12682 NameInfo: &types.ElementDescription{ 12683 Description: types.Description{ 12684 Label: "Physical device read latency", 12685 Summary: "Average amount of time, in milliseconds, to read from the physical device", 12686 }, 12687 Key: "deviceReadLatency", 12688 }, 12689 GroupInfo: &types.ElementDescription{ 12690 Description: types.Description{ 12691 Label: "Disk", 12692 Summary: "Disk", 12693 }, 12694 Key: "disk", 12695 }, 12696 UnitInfo: &types.ElementDescription{ 12697 Description: types.Description{ 12698 Label: "ms", 12699 Summary: "Millisecond", 12700 }, 12701 Key: "millisecond", 12702 }, 12703 RollupType: "average", 12704 StatsType: "absolute", 12705 Level: 2, 12706 PerDeviceLevel: 3, 12707 AssociatedCounterId: nil, 12708 }, 12709 { 12710 Key: 448, 12711 NameInfo: &types.ElementDescription{ 12712 Description: types.Description{ 12713 Label: "Kernel read latency", 12714 Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI read command", 12715 }, 12716 Key: "kernelReadLatency", 12717 }, 12718 GroupInfo: &types.ElementDescription{ 12719 Description: types.Description{ 12720 Label: "Disk", 12721 Summary: "Disk", 12722 }, 12723 Key: "disk", 12724 }, 12725 UnitInfo: &types.ElementDescription{ 12726 Description: types.Description{ 12727 Label: "ms", 12728 Summary: "Millisecond", 12729 }, 12730 Key: "millisecond", 12731 }, 12732 RollupType: "average", 12733 StatsType: "absolute", 12734 Level: 2, 12735 PerDeviceLevel: 3, 12736 AssociatedCounterId: nil, 12737 }, 12738 { 12739 Key: 449, 12740 NameInfo: &types.ElementDescription{ 12741 Description: types.Description{ 12742 Label: "Read latency", 12743 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", 12744 }, 12745 Key: "totalReadLatency", 12746 }, 12747 GroupInfo: &types.ElementDescription{ 12748 Description: types.Description{ 12749 Label: "Disk", 12750 Summary: "Disk", 12751 }, 12752 Key: "disk", 12753 }, 12754 UnitInfo: &types.ElementDescription{ 12755 Description: types.Description{ 12756 Label: "ms", 12757 Summary: "Millisecond", 12758 }, 12759 Key: "millisecond", 12760 }, 12761 RollupType: "average", 12762 StatsType: "absolute", 12763 Level: 2, 12764 PerDeviceLevel: 3, 12765 AssociatedCounterId: nil, 12766 }, 12767 { 12768 Key: 450, 12769 NameInfo: &types.ElementDescription{ 12770 Description: types.Description{ 12771 Label: "Queue read latency", 12772 Summary: "Average amount of time spent in the VMkernel queue, per SCSI read command, during the collection interval", 12773 }, 12774 Key: "queueReadLatency", 12775 }, 12776 GroupInfo: &types.ElementDescription{ 12777 Description: types.Description{ 12778 Label: "Disk", 12779 Summary: "Disk", 12780 }, 12781 Key: "disk", 12782 }, 12783 UnitInfo: &types.ElementDescription{ 12784 Description: types.Description{ 12785 Label: "ms", 12786 Summary: "Millisecond", 12787 }, 12788 Key: "millisecond", 12789 }, 12790 RollupType: "average", 12791 StatsType: "absolute", 12792 Level: 2, 12793 PerDeviceLevel: 3, 12794 AssociatedCounterId: nil, 12795 }, 12796 { 12797 Key: 451, 12798 NameInfo: &types.ElementDescription{ 12799 Description: types.Description{ 12800 Label: "Physical device write latency", 12801 Summary: "Average amount of time, in milliseconds, to write to the physical device", 12802 }, 12803 Key: "deviceWriteLatency", 12804 }, 12805 GroupInfo: &types.ElementDescription{ 12806 Description: types.Description{ 12807 Label: "Disk", 12808 Summary: "Disk", 12809 }, 12810 Key: "disk", 12811 }, 12812 UnitInfo: &types.ElementDescription{ 12813 Description: types.Description{ 12814 Label: "ms", 12815 Summary: "Millisecond", 12816 }, 12817 Key: "millisecond", 12818 }, 12819 RollupType: "average", 12820 StatsType: "absolute", 12821 Level: 2, 12822 PerDeviceLevel: 3, 12823 AssociatedCounterId: nil, 12824 }, 12825 { 12826 Key: 452, 12827 NameInfo: &types.ElementDescription{ 12828 Description: types.Description{ 12829 Label: "Kernel write latency", 12830 Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI write command", 12831 }, 12832 Key: "kernelWriteLatency", 12833 }, 12834 GroupInfo: &types.ElementDescription{ 12835 Description: types.Description{ 12836 Label: "Disk", 12837 Summary: "Disk", 12838 }, 12839 Key: "disk", 12840 }, 12841 UnitInfo: &types.ElementDescription{ 12842 Description: types.Description{ 12843 Label: "ms", 12844 Summary: "Millisecond", 12845 }, 12846 Key: "millisecond", 12847 }, 12848 RollupType: "average", 12849 StatsType: "absolute", 12850 Level: 2, 12851 PerDeviceLevel: 3, 12852 AssociatedCounterId: nil, 12853 }, 12854 { 12855 Key: 453, 12856 NameInfo: &types.ElementDescription{ 12857 Description: types.Description{ 12858 Label: "Write latency", 12859 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", 12860 }, 12861 Key: "totalWriteLatency", 12862 }, 12863 GroupInfo: &types.ElementDescription{ 12864 Description: types.Description{ 12865 Label: "Disk", 12866 Summary: "Disk", 12867 }, 12868 Key: "disk", 12869 }, 12870 UnitInfo: &types.ElementDescription{ 12871 Description: types.Description{ 12872 Label: "ms", 12873 Summary: "Millisecond", 12874 }, 12875 Key: "millisecond", 12876 }, 12877 RollupType: "average", 12878 StatsType: "absolute", 12879 Level: 2, 12880 PerDeviceLevel: 3, 12881 AssociatedCounterId: nil, 12882 }, 12883 { 12884 Key: 454, 12885 NameInfo: &types.ElementDescription{ 12886 Description: types.Description{ 12887 Label: "Queue write latency", 12888 Summary: "Average amount of time spent in the VMkernel queue, per SCSI write command, during the collection interval", 12889 }, 12890 Key: "queueWriteLatency", 12891 }, 12892 GroupInfo: &types.ElementDescription{ 12893 Description: types.Description{ 12894 Label: "Disk", 12895 Summary: "Disk", 12896 }, 12897 Key: "disk", 12898 }, 12899 UnitInfo: &types.ElementDescription{ 12900 Description: types.Description{ 12901 Label: "ms", 12902 Summary: "Millisecond", 12903 }, 12904 Key: "millisecond", 12905 }, 12906 RollupType: "average", 12907 StatsType: "absolute", 12908 Level: 2, 12909 PerDeviceLevel: 3, 12910 AssociatedCounterId: nil, 12911 }, 12912 { 12913 Key: 455, 12914 NameInfo: &types.ElementDescription{ 12915 Description: types.Description{ 12916 Label: "Physical device command latency", 12917 Summary: "Average amount of time, in milliseconds, to complete a SCSI command from the physical device", 12918 }, 12919 Key: "deviceLatency", 12920 }, 12921 GroupInfo: &types.ElementDescription{ 12922 Description: types.Description{ 12923 Label: "Disk", 12924 Summary: "Disk", 12925 }, 12926 Key: "disk", 12927 }, 12928 UnitInfo: &types.ElementDescription{ 12929 Description: types.Description{ 12930 Label: "ms", 12931 Summary: "Millisecond", 12932 }, 12933 Key: "millisecond", 12934 }, 12935 RollupType: "average", 12936 StatsType: "absolute", 12937 Level: 1, 12938 PerDeviceLevel: 3, 12939 AssociatedCounterId: nil, 12940 }, 12941 { 12942 Key: 456, 12943 NameInfo: &types.ElementDescription{ 12944 Description: types.Description{ 12945 Label: "Kernel command latency", 12946 Summary: "Average amount of time, in milliseconds, spent by VMkernel to process each SCSI command", 12947 }, 12948 Key: "kernelLatency", 12949 }, 12950 GroupInfo: &types.ElementDescription{ 12951 Description: types.Description{ 12952 Label: "Disk", 12953 Summary: "Disk", 12954 }, 12955 Key: "disk", 12956 }, 12957 UnitInfo: &types.ElementDescription{ 12958 Description: types.Description{ 12959 Label: "ms", 12960 Summary: "Millisecond", 12961 }, 12962 Key: "millisecond", 12963 }, 12964 RollupType: "average", 12965 StatsType: "absolute", 12966 Level: 2, 12967 PerDeviceLevel: 3, 12968 AssociatedCounterId: nil, 12969 }, 12970 { 12971 Key: 457, 12972 NameInfo: &types.ElementDescription{ 12973 Description: types.Description{ 12974 Label: "Queue command latency", 12975 Summary: "Average amount of time spent in the VMkernel queue, per SCSI command, during the collection interval", 12976 }, 12977 Key: "queueLatency", 12978 }, 12979 GroupInfo: &types.ElementDescription{ 12980 Description: types.Description{ 12981 Label: "Disk", 12982 Summary: "Disk", 12983 }, 12984 Key: "disk", 12985 }, 12986 UnitInfo: &types.ElementDescription{ 12987 Description: types.Description{ 12988 Label: "ms", 12989 Summary: "Millisecond", 12990 }, 12991 Key: "millisecond", 12992 }, 12993 RollupType: "average", 12994 StatsType: "absolute", 12995 Level: 2, 12996 PerDeviceLevel: 3, 12997 AssociatedCounterId: nil, 12998 }, 12999 { 13000 Key: 458, 13001 NameInfo: &types.ElementDescription{ 13002 Description: types.Description{ 13003 Label: "Maximum queue depth", 13004 Summary: "Maximum queue depth", 13005 }, 13006 Key: "maxQueueDepth", 13007 }, 13008 GroupInfo: &types.ElementDescription{ 13009 Description: types.Description{ 13010 Label: "Disk", 13011 Summary: "Disk", 13012 }, 13013 Key: "disk", 13014 }, 13015 UnitInfo: &types.ElementDescription{ 13016 Description: types.Description{ 13017 Label: "num", 13018 Summary: "Number", 13019 }, 13020 Key: "number", 13021 }, 13022 RollupType: "average", 13023 StatsType: "absolute", 13024 Level: 1, 13025 PerDeviceLevel: 3, 13026 AssociatedCounterId: nil, 13027 }, 13028 { 13029 Key: 459, 13030 NameInfo: &types.ElementDescription{ 13031 Description: types.Description{ 13032 Label: "Average commands issued per second", 13033 Summary: "Average number of SCSI commands issued per second during the collection interval", 13034 }, 13035 Key: "commandsAveraged", 13036 }, 13037 GroupInfo: &types.ElementDescription{ 13038 Description: types.Description{ 13039 Label: "Disk", 13040 Summary: "Disk", 13041 }, 13042 Key: "disk", 13043 }, 13044 UnitInfo: &types.ElementDescription{ 13045 Description: types.Description{ 13046 Label: "num", 13047 Summary: "Number", 13048 }, 13049 Key: "number", 13050 }, 13051 RollupType: "average", 13052 StatsType: "rate", 13053 Level: 2, 13054 PerDeviceLevel: 3, 13055 AssociatedCounterId: nil, 13056 }, 13057 { 13058 Key: 460, 13059 NameInfo: &types.ElementDescription{ 13060 Description: types.Description{ 13061 Label: "Receive packets dropped", 13062 Summary: "Number of receives dropped", 13063 }, 13064 Key: "droppedRx", 13065 }, 13066 GroupInfo: &types.ElementDescription{ 13067 Description: types.Description{ 13068 Label: "Network", 13069 Summary: "Network", 13070 }, 13071 Key: "net", 13072 }, 13073 UnitInfo: &types.ElementDescription{ 13074 Description: types.Description{ 13075 Label: "num", 13076 Summary: "Number", 13077 }, 13078 Key: "number", 13079 }, 13080 RollupType: "summation", 13081 StatsType: "delta", 13082 Level: 2, 13083 PerDeviceLevel: 3, 13084 AssociatedCounterId: nil, 13085 }, 13086 { 13087 Key: 461, 13088 NameInfo: &types.ElementDescription{ 13089 Description: types.Description{ 13090 Label: "Transmit packets dropped", 13091 Summary: "Number of transmits dropped", 13092 }, 13093 Key: "droppedTx", 13094 }, 13095 GroupInfo: &types.ElementDescription{ 13096 Description: types.Description{ 13097 Label: "Network", 13098 Summary: "Network", 13099 }, 13100 Key: "net", 13101 }, 13102 UnitInfo: &types.ElementDescription{ 13103 Description: types.Description{ 13104 Label: "num", 13105 Summary: "Number", 13106 }, 13107 Key: "number", 13108 }, 13109 RollupType: "summation", 13110 StatsType: "delta", 13111 Level: 2, 13112 PerDeviceLevel: 3, 13113 AssociatedCounterId: nil, 13114 }, 13115 { 13116 Key: 462, 13117 NameInfo: &types.ElementDescription{ 13118 Description: types.Description{ 13119 Label: "Data receive rate", 13120 Summary: "Average amount of data received per second", 13121 }, 13122 Key: "bytesRx", 13123 }, 13124 GroupInfo: &types.ElementDescription{ 13125 Description: types.Description{ 13126 Label: "Network", 13127 Summary: "Network", 13128 }, 13129 Key: "net", 13130 }, 13131 UnitInfo: &types.ElementDescription{ 13132 Description: types.Description{ 13133 Label: "KBps", 13134 Summary: "Kilobytes per second", 13135 }, 13136 Key: "kiloBytesPerSecond", 13137 }, 13138 RollupType: "average", 13139 StatsType: "rate", 13140 Level: 2, 13141 PerDeviceLevel: 3, 13142 AssociatedCounterId: nil, 13143 }, 13144 { 13145 Key: 463, 13146 NameInfo: &types.ElementDescription{ 13147 Description: types.Description{ 13148 Label: "Data transmit rate", 13149 Summary: "Average amount of data transmitted per second", 13150 }, 13151 Key: "bytesTx", 13152 }, 13153 GroupInfo: &types.ElementDescription{ 13154 Description: types.Description{ 13155 Label: "Network", 13156 Summary: "Network", 13157 }, 13158 Key: "net", 13159 }, 13160 UnitInfo: &types.ElementDescription{ 13161 Description: types.Description{ 13162 Label: "KBps", 13163 Summary: "Kilobytes per second", 13164 }, 13165 Key: "kiloBytesPerSecond", 13166 }, 13167 RollupType: "average", 13168 StatsType: "rate", 13169 Level: 2, 13170 PerDeviceLevel: 3, 13171 AssociatedCounterId: nil, 13172 }, 13173 { 13174 Key: 464, 13175 NameInfo: &types.ElementDescription{ 13176 Description: types.Description{ 13177 Label: "Broadcast receives", 13178 Summary: "Number of broadcast packets received during the sampling interval", 13179 }, 13180 Key: "broadcastRx", 13181 }, 13182 GroupInfo: &types.ElementDescription{ 13183 Description: types.Description{ 13184 Label: "Network", 13185 Summary: "Network", 13186 }, 13187 Key: "net", 13188 }, 13189 UnitInfo: &types.ElementDescription{ 13190 Description: types.Description{ 13191 Label: "num", 13192 Summary: "Number", 13193 }, 13194 Key: "number", 13195 }, 13196 RollupType: "summation", 13197 StatsType: "delta", 13198 Level: 2, 13199 PerDeviceLevel: 3, 13200 AssociatedCounterId: nil, 13201 }, 13202 { 13203 Key: 465, 13204 NameInfo: &types.ElementDescription{ 13205 Description: types.Description{ 13206 Label: "Broadcast transmits", 13207 Summary: "Number of broadcast packets transmitted during the sampling interval", 13208 }, 13209 Key: "broadcastTx", 13210 }, 13211 GroupInfo: &types.ElementDescription{ 13212 Description: types.Description{ 13213 Label: "Network", 13214 Summary: "Network", 13215 }, 13216 Key: "net", 13217 }, 13218 UnitInfo: &types.ElementDescription{ 13219 Description: types.Description{ 13220 Label: "num", 13221 Summary: "Number", 13222 }, 13223 Key: "number", 13224 }, 13225 RollupType: "summation", 13226 StatsType: "delta", 13227 Level: 2, 13228 PerDeviceLevel: 3, 13229 AssociatedCounterId: nil, 13230 }, 13231 { 13232 Key: 466, 13233 NameInfo: &types.ElementDescription{ 13234 Description: types.Description{ 13235 Label: "Multicast receives", 13236 Summary: "Number of multicast packets received during the sampling interval", 13237 }, 13238 Key: "multicastRx", 13239 }, 13240 GroupInfo: &types.ElementDescription{ 13241 Description: types.Description{ 13242 Label: "Network", 13243 Summary: "Network", 13244 }, 13245 Key: "net", 13246 }, 13247 UnitInfo: &types.ElementDescription{ 13248 Description: types.Description{ 13249 Label: "num", 13250 Summary: "Number", 13251 }, 13252 Key: "number", 13253 }, 13254 RollupType: "summation", 13255 StatsType: "delta", 13256 Level: 2, 13257 PerDeviceLevel: 3, 13258 AssociatedCounterId: nil, 13259 }, 13260 { 13261 Key: 467, 13262 NameInfo: &types.ElementDescription{ 13263 Description: types.Description{ 13264 Label: "Multicast transmits", 13265 Summary: "Number of multicast packets transmitted during the sampling interval", 13266 }, 13267 Key: "multicastTx", 13268 }, 13269 GroupInfo: &types.ElementDescription{ 13270 Description: types.Description{ 13271 Label: "Network", 13272 Summary: "Network", 13273 }, 13274 Key: "net", 13275 }, 13276 UnitInfo: &types.ElementDescription{ 13277 Description: types.Description{ 13278 Label: "num", 13279 Summary: "Number", 13280 }, 13281 Key: "number", 13282 }, 13283 RollupType: "summation", 13284 StatsType: "delta", 13285 Level: 2, 13286 PerDeviceLevel: 3, 13287 AssociatedCounterId: nil, 13288 }, 13289 { 13290 Key: 468, 13291 NameInfo: &types.ElementDescription{ 13292 Description: types.Description{ 13293 Label: "Packet receive errors", 13294 Summary: "Number of packets with errors received during the sampling interval", 13295 }, 13296 Key: "errorsRx", 13297 }, 13298 GroupInfo: &types.ElementDescription{ 13299 Description: types.Description{ 13300 Label: "Network", 13301 Summary: "Network", 13302 }, 13303 Key: "net", 13304 }, 13305 UnitInfo: &types.ElementDescription{ 13306 Description: types.Description{ 13307 Label: "num", 13308 Summary: "Number", 13309 }, 13310 Key: "number", 13311 }, 13312 RollupType: "summation", 13313 StatsType: "delta", 13314 Level: 2, 13315 PerDeviceLevel: 3, 13316 AssociatedCounterId: nil, 13317 }, 13318 { 13319 Key: 469, 13320 NameInfo: &types.ElementDescription{ 13321 Description: types.Description{ 13322 Label: "Packet transmit errors", 13323 Summary: "Number of packets with errors transmitted during the sampling interval", 13324 }, 13325 Key: "errorsTx", 13326 }, 13327 GroupInfo: &types.ElementDescription{ 13328 Description: types.Description{ 13329 Label: "Network", 13330 Summary: "Network", 13331 }, 13332 Key: "net", 13333 }, 13334 UnitInfo: &types.ElementDescription{ 13335 Description: types.Description{ 13336 Label: "num", 13337 Summary: "Number", 13338 }, 13339 Key: "number", 13340 }, 13341 RollupType: "summation", 13342 StatsType: "delta", 13343 Level: 2, 13344 PerDeviceLevel: 3, 13345 AssociatedCounterId: nil, 13346 }, 13347 { 13348 Key: 470, 13349 NameInfo: &types.ElementDescription{ 13350 Description: types.Description{ 13351 Label: "Unknown protocol frames", 13352 Summary: "Number of frames with unknown protocol received during the sampling interval", 13353 }, 13354 Key: "unknownProtos", 13355 }, 13356 GroupInfo: &types.ElementDescription{ 13357 Description: types.Description{ 13358 Label: "Network", 13359 Summary: "Network", 13360 }, 13361 Key: "net", 13362 }, 13363 UnitInfo: &types.ElementDescription{ 13364 Description: types.Description{ 13365 Label: "num", 13366 Summary: "Number", 13367 }, 13368 Key: "number", 13369 }, 13370 RollupType: "summation", 13371 StatsType: "delta", 13372 Level: 2, 13373 PerDeviceLevel: 3, 13374 AssociatedCounterId: nil, 13375 }, 13376 { 13377 Key: 471, 13378 NameInfo: &types.ElementDescription{ 13379 Description: types.Description{ 13380 Label: "pnicBytesRx", 13381 Summary: "pnicBytesRx", 13382 }, 13383 Key: "pnicBytesRx", 13384 }, 13385 GroupInfo: &types.ElementDescription{ 13386 Description: types.Description{ 13387 Label: "Network", 13388 Summary: "Network", 13389 }, 13390 Key: "net", 13391 }, 13392 UnitInfo: &types.ElementDescription{ 13393 Description: types.Description{ 13394 Label: "KBps", 13395 Summary: "Kilobytes per second", 13396 }, 13397 Key: "kiloBytesPerSecond", 13398 }, 13399 RollupType: "average", 13400 StatsType: "rate", 13401 Level: 4, 13402 PerDeviceLevel: 4, 13403 AssociatedCounterId: nil, 13404 }, 13405 { 13406 Key: 472, 13407 NameInfo: &types.ElementDescription{ 13408 Description: types.Description{ 13409 Label: "pnicBytesTx", 13410 Summary: "pnicBytesTx", 13411 }, 13412 Key: "pnicBytesTx", 13413 }, 13414 GroupInfo: &types.ElementDescription{ 13415 Description: types.Description{ 13416 Label: "Network", 13417 Summary: "Network", 13418 }, 13419 Key: "net", 13420 }, 13421 UnitInfo: &types.ElementDescription{ 13422 Description: types.Description{ 13423 Label: "KBps", 13424 Summary: "Kilobytes per second", 13425 }, 13426 Key: "kiloBytesPerSecond", 13427 }, 13428 RollupType: "average", 13429 StatsType: "rate", 13430 Level: 4, 13431 PerDeviceLevel: 4, 13432 AssociatedCounterId: nil, 13433 }, 13434 { 13435 Key: 473, 13436 NameInfo: &types.ElementDescription{ 13437 Description: types.Description{ 13438 Label: "Heartbeat", 13439 Summary: "Number of heartbeats issued per virtual machine during the interval", 13440 }, 13441 Key: "heartbeat", 13442 }, 13443 GroupInfo: &types.ElementDescription{ 13444 Description: types.Description{ 13445 Label: "System", 13446 Summary: "System", 13447 }, 13448 Key: "sys", 13449 }, 13450 UnitInfo: &types.ElementDescription{ 13451 Description: types.Description{ 13452 Label: "num", 13453 Summary: "Number", 13454 }, 13455 Key: "number", 13456 }, 13457 RollupType: "latest", 13458 StatsType: "absolute", 13459 Level: 4, 13460 PerDeviceLevel: 4, 13461 AssociatedCounterId: nil, 13462 }, 13463 { 13464 Key: 474, 13465 NameInfo: &types.ElementDescription{ 13466 Description: types.Description{ 13467 Label: "Disk usage", 13468 Summary: "Amount of disk space usage for each mount point", 13469 }, 13470 Key: "diskUsage", 13471 }, 13472 GroupInfo: &types.ElementDescription{ 13473 Description: types.Description{ 13474 Label: "System", 13475 Summary: "System", 13476 }, 13477 Key: "sys", 13478 }, 13479 UnitInfo: &types.ElementDescription{ 13480 Description: types.Description{ 13481 Label: "%", 13482 Summary: "Percentage", 13483 }, 13484 Key: "percent", 13485 }, 13486 RollupType: "latest", 13487 StatsType: "absolute", 13488 Level: 3, 13489 PerDeviceLevel: 3, 13490 AssociatedCounterId: nil, 13491 }, 13492 { 13493 Key: 475, 13494 NameInfo: &types.ElementDescription{ 13495 Description: types.Description{ 13496 Label: "Resource CPU usage (None)", 13497 Summary: "Amount of CPU used by the Service Console and other applications during the interval", 13498 }, 13499 Key: "resourceCpuUsage", 13500 }, 13501 GroupInfo: &types.ElementDescription{ 13502 Description: types.Description{ 13503 Label: "System", 13504 Summary: "System", 13505 }, 13506 Key: "sys", 13507 }, 13508 UnitInfo: &types.ElementDescription{ 13509 Description: types.Description{ 13510 Label: "MHz", 13511 Summary: "Megahertz", 13512 }, 13513 Key: "megaHertz", 13514 }, 13515 RollupType: "none", 13516 StatsType: "rate", 13517 Level: 4, 13518 PerDeviceLevel: 4, 13519 AssociatedCounterId: nil, 13520 }, 13521 { 13522 Key: 476, 13523 NameInfo: &types.ElementDescription{ 13524 Description: types.Description{ 13525 Label: "Resource CPU usage (Average)", 13526 Summary: "Amount of CPU used by the Service Console and other applications during the interval", 13527 }, 13528 Key: "resourceCpuUsage", 13529 }, 13530 GroupInfo: &types.ElementDescription{ 13531 Description: types.Description{ 13532 Label: "System", 13533 Summary: "System", 13534 }, 13535 Key: "sys", 13536 }, 13537 UnitInfo: &types.ElementDescription{ 13538 Description: types.Description{ 13539 Label: "MHz", 13540 Summary: "Megahertz", 13541 }, 13542 Key: "megaHertz", 13543 }, 13544 RollupType: "average", 13545 StatsType: "rate", 13546 Level: 3, 13547 PerDeviceLevel: 3, 13548 AssociatedCounterId: nil, 13549 }, 13550 { 13551 Key: 477, 13552 NameInfo: &types.ElementDescription{ 13553 Description: types.Description{ 13554 Label: "Resource CPU usage (Maximum)", 13555 Summary: "Amount of CPU used by the Service Console and other applications during the interval", 13556 }, 13557 Key: "resourceCpuUsage", 13558 }, 13559 GroupInfo: &types.ElementDescription{ 13560 Description: types.Description{ 13561 Label: "System", 13562 Summary: "System", 13563 }, 13564 Key: "sys", 13565 }, 13566 UnitInfo: &types.ElementDescription{ 13567 Description: types.Description{ 13568 Label: "MHz", 13569 Summary: "Megahertz", 13570 }, 13571 Key: "megaHertz", 13572 }, 13573 RollupType: "maximum", 13574 StatsType: "rate", 13575 Level: 4, 13576 PerDeviceLevel: 4, 13577 AssociatedCounterId: nil, 13578 }, 13579 { 13580 Key: 478, 13581 NameInfo: &types.ElementDescription{ 13582 Description: types.Description{ 13583 Label: "Resource CPU usage (Minimum)", 13584 Summary: "Amount of CPU used by the Service Console and other applications during the interval", 13585 }, 13586 Key: "resourceCpuUsage", 13587 }, 13588 GroupInfo: &types.ElementDescription{ 13589 Description: types.Description{ 13590 Label: "System", 13591 Summary: "System", 13592 }, 13593 Key: "sys", 13594 }, 13595 UnitInfo: &types.ElementDescription{ 13596 Description: types.Description{ 13597 Label: "MHz", 13598 Summary: "Megahertz", 13599 }, 13600 Key: "megaHertz", 13601 }, 13602 RollupType: "minimum", 13603 StatsType: "rate", 13604 Level: 4, 13605 PerDeviceLevel: 4, 13606 AssociatedCounterId: nil, 13607 }, 13608 { 13609 Key: 479, 13610 NameInfo: &types.ElementDescription{ 13611 Description: types.Description{ 13612 Label: "Resource memory touched", 13613 Summary: "Memory touched by the system resource group", 13614 }, 13615 Key: "resourceMemTouched", 13616 }, 13617 GroupInfo: &types.ElementDescription{ 13618 Description: types.Description{ 13619 Label: "System", 13620 Summary: "System", 13621 }, 13622 Key: "sys", 13623 }, 13624 UnitInfo: &types.ElementDescription{ 13625 Description: types.Description{ 13626 Label: "KB", 13627 Summary: "Kilobyte", 13628 }, 13629 Key: "kiloBytes", 13630 }, 13631 RollupType: "latest", 13632 StatsType: "absolute", 13633 Level: 3, 13634 PerDeviceLevel: 3, 13635 AssociatedCounterId: nil, 13636 }, 13637 { 13638 Key: 480, 13639 NameInfo: &types.ElementDescription{ 13640 Description: types.Description{ 13641 Label: "Resource memory mapped", 13642 Summary: "Memory mapped by the system resource group", 13643 }, 13644 Key: "resourceMemMapped", 13645 }, 13646 GroupInfo: &types.ElementDescription{ 13647 Description: types.Description{ 13648 Label: "System", 13649 Summary: "System", 13650 }, 13651 Key: "sys", 13652 }, 13653 UnitInfo: &types.ElementDescription{ 13654 Description: types.Description{ 13655 Label: "KB", 13656 Summary: "Kilobyte", 13657 }, 13658 Key: "kiloBytes", 13659 }, 13660 RollupType: "latest", 13661 StatsType: "absolute", 13662 Level: 3, 13663 PerDeviceLevel: 3, 13664 AssociatedCounterId: nil, 13665 }, 13666 { 13667 Key: 481, 13668 NameInfo: &types.ElementDescription{ 13669 Description: types.Description{ 13670 Label: "Resource memory share saved", 13671 Summary: "Memory saved due to sharing by the system resource group", 13672 }, 13673 Key: "resourceMemShared", 13674 }, 13675 GroupInfo: &types.ElementDescription{ 13676 Description: types.Description{ 13677 Label: "System", 13678 Summary: "System", 13679 }, 13680 Key: "sys", 13681 }, 13682 UnitInfo: &types.ElementDescription{ 13683 Description: types.Description{ 13684 Label: "KB", 13685 Summary: "Kilobyte", 13686 }, 13687 Key: "kiloBytes", 13688 }, 13689 RollupType: "latest", 13690 StatsType: "absolute", 13691 Level: 3, 13692 PerDeviceLevel: 3, 13693 AssociatedCounterId: nil, 13694 }, 13695 { 13696 Key: 482, 13697 NameInfo: &types.ElementDescription{ 13698 Description: types.Description{ 13699 Label: "Resource memory swapped", 13700 Summary: "Memory swapped out by the system resource group", 13701 }, 13702 Key: "resourceMemSwapped", 13703 }, 13704 GroupInfo: &types.ElementDescription{ 13705 Description: types.Description{ 13706 Label: "System", 13707 Summary: "System", 13708 }, 13709 Key: "sys", 13710 }, 13711 UnitInfo: &types.ElementDescription{ 13712 Description: types.Description{ 13713 Label: "KB", 13714 Summary: "Kilobyte", 13715 }, 13716 Key: "kiloBytes", 13717 }, 13718 RollupType: "latest", 13719 StatsType: "absolute", 13720 Level: 3, 13721 PerDeviceLevel: 3, 13722 AssociatedCounterId: nil, 13723 }, 13724 { 13725 Key: 483, 13726 NameInfo: &types.ElementDescription{ 13727 Description: types.Description{ 13728 Label: "Resource memory overhead", 13729 Summary: "Overhead memory consumed by the system resource group", 13730 }, 13731 Key: "resourceMemOverhead", 13732 }, 13733 GroupInfo: &types.ElementDescription{ 13734 Description: types.Description{ 13735 Label: "System", 13736 Summary: "System", 13737 }, 13738 Key: "sys", 13739 }, 13740 UnitInfo: &types.ElementDescription{ 13741 Description: types.Description{ 13742 Label: "KB", 13743 Summary: "Kilobyte", 13744 }, 13745 Key: "kiloBytes", 13746 }, 13747 RollupType: "latest", 13748 StatsType: "absolute", 13749 Level: 3, 13750 PerDeviceLevel: 3, 13751 AssociatedCounterId: nil, 13752 }, 13753 { 13754 Key: 484, 13755 NameInfo: &types.ElementDescription{ 13756 Description: types.Description{ 13757 Label: "Resource memory shared", 13758 Summary: "Memory shared by the system resource group", 13759 }, 13760 Key: "resourceMemCow", 13761 }, 13762 GroupInfo: &types.ElementDescription{ 13763 Description: types.Description{ 13764 Label: "System", 13765 Summary: "System", 13766 }, 13767 Key: "sys", 13768 }, 13769 UnitInfo: &types.ElementDescription{ 13770 Description: types.Description{ 13771 Label: "KB", 13772 Summary: "Kilobyte", 13773 }, 13774 Key: "kiloBytes", 13775 }, 13776 RollupType: "latest", 13777 StatsType: "absolute", 13778 Level: 3, 13779 PerDeviceLevel: 3, 13780 AssociatedCounterId: nil, 13781 }, 13782 { 13783 Key: 485, 13784 NameInfo: &types.ElementDescription{ 13785 Description: types.Description{ 13786 Label: "Resource memory zero", 13787 Summary: "Zero filled memory used by the system resource group", 13788 }, 13789 Key: "resourceMemZero", 13790 }, 13791 GroupInfo: &types.ElementDescription{ 13792 Description: types.Description{ 13793 Label: "System", 13794 Summary: "System", 13795 }, 13796 Key: "sys", 13797 }, 13798 UnitInfo: &types.ElementDescription{ 13799 Description: types.Description{ 13800 Label: "KB", 13801 Summary: "Kilobyte", 13802 }, 13803 Key: "kiloBytes", 13804 }, 13805 RollupType: "latest", 13806 StatsType: "absolute", 13807 Level: 3, 13808 PerDeviceLevel: 3, 13809 AssociatedCounterId: nil, 13810 }, 13811 { 13812 Key: 486, 13813 NameInfo: &types.ElementDescription{ 13814 Description: types.Description{ 13815 Label: "Resource CPU running (1 min. average)", 13816 Summary: "CPU running average over 1 minute of the system resource group", 13817 }, 13818 Key: "resourceCpuRun1", 13819 }, 13820 GroupInfo: &types.ElementDescription{ 13821 Description: types.Description{ 13822 Label: "System", 13823 Summary: "System", 13824 }, 13825 Key: "sys", 13826 }, 13827 UnitInfo: &types.ElementDescription{ 13828 Description: types.Description{ 13829 Label: "%", 13830 Summary: "Percentage", 13831 }, 13832 Key: "percent", 13833 }, 13834 RollupType: "latest", 13835 StatsType: "absolute", 13836 Level: 3, 13837 PerDeviceLevel: 3, 13838 AssociatedCounterId: nil, 13839 }, 13840 { 13841 Key: 487, 13842 NameInfo: &types.ElementDescription{ 13843 Description: types.Description{ 13844 Label: "Resource CPU active (1 min average)", 13845 Summary: "CPU active average over 1 minute of the system resource group", 13846 }, 13847 Key: "resourceCpuAct1", 13848 }, 13849 GroupInfo: &types.ElementDescription{ 13850 Description: types.Description{ 13851 Label: "System", 13852 Summary: "System", 13853 }, 13854 Key: "sys", 13855 }, 13856 UnitInfo: &types.ElementDescription{ 13857 Description: types.Description{ 13858 Label: "%", 13859 Summary: "Percentage", 13860 }, 13861 Key: "percent", 13862 }, 13863 RollupType: "latest", 13864 StatsType: "absolute", 13865 Level: 3, 13866 PerDeviceLevel: 3, 13867 AssociatedCounterId: nil, 13868 }, 13869 { 13870 Key: 488, 13871 NameInfo: &types.ElementDescription{ 13872 Description: types.Description{ 13873 Label: "Resource CPU maximum limited (1 min)", 13874 Summary: "CPU maximum limited over 1 minute of the system resource group", 13875 }, 13876 Key: "resourceCpuMaxLimited1", 13877 }, 13878 GroupInfo: &types.ElementDescription{ 13879 Description: types.Description{ 13880 Label: "System", 13881 Summary: "System", 13882 }, 13883 Key: "sys", 13884 }, 13885 UnitInfo: &types.ElementDescription{ 13886 Description: types.Description{ 13887 Label: "%", 13888 Summary: "Percentage", 13889 }, 13890 Key: "percent", 13891 }, 13892 RollupType: "latest", 13893 StatsType: "absolute", 13894 Level: 3, 13895 PerDeviceLevel: 3, 13896 AssociatedCounterId: nil, 13897 }, 13898 { 13899 Key: 489, 13900 NameInfo: &types.ElementDescription{ 13901 Description: types.Description{ 13902 Label: "Resource CPU running (5 min average)", 13903 Summary: "CPU running average over 5 minutes of the system resource group", 13904 }, 13905 Key: "resourceCpuRun5", 13906 }, 13907 GroupInfo: &types.ElementDescription{ 13908 Description: types.Description{ 13909 Label: "System", 13910 Summary: "System", 13911 }, 13912 Key: "sys", 13913 }, 13914 UnitInfo: &types.ElementDescription{ 13915 Description: types.Description{ 13916 Label: "%", 13917 Summary: "Percentage", 13918 }, 13919 Key: "percent", 13920 }, 13921 RollupType: "latest", 13922 StatsType: "absolute", 13923 Level: 3, 13924 PerDeviceLevel: 3, 13925 AssociatedCounterId: nil, 13926 }, 13927 { 13928 Key: 490, 13929 NameInfo: &types.ElementDescription{ 13930 Description: types.Description{ 13931 Label: "Resource CPU active (5 min average)", 13932 Summary: "CPU active average over 5 minutes of the system resource group", 13933 }, 13934 Key: "resourceCpuAct5", 13935 }, 13936 GroupInfo: &types.ElementDescription{ 13937 Description: types.Description{ 13938 Label: "System", 13939 Summary: "System", 13940 }, 13941 Key: "sys", 13942 }, 13943 UnitInfo: &types.ElementDescription{ 13944 Description: types.Description{ 13945 Label: "%", 13946 Summary: "Percentage", 13947 }, 13948 Key: "percent", 13949 }, 13950 RollupType: "latest", 13951 StatsType: "absolute", 13952 Level: 3, 13953 PerDeviceLevel: 3, 13954 AssociatedCounterId: nil, 13955 }, 13956 { 13957 Key: 491, 13958 NameInfo: &types.ElementDescription{ 13959 Description: types.Description{ 13960 Label: "Resource CPU maximum limited (5 min)", 13961 Summary: "CPU maximum limited over 5 minutes of the system resource group", 13962 }, 13963 Key: "resourceCpuMaxLimited5", 13964 }, 13965 GroupInfo: &types.ElementDescription{ 13966 Description: types.Description{ 13967 Label: "System", 13968 Summary: "System", 13969 }, 13970 Key: "sys", 13971 }, 13972 UnitInfo: &types.ElementDescription{ 13973 Description: types.Description{ 13974 Label: "%", 13975 Summary: "Percentage", 13976 }, 13977 Key: "percent", 13978 }, 13979 RollupType: "latest", 13980 StatsType: "absolute", 13981 Level: 3, 13982 PerDeviceLevel: 3, 13983 AssociatedCounterId: nil, 13984 }, 13985 { 13986 Key: 492, 13987 NameInfo: &types.ElementDescription{ 13988 Description: types.Description{ 13989 Label: "Resource CPU allocation minimum (in MHz)", 13990 Summary: "CPU allocation reservation (in MHz) of the system resource group", 13991 }, 13992 Key: "resourceCpuAllocMin", 13993 }, 13994 GroupInfo: &types.ElementDescription{ 13995 Description: types.Description{ 13996 Label: "System", 13997 Summary: "System", 13998 }, 13999 Key: "sys", 14000 }, 14001 UnitInfo: &types.ElementDescription{ 14002 Description: types.Description{ 14003 Label: "MHz", 14004 Summary: "Megahertz", 14005 }, 14006 Key: "megaHertz", 14007 }, 14008 RollupType: "latest", 14009 StatsType: "absolute", 14010 Level: 3, 14011 PerDeviceLevel: 3, 14012 AssociatedCounterId: nil, 14013 }, 14014 { 14015 Key: 493, 14016 NameInfo: &types.ElementDescription{ 14017 Description: types.Description{ 14018 Label: "Resource CPU allocation maximum (in MHz)", 14019 Summary: "CPU allocation limit (in MHz) of the system resource group", 14020 }, 14021 Key: "resourceCpuAllocMax", 14022 }, 14023 GroupInfo: &types.ElementDescription{ 14024 Description: types.Description{ 14025 Label: "System", 14026 Summary: "System", 14027 }, 14028 Key: "sys", 14029 }, 14030 UnitInfo: &types.ElementDescription{ 14031 Description: types.Description{ 14032 Label: "MHz", 14033 Summary: "Megahertz", 14034 }, 14035 Key: "megaHertz", 14036 }, 14037 RollupType: "latest", 14038 StatsType: "absolute", 14039 Level: 3, 14040 PerDeviceLevel: 3, 14041 AssociatedCounterId: nil, 14042 }, 14043 { 14044 Key: 494, 14045 NameInfo: &types.ElementDescription{ 14046 Description: types.Description{ 14047 Label: "Resource CPU allocation shares", 14048 Summary: "CPU allocation shares of the system resource group", 14049 }, 14050 Key: "resourceCpuAllocShares", 14051 }, 14052 GroupInfo: &types.ElementDescription{ 14053 Description: types.Description{ 14054 Label: "System", 14055 Summary: "System", 14056 }, 14057 Key: "sys", 14058 }, 14059 UnitInfo: &types.ElementDescription{ 14060 Description: types.Description{ 14061 Label: "num", 14062 Summary: "Number", 14063 }, 14064 Key: "number", 14065 }, 14066 RollupType: "latest", 14067 StatsType: "absolute", 14068 Level: 3, 14069 PerDeviceLevel: 3, 14070 AssociatedCounterId: nil, 14071 }, 14072 { 14073 Key: 495, 14074 NameInfo: &types.ElementDescription{ 14075 Description: types.Description{ 14076 Label: "Resource memory allocation minimum (in KB)", 14077 Summary: "Memory allocation reservation (in KB) of the system resource group", 14078 }, 14079 Key: "resourceMemAllocMin", 14080 }, 14081 GroupInfo: &types.ElementDescription{ 14082 Description: types.Description{ 14083 Label: "System", 14084 Summary: "System", 14085 }, 14086 Key: "sys", 14087 }, 14088 UnitInfo: &types.ElementDescription{ 14089 Description: types.Description{ 14090 Label: "KB", 14091 Summary: "Kilobyte", 14092 }, 14093 Key: "kiloBytes", 14094 }, 14095 RollupType: "latest", 14096 StatsType: "absolute", 14097 Level: 3, 14098 PerDeviceLevel: 3, 14099 AssociatedCounterId: nil, 14100 }, 14101 { 14102 Key: 496, 14103 NameInfo: &types.ElementDescription{ 14104 Description: types.Description{ 14105 Label: "Resource memory allocation maximum (in KB)", 14106 Summary: "Memory allocation limit (in KB) of the system resource group", 14107 }, 14108 Key: "resourceMemAllocMax", 14109 }, 14110 GroupInfo: &types.ElementDescription{ 14111 Description: types.Description{ 14112 Label: "System", 14113 Summary: "System", 14114 }, 14115 Key: "sys", 14116 }, 14117 UnitInfo: &types.ElementDescription{ 14118 Description: types.Description{ 14119 Label: "KB", 14120 Summary: "Kilobyte", 14121 }, 14122 Key: "kiloBytes", 14123 }, 14124 RollupType: "latest", 14125 StatsType: "absolute", 14126 Level: 3, 14127 PerDeviceLevel: 3, 14128 AssociatedCounterId: nil, 14129 }, 14130 { 14131 Key: 497, 14132 NameInfo: &types.ElementDescription{ 14133 Description: types.Description{ 14134 Label: "Resource memory allocation shares", 14135 Summary: "Memory allocation shares of the system resource group", 14136 }, 14137 Key: "resourceMemAllocShares", 14138 }, 14139 GroupInfo: &types.ElementDescription{ 14140 Description: types.Description{ 14141 Label: "System", 14142 Summary: "System", 14143 }, 14144 Key: "sys", 14145 }, 14146 UnitInfo: &types.ElementDescription{ 14147 Description: types.Description{ 14148 Label: "num", 14149 Summary: "Number", 14150 }, 14151 Key: "number", 14152 }, 14153 RollupType: "latest", 14154 StatsType: "absolute", 14155 Level: 3, 14156 PerDeviceLevel: 3, 14157 AssociatedCounterId: nil, 14158 }, 14159 { 14160 Key: 498, 14161 NameInfo: &types.ElementDescription{ 14162 Description: types.Description{ 14163 Label: "OS Uptime", 14164 Summary: "Total time elapsed, in seconds, since last operating system boot-up", 14165 }, 14166 Key: "osUptime", 14167 }, 14168 GroupInfo: &types.ElementDescription{ 14169 Description: types.Description{ 14170 Label: "System", 14171 Summary: "System", 14172 }, 14173 Key: "sys", 14174 }, 14175 UnitInfo: &types.ElementDescription{ 14176 Description: types.Description{ 14177 Label: "s", 14178 Summary: "Second", 14179 }, 14180 Key: "second", 14181 }, 14182 RollupType: "latest", 14183 StatsType: "absolute", 14184 Level: 4, 14185 PerDeviceLevel: 4, 14186 AssociatedCounterId: nil, 14187 }, 14188 { 14189 Key: 499, 14190 NameInfo: &types.ElementDescription{ 14191 Description: types.Description{ 14192 Label: "Resource memory consumed", 14193 Summary: "Memory consumed by the system resource group", 14194 }, 14195 Key: "resourceMemConsumed", 14196 }, 14197 GroupInfo: &types.ElementDescription{ 14198 Description: types.Description{ 14199 Label: "System", 14200 Summary: "System", 14201 }, 14202 Key: "sys", 14203 }, 14204 UnitInfo: &types.ElementDescription{ 14205 Description: types.Description{ 14206 Label: "KB", 14207 Summary: "Kilobyte", 14208 }, 14209 Key: "kiloBytes", 14210 }, 14211 RollupType: "latest", 14212 StatsType: "absolute", 14213 Level: 4, 14214 PerDeviceLevel: 4, 14215 AssociatedCounterId: nil, 14216 }, 14217 { 14218 Key: 500, 14219 NameInfo: &types.ElementDescription{ 14220 Description: types.Description{ 14221 Label: "File descriptors used", 14222 Summary: "Number of file descriptors used by the system resource group", 14223 }, 14224 Key: "resourceFdUsage", 14225 }, 14226 GroupInfo: &types.ElementDescription{ 14227 Description: types.Description{ 14228 Label: "System", 14229 Summary: "System", 14230 }, 14231 Key: "sys", 14232 }, 14233 UnitInfo: &types.ElementDescription{ 14234 Description: types.Description{ 14235 Label: "num", 14236 Summary: "Number", 14237 }, 14238 Key: "number", 14239 }, 14240 RollupType: "latest", 14241 StatsType: "absolute", 14242 Level: 4, 14243 PerDeviceLevel: 4, 14244 AssociatedCounterId: nil, 14245 }, 14246 { 14247 Key: 501, 14248 NameInfo: &types.ElementDescription{ 14249 Description: types.Description{ 14250 Label: "Active (1 min peak)", 14251 Summary: "CPU active peak over 1 minute", 14252 }, 14253 Key: "actpk1", 14254 }, 14255 GroupInfo: &types.ElementDescription{ 14256 Description: types.Description{ 14257 Label: "Resource group CPU", 14258 Summary: "Resource group CPU", 14259 }, 14260 Key: "rescpu", 14261 }, 14262 UnitInfo: &types.ElementDescription{ 14263 Description: types.Description{ 14264 Label: "%", 14265 Summary: "Percentage", 14266 }, 14267 Key: "percent", 14268 }, 14269 RollupType: "latest", 14270 StatsType: "absolute", 14271 Level: 3, 14272 PerDeviceLevel: 3, 14273 AssociatedCounterId: nil, 14274 }, 14275 { 14276 Key: 502, 14277 NameInfo: &types.ElementDescription{ 14278 Description: types.Description{ 14279 Label: "Running (1 min average)", 14280 Summary: "CPU running average over 1 minute", 14281 }, 14282 Key: "runav1", 14283 }, 14284 GroupInfo: &types.ElementDescription{ 14285 Description: types.Description{ 14286 Label: "Resource group CPU", 14287 Summary: "Resource group CPU", 14288 }, 14289 Key: "rescpu", 14290 }, 14291 UnitInfo: &types.ElementDescription{ 14292 Description: types.Description{ 14293 Label: "%", 14294 Summary: "Percentage", 14295 }, 14296 Key: "percent", 14297 }, 14298 RollupType: "latest", 14299 StatsType: "absolute", 14300 Level: 3, 14301 PerDeviceLevel: 3, 14302 AssociatedCounterId: nil, 14303 }, 14304 { 14305 Key: 503, 14306 NameInfo: &types.ElementDescription{ 14307 Description: types.Description{ 14308 Label: "Active (5 min average)", 14309 Summary: "CPU active average over 5 minutes", 14310 }, 14311 Key: "actav5", 14312 }, 14313 GroupInfo: &types.ElementDescription{ 14314 Description: types.Description{ 14315 Label: "Resource group CPU", 14316 Summary: "Resource group CPU", 14317 }, 14318 Key: "rescpu", 14319 }, 14320 UnitInfo: &types.ElementDescription{ 14321 Description: types.Description{ 14322 Label: "%", 14323 Summary: "Percentage", 14324 }, 14325 Key: "percent", 14326 }, 14327 RollupType: "latest", 14328 StatsType: "absolute", 14329 Level: 3, 14330 PerDeviceLevel: 3, 14331 AssociatedCounterId: nil, 14332 }, 14333 { 14334 Key: 504, 14335 NameInfo: &types.ElementDescription{ 14336 Description: types.Description{ 14337 Label: "Active (5 min peak)", 14338 Summary: "CPU active peak over 5 minutes", 14339 }, 14340 Key: "actpk5", 14341 }, 14342 GroupInfo: &types.ElementDescription{ 14343 Description: types.Description{ 14344 Label: "Resource group CPU", 14345 Summary: "Resource group CPU", 14346 }, 14347 Key: "rescpu", 14348 }, 14349 UnitInfo: &types.ElementDescription{ 14350 Description: types.Description{ 14351 Label: "%", 14352 Summary: "Percentage", 14353 }, 14354 Key: "percent", 14355 }, 14356 RollupType: "latest", 14357 StatsType: "absolute", 14358 Level: 3, 14359 PerDeviceLevel: 3, 14360 AssociatedCounterId: nil, 14361 }, 14362 { 14363 Key: 505, 14364 NameInfo: &types.ElementDescription{ 14365 Description: types.Description{ 14366 Label: "Running (5 min average)", 14367 Summary: "CPU running average over 5 minutes", 14368 }, 14369 Key: "runav5", 14370 }, 14371 GroupInfo: &types.ElementDescription{ 14372 Description: types.Description{ 14373 Label: "Resource group CPU", 14374 Summary: "Resource group CPU", 14375 }, 14376 Key: "rescpu", 14377 }, 14378 UnitInfo: &types.ElementDescription{ 14379 Description: types.Description{ 14380 Label: "%", 14381 Summary: "Percentage", 14382 }, 14383 Key: "percent", 14384 }, 14385 RollupType: "latest", 14386 StatsType: "absolute", 14387 Level: 3, 14388 PerDeviceLevel: 3, 14389 AssociatedCounterId: nil, 14390 }, 14391 { 14392 Key: 506, 14393 NameInfo: &types.ElementDescription{ 14394 Description: types.Description{ 14395 Label: "Active (15 min average)", 14396 Summary: "CPU active average over 15 minutes", 14397 }, 14398 Key: "actav15", 14399 }, 14400 GroupInfo: &types.ElementDescription{ 14401 Description: types.Description{ 14402 Label: "Resource group CPU", 14403 Summary: "Resource group CPU", 14404 }, 14405 Key: "rescpu", 14406 }, 14407 UnitInfo: &types.ElementDescription{ 14408 Description: types.Description{ 14409 Label: "%", 14410 Summary: "Percentage", 14411 }, 14412 Key: "percent", 14413 }, 14414 RollupType: "latest", 14415 StatsType: "absolute", 14416 Level: 3, 14417 PerDeviceLevel: 3, 14418 AssociatedCounterId: nil, 14419 }, 14420 { 14421 Key: 507, 14422 NameInfo: &types.ElementDescription{ 14423 Description: types.Description{ 14424 Label: "Active (15 min peak)", 14425 Summary: "CPU active peak over 15 minutes", 14426 }, 14427 Key: "actpk15", 14428 }, 14429 GroupInfo: &types.ElementDescription{ 14430 Description: types.Description{ 14431 Label: "Resource group CPU", 14432 Summary: "Resource group CPU", 14433 }, 14434 Key: "rescpu", 14435 }, 14436 UnitInfo: &types.ElementDescription{ 14437 Description: types.Description{ 14438 Label: "%", 14439 Summary: "Percentage", 14440 }, 14441 Key: "percent", 14442 }, 14443 RollupType: "latest", 14444 StatsType: "absolute", 14445 Level: 3, 14446 PerDeviceLevel: 3, 14447 AssociatedCounterId: nil, 14448 }, 14449 { 14450 Key: 508, 14451 NameInfo: &types.ElementDescription{ 14452 Description: types.Description{ 14453 Label: "Running (15 min average)", 14454 Summary: "CPU running average over 15 minutes", 14455 }, 14456 Key: "runav15", 14457 }, 14458 GroupInfo: &types.ElementDescription{ 14459 Description: types.Description{ 14460 Label: "Resource group CPU", 14461 Summary: "Resource group CPU", 14462 }, 14463 Key: "rescpu", 14464 }, 14465 UnitInfo: &types.ElementDescription{ 14466 Description: types.Description{ 14467 Label: "%", 14468 Summary: "Percentage", 14469 }, 14470 Key: "percent", 14471 }, 14472 RollupType: "latest", 14473 StatsType: "absolute", 14474 Level: 3, 14475 PerDeviceLevel: 3, 14476 AssociatedCounterId: nil, 14477 }, 14478 { 14479 Key: 509, 14480 NameInfo: &types.ElementDescription{ 14481 Description: types.Description{ 14482 Label: "Running (1 min peak)", 14483 Summary: "CPU running peak over 1 minute", 14484 }, 14485 Key: "runpk1", 14486 }, 14487 GroupInfo: &types.ElementDescription{ 14488 Description: types.Description{ 14489 Label: "Resource group CPU", 14490 Summary: "Resource group CPU", 14491 }, 14492 Key: "rescpu", 14493 }, 14494 UnitInfo: &types.ElementDescription{ 14495 Description: types.Description{ 14496 Label: "%", 14497 Summary: "Percentage", 14498 }, 14499 Key: "percent", 14500 }, 14501 RollupType: "latest", 14502 StatsType: "absolute", 14503 Level: 3, 14504 PerDeviceLevel: 3, 14505 AssociatedCounterId: nil, 14506 }, 14507 { 14508 Key: 510, 14509 NameInfo: &types.ElementDescription{ 14510 Description: types.Description{ 14511 Label: "Throttled (1 min average)", 14512 Summary: "Amount of CPU resources over the limit that were refused, average over 1 minute", 14513 }, 14514 Key: "maxLimited1", 14515 }, 14516 GroupInfo: &types.ElementDescription{ 14517 Description: types.Description{ 14518 Label: "Resource group CPU", 14519 Summary: "Resource group CPU", 14520 }, 14521 Key: "rescpu", 14522 }, 14523 UnitInfo: &types.ElementDescription{ 14524 Description: types.Description{ 14525 Label: "%", 14526 Summary: "Percentage", 14527 }, 14528 Key: "percent", 14529 }, 14530 RollupType: "latest", 14531 StatsType: "absolute", 14532 Level: 3, 14533 PerDeviceLevel: 3, 14534 AssociatedCounterId: nil, 14535 }, 14536 { 14537 Key: 511, 14538 NameInfo: &types.ElementDescription{ 14539 Description: types.Description{ 14540 Label: "Running (5 min peak)", 14541 Summary: "CPU running peak over 5 minutes", 14542 }, 14543 Key: "runpk5", 14544 }, 14545 GroupInfo: &types.ElementDescription{ 14546 Description: types.Description{ 14547 Label: "Resource group CPU", 14548 Summary: "Resource group CPU", 14549 }, 14550 Key: "rescpu", 14551 }, 14552 UnitInfo: &types.ElementDescription{ 14553 Description: types.Description{ 14554 Label: "%", 14555 Summary: "Percentage", 14556 }, 14557 Key: "percent", 14558 }, 14559 RollupType: "latest", 14560 StatsType: "absolute", 14561 Level: 3, 14562 PerDeviceLevel: 3, 14563 AssociatedCounterId: nil, 14564 }, 14565 { 14566 Key: 512, 14567 NameInfo: &types.ElementDescription{ 14568 Description: types.Description{ 14569 Label: "Throttled (5 min average)", 14570 Summary: "Amount of CPU resources over the limit that were refused, average over 5 minutes", 14571 }, 14572 Key: "maxLimited5", 14573 }, 14574 GroupInfo: &types.ElementDescription{ 14575 Description: types.Description{ 14576 Label: "Resource group CPU", 14577 Summary: "Resource group CPU", 14578 }, 14579 Key: "rescpu", 14580 }, 14581 UnitInfo: &types.ElementDescription{ 14582 Description: types.Description{ 14583 Label: "%", 14584 Summary: "Percentage", 14585 }, 14586 Key: "percent", 14587 }, 14588 RollupType: "latest", 14589 StatsType: "absolute", 14590 Level: 3, 14591 PerDeviceLevel: 3, 14592 AssociatedCounterId: nil, 14593 }, 14594 { 14595 Key: 513, 14596 NameInfo: &types.ElementDescription{ 14597 Description: types.Description{ 14598 Label: "Running (15 min peak)", 14599 Summary: "CPU running peak over 15 minutes", 14600 }, 14601 Key: "runpk15", 14602 }, 14603 GroupInfo: &types.ElementDescription{ 14604 Description: types.Description{ 14605 Label: "Resource group CPU", 14606 Summary: "Resource group CPU", 14607 }, 14608 Key: "rescpu", 14609 }, 14610 UnitInfo: &types.ElementDescription{ 14611 Description: types.Description{ 14612 Label: "%", 14613 Summary: "Percentage", 14614 }, 14615 Key: "percent", 14616 }, 14617 RollupType: "latest", 14618 StatsType: "absolute", 14619 Level: 3, 14620 PerDeviceLevel: 3, 14621 AssociatedCounterId: nil, 14622 }, 14623 { 14624 Key: 514, 14625 NameInfo: &types.ElementDescription{ 14626 Description: types.Description{ 14627 Label: "Throttled (15 min average)", 14628 Summary: "Amount of CPU resources over the limit that were refused, average over 15 minutes", 14629 }, 14630 Key: "maxLimited15", 14631 }, 14632 GroupInfo: &types.ElementDescription{ 14633 Description: types.Description{ 14634 Label: "Resource group CPU", 14635 Summary: "Resource group CPU", 14636 }, 14637 Key: "rescpu", 14638 }, 14639 UnitInfo: &types.ElementDescription{ 14640 Description: types.Description{ 14641 Label: "%", 14642 Summary: "Percentage", 14643 }, 14644 Key: "percent", 14645 }, 14646 RollupType: "latest", 14647 StatsType: "absolute", 14648 Level: 3, 14649 PerDeviceLevel: 3, 14650 AssociatedCounterId: nil, 14651 }, 14652 { 14653 Key: 515, 14654 NameInfo: &types.ElementDescription{ 14655 Description: types.Description{ 14656 Label: "Group CPU sample count", 14657 Summary: "Group CPU sample count", 14658 }, 14659 Key: "sampleCount", 14660 }, 14661 GroupInfo: &types.ElementDescription{ 14662 Description: types.Description{ 14663 Label: "Resource group CPU", 14664 Summary: "Resource group CPU", 14665 }, 14666 Key: "rescpu", 14667 }, 14668 UnitInfo: &types.ElementDescription{ 14669 Description: types.Description{ 14670 Label: "num", 14671 Summary: "Number", 14672 }, 14673 Key: "number", 14674 }, 14675 RollupType: "latest", 14676 StatsType: "absolute", 14677 Level: 3, 14678 PerDeviceLevel: 3, 14679 AssociatedCounterId: nil, 14680 }, 14681 { 14682 Key: 516, 14683 NameInfo: &types.ElementDescription{ 14684 Description: types.Description{ 14685 Label: "Group CPU sample period", 14686 Summary: "Group CPU sample period", 14687 }, 14688 Key: "samplePeriod", 14689 }, 14690 GroupInfo: &types.ElementDescription{ 14691 Description: types.Description{ 14692 Label: "Resource group CPU", 14693 Summary: "Resource group CPU", 14694 }, 14695 Key: "rescpu", 14696 }, 14697 UnitInfo: &types.ElementDescription{ 14698 Description: types.Description{ 14699 Label: "ms", 14700 Summary: "Millisecond", 14701 }, 14702 Key: "millisecond", 14703 }, 14704 RollupType: "latest", 14705 StatsType: "absolute", 14706 Level: 3, 14707 PerDeviceLevel: 3, 14708 AssociatedCounterId: nil, 14709 }, 14710 { 14711 Key: 517, 14712 NameInfo: &types.ElementDescription{ 14713 Description: types.Description{ 14714 Label: "Memory used", 14715 Summary: "Amount of total configured memory that is available for use", 14716 }, 14717 Key: "memUsed", 14718 }, 14719 GroupInfo: &types.ElementDescription{ 14720 Description: types.Description{ 14721 Label: "Management agent", 14722 Summary: "Management agent", 14723 }, 14724 Key: "managementAgent", 14725 }, 14726 UnitInfo: &types.ElementDescription{ 14727 Description: types.Description{ 14728 Label: "KB", 14729 Summary: "Kilobyte", 14730 }, 14731 Key: "kiloBytes", 14732 }, 14733 RollupType: "average", 14734 StatsType: "absolute", 14735 Level: 3, 14736 PerDeviceLevel: 3, 14737 AssociatedCounterId: nil, 14738 }, 14739 { 14740 Key: 518, 14741 NameInfo: &types.ElementDescription{ 14742 Description: types.Description{ 14743 Label: "Memory swap used", 14744 Summary: "Sum of the memory swapped by all powered-on virtual machines on the host", 14745 }, 14746 Key: "swapUsed", 14747 }, 14748 GroupInfo: &types.ElementDescription{ 14749 Description: types.Description{ 14750 Label: "Management agent", 14751 Summary: "Management agent", 14752 }, 14753 Key: "managementAgent", 14754 }, 14755 UnitInfo: &types.ElementDescription{ 14756 Description: types.Description{ 14757 Label: "KB", 14758 Summary: "Kilobyte", 14759 }, 14760 Key: "kiloBytes", 14761 }, 14762 RollupType: "average", 14763 StatsType: "absolute", 14764 Level: 3, 14765 PerDeviceLevel: 3, 14766 AssociatedCounterId: nil, 14767 }, 14768 { 14769 Key: 519, 14770 NameInfo: &types.ElementDescription{ 14771 Description: types.Description{ 14772 Label: "CPU usage", 14773 Summary: "Amount of Service Console CPU usage", 14774 }, 14775 Key: "cpuUsage", 14776 }, 14777 GroupInfo: &types.ElementDescription{ 14778 Description: types.Description{ 14779 Label: "Management agent", 14780 Summary: "Management agent", 14781 }, 14782 Key: "managementAgent", 14783 }, 14784 UnitInfo: &types.ElementDescription{ 14785 Description: types.Description{ 14786 Label: "MHz", 14787 Summary: "Megahertz", 14788 }, 14789 Key: "megaHertz", 14790 }, 14791 RollupType: "average", 14792 StatsType: "rate", 14793 Level: 3, 14794 PerDeviceLevel: 3, 14795 AssociatedCounterId: nil, 14796 }, 14797 { 14798 Key: 520, 14799 NameInfo: &types.ElementDescription{ 14800 Description: types.Description{ 14801 Label: "Average commands issued per second", 14802 Summary: "Average number of commands issued per second on the storage path during the collection interval", 14803 }, 14804 Key: "commandsAveraged", 14805 }, 14806 GroupInfo: &types.ElementDescription{ 14807 Description: types.Description{ 14808 Label: "Storage path", 14809 Summary: "Storage path", 14810 }, 14811 Key: "storagePath", 14812 }, 14813 UnitInfo: &types.ElementDescription{ 14814 Description: types.Description{ 14815 Label: "num", 14816 Summary: "Number", 14817 }, 14818 Key: "number", 14819 }, 14820 RollupType: "average", 14821 StatsType: "rate", 14822 Level: 3, 14823 PerDeviceLevel: 3, 14824 AssociatedCounterId: nil, 14825 }, 14826 { 14827 Key: 521, 14828 NameInfo: &types.ElementDescription{ 14829 Description: types.Description{ 14830 Label: "Average read requests per second", 14831 Summary: "Average number of read commands issued per second on the storage path during the collection interval", 14832 }, 14833 Key: "numberReadAveraged", 14834 }, 14835 GroupInfo: &types.ElementDescription{ 14836 Description: types.Description{ 14837 Label: "Storage path", 14838 Summary: "Storage path", 14839 }, 14840 Key: "storagePath", 14841 }, 14842 UnitInfo: &types.ElementDescription{ 14843 Description: types.Description{ 14844 Label: "num", 14845 Summary: "Number", 14846 }, 14847 Key: "number", 14848 }, 14849 RollupType: "average", 14850 StatsType: "rate", 14851 Level: 3, 14852 PerDeviceLevel: 3, 14853 AssociatedCounterId: nil, 14854 }, 14855 { 14856 Key: 522, 14857 NameInfo: &types.ElementDescription{ 14858 Description: types.Description{ 14859 Label: "Average write requests per second", 14860 Summary: "Average number of write commands issued per second on the storage path during the collection interval", 14861 }, 14862 Key: "numberWriteAveraged", 14863 }, 14864 GroupInfo: &types.ElementDescription{ 14865 Description: types.Description{ 14866 Label: "Storage path", 14867 Summary: "Storage path", 14868 }, 14869 Key: "storagePath", 14870 }, 14871 UnitInfo: &types.ElementDescription{ 14872 Description: types.Description{ 14873 Label: "num", 14874 Summary: "Number", 14875 }, 14876 Key: "number", 14877 }, 14878 RollupType: "average", 14879 StatsType: "rate", 14880 Level: 3, 14881 PerDeviceLevel: 3, 14882 AssociatedCounterId: nil, 14883 }, 14884 { 14885 Key: 523, 14886 NameInfo: &types.ElementDescription{ 14887 Description: types.Description{ 14888 Label: "Read rate", 14889 Summary: "Rate of reading data on the storage path", 14890 }, 14891 Key: "read", 14892 }, 14893 GroupInfo: &types.ElementDescription{ 14894 Description: types.Description{ 14895 Label: "Storage path", 14896 Summary: "Storage path", 14897 }, 14898 Key: "storagePath", 14899 }, 14900 UnitInfo: &types.ElementDescription{ 14901 Description: types.Description{ 14902 Label: "KBps", 14903 Summary: "Kilobytes per second", 14904 }, 14905 Key: "kiloBytesPerSecond", 14906 }, 14907 RollupType: "average", 14908 StatsType: "rate", 14909 Level: 3, 14910 PerDeviceLevel: 3, 14911 AssociatedCounterId: nil, 14912 }, 14913 { 14914 Key: 524, 14915 NameInfo: &types.ElementDescription{ 14916 Description: types.Description{ 14917 Label: "Write rate", 14918 Summary: "Rate of writing data on the storage path", 14919 }, 14920 Key: "write", 14921 }, 14922 GroupInfo: &types.ElementDescription{ 14923 Description: types.Description{ 14924 Label: "Storage path", 14925 Summary: "Storage path", 14926 }, 14927 Key: "storagePath", 14928 }, 14929 UnitInfo: &types.ElementDescription{ 14930 Description: types.Description{ 14931 Label: "KBps", 14932 Summary: "Kilobytes per second", 14933 }, 14934 Key: "kiloBytesPerSecond", 14935 }, 14936 RollupType: "average", 14937 StatsType: "rate", 14938 Level: 3, 14939 PerDeviceLevel: 3, 14940 AssociatedCounterId: nil, 14941 }, 14942 { 14943 Key: 525, 14944 NameInfo: &types.ElementDescription{ 14945 Description: types.Description{ 14946 Label: "Read latency", 14947 Summary: "The average time a read issued on the storage path takes", 14948 }, 14949 Key: "totalReadLatency", 14950 }, 14951 GroupInfo: &types.ElementDescription{ 14952 Description: types.Description{ 14953 Label: "Storage path", 14954 Summary: "Storage path", 14955 }, 14956 Key: "storagePath", 14957 }, 14958 UnitInfo: &types.ElementDescription{ 14959 Description: types.Description{ 14960 Label: "ms", 14961 Summary: "Millisecond", 14962 }, 14963 Key: "millisecond", 14964 }, 14965 RollupType: "average", 14966 StatsType: "absolute", 14967 Level: 3, 14968 PerDeviceLevel: 3, 14969 AssociatedCounterId: nil, 14970 }, 14971 { 14972 Key: 526, 14973 NameInfo: &types.ElementDescription{ 14974 Description: types.Description{ 14975 Label: "Write latency", 14976 Summary: "The average time a write issued on the storage path takes", 14977 }, 14978 Key: "totalWriteLatency", 14979 }, 14980 GroupInfo: &types.ElementDescription{ 14981 Description: types.Description{ 14982 Label: "Storage path", 14983 Summary: "Storage path", 14984 }, 14985 Key: "storagePath", 14986 }, 14987 UnitInfo: &types.ElementDescription{ 14988 Description: types.Description{ 14989 Label: "ms", 14990 Summary: "Millisecond", 14991 }, 14992 Key: "millisecond", 14993 }, 14994 RollupType: "average", 14995 StatsType: "absolute", 14996 Level: 3, 14997 PerDeviceLevel: 3, 14998 AssociatedCounterId: nil, 14999 }, 15000 { 15001 Key: 527, 15002 NameInfo: &types.ElementDescription{ 15003 Description: types.Description{ 15004 Label: "Read request size", 15005 Summary: "Average read request size in bytes", 15006 }, 15007 Key: "readIOSize", 15008 }, 15009 GroupInfo: &types.ElementDescription{ 15010 Description: types.Description{ 15011 Label: "Virtual disk", 15012 Summary: "Virtual disk", 15013 }, 15014 Key: "virtualDisk", 15015 }, 15016 UnitInfo: &types.ElementDescription{ 15017 Description: types.Description{ 15018 Label: "num", 15019 Summary: "Number", 15020 }, 15021 Key: "number", 15022 }, 15023 RollupType: "latest", 15024 StatsType: "absolute", 15025 Level: 4, 15026 PerDeviceLevel: 4, 15027 AssociatedCounterId: nil, 15028 }, 15029 { 15030 Key: 528, 15031 NameInfo: &types.ElementDescription{ 15032 Description: types.Description{ 15033 Label: "Write request size", 15034 Summary: "Average write request size in bytes", 15035 }, 15036 Key: "writeIOSize", 15037 }, 15038 GroupInfo: &types.ElementDescription{ 15039 Description: types.Description{ 15040 Label: "Virtual disk", 15041 Summary: "Virtual disk", 15042 }, 15043 Key: "virtualDisk", 15044 }, 15045 UnitInfo: &types.ElementDescription{ 15046 Description: types.Description{ 15047 Label: "num", 15048 Summary: "Number", 15049 }, 15050 Key: "number", 15051 }, 15052 RollupType: "latest", 15053 StatsType: "absolute", 15054 Level: 4, 15055 PerDeviceLevel: 4, 15056 AssociatedCounterId: nil, 15057 }, 15058 { 15059 Key: 529, 15060 NameInfo: &types.ElementDescription{ 15061 Description: types.Description{ 15062 Label: "Number of small seeks", 15063 Summary: "Number of seeks during the interval that were less than 64 LBNs apart", 15064 }, 15065 Key: "smallSeeks", 15066 }, 15067 GroupInfo: &types.ElementDescription{ 15068 Description: types.Description{ 15069 Label: "Virtual disk", 15070 Summary: "Virtual disk", 15071 }, 15072 Key: "virtualDisk", 15073 }, 15074 UnitInfo: &types.ElementDescription{ 15075 Description: types.Description{ 15076 Label: "num", 15077 Summary: "Number", 15078 }, 15079 Key: "number", 15080 }, 15081 RollupType: "latest", 15082 StatsType: "absolute", 15083 Level: 4, 15084 PerDeviceLevel: 4, 15085 AssociatedCounterId: nil, 15086 }, 15087 { 15088 Key: 530, 15089 NameInfo: &types.ElementDescription{ 15090 Description: types.Description{ 15091 Label: "Number of medium seeks", 15092 Summary: "Number of seeks during the interval that were between 64 and 8192 LBNs apart", 15093 }, 15094 Key: "mediumSeeks", 15095 }, 15096 GroupInfo: &types.ElementDescription{ 15097 Description: types.Description{ 15098 Label: "Virtual disk", 15099 Summary: "Virtual disk", 15100 }, 15101 Key: "virtualDisk", 15102 }, 15103 UnitInfo: &types.ElementDescription{ 15104 Description: types.Description{ 15105 Label: "num", 15106 Summary: "Number", 15107 }, 15108 Key: "number", 15109 }, 15110 RollupType: "latest", 15111 StatsType: "absolute", 15112 Level: 4, 15113 PerDeviceLevel: 4, 15114 AssociatedCounterId: nil, 15115 }, 15116 { 15117 Key: 531, 15118 NameInfo: &types.ElementDescription{ 15119 Description: types.Description{ 15120 Label: "Number of large seeks", 15121 Summary: "Number of seeks during the interval that were greater than 8192 LBNs apart", 15122 }, 15123 Key: "largeSeeks", 15124 }, 15125 GroupInfo: &types.ElementDescription{ 15126 Description: types.Description{ 15127 Label: "Virtual disk", 15128 Summary: "Virtual disk", 15129 }, 15130 Key: "virtualDisk", 15131 }, 15132 UnitInfo: &types.ElementDescription{ 15133 Description: types.Description{ 15134 Label: "num", 15135 Summary: "Number", 15136 }, 15137 Key: "number", 15138 }, 15139 RollupType: "latest", 15140 StatsType: "absolute", 15141 Level: 4, 15142 PerDeviceLevel: 4, 15143 AssociatedCounterId: nil, 15144 }, 15145 { 15146 Key: 532, 15147 NameInfo: &types.ElementDescription{ 15148 Description: types.Description{ 15149 Label: "Read Latency (us)", 15150 Summary: "Read latency in microseconds", 15151 }, 15152 Key: "readLatencyUS", 15153 }, 15154 GroupInfo: &types.ElementDescription{ 15155 Description: types.Description{ 15156 Label: "Virtual disk", 15157 Summary: "Virtual disk", 15158 }, 15159 Key: "virtualDisk", 15160 }, 15161 UnitInfo: &types.ElementDescription{ 15162 Description: types.Description{ 15163 Label: "µs", 15164 Summary: "Microsecond", 15165 }, 15166 Key: "microsecond", 15167 }, 15168 RollupType: "latest", 15169 StatsType: "absolute", 15170 Level: 4, 15171 PerDeviceLevel: 4, 15172 AssociatedCounterId: nil, 15173 }, 15174 { 15175 Key: 533, 15176 NameInfo: &types.ElementDescription{ 15177 Description: types.Description{ 15178 Label: "Write Latency (us)", 15179 Summary: "Write latency in microseconds", 15180 }, 15181 Key: "writeLatencyUS", 15182 }, 15183 GroupInfo: &types.ElementDescription{ 15184 Description: types.Description{ 15185 Label: "Virtual disk", 15186 Summary: "Virtual disk", 15187 }, 15188 Key: "virtualDisk", 15189 }, 15190 UnitInfo: &types.ElementDescription{ 15191 Description: types.Description{ 15192 Label: "µs", 15193 Summary: "Microsecond", 15194 }, 15195 Key: "microsecond", 15196 }, 15197 RollupType: "latest", 15198 StatsType: "absolute", 15199 Level: 4, 15200 PerDeviceLevel: 4, 15201 AssociatedCounterId: nil, 15202 }, 15203 { 15204 Key: 534, 15205 NameInfo: &types.ElementDescription{ 15206 Description: types.Description{ 15207 Label: "Virtual Flash Read Cache I/Os per second for the virtual disk", 15208 Summary: "The average virtual Flash Read Cache I/Os per second value for the virtual disk", 15209 }, 15210 Key: "vFlashCacheIops", 15211 }, 15212 GroupInfo: &types.ElementDescription{ 15213 Description: types.Description{ 15214 Label: "Virtual disk", 15215 Summary: "Virtual disk", 15216 }, 15217 Key: "virtualDisk", 15218 }, 15219 UnitInfo: &types.ElementDescription{ 15220 Description: types.Description{ 15221 Label: "num", 15222 Summary: "Number", 15223 }, 15224 Key: "number", 15225 }, 15226 RollupType: "latest", 15227 StatsType: "absolute", 15228 Level: 4, 15229 PerDeviceLevel: 4, 15230 AssociatedCounterId: nil, 15231 }, 15232 { 15233 Key: 535, 15234 NameInfo: &types.ElementDescription{ 15235 Description: types.Description{ 15236 Label: "Virtual Flash Read Cache latency for the virtual disk", 15237 Summary: "The average virtual Flash Read Cache latency value for the virtual disk", 15238 }, 15239 Key: "vFlashCacheLatency", 15240 }, 15241 GroupInfo: &types.ElementDescription{ 15242 Description: types.Description{ 15243 Label: "Virtual disk", 15244 Summary: "Virtual disk", 15245 }, 15246 Key: "virtualDisk", 15247 }, 15248 UnitInfo: &types.ElementDescription{ 15249 Description: types.Description{ 15250 Label: "µs", 15251 Summary: "Microsecond", 15252 }, 15253 Key: "microsecond", 15254 }, 15255 RollupType: "latest", 15256 StatsType: "absolute", 15257 Level: 4, 15258 PerDeviceLevel: 4, 15259 AssociatedCounterId: nil, 15260 }, 15261 { 15262 Key: 536, 15263 NameInfo: &types.ElementDescription{ 15264 Description: types.Description{ 15265 Label: "Virtual Flash Read Cache throughput for virtual disk", 15266 Summary: "The average virtual Flash Read Cache throughput value for the virtual disk", 15267 }, 15268 Key: "vFlashCacheThroughput", 15269 }, 15270 GroupInfo: &types.ElementDescription{ 15271 Description: types.Description{ 15272 Label: "Virtual disk", 15273 Summary: "Virtual disk", 15274 }, 15275 Key: "virtualDisk", 15276 }, 15277 UnitInfo: &types.ElementDescription{ 15278 Description: types.Description{ 15279 Label: "num", 15280 Summary: "Number", 15281 }, 15282 Key: "number", 15283 }, 15284 RollupType: "latest", 15285 StatsType: "absolute", 15286 Level: 4, 15287 PerDeviceLevel: 4, 15288 AssociatedCounterId: nil, 15289 }, 15290 { 15291 Key: 537, 15292 NameInfo: &types.ElementDescription{ 15293 Description: types.Description{ 15294 Label: "Storage I/O Control datastore maximum queue depth", 15295 Summary: "Storage I/O Control datastore maximum queue depth", 15296 }, 15297 Key: "datastoreMaxQueueDepth", 15298 }, 15299 GroupInfo: &types.ElementDescription{ 15300 Description: types.Description{ 15301 Label: "Datastore", 15302 Summary: "Datastore", 15303 }, 15304 Key: "datastore", 15305 }, 15306 UnitInfo: &types.ElementDescription{ 15307 Description: types.Description{ 15308 Label: "num", 15309 Summary: "Number", 15310 }, 15311 Key: "number", 15312 }, 15313 RollupType: "latest", 15314 StatsType: "absolute", 15315 Level: 1, 15316 PerDeviceLevel: 3, 15317 AssociatedCounterId: nil, 15318 }, 15319 { 15320 Key: 538, 15321 NameInfo: &types.ElementDescription{ 15322 Description: types.Description{ 15323 Label: "vSphere Replication VM Count", 15324 Summary: "Current number of replicated virtual machines", 15325 }, 15326 Key: "hbrNumVms", 15327 }, 15328 GroupInfo: &types.ElementDescription{ 15329 Description: types.Description{ 15330 Label: "vSphere Replication", 15331 Summary: "vSphere Replication", 15332 }, 15333 Key: "hbr", 15334 }, 15335 UnitInfo: &types.ElementDescription{ 15336 Description: types.Description{ 15337 Label: "num", 15338 Summary: "Number", 15339 }, 15340 Key: "number", 15341 }, 15342 RollupType: "average", 15343 StatsType: "absolute", 15344 Level: 4, 15345 PerDeviceLevel: 4, 15346 AssociatedCounterId: nil, 15347 }, 15348 { 15349 Key: 539, 15350 NameInfo: &types.ElementDescription{ 15351 Description: types.Description{ 15352 Label: "Replication Data Receive Rate", 15353 Summary: "Average amount of data received per second", 15354 }, 15355 Key: "hbrNetRx", 15356 }, 15357 GroupInfo: &types.ElementDescription{ 15358 Description: types.Description{ 15359 Label: "vSphere Replication", 15360 Summary: "vSphere Replication", 15361 }, 15362 Key: "hbr", 15363 }, 15364 UnitInfo: &types.ElementDescription{ 15365 Description: types.Description{ 15366 Label: "KBps", 15367 Summary: "Kilobytes per second", 15368 }, 15369 Key: "kiloBytesPerSecond", 15370 }, 15371 RollupType: "average", 15372 StatsType: "rate", 15373 Level: 4, 15374 PerDeviceLevel: 4, 15375 AssociatedCounterId: nil, 15376 }, 15377 { 15378 Key: 540, 15379 NameInfo: &types.ElementDescription{ 15380 Description: types.Description{ 15381 Label: "Replication Data Transmit Rate", 15382 Summary: "Average amount of data transmitted per second", 15383 }, 15384 Key: "hbrNetTx", 15385 }, 15386 GroupInfo: &types.ElementDescription{ 15387 Description: types.Description{ 15388 Label: "vSphere Replication", 15389 Summary: "vSphere Replication", 15390 }, 15391 Key: "hbr", 15392 }, 15393 UnitInfo: &types.ElementDescription{ 15394 Description: types.Description{ 15395 Label: "KBps", 15396 Summary: "Kilobytes per second", 15397 }, 15398 Key: "kiloBytesPerSecond", 15399 }, 15400 RollupType: "average", 15401 StatsType: "rate", 15402 Level: 4, 15403 PerDeviceLevel: 4, 15404 AssociatedCounterId: nil, 15405 }, 15406 { 15407 Key: 541, 15408 NameInfo: &types.ElementDescription{ 15409 Description: types.Description{ 15410 Label: "Number of caches controlled by the virtual flash module", 15411 Summary: "Number of caches controlled by the virtual flash module", 15412 }, 15413 Key: "numActiveVMDKs", 15414 }, 15415 GroupInfo: &types.ElementDescription{ 15416 Description: types.Description{ 15417 Label: "Virtual flash", 15418 Summary: "Virtual flash module related statistical values", 15419 }, 15420 Key: "vflashModule", 15421 }, 15422 UnitInfo: &types.ElementDescription{ 15423 Description: types.Description{ 15424 Label: "num", 15425 Summary: "Number", 15426 }, 15427 Key: "number", 15428 }, 15429 RollupType: "latest", 15430 StatsType: "absolute", 15431 Level: 4, 15432 PerDeviceLevel: 4, 15433 AssociatedCounterId: nil, 15434 }, 15435 { 15436 Key: 542, 15437 NameInfo: &types.ElementDescription{ 15438 Description: types.Description{ 15439 Label: "Read IOPS", 15440 Summary: "Read IOPS", 15441 }, 15442 Key: "readIops", 15443 }, 15444 GroupInfo: &types.ElementDescription{ 15445 Description: types.Description{ 15446 Label: "VSAN DOM Objects", 15447 Summary: "VSAN DOM object related statistical values", 15448 }, 15449 Key: "vsanDomObj", 15450 }, 15451 UnitInfo: &types.ElementDescription{ 15452 Description: types.Description{ 15453 Label: "num", 15454 Summary: "Number", 15455 }, 15456 Key: "number", 15457 }, 15458 RollupType: "average", 15459 StatsType: "rate", 15460 Level: 4, 15461 PerDeviceLevel: 4, 15462 AssociatedCounterId: nil, 15463 }, 15464 { 15465 Key: 543, 15466 NameInfo: &types.ElementDescription{ 15467 Description: types.Description{ 15468 Label: "Read throughput", 15469 Summary: "Read throughput in kBps", 15470 }, 15471 Key: "readThroughput", 15472 }, 15473 GroupInfo: &types.ElementDescription{ 15474 Description: types.Description{ 15475 Label: "VSAN DOM Objects", 15476 Summary: "VSAN DOM object related statistical values", 15477 }, 15478 Key: "vsanDomObj", 15479 }, 15480 UnitInfo: &types.ElementDescription{ 15481 Description: types.Description{ 15482 Label: "KBps", 15483 Summary: "Kilobytes per second", 15484 }, 15485 Key: "kiloBytesPerSecond", 15486 }, 15487 RollupType: "average", 15488 StatsType: "rate", 15489 Level: 4, 15490 PerDeviceLevel: 4, 15491 AssociatedCounterId: nil, 15492 }, 15493 { 15494 Key: 544, 15495 NameInfo: &types.ElementDescription{ 15496 Description: types.Description{ 15497 Label: "Average read latency", 15498 Summary: "Average read latency in ms", 15499 }, 15500 Key: "readAvgLatency", 15501 }, 15502 GroupInfo: &types.ElementDescription{ 15503 Description: types.Description{ 15504 Label: "VSAN DOM Objects", 15505 Summary: "VSAN DOM object related statistical values", 15506 }, 15507 Key: "vsanDomObj", 15508 }, 15509 UnitInfo: &types.ElementDescription{ 15510 Description: types.Description{ 15511 Label: "ms", 15512 Summary: "Millisecond", 15513 }, 15514 Key: "millisecond", 15515 }, 15516 RollupType: "average", 15517 StatsType: "absolute", 15518 Level: 4, 15519 PerDeviceLevel: 4, 15520 AssociatedCounterId: nil, 15521 }, 15522 { 15523 Key: 545, 15524 NameInfo: &types.ElementDescription{ 15525 Description: types.Description{ 15526 Label: "Max read latency", 15527 Summary: "Max read latency in ms", 15528 }, 15529 Key: "readMaxLatency", 15530 }, 15531 GroupInfo: &types.ElementDescription{ 15532 Description: types.Description{ 15533 Label: "VSAN DOM Objects", 15534 Summary: "VSAN DOM object related statistical values", 15535 }, 15536 Key: "vsanDomObj", 15537 }, 15538 UnitInfo: &types.ElementDescription{ 15539 Description: types.Description{ 15540 Label: "ms", 15541 Summary: "Millisecond", 15542 }, 15543 Key: "millisecond", 15544 }, 15545 RollupType: "latest", 15546 StatsType: "absolute", 15547 Level: 4, 15548 PerDeviceLevel: 4, 15549 AssociatedCounterId: nil, 15550 }, 15551 { 15552 Key: 546, 15553 NameInfo: &types.ElementDescription{ 15554 Description: types.Description{ 15555 Label: "Cache hit rate", 15556 Summary: "Cache hit rate percentage", 15557 }, 15558 Key: "readCacheHitRate", 15559 }, 15560 GroupInfo: &types.ElementDescription{ 15561 Description: types.Description{ 15562 Label: "VSAN DOM Objects", 15563 Summary: "VSAN DOM object related statistical values", 15564 }, 15565 Key: "vsanDomObj", 15566 }, 15567 UnitInfo: &types.ElementDescription{ 15568 Description: types.Description{ 15569 Label: "%", 15570 Summary: "Percentage", 15571 }, 15572 Key: "percent", 15573 }, 15574 RollupType: "latest", 15575 StatsType: "absolute", 15576 Level: 4, 15577 PerDeviceLevel: 4, 15578 AssociatedCounterId: nil, 15579 }, 15580 { 15581 Key: 547, 15582 NameInfo: &types.ElementDescription{ 15583 Description: types.Description{ 15584 Label: "Read congestion per sampling interval", 15585 Summary: "Read congestion", 15586 }, 15587 Key: "readCongestion", 15588 }, 15589 GroupInfo: &types.ElementDescription{ 15590 Description: types.Description{ 15591 Label: "VSAN DOM Objects", 15592 Summary: "VSAN DOM object related statistical values", 15593 }, 15594 Key: "vsanDomObj", 15595 }, 15596 UnitInfo: &types.ElementDescription{ 15597 Description: types.Description{ 15598 Label: "num", 15599 Summary: "Number", 15600 }, 15601 Key: "number", 15602 }, 15603 RollupType: "average", 15604 StatsType: "rate", 15605 Level: 4, 15606 PerDeviceLevel: 4, 15607 AssociatedCounterId: nil, 15608 }, 15609 { 15610 Key: 548, 15611 NameInfo: &types.ElementDescription{ 15612 Description: types.Description{ 15613 Label: "Write IOPS", 15614 Summary: "Write IOPS", 15615 }, 15616 Key: "writeIops", 15617 }, 15618 GroupInfo: &types.ElementDescription{ 15619 Description: types.Description{ 15620 Label: "VSAN DOM Objects", 15621 Summary: "VSAN DOM object related statistical values", 15622 }, 15623 Key: "vsanDomObj", 15624 }, 15625 UnitInfo: &types.ElementDescription{ 15626 Description: types.Description{ 15627 Label: "num", 15628 Summary: "Number", 15629 }, 15630 Key: "number", 15631 }, 15632 RollupType: "average", 15633 StatsType: "rate", 15634 Level: 4, 15635 PerDeviceLevel: 4, 15636 AssociatedCounterId: nil, 15637 }, 15638 { 15639 Key: 549, 15640 NameInfo: &types.ElementDescription{ 15641 Description: types.Description{ 15642 Label: "Write throughput", 15643 Summary: "Write throughput in kBps", 15644 }, 15645 Key: "writeThroughput", 15646 }, 15647 GroupInfo: &types.ElementDescription{ 15648 Description: types.Description{ 15649 Label: "VSAN DOM Objects", 15650 Summary: "VSAN DOM object related statistical values", 15651 }, 15652 Key: "vsanDomObj", 15653 }, 15654 UnitInfo: &types.ElementDescription{ 15655 Description: types.Description{ 15656 Label: "KBps", 15657 Summary: "Kilobytes per second", 15658 }, 15659 Key: "kiloBytesPerSecond", 15660 }, 15661 RollupType: "average", 15662 StatsType: "rate", 15663 Level: 4, 15664 PerDeviceLevel: 4, 15665 AssociatedCounterId: nil, 15666 }, 15667 { 15668 Key: 550, 15669 NameInfo: &types.ElementDescription{ 15670 Description: types.Description{ 15671 Label: "Average write latency", 15672 Summary: "Average write latency in ms", 15673 }, 15674 Key: "writeAvgLatency", 15675 }, 15676 GroupInfo: &types.ElementDescription{ 15677 Description: types.Description{ 15678 Label: "VSAN DOM Objects", 15679 Summary: "VSAN DOM object related statistical values", 15680 }, 15681 Key: "vsanDomObj", 15682 }, 15683 UnitInfo: &types.ElementDescription{ 15684 Description: types.Description{ 15685 Label: "ms", 15686 Summary: "Millisecond", 15687 }, 15688 Key: "millisecond", 15689 }, 15690 RollupType: "average", 15691 StatsType: "absolute", 15692 Level: 4, 15693 PerDeviceLevel: 4, 15694 AssociatedCounterId: nil, 15695 }, 15696 { 15697 Key: 551, 15698 NameInfo: &types.ElementDescription{ 15699 Description: types.Description{ 15700 Label: "Max write latency", 15701 Summary: "Max write latency in ms", 15702 }, 15703 Key: "writeMaxLatency", 15704 }, 15705 GroupInfo: &types.ElementDescription{ 15706 Description: types.Description{ 15707 Label: "VSAN DOM Objects", 15708 Summary: "VSAN DOM object related statistical values", 15709 }, 15710 Key: "vsanDomObj", 15711 }, 15712 UnitInfo: &types.ElementDescription{ 15713 Description: types.Description{ 15714 Label: "ms", 15715 Summary: "Millisecond", 15716 }, 15717 Key: "millisecond", 15718 }, 15719 RollupType: "latest", 15720 StatsType: "absolute", 15721 Level: 4, 15722 PerDeviceLevel: 4, 15723 AssociatedCounterId: nil, 15724 }, 15725 { 15726 Key: 552, 15727 NameInfo: &types.ElementDescription{ 15728 Description: types.Description{ 15729 Label: "Write congestion per sampling interval", 15730 Summary: "Write congestion", 15731 }, 15732 Key: "writeCongestion", 15733 }, 15734 GroupInfo: &types.ElementDescription{ 15735 Description: types.Description{ 15736 Label: "VSAN DOM Objects", 15737 Summary: "VSAN DOM object related statistical values", 15738 }, 15739 Key: "vsanDomObj", 15740 }, 15741 UnitInfo: &types.ElementDescription{ 15742 Description: types.Description{ 15743 Label: "num", 15744 Summary: "Number", 15745 }, 15746 Key: "number", 15747 }, 15748 RollupType: "average", 15749 StatsType: "rate", 15750 Level: 4, 15751 PerDeviceLevel: 4, 15752 AssociatedCounterId: nil, 15753 }, 15754 { 15755 Key: 553, 15756 NameInfo: &types.ElementDescription{ 15757 Description: types.Description{ 15758 Label: "Recovery write IOPS", 15759 Summary: "Recovery write IOPS", 15760 }, 15761 Key: "recoveryWriteIops", 15762 }, 15763 GroupInfo: &types.ElementDescription{ 15764 Description: types.Description{ 15765 Label: "VSAN DOM Objects", 15766 Summary: "VSAN DOM object related statistical values", 15767 }, 15768 Key: "vsanDomObj", 15769 }, 15770 UnitInfo: &types.ElementDescription{ 15771 Description: types.Description{ 15772 Label: "num", 15773 Summary: "Number", 15774 }, 15775 Key: "number", 15776 }, 15777 RollupType: "average", 15778 StatsType: "rate", 15779 Level: 4, 15780 PerDeviceLevel: 4, 15781 AssociatedCounterId: nil, 15782 }, 15783 { 15784 Key: 554, 15785 NameInfo: &types.ElementDescription{ 15786 Description: types.Description{ 15787 Label: "Recovery write through-put", 15788 Summary: "Recovery write through-put in kBps", 15789 }, 15790 Key: "recoveryWriteThroughput", 15791 }, 15792 GroupInfo: &types.ElementDescription{ 15793 Description: types.Description{ 15794 Label: "VSAN DOM Objects", 15795 Summary: "VSAN DOM object related statistical values", 15796 }, 15797 Key: "vsanDomObj", 15798 }, 15799 UnitInfo: &types.ElementDescription{ 15800 Description: types.Description{ 15801 Label: "KBps", 15802 Summary: "Kilobytes per second", 15803 }, 15804 Key: "kiloBytesPerSecond", 15805 }, 15806 RollupType: "average", 15807 StatsType: "rate", 15808 Level: 4, 15809 PerDeviceLevel: 4, 15810 AssociatedCounterId: nil, 15811 }, 15812 { 15813 Key: 555, 15814 NameInfo: &types.ElementDescription{ 15815 Description: types.Description{ 15816 Label: "Average recovery write latency", 15817 Summary: "Average recovery write latency in ms", 15818 }, 15819 Key: "recoveryWriteAvgLatency", 15820 }, 15821 GroupInfo: &types.ElementDescription{ 15822 Description: types.Description{ 15823 Label: "VSAN DOM Objects", 15824 Summary: "VSAN DOM object related statistical values", 15825 }, 15826 Key: "vsanDomObj", 15827 }, 15828 UnitInfo: &types.ElementDescription{ 15829 Description: types.Description{ 15830 Label: "ms", 15831 Summary: "Millisecond", 15832 }, 15833 Key: "millisecond", 15834 }, 15835 RollupType: "average", 15836 StatsType: "absolute", 15837 Level: 4, 15838 PerDeviceLevel: 4, 15839 AssociatedCounterId: nil, 15840 }, 15841 { 15842 Key: 556, 15843 NameInfo: &types.ElementDescription{ 15844 Description: types.Description{ 15845 Label: "Max recovery write latency", 15846 Summary: "Max recovery write latency in ms", 15847 }, 15848 Key: "recoveryWriteMaxLatency", 15849 }, 15850 GroupInfo: &types.ElementDescription{ 15851 Description: types.Description{ 15852 Label: "VSAN DOM Objects", 15853 Summary: "VSAN DOM object related statistical values", 15854 }, 15855 Key: "vsanDomObj", 15856 }, 15857 UnitInfo: &types.ElementDescription{ 15858 Description: types.Description{ 15859 Label: "ms", 15860 Summary: "Millisecond", 15861 }, 15862 Key: "millisecond", 15863 }, 15864 RollupType: "latest", 15865 StatsType: "absolute", 15866 Level: 4, 15867 PerDeviceLevel: 4, 15868 AssociatedCounterId: nil, 15869 }, 15870 { 15871 Key: 557, 15872 NameInfo: &types.ElementDescription{ 15873 Description: types.Description{ 15874 Label: "Recovery write congestion per sampling interval", 15875 Summary: "Recovery write congestion", 15876 }, 15877 Key: "recoveryWriteCongestion", 15878 }, 15879 GroupInfo: &types.ElementDescription{ 15880 Description: types.Description{ 15881 Label: "VSAN DOM Objects", 15882 Summary: "VSAN DOM object related statistical values", 15883 }, 15884 Key: "vsanDomObj", 15885 }, 15886 UnitInfo: &types.ElementDescription{ 15887 Description: types.Description{ 15888 Label: "num", 15889 Summary: "Number", 15890 }, 15891 Key: "number", 15892 }, 15893 RollupType: "average", 15894 StatsType: "rate", 15895 Level: 4, 15896 PerDeviceLevel: 4, 15897 AssociatedCounterId: nil, 15898 }, 15899 { 15900 Key: 558, 15901 NameInfo: &types.ElementDescription{ 15902 Description: types.Description{ 15903 Label: "Utilization", 15904 Summary: "The utilization of a GPU in percentages", 15905 }, 15906 Key: "utilization", 15907 }, 15908 GroupInfo: &types.ElementDescription{ 15909 Description: types.Description{ 15910 Label: "GPU", 15911 Summary: "GPU", 15912 }, 15913 Key: "gpu", 15914 }, 15915 UnitInfo: &types.ElementDescription{ 15916 Description: types.Description{ 15917 Label: "%", 15918 Summary: "Percentage", 15919 }, 15920 Key: "percent", 15921 }, 15922 RollupType: "none", 15923 StatsType: "absolute", 15924 Level: 4, 15925 PerDeviceLevel: 4, 15926 AssociatedCounterId: nil, 15927 }, 15928 { 15929 Key: 559, 15930 NameInfo: &types.ElementDescription{ 15931 Description: types.Description{ 15932 Label: "Utilization", 15933 Summary: "The utilization of a GPU in percentages", 15934 }, 15935 Key: "utilization", 15936 }, 15937 GroupInfo: &types.ElementDescription{ 15938 Description: types.Description{ 15939 Label: "GPU", 15940 Summary: "GPU", 15941 }, 15942 Key: "gpu", 15943 }, 15944 UnitInfo: &types.ElementDescription{ 15945 Description: types.Description{ 15946 Label: "%", 15947 Summary: "Percentage", 15948 }, 15949 Key: "percent", 15950 }, 15951 RollupType: "average", 15952 StatsType: "absolute", 15953 Level: 4, 15954 PerDeviceLevel: 4, 15955 AssociatedCounterId: nil, 15956 }, 15957 { 15958 Key: 560, 15959 NameInfo: &types.ElementDescription{ 15960 Description: types.Description{ 15961 Label: "Utilization", 15962 Summary: "The utilization of a GPU in percentages", 15963 }, 15964 Key: "utilization", 15965 }, 15966 GroupInfo: &types.ElementDescription{ 15967 Description: types.Description{ 15968 Label: "GPU", 15969 Summary: "GPU", 15970 }, 15971 Key: "gpu", 15972 }, 15973 UnitInfo: &types.ElementDescription{ 15974 Description: types.Description{ 15975 Label: "%", 15976 Summary: "Percentage", 15977 }, 15978 Key: "percent", 15979 }, 15980 RollupType: "maximum", 15981 StatsType: "absolute", 15982 Level: 4, 15983 PerDeviceLevel: 4, 15984 AssociatedCounterId: nil, 15985 }, 15986 { 15987 Key: 561, 15988 NameInfo: &types.ElementDescription{ 15989 Description: types.Description{ 15990 Label: "Utilization", 15991 Summary: "The utilization of a GPU in percentages", 15992 }, 15993 Key: "utilization", 15994 }, 15995 GroupInfo: &types.ElementDescription{ 15996 Description: types.Description{ 15997 Label: "GPU", 15998 Summary: "GPU", 15999 }, 16000 Key: "gpu", 16001 }, 16002 UnitInfo: &types.ElementDescription{ 16003 Description: types.Description{ 16004 Label: "%", 16005 Summary: "Percentage", 16006 }, 16007 Key: "percent", 16008 }, 16009 RollupType: "minimum", 16010 StatsType: "absolute", 16011 Level: 4, 16012 PerDeviceLevel: 4, 16013 AssociatedCounterId: nil, 16014 }, 16015 { 16016 Key: 562, 16017 NameInfo: &types.ElementDescription{ 16018 Description: types.Description{ 16019 Label: "Memory used", 16020 Summary: "The amount of GPU memory used in kilobytes", 16021 }, 16022 Key: "mem.used", 16023 }, 16024 GroupInfo: &types.ElementDescription{ 16025 Description: types.Description{ 16026 Label: "GPU", 16027 Summary: "GPU", 16028 }, 16029 Key: "gpu", 16030 }, 16031 UnitInfo: &types.ElementDescription{ 16032 Description: types.Description{ 16033 Label: "KB", 16034 Summary: "Kilobyte", 16035 }, 16036 Key: "kiloBytes", 16037 }, 16038 RollupType: "none", 16039 StatsType: "absolute", 16040 Level: 4, 16041 PerDeviceLevel: 4, 16042 AssociatedCounterId: nil, 16043 }, 16044 { 16045 Key: 563, 16046 NameInfo: &types.ElementDescription{ 16047 Description: types.Description{ 16048 Label: "Memory used", 16049 Summary: "The amount of GPU memory used in kilobytes", 16050 }, 16051 Key: "mem.used", 16052 }, 16053 GroupInfo: &types.ElementDescription{ 16054 Description: types.Description{ 16055 Label: "GPU", 16056 Summary: "GPU", 16057 }, 16058 Key: "gpu", 16059 }, 16060 UnitInfo: &types.ElementDescription{ 16061 Description: types.Description{ 16062 Label: "KB", 16063 Summary: "Kilobyte", 16064 }, 16065 Key: "kiloBytes", 16066 }, 16067 RollupType: "average", 16068 StatsType: "absolute", 16069 Level: 4, 16070 PerDeviceLevel: 4, 16071 AssociatedCounterId: nil, 16072 }, 16073 { 16074 Key: 564, 16075 NameInfo: &types.ElementDescription{ 16076 Description: types.Description{ 16077 Label: "Memory used", 16078 Summary: "The amount of GPU memory used in kilobytes", 16079 }, 16080 Key: "mem.used", 16081 }, 16082 GroupInfo: &types.ElementDescription{ 16083 Description: types.Description{ 16084 Label: "GPU", 16085 Summary: "GPU", 16086 }, 16087 Key: "gpu", 16088 }, 16089 UnitInfo: &types.ElementDescription{ 16090 Description: types.Description{ 16091 Label: "KB", 16092 Summary: "Kilobyte", 16093 }, 16094 Key: "kiloBytes", 16095 }, 16096 RollupType: "maximum", 16097 StatsType: "absolute", 16098 Level: 4, 16099 PerDeviceLevel: 4, 16100 AssociatedCounterId: nil, 16101 }, 16102 { 16103 Key: 565, 16104 NameInfo: &types.ElementDescription{ 16105 Description: types.Description{ 16106 Label: "Memory used", 16107 Summary: "The amount of GPU memory used in kilobytes", 16108 }, 16109 Key: "mem.used", 16110 }, 16111 GroupInfo: &types.ElementDescription{ 16112 Description: types.Description{ 16113 Label: "GPU", 16114 Summary: "GPU", 16115 }, 16116 Key: "gpu", 16117 }, 16118 UnitInfo: &types.ElementDescription{ 16119 Description: types.Description{ 16120 Label: "KB", 16121 Summary: "Kilobyte", 16122 }, 16123 Key: "kiloBytes", 16124 }, 16125 RollupType: "minimum", 16126 StatsType: "absolute", 16127 Level: 4, 16128 PerDeviceLevel: 4, 16129 AssociatedCounterId: nil, 16130 }, 16131 { 16132 Key: 566, 16133 NameInfo: &types.ElementDescription{ 16134 Description: types.Description{ 16135 Label: "Memory usage", 16136 Summary: "The amount of GPU memory used in percentages of the total available", 16137 }, 16138 Key: "mem.usage", 16139 }, 16140 GroupInfo: &types.ElementDescription{ 16141 Description: types.Description{ 16142 Label: "GPU", 16143 Summary: "GPU", 16144 }, 16145 Key: "gpu", 16146 }, 16147 UnitInfo: &types.ElementDescription{ 16148 Description: types.Description{ 16149 Label: "%", 16150 Summary: "Percentage", 16151 }, 16152 Key: "percent", 16153 }, 16154 RollupType: "none", 16155 StatsType: "absolute", 16156 Level: 4, 16157 PerDeviceLevel: 4, 16158 AssociatedCounterId: nil, 16159 }, 16160 { 16161 Key: 567, 16162 NameInfo: &types.ElementDescription{ 16163 Description: types.Description{ 16164 Label: "Memory usage", 16165 Summary: "The amount of GPU memory used in percentages of the total available", 16166 }, 16167 Key: "mem.usage", 16168 }, 16169 GroupInfo: &types.ElementDescription{ 16170 Description: types.Description{ 16171 Label: "GPU", 16172 Summary: "GPU", 16173 }, 16174 Key: "gpu", 16175 }, 16176 UnitInfo: &types.ElementDescription{ 16177 Description: types.Description{ 16178 Label: "%", 16179 Summary: "Percentage", 16180 }, 16181 Key: "percent", 16182 }, 16183 RollupType: "average", 16184 StatsType: "absolute", 16185 Level: 4, 16186 PerDeviceLevel: 4, 16187 AssociatedCounterId: nil, 16188 }, 16189 { 16190 Key: 568, 16191 NameInfo: &types.ElementDescription{ 16192 Description: types.Description{ 16193 Label: "Memory usage", 16194 Summary: "The amount of GPU memory used in percentages of the total available", 16195 }, 16196 Key: "mem.usage", 16197 }, 16198 GroupInfo: &types.ElementDescription{ 16199 Description: types.Description{ 16200 Label: "GPU", 16201 Summary: "GPU", 16202 }, 16203 Key: "gpu", 16204 }, 16205 UnitInfo: &types.ElementDescription{ 16206 Description: types.Description{ 16207 Label: "%", 16208 Summary: "Percentage", 16209 }, 16210 Key: "percent", 16211 }, 16212 RollupType: "maximum", 16213 StatsType: "absolute", 16214 Level: 4, 16215 PerDeviceLevel: 4, 16216 AssociatedCounterId: nil, 16217 }, 16218 { 16219 Key: 569, 16220 NameInfo: &types.ElementDescription{ 16221 Description: types.Description{ 16222 Label: "Memory usage", 16223 Summary: "The amount of GPU memory used in percentages of the total available", 16224 }, 16225 Key: "mem.usage", 16226 }, 16227 GroupInfo: &types.ElementDescription{ 16228 Description: types.Description{ 16229 Label: "GPU", 16230 Summary: "GPU", 16231 }, 16232 Key: "gpu", 16233 }, 16234 UnitInfo: &types.ElementDescription{ 16235 Description: types.Description{ 16236 Label: "%", 16237 Summary: "Percentage", 16238 }, 16239 Key: "percent", 16240 }, 16241 RollupType: "minimum", 16242 StatsType: "absolute", 16243 Level: 4, 16244 PerDeviceLevel: 4, 16245 AssociatedCounterId: nil, 16246 }, 16247 { 16248 Key: 570, 16249 NameInfo: &types.ElementDescription{ 16250 Description: types.Description{ 16251 Label: "Temperature", 16252 Summary: "The temperature of a GPU in degrees celsius", 16253 }, 16254 Key: "temperature", 16255 }, 16256 GroupInfo: &types.ElementDescription{ 16257 Description: types.Description{ 16258 Label: "GPU", 16259 Summary: "GPU", 16260 }, 16261 Key: "gpu", 16262 }, 16263 UnitInfo: &types.ElementDescription{ 16264 Description: types.Description{ 16265 Label: "℃", 16266 Summary: "Temperature in degrees Celsius", 16267 }, 16268 Key: "celsius", 16269 }, 16270 RollupType: "average", 16271 StatsType: "absolute", 16272 Level: 4, 16273 PerDeviceLevel: 4, 16274 AssociatedCounterId: nil, 16275 }, 16276 { 16277 Key: 571, 16278 NameInfo: &types.ElementDescription{ 16279 Description: types.Description{ 16280 Label: "Persistent memory available reservation", 16281 Summary: "Persistent memory available reservation on a host.", 16282 }, 16283 Key: "available.reservation", 16284 }, 16285 GroupInfo: &types.ElementDescription{ 16286 Description: types.Description{ 16287 Label: "PMEM", 16288 Summary: "PMEM", 16289 }, 16290 Key: "pmem", 16291 }, 16292 UnitInfo: &types.ElementDescription{ 16293 Description: types.Description{ 16294 Label: "MB", 16295 Summary: "Megabyte", 16296 }, 16297 Key: "megaBytes", 16298 }, 16299 RollupType: "latest", 16300 StatsType: "absolute", 16301 Level: 4, 16302 PerDeviceLevel: 4, 16303 AssociatedCounterId: nil, 16304 }, 16305 } 16306 16307 var VmMetrics = []types.PerfMetricId{ 16308 { 16309 CounterId: 12, 16310 Instance: "$cpu", 16311 }, 16312 { 16313 CounterId: 401, 16314 Instance: "$cpu", 16315 }, 16316 { 16317 CounterId: 2, 16318 Instance: "", 16319 }, 16320 { 16321 CounterId: 14, 16322 Instance: "", 16323 }, 16324 { 16325 CounterId: 10, 16326 Instance: "", 16327 }, 16328 { 16329 CounterId: 401, 16330 Instance: "", 16331 }, 16332 { 16333 CounterId: 402, 16334 Instance: "$cpu", 16335 }, 16336 { 16337 CounterId: 396, 16338 Instance: "", 16339 }, 16340 { 16341 CounterId: 13, 16342 Instance: "", 16343 }, 16344 { 16345 CounterId: 11, 16346 Instance: "$cpu", 16347 }, 16348 { 16349 CounterId: 386, 16350 Instance: "$cpu", 16351 }, 16352 { 16353 CounterId: 399, 16354 Instance: "$cpu", 16355 }, 16356 { 16357 CounterId: 397, 16358 Instance: "", 16359 }, 16360 { 16361 CounterId: 6, 16362 Instance: "$cpu", 16363 }, 16364 { 16365 CounterId: 404, 16366 Instance: "$cpu", 16367 }, 16368 { 16369 CounterId: 386, 16370 Instance: "", 16371 }, 16372 { 16373 CounterId: 14, 16374 Instance: "$cpu", 16375 }, 16376 { 16377 CounterId: 11, 16378 Instance: "", 16379 }, 16380 { 16381 CounterId: 400, 16382 Instance: "$cpu", 16383 }, 16384 { 16385 CounterId: 6, 16386 Instance: "", 16387 }, 16388 { 16389 CounterId: 399, 16390 Instance: "", 16391 }, 16392 { 16393 CounterId: 403, 16394 Instance: "", 16395 }, 16396 { 16397 CounterId: 404, 16398 Instance: "", 16399 }, 16400 { 16401 CounterId: 398, 16402 Instance: "", 16403 }, 16404 { 16405 CounterId: 13, 16406 Instance: "$cpu", 16407 }, 16408 { 16409 CounterId: 400, 16410 Instance: "", 16411 }, 16412 { 16413 CounterId: 402, 16414 Instance: "", 16415 }, 16416 { 16417 CounterId: 12, 16418 Instance: "", 16419 }, 16420 { 16421 CounterId: 184, 16422 Instance: "", 16423 }, 16424 { 16425 CounterId: 180, 16426 Instance: "$physDisk", 16427 }, 16428 { 16429 CounterId: 181, 16430 Instance: "$physDisk", 16431 }, 16432 { 16433 CounterId: 178, 16434 Instance: "$physDisk", 16435 }, 16436 { 16437 CounterId: 182, 16438 Instance: "$physDisk", 16439 }, 16440 { 16441 CounterId: 179, 16442 Instance: "$physDisk", 16443 }, 16444 { 16445 CounterId: 183, 16446 Instance: "$physDisk", 16447 }, 16448 { 16449 CounterId: 133, 16450 Instance: "", 16451 }, 16452 { 16453 CounterId: 37, 16454 Instance: "", 16455 }, 16456 { 16457 CounterId: 74, 16458 Instance: "", 16459 }, 16460 { 16461 CounterId: 426, 16462 Instance: "", 16463 }, 16464 { 16465 CounterId: 70, 16466 Instance: "", 16467 }, 16468 { 16469 CounterId: 107, 16470 Instance: "", 16471 }, 16472 { 16473 CounterId: 422, 16474 Instance: "", 16475 }, 16476 { 16477 CounterId: 105, 16478 Instance: "", 16479 }, 16480 { 16481 CounterId: 85, 16482 Instance: "", 16483 }, 16484 { 16485 CounterId: 428, 16486 Instance: "", 16487 }, 16488 { 16489 CounterId: 418, 16490 Instance: "", 16491 }, 16492 { 16493 CounterId: 102, 16494 Instance: "", 16495 }, 16496 { 16497 CounterId: 33, 16498 Instance: "", 16499 }, 16500 { 16501 CounterId: 427, 16502 Instance: "", 16503 }, 16504 { 16505 CounterId: 94, 16506 Instance: "", 16507 }, 16508 { 16509 CounterId: 29, 16510 Instance: "", 16511 }, 16512 { 16513 CounterId: 420, 16514 Instance: "", 16515 }, 16516 { 16517 CounterId: 417, 16518 Instance: "", 16519 }, 16520 { 16521 CounterId: 98, 16522 Instance: "", 16523 }, 16524 { 16525 CounterId: 423, 16526 Instance: "", 16527 }, 16528 { 16529 CounterId: 106, 16530 Instance: "", 16531 }, 16532 { 16533 CounterId: 86, 16534 Instance: "", 16535 }, 16536 { 16537 CounterId: 41, 16538 Instance: "", 16539 }, 16540 { 16541 CounterId: 421, 16542 Instance: "", 16543 }, 16544 { 16545 CounterId: 429, 16546 Instance: "", 16547 }, 16548 { 16549 CounterId: 406, 16550 Instance: "", 16551 }, 16552 { 16553 CounterId: 90, 16554 Instance: "", 16555 }, 16556 { 16557 CounterId: 24, 16558 Instance: "", 16559 }, 16560 { 16561 CounterId: 410, 16562 Instance: "", 16563 }, 16564 { 16565 CounterId: 149, 16566 Instance: "vmnic1", 16567 }, 16568 { 16569 CounterId: 466, 16570 Instance: "4000", 16571 }, 16572 { 16573 CounterId: 146, 16574 Instance: "", 16575 }, 16576 { 16577 CounterId: 461, 16578 Instance: "", 16579 }, 16580 { 16581 CounterId: 148, 16582 Instance: "vmnic1", 16583 }, 16584 { 16585 CounterId: 462, 16586 Instance: "vmnic0", 16587 }, 16588 { 16589 CounterId: 143, 16590 Instance: "vmnic0", 16591 }, 16592 { 16593 CounterId: 463, 16594 Instance: "vmnic1", 16595 }, 16596 { 16597 CounterId: 147, 16598 Instance: "", 16599 }, 16600 { 16601 CounterId: 463, 16602 Instance: "4000", 16603 }, 16604 { 16605 CounterId: 462, 16606 Instance: "vmnic1", 16607 }, 16608 { 16609 CounterId: 462, 16610 Instance: "4000", 16611 }, 16612 { 16613 CounterId: 461, 16614 Instance: "4000", 16615 }, 16616 { 16617 CounterId: 146, 16618 Instance: "vmnic0", 16619 }, 16620 { 16621 CounterId: 465, 16622 Instance: "4000", 16623 }, 16624 { 16625 CounterId: 460, 16626 Instance: "4000", 16627 }, 16628 { 16629 CounterId: 149, 16630 Instance: "4000", 16631 }, 16632 { 16633 CounterId: 148, 16634 Instance: "4000", 16635 }, 16636 { 16637 CounterId: 462, 16638 Instance: "", 16639 }, 16640 { 16641 CounterId: 149, 16642 Instance: "vmnic0", 16643 }, 16644 { 16645 CounterId: 143, 16646 Instance: "4000", 16647 }, 16648 { 16649 CounterId: 463, 16650 Instance: "", 16651 }, 16652 { 16653 CounterId: 147, 16654 Instance: "vmnic1", 16655 }, 16656 { 16657 CounterId: 466, 16658 Instance: "", 16659 }, 16660 { 16661 CounterId: 472, 16662 Instance: "4000", 16663 }, 16664 { 16665 CounterId: 143, 16666 Instance: "", 16667 }, 16668 { 16669 CounterId: 146, 16670 Instance: "vmnic1", 16671 }, 16672 { 16673 CounterId: 146, 16674 Instance: "4000", 16675 }, 16676 { 16677 CounterId: 472, 16678 Instance: "", 16679 }, 16680 { 16681 CounterId: 471, 16682 Instance: "", 16683 }, 16684 { 16685 CounterId: 460, 16686 Instance: "", 16687 }, 16688 { 16689 CounterId: 147, 16690 Instance: "4000", 16691 }, 16692 { 16693 CounterId: 471, 16694 Instance: "4000", 16695 }, 16696 { 16697 CounterId: 148, 16698 Instance: "", 16699 }, 16700 { 16701 CounterId: 147, 16702 Instance: "vmnic0", 16703 }, 16704 { 16705 CounterId: 465, 16706 Instance: "", 16707 }, 16708 { 16709 CounterId: 464, 16710 Instance: "4000", 16711 }, 16712 { 16713 CounterId: 464, 16714 Instance: "", 16715 }, 16716 { 16717 CounterId: 148, 16718 Instance: "vmnic0", 16719 }, 16720 { 16721 CounterId: 463, 16722 Instance: "vmnic0", 16723 }, 16724 { 16725 CounterId: 467, 16726 Instance: "", 16727 }, 16728 { 16729 CounterId: 143, 16730 Instance: "vmnic1", 16731 }, 16732 { 16733 CounterId: 149, 16734 Instance: "", 16735 }, 16736 { 16737 CounterId: 467, 16738 Instance: "4000", 16739 }, 16740 { 16741 CounterId: 159, 16742 Instance: "", 16743 }, 16744 { 16745 CounterId: 157, 16746 Instance: "", 16747 }, 16748 { 16749 CounterId: 504, 16750 Instance: "", 16751 }, 16752 { 16753 CounterId: 507, 16754 Instance: "", 16755 }, 16756 { 16757 CounterId: 513, 16758 Instance: "", 16759 }, 16760 { 16761 CounterId: 348, 16762 Instance: "", 16763 }, 16764 { 16765 CounterId: 505, 16766 Instance: "", 16767 }, 16768 { 16769 CounterId: 514, 16770 Instance: "", 16771 }, 16772 { 16773 CounterId: 506, 16774 Instance: "", 16775 }, 16776 { 16777 CounterId: 512, 16778 Instance: "", 16779 }, 16780 { 16781 CounterId: 508, 16782 Instance: "", 16783 }, 16784 { 16785 CounterId: 515, 16786 Instance: "", 16787 }, 16788 { 16789 CounterId: 509, 16790 Instance: "", 16791 }, 16792 { 16793 CounterId: 501, 16794 Instance: "", 16795 }, 16796 { 16797 CounterId: 516, 16798 Instance: "", 16799 }, 16800 { 16801 CounterId: 503, 16802 Instance: "", 16803 }, 16804 { 16805 CounterId: 511, 16806 Instance: "", 16807 }, 16808 { 16809 CounterId: 510, 16810 Instance: "", 16811 }, 16812 { 16813 CounterId: 502, 16814 Instance: "", 16815 }, 16816 { 16817 CounterId: 155, 16818 Instance: "", 16819 }, 16820 { 16821 CounterId: 473, 16822 Instance: "", 16823 }, 16824 { 16825 CounterId: 498, 16826 Instance: "", 16827 }, 16828 { 16829 CounterId: 174, 16830 Instance: "", 16831 }, 16832 { 16833 CounterId: 173, 16834 Instance: "", 16835 }, 16836 } 16837 16838 // ************************* Host metrics ************************************ 16839 16840 var HostMetrics = []types.PerfMetricId{ 16841 { 16842 CounterId: 386, 16843 Instance: "", 16844 }, 16845 { 16846 CounterId: 395, 16847 Instance: "", 16848 }, 16849 { 16850 CounterId: 14, 16851 Instance: "", 16852 }, 16853 { 16854 CounterId: 399, 16855 Instance: "", 16856 }, 16857 { 16858 CounterId: 392, 16859 Instance: "", 16860 }, 16861 { 16862 CounterId: 392, 16863 Instance: "$cpu", 16864 }, 16865 { 16866 CounterId: 11, 16867 Instance: "", 16868 }, 16869 { 16870 CounterId: 398, 16871 Instance: "", 16872 }, 16873 { 16874 CounterId: 388, 16875 Instance: "", 16876 }, 16877 { 16878 CounterId: 388, 16879 Instance: "$cpu", 16880 }, 16881 { 16882 CounterId: 13, 16883 Instance: "", 16884 }, 16885 { 16886 CounterId: 396, 16887 Instance: "", 16888 }, 16889 { 16890 CounterId: 12, 16891 Instance: "", 16892 }, 16893 { 16894 CounterId: 9, 16895 Instance: "", 16896 }, 16897 { 16898 CounterId: 2, 16899 Instance: "", 16900 }, 16901 { 16902 CounterId: 14, 16903 Instance: "$cpu", 16904 }, 16905 { 16906 CounterId: 404, 16907 Instance: "", 16908 }, 16909 { 16910 CounterId: 6, 16911 Instance: "", 16912 }, 16913 { 16914 CounterId: 2, 16915 Instance: "$cpu", 16916 }, 16917 { 16918 CounterId: 13, 16919 Instance: "$cpu", 16920 }, 16921 { 16922 CounterId: 185, 16923 Instance: "d10c389e-c75b7dc4", 16924 }, 16925 { 16926 CounterId: 179, 16927 Instance: "$physDisk", 16928 }, 16929 { 16930 CounterId: 178, 16931 Instance: "$physDisk", 16932 }, 16933 { 16934 CounterId: 358, 16935 Instance: "$physDisk", 16936 }, 16937 { 16938 CounterId: 537, 16939 Instance: "$physDisk", 16940 }, 16941 { 16942 CounterId: 354, 16943 Instance: "$physDisk", 16944 }, 16945 { 16946 CounterId: 191, 16947 Instance: "$physDisk", 16948 }, 16949 { 16950 CounterId: 352, 16951 Instance: "$physDisk", 16952 }, 16953 { 16954 CounterId: 359, 16955 Instance: "$physDisk", 16956 }, 16957 { 16958 CounterId: 184, 16959 Instance: "", 16960 }, 16961 { 16962 CounterId: 186, 16963 Instance: "$physDisk", 16964 }, 16965 { 16966 CounterId: 351, 16967 Instance: "$physDisk", 16968 }, 16969 { 16970 CounterId: 180, 16971 Instance: "$physDisk", 16972 }, 16973 { 16974 CounterId: 353, 16975 Instance: "$physDisk", 16976 }, 16977 { 16978 CounterId: 356, 16979 Instance: "$physDisk", 16980 }, 16981 { 16982 CounterId: 355, 16983 Instance: "$physDisk", 16984 }, 16985 { 16986 CounterId: 350, 16987 Instance: "$physDisk", 16988 }, 16989 { 16990 CounterId: 349, 16991 Instance: "$physDisk", 16992 }, 16993 { 16994 CounterId: 182, 16995 Instance: "$physDisk", 16996 }, 16997 { 16998 CounterId: 357, 16999 Instance: "$physDisk", 17000 }, 17001 { 17002 CounterId: 181, 17003 Instance: "$physDisk", 17004 }, 17005 { 17006 CounterId: 185, 17007 Instance: "$physDisk", 17008 }, 17009 { 17010 CounterId: 183, 17011 Instance: "$physDisk", 17012 }, 17013 17014 { 17015 CounterId: 455, 17016 Instance: "$physDisk", 17017 }, 17018 { 17019 CounterId: 133, 17020 Instance: "", 17021 }, 17022 { 17023 CounterId: 456, 17024 Instance: "$physDisk", 17025 }, 17026 { 17027 CounterId: 457, 17028 Instance: "$physDisk", 17029 }, 17030 { 17031 CounterId: 129, 17032 Instance: "$physDisk", 17033 }, 17034 { 17035 CounterId: 448, 17036 Instance: "$physDisk", 17037 }, 17038 { 17039 CounterId: 130, 17040 Instance: "", 17041 }, 17042 { 17043 CounterId: 447, 17044 Instance: "$physDisk", 17045 }, 17046 { 17047 CounterId: 458, 17048 Instance: "$physDisk", 17049 }, 17050 { 17051 CounterId: 131, 17052 Instance: "$physDisk", 17053 }, 17054 { 17055 CounterId: 134, 17056 Instance: "$physDisk", 17057 }, 17058 { 17059 CounterId: 446, 17060 Instance: "$physDisk", 17061 }, 17062 { 17063 CounterId: 450, 17064 Instance: "$physDisk", 17065 }, 17066 { 17067 CounterId: 451, 17068 Instance: "$physDisk", 17069 }, 17070 { 17071 CounterId: 453, 17072 Instance: "$physDisk", 17073 }, 17074 { 17075 CounterId: 452, 17076 Instance: "$physDisk", 17077 }, 17078 { 17079 CounterId: 454, 17080 Instance: "$physDisk", 17081 }, 17082 { 17083 CounterId: 128, 17084 Instance: "$physDisk", 17085 }, 17086 { 17087 CounterId: 132, 17088 Instance: "$physDisk", 17089 }, 17090 { 17091 CounterId: 459, 17092 Instance: "$physDisk", 17093 }, 17094 { 17095 CounterId: 130, 17096 Instance: "$physDisk", 17097 }, 17098 { 17099 CounterId: 125, 17100 Instance: "", 17101 }, 17102 { 17103 CounterId: 131, 17104 Instance: "", 17105 }, 17106 { 17107 CounterId: 449, 17108 Instance: "$physDisk", 17109 }, 17110 { 17111 CounterId: 135, 17112 Instance: "$physDisk", 17113 }, 17114 { 17115 CounterId: 136, 17116 Instance: "$physDisk", 17117 }, 17118 { 17119 CounterId: 137, 17120 Instance: "$physDisk", 17121 }, 17122 { 17123 CounterId: 538, 17124 Instance: "", 17125 }, 17126 { 17127 CounterId: 540, 17128 Instance: "", 17129 }, 17130 { 17131 CounterId: 539, 17132 Instance: "", 17133 }, 17134 { 17135 CounterId: 65, 17136 Instance: "", 17137 }, 17138 { 17139 CounterId: 27, 17140 Instance: "", 17141 }, 17142 { 17143 CounterId: 419, 17144 Instance: "", 17145 }, 17146 { 17147 CounterId: 443, 17148 Instance: "", 17149 }, 17150 { 17151 CounterId: 437, 17152 Instance: "", 17153 }, 17154 { 17155 CounterId: 24, 17156 Instance: "", 17157 }, 17158 { 17159 CounterId: 68, 17160 Instance: "", 17161 }, 17162 { 17163 CounterId: 422, 17164 Instance: "", 17165 }, 17166 { 17167 CounterId: 106, 17168 Instance: "", 17169 }, 17170 { 17171 CounterId: 410, 17172 Instance: "", 17173 }, 17174 { 17175 CounterId: 33, 17176 Instance: "", 17177 }, 17178 { 17179 CounterId: 105, 17180 Instance: "", 17181 }, 17182 { 17183 CounterId: 107, 17184 Instance: "", 17185 }, 17186 { 17187 CounterId: 61, 17188 Instance: "", 17189 }, 17190 { 17191 CounterId: 445, 17192 Instance: "", 17193 }, 17194 { 17195 CounterId: 417, 17196 Instance: "", 17197 }, 17198 { 17199 CounterId: 406, 17200 Instance: "", 17201 }, 17202 { 17203 CounterId: 444, 17204 Instance: "", 17205 }, 17206 { 17207 CounterId: 427, 17208 Instance: "", 17209 }, 17210 { 17211 CounterId: 85, 17212 Instance: "", 17213 }, 17214 { 17215 CounterId: 424, 17216 Instance: "", 17217 }, 17218 { 17219 CounterId: 49, 17220 Instance: "", 17221 }, 17222 { 17223 CounterId: 414, 17224 Instance: "", 17225 }, 17226 { 17227 CounterId: 98, 17228 Instance: "", 17229 }, 17230 { 17231 CounterId: 29, 17232 Instance: "", 17233 }, 17234 { 17235 CounterId: 57, 17236 Instance: "", 17237 }, 17238 { 17239 CounterId: 441, 17240 Instance: "", 17241 }, 17242 { 17243 CounterId: 41, 17244 Instance: "", 17245 }, 17246 { 17247 CounterId: 86, 17248 Instance: "", 17249 }, 17250 { 17251 CounterId: 433, 17252 Instance: "", 17253 }, 17254 { 17255 CounterId: 45, 17256 Instance: "", 17257 }, 17258 { 17259 CounterId: 426, 17260 Instance: "", 17261 }, 17262 { 17263 CounterId: 429, 17264 Instance: "", 17265 }, 17266 { 17267 CounterId: 440, 17268 Instance: "", 17269 }, 17270 { 17271 CounterId: 102, 17272 Instance: "", 17273 }, 17274 { 17275 CounterId: 90, 17276 Instance: "", 17277 }, 17278 { 17279 CounterId: 37, 17280 Instance: "", 17281 }, 17282 { 17283 CounterId: 442, 17284 Instance: "", 17285 }, 17286 { 17287 CounterId: 469, 17288 Instance: "vmnic0", 17289 }, 17290 { 17291 CounterId: 460, 17292 Instance: "", 17293 }, 17294 { 17295 CounterId: 463, 17296 Instance: "", 17297 }, 17298 { 17299 CounterId: 143, 17300 Instance: "", 17301 }, 17302 { 17303 CounterId: 465, 17304 Instance: "", 17305 }, 17306 { 17307 CounterId: 461, 17308 Instance: "", 17309 }, 17310 { 17311 CounterId: 468, 17312 Instance: "", 17313 }, 17314 { 17315 CounterId: 143, 17316 Instance: "vmnic0", 17317 }, 17318 { 17319 CounterId: 467, 17320 Instance: "vmnic0", 17321 }, 17322 { 17323 CounterId: 149, 17324 Instance: "vmnic0", 17325 }, 17326 { 17327 CounterId: 149, 17328 Instance: "", 17329 }, 17330 { 17331 CounterId: 470, 17332 Instance: "", 17333 }, 17334 { 17335 CounterId: 466, 17336 Instance: "", 17337 }, 17338 { 17339 CounterId: 146, 17340 Instance: "", 17341 }, 17342 { 17343 CounterId: 465, 17344 Instance: "vmnic0", 17345 }, 17346 { 17347 CounterId: 461, 17348 Instance: "vmnic0", 17349 }, 17350 { 17351 CounterId: 466, 17352 Instance: "vmnic0", 17353 }, 17354 { 17355 CounterId: 146, 17356 Instance: "vmnic0", 17357 }, 17358 { 17359 CounterId: 464, 17360 Instance: "vmnic0", 17361 }, 17362 { 17363 CounterId: 148, 17364 Instance: "vmnic0", 17365 }, 17366 { 17367 CounterId: 460, 17368 Instance: "vmnic0", 17369 }, 17370 { 17371 CounterId: 468, 17372 Instance: "vmnic0", 17373 }, 17374 { 17375 CounterId: 147, 17376 Instance: "", 17377 }, 17378 { 17379 CounterId: 463, 17380 Instance: "vmnic0", 17381 }, 17382 { 17383 CounterId: 462, 17384 Instance: "vmnic0", 17385 }, 17386 { 17387 CounterId: 464, 17388 Instance: "", 17389 }, 17390 { 17391 CounterId: 470, 17392 Instance: "vmnic0", 17393 }, 17394 { 17395 CounterId: 148, 17396 Instance: "", 17397 }, 17398 { 17399 CounterId: 462, 17400 Instance: "", 17401 }, 17402 { 17403 CounterId: 467, 17404 Instance: "", 17405 }, 17406 { 17407 CounterId: 469, 17408 Instance: "", 17409 }, 17410 { 17411 CounterId: 147, 17412 Instance: "vmnic0", 17413 }, 17414 { 17415 CounterId: 159, 17416 Instance: "", 17417 }, 17418 { 17419 CounterId: 158, 17420 Instance: "", 17421 }, 17422 { 17423 CounterId: 157, 17424 Instance: "", 17425 }, 17426 { 17427 CounterId: 503, 17428 Instance: "", 17429 }, 17430 { 17431 CounterId: 511, 17432 Instance: "", 17433 }, 17434 { 17435 CounterId: 504, 17436 Instance: "", 17437 }, 17438 { 17439 CounterId: 501, 17440 Instance: "", 17441 }, 17442 { 17443 CounterId: 513, 17444 Instance: "", 17445 }, 17446 { 17447 CounterId: 516, 17448 Instance: "", 17449 }, 17450 { 17451 CounterId: 507, 17452 Instance: "", 17453 }, 17454 { 17455 CounterId: 508, 17456 Instance: "", 17457 }, 17458 { 17459 CounterId: 502, 17460 Instance: "", 17461 }, 17462 { 17463 CounterId: 348, 17464 Instance: "", 17465 }, 17466 { 17467 CounterId: 505, 17468 Instance: "", 17469 }, 17470 { 17471 CounterId: 510, 17472 Instance: "", 17473 }, 17474 { 17475 CounterId: 512, 17476 Instance: "", 17477 }, 17478 { 17479 CounterId: 515, 17480 Instance: "", 17481 }, 17482 { 17483 CounterId: 514, 17484 Instance: "", 17485 }, 17486 { 17487 CounterId: 506, 17488 Instance: "", 17489 }, 17490 { 17491 CounterId: 509, 17492 Instance: "", 17493 }, 17494 { 17495 CounterId: 161, 17496 Instance: "vmhba32", 17497 }, 17498 { 17499 CounterId: 162, 17500 Instance: "vmhba1", 17501 }, 17502 { 17503 CounterId: 166, 17504 Instance: "vmhba32", 17505 }, 17506 { 17507 CounterId: 163, 17508 Instance: "vmhba1", 17509 }, 17510 { 17511 CounterId: 163, 17512 Instance: "vmhba0", 17513 }, 17514 { 17515 CounterId: 168, 17516 Instance: "", 17517 }, 17518 { 17519 CounterId: 167, 17520 Instance: "vmhba32", 17521 }, 17522 { 17523 CounterId: 162, 17524 Instance: "vmhba0", 17525 }, 17526 { 17527 CounterId: 164, 17528 Instance: "vmhba1", 17529 }, 17530 { 17531 CounterId: 167, 17532 Instance: "vmhba1", 17533 }, 17534 { 17535 CounterId: 167, 17536 Instance: "vmhba0", 17537 }, 17538 { 17539 CounterId: 162, 17540 Instance: "vmhba32", 17541 }, 17542 { 17543 CounterId: 164, 17544 Instance: "vmhba0", 17545 }, 17546 { 17547 CounterId: 166, 17548 Instance: "vmhba1", 17549 }, 17550 { 17551 CounterId: 166, 17552 Instance: "vmhba0", 17553 }, 17554 { 17555 CounterId: 165, 17556 Instance: "vmhba1", 17557 }, 17558 { 17559 CounterId: 165, 17560 Instance: "vmhba0", 17561 }, 17562 { 17563 CounterId: 164, 17564 Instance: "vmhba32", 17565 }, 17566 { 17567 CounterId: 161, 17568 Instance: "vmhba1", 17569 }, 17570 { 17571 CounterId: 161, 17572 Instance: "vmhba0", 17573 }, 17574 { 17575 CounterId: 163, 17576 Instance: "vmhba32", 17577 }, 17578 { 17579 CounterId: 165, 17580 Instance: "vmhba32", 17581 }, 17582 { 17583 CounterId: 520, 17584 Instance: "$physDisk", 17585 }, 17586 { 17587 CounterId: 523, 17588 Instance: "$physDisk", 17589 }, 17590 { 17591 CounterId: 193, 17592 Instance: "", 17593 }, 17594 { 17595 CounterId: 522, 17596 Instance: "$physDisk", 17597 }, 17598 { 17599 CounterId: 524, 17600 Instance: "$physDisk", 17601 }, 17602 { 17603 CounterId: 521, 17604 Instance: "$physDisk", 17605 }, 17606 { 17607 CounterId: 525, 17608 Instance: "$physDisk", 17609 }, 17610 { 17611 CounterId: 526, 17612 Instance: "$physDisk", 17613 }, 17614 { 17615 CounterId: 482, 17616 Instance: "host/vim/vmvisor/vmkiscsid", 17617 }, 17618 { 17619 CounterId: 482, 17620 Instance: "host/system/svmotion", 17621 }, 17622 { 17623 CounterId: 483, 17624 Instance: "host/system/kernel/root", 17625 }, 17626 { 17627 CounterId: 479, 17628 Instance: "host/system/kernel/tmp", 17629 }, 17630 { 17631 CounterId: 484, 17632 Instance: "host/vim/vmvisor/init", 17633 }, 17634 { 17635 CounterId: 499, 17636 Instance: "host/system/kernel/var", 17637 }, 17638 { 17639 CounterId: 481, 17640 Instance: "host/vim/vmvisor/sioc", 17641 }, 17642 { 17643 CounterId: 476, 17644 Instance: "host/vim/vmvisor/wsman", 17645 }, 17646 { 17647 CounterId: 485, 17648 Instance: "host/system/kernel/var", 17649 }, 17650 { 17651 CounterId: 480, 17652 Instance: "host/vim/vimuser/terminal/shell", 17653 }, 17654 { 17655 CounterId: 481, 17656 Instance: "host/system/vmotion", 17657 }, 17658 { 17659 CounterId: 488, 17660 Instance: "host/vim", 17661 }, 17662 { 17663 CounterId: 484, 17664 Instance: "host/system/kernel/opt", 17665 }, 17666 { 17667 CounterId: 481, 17668 Instance: "host/iofilters/spm", 17669 }, 17670 { 17671 CounterId: 480, 17672 Instance: "host/vim", 17673 }, 17674 { 17675 CounterId: 481, 17676 Instance: "host/vim/vmvisor/hostd-probe", 17677 }, 17678 { 17679 CounterId: 483, 17680 Instance: "host/system/kernel/opt", 17681 }, 17682 { 17683 CounterId: 500, 17684 Instance: "host/system/kernel/var", 17685 }, 17686 { 17687 CounterId: 500, 17688 Instance: "host/system/kernel/opt", 17689 }, 17690 { 17691 CounterId: 480, 17692 Instance: "host/system/kernel/tmp", 17693 }, 17694 { 17695 CounterId: 482, 17696 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 17697 }, 17698 { 17699 CounterId: 499, 17700 Instance: "host/system/kernel/etc", 17701 }, 17702 { 17703 CounterId: 485, 17704 Instance: "host/system/kernel/etc", 17705 }, 17706 { 17707 CounterId: 482, 17708 Instance: "host/system/kernel/etc", 17709 }, 17710 { 17711 CounterId: 481, 17712 Instance: "host/system/kernel/etc", 17713 }, 17714 { 17715 CounterId: 485, 17716 Instance: "host/vim/vmvisor/vsanperfsvc", 17717 }, 17718 { 17719 CounterId: 484, 17720 Instance: "host/system/kernel/root", 17721 }, 17722 { 17723 CounterId: 481, 17724 Instance: "host/system/kernel/root", 17725 }, 17726 { 17727 CounterId: 480, 17728 Instance: "host/system/kernel/var", 17729 }, 17730 { 17731 CounterId: 479, 17732 Instance: "host/system/kernel/root", 17733 }, 17734 { 17735 CounterId: 499, 17736 Instance: "host/vim/vmvisor/dhclientrelease", 17737 }, 17738 { 17739 CounterId: 485, 17740 Instance: "host/system/kernel", 17741 }, 17742 { 17743 CounterId: 499, 17744 Instance: "host/iofilters", 17745 }, 17746 { 17747 CounterId: 479, 17748 Instance: "host/vim/vmvisor/wsman", 17749 }, 17750 { 17751 CounterId: 484, 17752 Instance: "host/vim/vmvisor/usbArbitrator", 17753 }, 17754 { 17755 CounterId: 484, 17756 Instance: "host/system/kernel", 17757 }, 17758 { 17759 CounterId: 481, 17760 Instance: "host/vim/vmvisor/swapobjd", 17761 }, 17762 { 17763 CounterId: 483, 17764 Instance: "host/vim/vmvisor/hostdCgiServer", 17765 }, 17766 { 17767 CounterId: 481, 17768 Instance: "host/system/kernel/var", 17769 }, 17770 { 17771 CounterId: 482, 17772 Instance: "host/vim/vmvisor/rabbitmqproxy", 17773 }, 17774 { 17775 CounterId: 480, 17776 Instance: "host/system/kernel", 17777 }, 17778 { 17779 CounterId: 482, 17780 Instance: "host/vim/vmvisor/vmfstraced", 17781 }, 17782 { 17783 CounterId: 476, 17784 Instance: "host/system/kernel", 17785 }, 17786 { 17787 CounterId: 483, 17788 Instance: "host/system/kernel/var", 17789 }, 17790 { 17791 CounterId: 483, 17792 Instance: "host/vim/vmvisor/nscd", 17793 }, 17794 { 17795 CounterId: 476, 17796 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 17797 }, 17798 { 17799 CounterId: 500, 17800 Instance: "host/system/kernel", 17801 }, 17802 { 17803 CounterId: 484, 17804 Instance: "host/vim/vmvisor/vobd", 17805 }, 17806 { 17807 CounterId: 484, 17808 Instance: "host/vim/vmvisor/sfcb", 17809 }, 17810 { 17811 CounterId: 496, 17812 Instance: "host/system", 17813 }, 17814 { 17815 CounterId: 500, 17816 Instance: "host/iofilters/vmwarevmcrypt", 17817 }, 17818 { 17819 CounterId: 480, 17820 Instance: "host/vim/vmvisor/snmpd", 17821 }, 17822 { 17823 CounterId: 494, 17824 Instance: "host/system", 17825 }, 17826 { 17827 CounterId: 482, 17828 Instance: "host/vim/vimuser/terminal/shell", 17829 }, 17830 { 17831 CounterId: 482, 17832 Instance: "host/vim/vmvisor/lacpd", 17833 }, 17834 { 17835 CounterId: 482, 17836 Instance: "host/system/kernel", 17837 }, 17838 { 17839 CounterId: 491, 17840 Instance: "host/system", 17841 }, 17842 { 17843 CounterId: 487, 17844 Instance: "host/system", 17845 }, 17846 { 17847 CounterId: 499, 17848 Instance: "host/vim/vmvisor/snmpd", 17849 }, 17850 { 17851 CounterId: 481, 17852 Instance: "host/system/kernel/tmp", 17853 }, 17854 { 17855 CounterId: 500, 17856 Instance: "host/vim/vmci", 17857 }, 17858 { 17859 CounterId: 479, 17860 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 17861 }, 17862 { 17863 CounterId: 482, 17864 Instance: "host/iofilters/spm", 17865 }, 17866 { 17867 CounterId: 499, 17868 Instance: "host/system", 17869 }, 17870 { 17871 CounterId: 485, 17872 Instance: "host/system", 17873 }, 17874 { 17875 CounterId: 483, 17876 Instance: "host/system/kernel", 17877 }, 17878 { 17879 CounterId: 483, 17880 Instance: "host/system/vmotion", 17881 }, 17882 { 17883 CounterId: 479, 17884 Instance: "host/vim/vmvisor/pcscd", 17885 }, 17886 { 17887 CounterId: 484, 17888 Instance: "host/system", 17889 }, 17890 { 17891 CounterId: 480, 17892 Instance: "host/vim/vmvisor/dhclient", 17893 }, 17894 { 17895 CounterId: 476, 17896 Instance: "host/vim", 17897 }, 17898 { 17899 CounterId: 499, 17900 Instance: "host/system/kernel/tmp", 17901 }, 17902 { 17903 CounterId: 493, 17904 Instance: "host/system", 17905 }, 17906 { 17907 CounterId: 484, 17908 Instance: "host/vim/vmvisor/hostd-probe/stats", 17909 }, 17910 { 17911 CounterId: 481, 17912 Instance: "host/system", 17913 }, 17914 { 17915 CounterId: 479, 17916 Instance: "host/system/kernel/var", 17917 }, 17918 { 17919 CounterId: 484, 17920 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 17921 }, 17922 { 17923 CounterId: 481, 17924 Instance: "host/vim/vmvisor/lacpd", 17925 }, 17926 { 17927 CounterId: 476, 17928 Instance: "host/system", 17929 }, 17930 { 17931 CounterId: 483, 17932 Instance: "host/vim/vmvisor/hostd-probe/stats", 17933 }, 17934 { 17935 CounterId: 500, 17936 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 17937 }, 17938 { 17939 CounterId: 500, 17940 Instance: "host/vim/vmvisor/hostdCgiServer", 17941 }, 17942 { 17943 CounterId: 483, 17944 Instance: "host/vim/vmvisor/hostd-probe", 17945 }, 17946 { 17947 CounterId: 500, 17948 Instance: "host/system/kernel/tmp", 17949 }, 17950 { 17951 CounterId: 485, 17952 Instance: "host/vim/vmvisor/sensord", 17953 }, 17954 { 17955 CounterId: 499, 17956 Instance: "host", 17957 }, 17958 { 17959 CounterId: 484, 17960 Instance: "host/vim/vmvisor/dcui", 17961 }, 17962 { 17963 CounterId: 499, 17964 Instance: "host/vim/vmvisor/logging", 17965 }, 17966 { 17967 CounterId: 479, 17968 Instance: "host/system/drivers", 17969 }, 17970 { 17971 CounterId: 476, 17972 Instance: "host/system/kernel/opt", 17973 }, 17974 { 17975 CounterId: 484, 17976 Instance: "host", 17977 }, 17978 { 17979 CounterId: 485, 17980 Instance: "host/system/kernel/root", 17981 }, 17982 { 17983 CounterId: 484, 17984 Instance: "host/vim/vmvisor/memScrubber", 17985 }, 17986 { 17987 CounterId: 483, 17988 Instance: "host/system/drivers", 17989 }, 17990 { 17991 CounterId: 479, 17992 Instance: "host/system/kernel/iofilters", 17993 }, 17994 { 17995 CounterId: 481, 17996 Instance: "host", 17997 }, 17998 { 17999 CounterId: 480, 18000 Instance: "host/system/kernel/iofilters", 18001 }, 18002 { 18003 CounterId: 479, 18004 Instance: "host/system/vmotion", 18005 }, 18006 { 18007 CounterId: 500, 18008 Instance: "host", 18009 }, 18010 { 18011 CounterId: 476, 18012 Instance: "host/system/kernel/var", 18013 }, 18014 { 18015 CounterId: 481, 18016 Instance: "host/vim/vmvisor/vmkeventd", 18017 }, 18018 { 18019 CounterId: 481, 18020 Instance: "host/system/kernel/iofilters", 18021 }, 18022 { 18023 CounterId: 481, 18024 Instance: "host/system/svmotion", 18025 }, 18026 { 18027 CounterId: 484, 18028 Instance: "host/system/helper", 18029 }, 18030 { 18031 CounterId: 499, 18032 Instance: "host/system/kernel/iofilters", 18033 }, 18034 { 18035 CounterId: 480, 18036 Instance: "host/vim/vmvisor/init", 18037 }, 18038 { 18039 CounterId: 500, 18040 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 18041 }, 18042 { 18043 CounterId: 485, 18044 Instance: "host/vim/vmvisor/upittraced", 18045 }, 18046 { 18047 CounterId: 500, 18048 Instance: "host/system/kernel/hostdstats", 18049 }, 18050 { 18051 CounterId: 500, 18052 Instance: "host/vim/vimuser/terminal", 18053 }, 18054 { 18055 CounterId: 476, 18056 Instance: "host/system/kernel/hostdstats", 18057 }, 18058 { 18059 CounterId: 481, 18060 Instance: "host/vim/vmvisor/vobd", 18061 }, 18062 { 18063 CounterId: 483, 18064 Instance: "host/vim/vmvisor/net-daemons", 18065 }, 18066 { 18067 CounterId: 499, 18068 Instance: "host/vim/vmvisor/upittraced", 18069 }, 18070 { 18071 CounterId: 500, 18072 Instance: "host/vim/vmvisor/pcscd", 18073 }, 18074 { 18075 CounterId: 499, 18076 Instance: "host/system/kernel/hostdstats", 18077 }, 18078 { 18079 CounterId: 482, 18080 Instance: "host/system/kernel/var", 18081 }, 18082 { 18083 CounterId: 483, 18084 Instance: "host/vim/vmvisor/plugins", 18085 }, 18086 { 18087 CounterId: 476, 18088 Instance: "host/vim/vmvisor/vpxa", 18089 }, 18090 { 18091 CounterId: 500, 18092 Instance: "host/vim/vmvisor/rabbitmqproxy", 18093 }, 18094 { 18095 CounterId: 485, 18096 Instance: "host/system/svmotion", 18097 }, 18098 { 18099 CounterId: 476, 18100 Instance: "host/iofilters", 18101 }, 18102 { 18103 CounterId: 476, 18104 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 18105 }, 18106 { 18107 CounterId: 480, 18108 Instance: "host/vim/vmvisor/vsanperfsvc", 18109 }, 18110 { 18111 CounterId: 482, 18112 Instance: "host/vim", 18113 }, 18114 { 18115 CounterId: 484, 18116 Instance: "host/system/kernel/hostdstats", 18117 }, 18118 { 18119 CounterId: 485, 18120 Instance: "host/vim/vmvisor/hostd", 18121 }, 18122 { 18123 CounterId: 480, 18124 Instance: "host/system/kernel/hostdstats", 18125 }, 18126 { 18127 CounterId: 479, 18128 Instance: "host/system/kernel", 18129 }, 18130 { 18131 CounterId: 486, 18132 Instance: "host/system/vmotion", 18133 }, 18134 { 18135 CounterId: 492, 18136 Instance: "host/system", 18137 }, 18138 { 18139 CounterId: 483, 18140 Instance: "host/system/kernel/hostdstats", 18141 }, 18142 { 18143 CounterId: 485, 18144 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 18145 }, 18146 { 18147 CounterId: 485, 18148 Instance: "host/vim", 18149 }, 18150 { 18151 CounterId: 483, 18152 Instance: "host/system/helper", 18153 }, 18154 { 18155 CounterId: 476, 18156 Instance: "host/system/vmotion", 18157 }, 18158 { 18159 CounterId: 489, 18160 Instance: "host/system", 18161 }, 18162 { 18163 CounterId: 476, 18164 Instance: "host/vim/vmvisor/boot", 18165 }, 18166 { 18167 CounterId: 480, 18168 Instance: "host/vim/vmvisor/hostdCgiServer", 18169 }, 18170 { 18171 CounterId: 499, 18172 Instance: "host/vim/vmvisor/vobd", 18173 }, 18174 { 18175 CounterId: 499, 18176 Instance: "host/system/svmotion", 18177 }, 18178 { 18179 CounterId: 485, 18180 Instance: "host/iofilters/spm", 18181 }, 18182 { 18183 CounterId: 476, 18184 Instance: "host/vim/vmvisor/vmkdevmgr", 18185 }, 18186 { 18187 CounterId: 481, 18188 Instance: "host/system/helper", 18189 }, 18190 { 18191 CounterId: 497, 18192 Instance: "host/system", 18193 }, 18194 { 18195 CounterId: 500, 18196 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 18197 }, 18198 { 18199 CounterId: 480, 18200 Instance: "host/system/kernel/opt", 18201 }, 18202 { 18203 CounterId: 484, 18204 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 18205 }, 18206 { 18207 CounterId: 485, 18208 Instance: "host/vim/vmvisor/dcui", 18209 }, 18210 { 18211 CounterId: 491, 18212 Instance: "host/system/vmotion", 18213 }, 18214 { 18215 CounterId: 483, 18216 Instance: "host/vim/vmvisor/snmpd", 18217 }, 18218 { 18219 CounterId: 485, 18220 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 18221 }, 18222 { 18223 CounterId: 482, 18224 Instance: "host/vim/vmvisor/pcscd", 18225 }, 18226 { 18227 CounterId: 485, 18228 Instance: "host/vim/vimuser/terminal/shell", 18229 }, 18230 { 18231 CounterId: 479, 18232 Instance: "host/vim/vmvisor/memScrubber", 18233 }, 18234 { 18235 CounterId: 476, 18236 Instance: "host/system/drivers", 18237 }, 18238 { 18239 CounterId: 485, 18240 Instance: "host/system/vmotion", 18241 }, 18242 { 18243 CounterId: 476, 18244 Instance: "host/vim/vmvisor/hostd-probe/stats", 18245 }, 18246 { 18247 CounterId: 483, 18248 Instance: "host/iofilters", 18249 }, 18250 { 18251 CounterId: 485, 18252 Instance: "host/vim/vmvisor/osfsd", 18253 }, 18254 { 18255 CounterId: 485, 18256 Instance: "host/system/drivers", 18257 }, 18258 { 18259 CounterId: 485, 18260 Instance: "host/vim/vmvisor/aam", 18261 }, 18262 { 18263 CounterId: 499, 18264 Instance: "host/system/ft", 18265 }, 18266 { 18267 CounterId: 483, 18268 Instance: "host/system/ft", 18269 }, 18270 { 18271 CounterId: 484, 18272 Instance: "host/system/ft", 18273 }, 18274 { 18275 CounterId: 480, 18276 Instance: "host/vim/vmvisor/vpxa", 18277 }, 18278 { 18279 CounterId: 484, 18280 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 18281 }, 18282 { 18283 CounterId: 500, 18284 Instance: "host/vim/vmvisor/hbrca", 18285 }, 18286 { 18287 CounterId: 480, 18288 Instance: "host/system/vmotion", 18289 }, 18290 { 18291 CounterId: 487, 18292 Instance: "host/vim", 18293 }, 18294 { 18295 CounterId: 484, 18296 Instance: "host/system/kernel/etc", 18297 }, 18298 { 18299 CounterId: 479, 18300 Instance: "host/vim/vmvisor/net-daemons", 18301 }, 18302 { 18303 CounterId: 480, 18304 Instance: "host/vim/vmvisor/logging", 18305 }, 18306 { 18307 CounterId: 483, 18308 Instance: "host/vim/vmvisor/vmkeventd", 18309 }, 18310 { 18311 CounterId: 484, 18312 Instance: "host/system/vmotion", 18313 }, 18314 { 18315 CounterId: 476, 18316 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 18317 }, 18318 { 18319 CounterId: 486, 18320 Instance: "host/vim", 18321 }, 18322 { 18323 CounterId: 484, 18324 Instance: "host/vim/vmvisor", 18325 }, 18326 { 18327 CounterId: 500, 18328 Instance: "host/vim/vmvisor/osfsd", 18329 }, 18330 { 18331 CounterId: 483, 18332 Instance: "host/system", 18333 }, 18334 { 18335 CounterId: 495, 18336 Instance: "host/system", 18337 }, 18338 { 18339 CounterId: 481, 18340 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 18341 }, 18342 { 18343 CounterId: 499, 18344 Instance: "host/system/vmotion", 18345 }, 18346 { 18347 CounterId: 481, 18348 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 18349 }, 18350 { 18351 CounterId: 488, 18352 Instance: "host/system/vmotion", 18353 }, 18354 { 18355 CounterId: 489, 18356 Instance: "host/system/vmotion", 18357 }, 18358 { 18359 CounterId: 485, 18360 Instance: "host/vim/vmvisor", 18361 }, 18362 { 18363 CounterId: 481, 18364 Instance: "host/vim/vimuser/terminal/ssh", 18365 }, 18366 { 18367 CounterId: 499, 18368 Instance: "host/vim/vmvisor/usbArbitrator", 18369 }, 18370 { 18371 CounterId: 492, 18372 Instance: "host/system/vmotion", 18373 }, 18374 { 18375 CounterId: 485, 18376 Instance: "host/system/kernel/hostdstats", 18377 }, 18378 { 18379 CounterId: 499, 18380 Instance: "host/system/helper", 18381 }, 18382 { 18383 CounterId: 482, 18384 Instance: "host/vim/vmvisor/slp", 18385 }, 18386 { 18387 CounterId: 493, 18388 Instance: "host/system/vmotion", 18389 }, 18390 { 18391 CounterId: 500, 18392 Instance: "host/vim/vmvisor/sensord", 18393 }, 18394 { 18395 CounterId: 479, 18396 Instance: "host/system/kernel/hostdstats", 18397 }, 18398 { 18399 CounterId: 482, 18400 Instance: "host/system/kernel/root", 18401 }, 18402 { 18403 CounterId: 495, 18404 Instance: "host/vim", 18405 }, 18406 { 18407 CounterId: 499, 18408 Instance: "host/vim/vmvisor/hostd-probe", 18409 }, 18410 { 18411 CounterId: 479, 18412 Instance: "host/iofilters/vmwarevmcrypt", 18413 }, 18414 { 18415 CounterId: 481, 18416 Instance: "host/vim/vimuser/terminal", 18417 }, 18418 { 18419 CounterId: 499, 18420 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 18421 }, 18422 { 18423 CounterId: 495, 18424 Instance: "host/system/vmotion", 18425 }, 18426 { 18427 CounterId: 482, 18428 Instance: "host", 18429 }, 18430 { 18431 CounterId: 480, 18432 Instance: "host/system/svmotion", 18433 }, 18434 { 18435 CounterId: 480, 18436 Instance: "host/user", 18437 }, 18438 { 18439 CounterId: 483, 18440 Instance: "host/system/svmotion", 18441 }, 18442 { 18443 CounterId: 480, 18444 Instance: "host", 18445 }, 18446 { 18447 CounterId: 488, 18448 Instance: "host/system", 18449 }, 18450 { 18451 CounterId: 500, 18452 Instance: "host/vim/vmvisor/lbt", 18453 }, 18454 { 18455 CounterId: 481, 18456 Instance: "host/vim", 18457 }, 18458 { 18459 CounterId: 483, 18460 Instance: "host/vim", 18461 }, 18462 { 18463 CounterId: 480, 18464 Instance: "host/vim/vmvisor/hostd-probe", 18465 }, 18466 { 18467 CounterId: 483, 18468 Instance: "host/vim/vmvisor/smartd", 18469 }, 18470 { 18471 CounterId: 483, 18472 Instance: "host/vim/vmvisor/rabbitmqproxy", 18473 }, 18474 { 18475 CounterId: 490, 18476 Instance: "host/vim", 18477 }, 18478 { 18479 CounterId: 500, 18480 Instance: "host/vim/vmvisor/likewise", 18481 }, 18482 { 18483 CounterId: 484, 18484 Instance: "host/vim/tmp", 18485 }, 18486 { 18487 CounterId: 491, 18488 Instance: "host/vim", 18489 }, 18490 { 18491 CounterId: 481, 18492 Instance: "host/system/kernel/opt", 18493 }, 18494 { 18495 CounterId: 490, 18496 Instance: "host/system", 18497 }, 18498 { 18499 CounterId: 482, 18500 Instance: "host/system/drivers", 18501 }, 18502 { 18503 CounterId: 500, 18504 Instance: "host/vim/vmvisor/lacpd", 18505 }, 18506 { 18507 CounterId: 479, 18508 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 18509 }, 18510 { 18511 CounterId: 480, 18512 Instance: "host/vim/vmvisor/pcscd", 18513 }, 18514 { 18515 CounterId: 479, 18516 Instance: "host/vim/vmvisor/netcpa", 18517 }, 18518 { 18519 CounterId: 500, 18520 Instance: "host/vim/vmvisor/slp", 18521 }, 18522 { 18523 CounterId: 484, 18524 Instance: "host/vim/vmvisor/sensord", 18525 }, 18526 { 18527 CounterId: 476, 18528 Instance: "host/vim/vmvisor/slp", 18529 }, 18530 { 18531 CounterId: 482, 18532 Instance: "host/system/kernel/hostdstats", 18533 }, 18534 { 18535 CounterId: 480, 18536 Instance: "host/vim/vmvisor/slp", 18537 }, 18538 { 18539 CounterId: 479, 18540 Instance: "host/vim/vmvisor/slp", 18541 }, 18542 { 18543 CounterId: 480, 18544 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 18545 }, 18546 { 18547 CounterId: 481, 18548 Instance: "host/vim/vmvisor/slp", 18549 }, 18550 { 18551 CounterId: 479, 18552 Instance: "host/iofilters/spm", 18553 }, 18554 { 18555 CounterId: 479, 18556 Instance: "host/vim/vmvisor/vvoltraced", 18557 }, 18558 { 18559 CounterId: 484, 18560 Instance: "host/vim/vmvisor/slp", 18561 }, 18562 { 18563 CounterId: 485, 18564 Instance: "host/vim/vmvisor/slp", 18565 }, 18566 { 18567 CounterId: 500, 18568 Instance: "host/vim/vmvisor/plugins", 18569 }, 18570 { 18571 CounterId: 479, 18572 Instance: "host/vim/vimuser", 18573 }, 18574 { 18575 CounterId: 482, 18576 Instance: "host/vim/vmvisor/plugins", 18577 }, 18578 { 18579 CounterId: 499, 18580 Instance: "host/vim/vmvisor/slp", 18581 }, 18582 { 18583 CounterId: 500, 18584 Instance: "host/vim/vmvisor/smartd", 18585 }, 18586 { 18587 CounterId: 479, 18588 Instance: "host/vim/vmvisor/smartd", 18589 }, 18590 { 18591 CounterId: 484, 18592 Instance: "host/vim/vmvisor/hostd-probe", 18593 }, 18594 { 18595 CounterId: 481, 18596 Instance: "host/vim/vmvisor/smartd", 18597 }, 18598 { 18599 CounterId: 482, 18600 Instance: "host/vim/vmvisor/smartd", 18601 }, 18602 { 18603 CounterId: 499, 18604 Instance: "host/system/kernel", 18605 }, 18606 { 18607 CounterId: 481, 18608 Instance: "host/system/kernel/hostdstats", 18609 }, 18610 { 18611 CounterId: 482, 18612 Instance: "host/vim/vmvisor/hostdCgiServer", 18613 }, 18614 { 18615 CounterId: 476, 18616 Instance: "host/vim/vmvisor/hostdCgiServer", 18617 }, 18618 { 18619 CounterId: 484, 18620 Instance: "host/vim/vmvisor/smartd", 18621 }, 18622 { 18623 CounterId: 499, 18624 Instance: "host/vim/vmvisor/smartd", 18625 }, 18626 { 18627 CounterId: 500, 18628 Instance: "host/vim/vmvisor/snmpd", 18629 }, 18630 { 18631 CounterId: 485, 18632 Instance: "host/system/kernel/iofilters", 18633 }, 18634 { 18635 CounterId: 481, 18636 Instance: "host/vim/vmvisor/snmpd", 18637 }, 18638 { 18639 CounterId: 481, 18640 Instance: "host/vim/vmvisor/logging", 18641 }, 18642 { 18643 CounterId: 485, 18644 Instance: "host/vim/vimuser/terminal", 18645 }, 18646 { 18647 CounterId: 482, 18648 Instance: "host/vim/vmvisor/snmpd", 18649 }, 18650 { 18651 CounterId: 481, 18652 Instance: "host/system/drivers", 18653 }, 18654 { 18655 CounterId: 500, 18656 Instance: "host/vim/vmvisor/upitd", 18657 }, 18658 { 18659 CounterId: 484, 18660 Instance: "host/vim/vmvisor/snmpd", 18661 }, 18662 { 18663 CounterId: 492, 18664 Instance: "host/vim", 18665 }, 18666 { 18667 CounterId: 485, 18668 Instance: "host/vim/vmvisor/snmpd", 18669 }, 18670 { 18671 CounterId: 499, 18672 Instance: "host/vim/vimuser/terminal/ssh", 18673 }, 18674 { 18675 CounterId: 482, 18676 Instance: "host/vim/vmvisor/logging", 18677 }, 18678 { 18679 CounterId: 476, 18680 Instance: "host/vim/vmvisor/swapobjd", 18681 }, 18682 { 18683 CounterId: 476, 18684 Instance: "host/vim/vmvisor/vvoltraced", 18685 }, 18686 { 18687 CounterId: 484, 18688 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 18689 }, 18690 { 18691 CounterId: 484, 18692 Instance: "host/system/drivers", 18693 }, 18694 { 18695 CounterId: 482, 18696 Instance: "host/vim/vmvisor/swapobjd", 18697 }, 18698 { 18699 CounterId: 479, 18700 Instance: "host/vim/vmvisor/hostd", 18701 }, 18702 { 18703 CounterId: 484, 18704 Instance: "host/vim/vmvisor/swapobjd", 18705 }, 18706 { 18707 CounterId: 499, 18708 Instance: "host/vim/vmvisor/swapobjd", 18709 }, 18710 { 18711 CounterId: 480, 18712 Instance: "host/vim/vmvisor/hostd", 18713 }, 18714 { 18715 CounterId: 485, 18716 Instance: "host", 18717 }, 18718 { 18719 CounterId: 483, 18720 Instance: "host/vim/vmvisor/hostd", 18721 }, 18722 { 18723 CounterId: 476, 18724 Instance: "host/vim/vmvisor/upitd", 18725 }, 18726 { 18727 CounterId: 476, 18728 Instance: "host/vim/vmvisor/memScrubber", 18729 }, 18730 { 18731 CounterId: 479, 18732 Instance: "host/vim/vmvisor/upitd", 18733 }, 18734 { 18735 CounterId: 485, 18736 Instance: "host/system/kernel/opt", 18737 }, 18738 { 18739 CounterId: 480, 18740 Instance: "host/vim/vmvisor/upitd", 18741 }, 18742 { 18743 CounterId: 481, 18744 Instance: "host/vim/vmvisor/upitd", 18745 }, 18746 { 18747 CounterId: 483, 18748 Instance: "host/vim/vmvisor", 18749 }, 18750 { 18751 CounterId: 496, 18752 Instance: "host/system/vmotion", 18753 }, 18754 { 18755 CounterId: 482, 18756 Instance: "host/vim/vmvisor/upitd", 18757 }, 18758 { 18759 CounterId: 485, 18760 Instance: "host/vim/vmvisor/upitd", 18761 }, 18762 { 18763 CounterId: 476, 18764 Instance: "host/vim/vmvisor/sfcb_aux", 18765 }, 18766 { 18767 CounterId: 499, 18768 Instance: "host/vim/vmvisor/upitd", 18769 }, 18770 { 18771 CounterId: 500, 18772 Instance: "host/system/svmotion", 18773 }, 18774 { 18775 CounterId: 485, 18776 Instance: "host/vim/vmvisor/swapobjd", 18777 }, 18778 { 18779 CounterId: 500, 18780 Instance: "host/vim/vmvisor/upittraced", 18781 }, 18782 { 18783 CounterId: 483, 18784 Instance: "host/vim/vmvisor/likewise", 18785 }, 18786 { 18787 CounterId: 476, 18788 Instance: "host/vim/vmvisor/upittraced", 18789 }, 18790 { 18791 CounterId: 485, 18792 Instance: "host/system/kernel/tmp", 18793 }, 18794 { 18795 CounterId: 479, 18796 Instance: "host/vim/vmvisor/vsanperfsvc", 18797 }, 18798 { 18799 CounterId: 484, 18800 Instance: "host/system/kernel/tmp", 18801 }, 18802 { 18803 CounterId: 479, 18804 Instance: "host/vim/vmvisor/upittraced", 18805 }, 18806 { 18807 CounterId: 482, 18808 Instance: "host/vim/vimuser", 18809 }, 18810 { 18811 CounterId: 480, 18812 Instance: "host/vim/vmvisor/upittraced", 18813 }, 18814 { 18815 CounterId: 481, 18816 Instance: "host/vim/vmvisor/upittraced", 18817 }, 18818 { 18819 CounterId: 500, 18820 Instance: "host/vim/vmvisor/swapobjd", 18821 }, 18822 { 18823 CounterId: 482, 18824 Instance: "host/vim/vmvisor/upittraced", 18825 }, 18826 { 18827 CounterId: 486, 18828 Instance: "host/system", 18829 }, 18830 { 18831 CounterId: 483, 18832 Instance: "host/vim/vmvisor/upittraced", 18833 }, 18834 { 18835 CounterId: 500, 18836 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 18837 }, 18838 { 18839 CounterId: 485, 18840 Instance: "host/system/ft", 18841 }, 18842 { 18843 CounterId: 500, 18844 Instance: "host/vim/vmvisor/usbArbitrator", 18845 }, 18846 { 18847 CounterId: 484, 18848 Instance: "host/vim/vmvisor/aam", 18849 }, 18850 { 18851 CounterId: 483, 18852 Instance: "host/user", 18853 }, 18854 { 18855 CounterId: 482, 18856 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 18857 }, 18858 { 18859 CounterId: 476, 18860 Instance: "host/vim/vmvisor/usbArbitrator", 18861 }, 18862 { 18863 CounterId: 485, 18864 Instance: "host/vim/vmvisor/smartd", 18865 }, 18866 { 18867 CounterId: 480, 18868 Instance: "host/vim/vmvisor/usbArbitrator", 18869 }, 18870 { 18871 CounterId: 481, 18872 Instance: "host/vim/vmvisor/usbArbitrator", 18873 }, 18874 { 18875 CounterId: 482, 18876 Instance: "host/vim/vmvisor/usbArbitrator", 18877 }, 18878 { 18879 CounterId: 499, 18880 Instance: "host/vim/vmvisor/likewise", 18881 }, 18882 { 18883 CounterId: 481, 18884 Instance: "host/vim/vmvisor/memScrubber", 18885 }, 18886 { 18887 CounterId: 485, 18888 Instance: "host/vim/vmvisor/usbArbitrator", 18889 }, 18890 { 18891 CounterId: 500, 18892 Instance: "host/vim/vmvisor/uwdaemons", 18893 }, 18894 { 18895 CounterId: 481, 18896 Instance: "host/iofilters", 18897 }, 18898 { 18899 CounterId: 476, 18900 Instance: "host/system/kernel/iofilters", 18901 }, 18902 { 18903 CounterId: 499, 18904 Instance: "host/system/kernel/root", 18905 }, 18906 { 18907 CounterId: 476, 18908 Instance: "host/vim/vmvisor/uwdaemons", 18909 }, 18910 { 18911 CounterId: 479, 18912 Instance: "host/vim/vmvisor/uwdaemons", 18913 }, 18914 { 18915 CounterId: 480, 18916 Instance: "host/vim/vmvisor/uwdaemons", 18917 }, 18918 { 18919 CounterId: 499, 18920 Instance: "host/vim/vmvisor/sfcb", 18921 }, 18922 { 18923 CounterId: 481, 18924 Instance: "host/vim/vmvisor/uwdaemons", 18925 }, 18926 { 18927 CounterId: 484, 18928 Instance: "host/vim/vmvisor/uwdaemons", 18929 }, 18930 { 18931 CounterId: 479, 18932 Instance: "host/system", 18933 }, 18934 { 18935 CounterId: 483, 18936 Instance: "host/vim/vmvisor/uwdaemons", 18937 }, 18938 { 18939 CounterId: 485, 18940 Instance: "host/vim/vmvisor/uwdaemons", 18941 }, 18942 { 18943 CounterId: 479, 18944 Instance: "host/vim/vmvisor/snmpd", 18945 }, 18946 { 18947 CounterId: 480, 18948 Instance: "host/vim/vmvisor/lbt", 18949 }, 18950 { 18951 CounterId: 499, 18952 Instance: "host/vim/vmvisor/uwdaemons", 18953 }, 18954 { 18955 CounterId: 480, 18956 Instance: "host/vim/vmvisor", 18957 }, 18958 { 18959 CounterId: 479, 18960 Instance: "host/vim/vmvisor/vmfstraced", 18961 }, 18962 { 18963 CounterId: 480, 18964 Instance: "host/vim/vmvisor/vmfstraced", 18965 }, 18966 { 18967 CounterId: 479, 18968 Instance: "host/vim/vmvisor/lbt", 18969 }, 18970 { 18971 CounterId: 481, 18972 Instance: "host/system/ft", 18973 }, 18974 { 18975 CounterId: 482, 18976 Instance: "host/vim/vmvisor/ntpd", 18977 }, 18978 { 18979 CounterId: 476, 18980 Instance: "host/vim/vmvisor/sfcb", 18981 }, 18982 { 18983 CounterId: 499, 18984 Instance: "host/vim/tmp", 18985 }, 18986 { 18987 CounterId: 482, 18988 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 18989 }, 18990 { 18991 CounterId: 485, 18992 Instance: "host/vim/vmvisor/init", 18993 }, 18994 { 18995 CounterId: 480, 18996 Instance: "host/vim/vmvisor/nfcd", 18997 }, 18998 { 18999 CounterId: 483, 19000 Instance: "host/vim/vmvisor/vmfstraced", 19001 }, 19002 { 19003 CounterId: 484, 19004 Instance: "host/vim/vmvisor/vmfstraced", 19005 }, 19006 { 19007 CounterId: 485, 19008 Instance: "host/vim/vmvisor/vmfstraced", 19009 }, 19010 { 19011 CounterId: 500, 19012 Instance: "host/vim/vmvisor/vmkdevmgr", 19013 }, 19014 { 19015 CounterId: 480, 19016 Instance: "host/vim/vimuser/terminal/ssh", 19017 }, 19018 { 19019 CounterId: 483, 19020 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 19021 }, 19022 { 19023 CounterId: 479, 19024 Instance: "host/vim/vmvisor/vmkdevmgr", 19025 }, 19026 { 19027 CounterId: 479, 19028 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 19029 }, 19030 { 19031 CounterId: 481, 19032 Instance: "host/vim/vmvisor/vmkdevmgr", 19033 }, 19034 { 19035 CounterId: 485, 19036 Instance: "host/vim/vmvisor/vmkdevmgr", 19037 }, 19038 { 19039 CounterId: 499, 19040 Instance: "host/vim/vmvisor/vmkdevmgr", 19041 }, 19042 { 19043 CounterId: 484, 19044 Instance: "host/vim", 19045 }, 19046 { 19047 CounterId: 481, 19048 Instance: "host/vim/vmvisor/likewise", 19049 }, 19050 { 19051 CounterId: 480, 19052 Instance: "host/vim/vmvisor/net-daemons", 19053 }, 19054 { 19055 CounterId: 500, 19056 Instance: "host/vim/vmvisor/vmkeventd", 19057 }, 19058 { 19059 CounterId: 484, 19060 Instance: "host/system/kernel/var", 19061 }, 19062 { 19063 CounterId: 476, 19064 Instance: "host/vim/vmvisor/vmkeventd", 19065 }, 19066 { 19067 CounterId: 481, 19068 Instance: "host/vim/vmci", 19069 }, 19070 { 19071 CounterId: 480, 19072 Instance: "host/vim/vmvisor/dhclientrelease", 19073 }, 19074 { 19075 CounterId: 484, 19076 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 19077 }, 19078 { 19079 CounterId: 479, 19080 Instance: "host/vim/vmvisor/vmkeventd", 19081 }, 19082 { 19083 CounterId: 484, 19084 Instance: "host/vim/vmvisor/vmkeventd", 19085 }, 19086 { 19087 CounterId: 484, 19088 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 19089 }, 19090 { 19091 CounterId: 485, 19092 Instance: "host/vim/vmvisor/vmkeventd", 19093 }, 19094 { 19095 CounterId: 499, 19096 Instance: "host/vim/vmvisor/vmkeventd", 19097 }, 19098 { 19099 CounterId: 476, 19100 Instance: "host/iofilters/vmwarevmcrypt", 19101 }, 19102 { 19103 CounterId: 499, 19104 Instance: "host/vim/vmvisor", 19105 }, 19106 { 19107 CounterId: 476, 19108 Instance: "host/vim/vmvisor/init", 19109 }, 19110 { 19111 CounterId: 482, 19112 Instance: "host/vim/vmvisor/hostd-probe", 19113 }, 19114 { 19115 CounterId: 500, 19116 Instance: "host/vim/vmvisor/vmkiscsid", 19117 }, 19118 { 19119 CounterId: 479, 19120 Instance: "host/user", 19121 }, 19122 { 19123 CounterId: 485, 19124 Instance: "host/vim/vmvisor/netcpa", 19125 }, 19126 { 19127 CounterId: 479, 19128 Instance: "host/vim/vmvisor/vmkiscsid", 19129 }, 19130 { 19131 CounterId: 484, 19132 Instance: "host/vim/vmvisor/hostdCgiServer", 19133 }, 19134 { 19135 CounterId: 484, 19136 Instance: "host/vim/vmvisor/nfcd", 19137 }, 19138 { 19139 CounterId: 482, 19140 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 19141 }, 19142 { 19143 CounterId: 487, 19144 Instance: "host/system/vmotion", 19145 }, 19146 { 19147 CounterId: 480, 19148 Instance: "host/vim/vmvisor/vmkiscsid", 19149 }, 19150 { 19151 CounterId: 483, 19152 Instance: "host/vim/vmvisor/vmkiscsid", 19153 }, 19154 { 19155 CounterId: 499, 19156 Instance: "host/vim/vmvisor/vmkiscsid", 19157 }, 19158 { 19159 CounterId: 500, 19160 Instance: "host/vim/vmvisor/vobd", 19161 }, 19162 { 19163 CounterId: 476, 19164 Instance: "host/vim/vmvisor/vobd", 19165 }, 19166 { 19167 CounterId: 479, 19168 Instance: "host/vim/vmvisor/vobd", 19169 }, 19170 { 19171 CounterId: 484, 19172 Instance: "host/vim/vmvisor/osfsd", 19173 }, 19174 { 19175 CounterId: 482, 19176 Instance: "host/vim/vmvisor/nscd", 19177 }, 19178 { 19179 CounterId: 480, 19180 Instance: "host/vim/vmvisor/vobd", 19181 }, 19182 { 19183 CounterId: 500, 19184 Instance: "host/vim/vmvisor/hostd", 19185 }, 19186 { 19187 CounterId: 499, 19188 Instance: "host/vim/vmvisor/plugins", 19189 }, 19190 { 19191 CounterId: 476, 19192 Instance: "host/vim/vimuser/terminal/ssh", 19193 }, 19194 { 19195 CounterId: 482, 19196 Instance: "host/vim/vmvisor/vobd", 19197 }, 19198 { 19199 CounterId: 500, 19200 Instance: "host/system/vmotion", 19201 }, 19202 { 19203 CounterId: 479, 19204 Instance: "host/vim/vmvisor/hostdCgiServer", 19205 }, 19206 { 19207 CounterId: 484, 19208 Instance: "host/vim/vmvisor/wsman", 19209 }, 19210 { 19211 CounterId: 485, 19212 Instance: "host/vim/vmvisor/vobd", 19213 }, 19214 { 19215 CounterId: 500, 19216 Instance: "host/vim/vmvisor/dhclientrelease", 19217 }, 19218 { 19219 CounterId: 479, 19220 Instance: "host/vim/vmvisor/vpxa", 19221 }, 19222 { 19223 CounterId: 481, 19224 Instance: "host/vim/vmvisor/vpxa", 19225 }, 19226 { 19227 CounterId: 476, 19228 Instance: "host/vim/vimuser", 19229 }, 19230 { 19231 CounterId: 500, 19232 Instance: "host/vim/vmvisor/sfcb_aux", 19233 }, 19234 { 19235 CounterId: 482, 19236 Instance: "host/vim/vmvisor/vpxa", 19237 }, 19238 { 19239 CounterId: 476, 19240 Instance: "host/vim/vmvisor/netcpa", 19241 }, 19242 { 19243 CounterId: 482, 19244 Instance: "host/system/helper", 19245 }, 19246 { 19247 CounterId: 485, 19248 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 19249 }, 19250 { 19251 CounterId: 483, 19252 Instance: "host/vim/vmvisor/vpxa", 19253 }, 19254 { 19255 CounterId: 155, 19256 Instance: "", 19257 }, 19258 { 19259 CounterId: 484, 19260 Instance: "host/vim/vmvisor/vpxa", 19261 }, 19262 { 19263 CounterId: 485, 19264 Instance: "host/vim/vmvisor/vpxa", 19265 }, 19266 { 19267 CounterId: 499, 19268 Instance: "host/vim/vmvisor/vpxa", 19269 }, 19270 { 19271 CounterId: 483, 19272 Instance: "host/vim/vmvisor/dhclient", 19273 }, 19274 { 19275 CounterId: 483, 19276 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 19277 }, 19278 { 19279 CounterId: 483, 19280 Instance: "host/vim/vmvisor/slp", 19281 }, 19282 { 19283 CounterId: 500, 19284 Instance: "host/vim/vmvisor/vvold", 19285 }, 19286 { 19287 CounterId: 476, 19288 Instance: "host/vim/vmvisor/vvold", 19289 }, 19290 { 19291 CounterId: 479, 19292 Instance: "host/vim/vmvisor/vvold", 19293 }, 19294 { 19295 CounterId: 480, 19296 Instance: "host/system/helper", 19297 }, 19298 { 19299 CounterId: 480, 19300 Instance: "host/vim/vmvisor/vvold", 19301 }, 19302 { 19303 CounterId: 482, 19304 Instance: "host/vim/vmvisor/vvold", 19305 }, 19306 { 19307 CounterId: 483, 19308 Instance: "host/vim/vmvisor/vvold", 19309 }, 19310 { 19311 CounterId: 482, 19312 Instance: "host/vim/vmvisor/hostd", 19313 }, 19314 { 19315 CounterId: 483, 19316 Instance: "host/vim/vmvisor/vmkdevmgr", 19317 }, 19318 { 19319 CounterId: 484, 19320 Instance: "host/vim/vmvisor/vvold", 19321 }, 19322 { 19323 CounterId: 500, 19324 Instance: "host/user", 19325 }, 19326 { 19327 CounterId: 484, 19328 Instance: "host/vim/vmvisor/ntpd", 19329 }, 19330 { 19331 CounterId: 485, 19332 Instance: "host/vim/vmvisor/vvold", 19333 }, 19334 { 19335 CounterId: 484, 19336 Instance: "host/vim/vmvisor/rabbitmqproxy", 19337 }, 19338 { 19339 CounterId: 499, 19340 Instance: "host/vim/vmvisor/vvold", 19341 }, 19342 { 19343 CounterId: 479, 19344 Instance: "host/system/svmotion", 19345 }, 19346 { 19347 CounterId: 480, 19348 Instance: "host/system/ft", 19349 }, 19350 { 19351 CounterId: 500, 19352 Instance: "host/vim/vmvisor/vvoltraced", 19353 }, 19354 { 19355 CounterId: 500, 19356 Instance: "host/system/kernel/root", 19357 }, 19358 { 19359 CounterId: 481, 19360 Instance: "host/vim/vmvisor/vvoltraced", 19361 }, 19362 { 19363 CounterId: 485, 19364 Instance: "host/system/helper", 19365 }, 19366 { 19367 CounterId: 482, 19368 Instance: "host/vim/vmvisor/nfsgssd", 19369 }, 19370 { 19371 CounterId: 499, 19372 Instance: "host/vim/vmvisor/aam", 19373 }, 19374 { 19375 CounterId: 482, 19376 Instance: "host/system/kernel/opt", 19377 }, 19378 { 19379 CounterId: 482, 19380 Instance: "host/vim/vimuser/terminal", 19381 }, 19382 { 19383 CounterId: 483, 19384 Instance: "host/iofilters/vmwarevmcrypt", 19385 }, 19386 { 19387 CounterId: 485, 19388 Instance: "host/vim/vmvisor/hostdCgiServer", 19389 }, 19390 { 19391 CounterId: 482, 19392 Instance: "host/vim/vmvisor/vvoltraced", 19393 }, 19394 { 19395 CounterId: 484, 19396 Instance: "host/vim/vmvisor/vvoltraced", 19397 }, 19398 { 19399 CounterId: 480, 19400 Instance: "host/vim/vmvisor/swapobjd", 19401 }, 19402 { 19403 CounterId: 483, 19404 Instance: "host/system/kernel/etc", 19405 }, 19406 { 19407 CounterId: 499, 19408 Instance: "host/vim/vmvisor/vvoltraced", 19409 }, 19410 { 19411 CounterId: 476, 19412 Instance: "host/vim/vmci", 19413 }, 19414 { 19415 CounterId: 481, 19416 Instance: "host/vim/vmvisor/vmkiscsid", 19417 }, 19418 { 19419 CounterId: 500, 19420 Instance: "host/vim/vmvisor/wsman", 19421 }, 19422 { 19423 CounterId: 480, 19424 Instance: "host/vim/vmvisor/wsman", 19425 }, 19426 { 19427 CounterId: 481, 19428 Instance: "host/vim/vmvisor/wsman", 19429 }, 19430 { 19431 CounterId: 499, 19432 Instance: "host/vim/vmvisor/lbt", 19433 }, 19434 { 19435 CounterId: 476, 19436 Instance: "host/system/ft", 19437 }, 19438 { 19439 CounterId: 482, 19440 Instance: "host/vim/vmvisor/wsman", 19441 }, 19442 { 19443 CounterId: 480, 19444 Instance: "host/system/drivers", 19445 }, 19446 { 19447 CounterId: 482, 19448 Instance: "host/vim/vmvisor/dhclientrelease", 19449 }, 19450 { 19451 CounterId: 489, 19452 Instance: "host/vim", 19453 }, 19454 { 19455 CounterId: 483, 19456 Instance: "host/vim/vmvisor/wsman", 19457 }, 19458 { 19459 CounterId: 480, 19460 Instance: "host/vim/vimuser/terminal", 19461 }, 19462 { 19463 CounterId: 485, 19464 Instance: "host/vim/vmvisor/wsman", 19465 }, 19466 { 19467 CounterId: 484, 19468 Instance: "host/system/svmotion", 19469 }, 19470 { 19471 CounterId: 479, 19472 Instance: "host/vim/vmvisor/dcui", 19473 }, 19474 { 19475 CounterId: 485, 19476 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 19477 }, 19478 { 19479 CounterId: 500, 19480 Instance: "host/system/helper", 19481 }, 19482 { 19483 CounterId: 499, 19484 Instance: "host/vim/vmvisor/wsman", 19485 }, 19486 { 19487 CounterId: 479, 19488 Instance: "host/vim/vmvisor/hbrca", 19489 }, 19490 { 19491 CounterId: 482, 19492 Instance: "host/vim/vmvisor/sensord", 19493 }, 19494 { 19495 CounterId: 499, 19496 Instance: "host/vim/vmvisor/rabbitmqproxy", 19497 }, 19498 { 19499 CounterId: 497, 19500 Instance: "host/system/vmotion", 19501 }, 19502 { 19503 CounterId: 500, 19504 Instance: "host/vim/vmvisor/vsanperfsvc", 19505 }, 19506 { 19507 CounterId: 479, 19508 Instance: "host/vim/vmvisor/dhclientrelease", 19509 }, 19510 { 19511 CounterId: 494, 19512 Instance: "host/system/vmotion", 19513 }, 19514 { 19515 CounterId: 499, 19516 Instance: "host/vim/vmvisor/osfsd", 19517 }, 19518 { 19519 CounterId: 482, 19520 Instance: "host/system/kernel/tmp", 19521 }, 19522 { 19523 CounterId: 476, 19524 Instance: "host/vim/vmvisor/vsanperfsvc", 19525 }, 19526 { 19527 CounterId: 499, 19528 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 19529 }, 19530 { 19531 CounterId: 500, 19532 Instance: "host/vim", 19533 }, 19534 { 19535 CounterId: 481, 19536 Instance: "host/vim/vmvisor/vsanperfsvc", 19537 }, 19538 { 19539 CounterId: 476, 19540 Instance: "host/iofilters/iofiltervpd", 19541 }, 19542 { 19543 CounterId: 482, 19544 Instance: "host/vim/vmvisor/vsanperfsvc", 19545 }, 19546 { 19547 CounterId: 484, 19548 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 19549 }, 19550 { 19551 CounterId: 483, 19552 Instance: "host/vim/vmvisor/vsanperfsvc", 19553 }, 19554 { 19555 CounterId: 482, 19556 Instance: "host/system/vmotion", 19557 }, 19558 { 19559 CounterId: 484, 19560 Instance: "host/vim/vmvisor/vsanperfsvc", 19561 }, 19562 { 19563 CounterId: 476, 19564 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 19565 }, 19566 { 19567 CounterId: 485, 19568 Instance: "host/vim/vmvisor/plugins", 19569 }, 19570 { 19571 CounterId: 484, 19572 Instance: "host/vim/vmvisor/sfcb_aux", 19573 }, 19574 { 19575 CounterId: 479, 19576 Instance: "host/system/kernel/opt", 19577 }, 19578 { 19579 CounterId: 499, 19580 Instance: "host/vim/vmvisor/vsanperfsvc", 19581 }, 19582 { 19583 CounterId: 500, 19584 Instance: "host/system/ft", 19585 }, 19586 { 19587 CounterId: 499, 19588 Instance: "host/vim/vmvisor/memScrubber", 19589 }, 19590 { 19591 CounterId: 481, 19592 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 19593 }, 19594 { 19595 CounterId: 476, 19596 Instance: "host/vim/vmvisor/sioc", 19597 }, 19598 { 19599 CounterId: 500, 19600 Instance: "host/vim/vimuser", 19601 }, 19602 { 19603 CounterId: 480, 19604 Instance: "host/vim/vimuser", 19605 }, 19606 { 19607 CounterId: 483, 19608 Instance: "host/vim/vimuser", 19609 }, 19610 { 19611 CounterId: 484, 19612 Instance: "host/vim/vimuser", 19613 }, 19614 { 19615 CounterId: 485, 19616 Instance: "host/vim/vimuser", 19617 }, 19618 { 19619 CounterId: 476, 19620 Instance: "host/vim/vimuser/terminal", 19621 }, 19622 { 19623 CounterId: 480, 19624 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 19625 }, 19626 { 19627 CounterId: 480, 19628 Instance: "host/vim/vmvisor/memScrubber", 19629 }, 19630 { 19631 CounterId: 493, 19632 Instance: "host/vim", 19633 }, 19634 { 19635 CounterId: 483, 19636 Instance: "host/vim/vimuser/terminal", 19637 }, 19638 { 19639 CounterId: 484, 19640 Instance: "host/vim/vimuser/terminal", 19641 }, 19642 { 19643 CounterId: 499, 19644 Instance: "host/vim/vimuser/terminal", 19645 }, 19646 { 19647 CounterId: 500, 19648 Instance: "host/vim/vimuser/terminal/shell", 19649 }, 19650 { 19651 CounterId: 499, 19652 Instance: "host/vim", 19653 }, 19654 { 19655 CounterId: 476, 19656 Instance: "host/vim/vmvisor/hbrca", 19657 }, 19658 { 19659 CounterId: 479, 19660 Instance: "host/vim", 19661 }, 19662 { 19663 CounterId: 500, 19664 Instance: "host/vim/vmvisor/logging", 19665 }, 19666 { 19667 CounterId: 476, 19668 Instance: "host/vim/vimuser/terminal/shell", 19669 }, 19670 { 19671 CounterId: 485, 19672 Instance: "host/iofilters", 19673 }, 19674 { 19675 CounterId: 483, 19676 Instance: "host/vim/vmvisor/vobd", 19677 }, 19678 { 19679 CounterId: 479, 19680 Instance: "host/vim/vimuser/terminal/shell", 19681 }, 19682 { 19683 CounterId: 480, 19684 Instance: "host/vim/vmvisor/rabbitmqproxy", 19685 }, 19686 { 19687 CounterId: 476, 19688 Instance: "host/system/kernel/tmp", 19689 }, 19690 { 19691 CounterId: 481, 19692 Instance: "host/vim/vimuser/terminal/shell", 19693 }, 19694 { 19695 CounterId: 483, 19696 Instance: "host/vim/vimuser/terminal/shell", 19697 }, 19698 { 19699 CounterId: 485, 19700 Instance: "host/vim/vimuser/terminal/ssh", 19701 }, 19702 { 19703 CounterId: 494, 19704 Instance: "host/vim", 19705 }, 19706 { 19707 CounterId: 496, 19708 Instance: "host/vim", 19709 }, 19710 { 19711 CounterId: 497, 19712 Instance: "host/vim", 19713 }, 19714 { 19715 CounterId: 481, 19716 Instance: "host/vim/vimuser", 19717 }, 19718 { 19719 CounterId: 483, 19720 Instance: "host/system/kernel/iofilters", 19721 }, 19722 { 19723 CounterId: 479, 19724 Instance: "host/vim/vmci", 19725 }, 19726 { 19727 CounterId: 480, 19728 Instance: "host/vim/vmci", 19729 }, 19730 { 19731 CounterId: 499, 19732 Instance: "host/vim/vimuser/terminal/shell", 19733 }, 19734 { 19735 CounterId: 480, 19736 Instance: "host/vim/vmvisor/vmkeventd", 19737 }, 19738 { 19739 CounterId: 482, 19740 Instance: "host/vim/vmci", 19741 }, 19742 { 19743 CounterId: 484, 19744 Instance: "host/vim/vmvisor/boot", 19745 }, 19746 { 19747 CounterId: 483, 19748 Instance: "host/vim/vmci", 19749 }, 19750 { 19751 CounterId: 499, 19752 Instance: "host/vim/vmvisor/dhclient", 19753 }, 19754 { 19755 CounterId: 500, 19756 Instance: "host/vim/vimuser/terminal/ssh", 19757 }, 19758 { 19759 CounterId: 485, 19760 Instance: "host/vim/vmvisor/ntpd", 19761 }, 19762 { 19763 CounterId: 479, 19764 Instance: "host/vim/vimuser/terminal/ssh", 19765 }, 19766 { 19767 CounterId: 484, 19768 Instance: "host/vim/vmci", 19769 }, 19770 { 19771 CounterId: 482, 19772 Instance: "host/vim/vimuser/terminal/ssh", 19773 }, 19774 { 19775 CounterId: 485, 19776 Instance: "host/vim/vmci", 19777 }, 19778 { 19779 CounterId: 499, 19780 Instance: "host/vim/vmci", 19781 }, 19782 { 19783 CounterId: 476, 19784 Instance: "host/vim/vmvisor", 19785 }, 19786 { 19787 CounterId: 500, 19788 Instance: "host/vim/vmvisor/init", 19789 }, 19790 { 19791 CounterId: 482, 19792 Instance: "host/vim/vmvisor", 19793 }, 19794 { 19795 CounterId: 500, 19796 Instance: "host/vim/vmvisor/aam", 19797 }, 19798 { 19799 CounterId: 480, 19800 Instance: "host/vim/vmvisor/smartd", 19801 }, 19802 { 19803 CounterId: 479, 19804 Instance: "host/vim/vmvisor/aam", 19805 }, 19806 { 19807 CounterId: 476, 19808 Instance: "host/system/kernel/root", 19809 }, 19810 { 19811 CounterId: 499, 19812 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 19813 }, 19814 { 19815 CounterId: 500, 19816 Instance: "host/vim/tmp", 19817 }, 19818 { 19819 CounterId: 480, 19820 Instance: "host/vim/vmvisor/aam", 19821 }, 19822 { 19823 CounterId: 499, 19824 Instance: "host/vim/vmvisor/init", 19825 }, 19826 { 19827 CounterId: 481, 19828 Instance: "host/vim/vmvisor/aam", 19829 }, 19830 { 19831 CounterId: 499, 19832 Instance: "host/user", 19833 }, 19834 { 19835 CounterId: 482, 19836 Instance: "host/vim/vmvisor/aam", 19837 }, 19838 { 19839 CounterId: 485, 19840 Instance: "host/vim/vmvisor/rabbitmqproxy", 19841 }, 19842 { 19843 CounterId: 483, 19844 Instance: "host/vim/vmvisor/aam", 19845 }, 19846 { 19847 CounterId: 500, 19848 Instance: "host/vim/vmvisor/netcpa", 19849 }, 19850 { 19851 CounterId: 476, 19852 Instance: "host/vim/tmp", 19853 }, 19854 { 19855 CounterId: 479, 19856 Instance: "host/vim/vmvisor/nfcd", 19857 }, 19858 { 19859 CounterId: 479, 19860 Instance: "host/vim/vmvisor/boot", 19861 }, 19862 { 19863 CounterId: 480, 19864 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 19865 }, 19866 { 19867 CounterId: 480, 19868 Instance: "host/vim/vmvisor/boot", 19869 }, 19870 { 19871 CounterId: 484, 19872 Instance: "host/vim/vmvisor/upitd", 19873 }, 19874 { 19875 CounterId: 481, 19876 Instance: "host/vim/vmvisor/boot", 19877 }, 19878 { 19879 CounterId: 479, 19880 Instance: "host/vim/vimuser/terminal", 19881 }, 19882 { 19883 CounterId: 479, 19884 Instance: "host/vim/tmp", 19885 }, 19886 { 19887 CounterId: 482, 19888 Instance: "host/vim/vmvisor/boot", 19889 }, 19890 { 19891 CounterId: 476, 19892 Instance: "host/vim/vmvisor/vmkiscsid", 19893 }, 19894 { 19895 CounterId: 485, 19896 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 19897 }, 19898 { 19899 CounterId: 483, 19900 Instance: "host/vim/vmvisor/boot", 19901 }, 19902 { 19903 CounterId: 485, 19904 Instance: "host/vim/vmvisor/boot", 19905 }, 19906 { 19907 CounterId: 500, 19908 Instance: "host/vim/vmvisor/dcui", 19909 }, 19910 { 19911 CounterId: 476, 19912 Instance: "host/vim/vmvisor/smartd", 19913 }, 19914 { 19915 CounterId: 476, 19916 Instance: "host", 19917 }, 19918 { 19919 CounterId: 476, 19920 Instance: "host/vim/vmvisor/dcui", 19921 }, 19922 { 19923 CounterId: 480, 19924 Instance: "host/vim/tmp", 19925 }, 19926 { 19927 CounterId: 476, 19928 Instance: "host/system/svmotion", 19929 }, 19930 { 19931 CounterId: 499, 19932 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 19933 }, 19934 { 19935 CounterId: 480, 19936 Instance: "host/vim/vmvisor/dcui", 19937 }, 19938 { 19939 CounterId: 481, 19940 Instance: "host/vim/vmvisor/dcui", 19941 }, 19942 { 19943 CounterId: 476, 19944 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 19945 }, 19946 { 19947 CounterId: 500, 19948 Instance: "host/vim/vmvisor", 19949 }, 19950 { 19951 CounterId: 483, 19952 Instance: "host/vim/vmvisor/dcui", 19953 }, 19954 { 19955 CounterId: 479, 19956 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 19957 }, 19958 { 19959 CounterId: 499, 19960 Instance: "host/vim/vmvisor/dcui", 19961 }, 19962 { 19963 CounterId: 485, 19964 Instance: "host/vim/vmvisor/hbrca", 19965 }, 19966 { 19967 CounterId: 500, 19968 Instance: "host/vim/vmvisor/dhclient", 19969 }, 19970 { 19971 CounterId: 483, 19972 Instance: "host", 19973 }, 19974 { 19975 CounterId: 479, 19976 Instance: "host/vim/vmvisor/dhclient", 19977 }, 19978 { 19979 CounterId: 482, 19980 Instance: "host/vim/vmvisor/osfsd", 19981 }, 19982 { 19983 CounterId: 481, 19984 Instance: "host/vim/vmvisor/dhclient", 19985 }, 19986 { 19987 CounterId: 482, 19988 Instance: "host/vim/vmvisor/sioc", 19989 }, 19990 { 19991 CounterId: 482, 19992 Instance: "host/vim/vmvisor/dhclient", 19993 }, 19994 { 19995 CounterId: 490, 19996 Instance: "host/system/vmotion", 19997 }, 19998 { 19999 CounterId: 484, 20000 Instance: "host/vim/vmvisor/dhclient", 20001 }, 20002 { 20003 CounterId: 485, 20004 Instance: "host/vim/vmvisor/dhclient", 20005 }, 20006 { 20007 CounterId: 479, 20008 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 20009 }, 20010 { 20011 CounterId: 481, 20012 Instance: "host/vim/tmp", 20013 }, 20014 { 20015 CounterId: 485, 20016 Instance: "host/vim/vmvisor/vmkiscsid", 20017 }, 20018 { 20019 CounterId: 476, 20020 Instance: "host/vim/vmvisor/dhclientrelease", 20021 }, 20022 { 20023 CounterId: 483, 20024 Instance: "host/vim/tmp", 20025 }, 20026 { 20027 CounterId: 481, 20028 Instance: "host/vim/vmvisor/dhclientrelease", 20029 }, 20030 { 20031 CounterId: 485, 20032 Instance: "host/vim/tmp", 20033 }, 20034 { 20035 CounterId: 483, 20036 Instance: "host/iofilters/spm", 20037 }, 20038 { 20039 CounterId: 483, 20040 Instance: "host/vim/vmvisor/dhclientrelease", 20041 }, 20042 { 20043 CounterId: 479, 20044 Instance: "host/vim/vmvisor", 20045 }, 20046 { 20047 CounterId: 485, 20048 Instance: "host/vim/vmvisor/dhclientrelease", 20049 }, 20050 { 20051 CounterId: 480, 20052 Instance: "host/vim/vmvisor/hbrca", 20053 }, 20054 { 20055 CounterId: 499, 20056 Instance: "host/vim/vmvisor/sioc", 20057 }, 20058 { 20059 CounterId: 481, 20060 Instance: "host/vim/vmvisor/hbrca", 20061 }, 20062 { 20063 CounterId: 480, 20064 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 20065 }, 20066 { 20067 CounterId: 500, 20068 Instance: "host/vim/vmvisor/boot", 20069 }, 20070 { 20071 CounterId: 480, 20072 Instance: "host/vim/vmvisor/plugins", 20073 }, 20074 { 20075 CounterId: 483, 20076 Instance: "host/vim/vmvisor/hbrca", 20077 }, 20078 { 20079 CounterId: 499, 20080 Instance: "host/vim/vmvisor/ntpd", 20081 }, 20082 { 20083 CounterId: 484, 20084 Instance: "host/vim/vmvisor/hbrca", 20085 }, 20086 { 20087 CounterId: 480, 20088 Instance: "host/system/kernel/etc", 20089 }, 20090 { 20091 CounterId: 484, 20092 Instance: "host/iofilters/spm", 20093 }, 20094 { 20095 CounterId: 499, 20096 Instance: "host/vim/vmvisor/hbrca", 20097 }, 20098 { 20099 CounterId: 480, 20100 Instance: "host/vim/vmvisor/vmkdevmgr", 20101 }, 20102 { 20103 CounterId: 476, 20104 Instance: "host/vim/vmvisor/hostd", 20105 }, 20106 { 20107 CounterId: 481, 20108 Instance: "host/vim/vmvisor/hostd", 20109 }, 20110 { 20111 CounterId: 500, 20112 Instance: "host/iofilters", 20113 }, 20114 { 20115 CounterId: 484, 20116 Instance: "host/vim/vmvisor/dhclientrelease", 20117 }, 20118 { 20119 CounterId: 484, 20120 Instance: "host/vim/vmvisor/hostd", 20121 }, 20122 { 20123 CounterId: 499, 20124 Instance: "host/vim/vmvisor/hostd", 20125 }, 20126 { 20127 CounterId: 476, 20128 Instance: "host/vim/vmvisor/hostd-probe", 20129 }, 20130 { 20131 CounterId: 479, 20132 Instance: "host/vim/vmvisor/init", 20133 }, 20134 { 20135 CounterId: 479, 20136 Instance: "host/system/helper", 20137 }, 20138 { 20139 CounterId: 479, 20140 Instance: "host/vim/vmvisor/hostd-probe", 20141 }, 20142 { 20143 CounterId: 479, 20144 Instance: "host/vim/vmvisor/hostd-probe/stats", 20145 }, 20146 { 20147 CounterId: 500, 20148 Instance: "host/system", 20149 }, 20150 { 20151 CounterId: 480, 20152 Instance: "host/vim/vmvisor/hostd-probe/stats", 20153 }, 20154 { 20155 CounterId: 481, 20156 Instance: "host/vim/vmvisor/hostd-probe/stats", 20157 }, 20158 { 20159 CounterId: 481, 20160 Instance: "host/vim/vmvisor/init", 20161 }, 20162 { 20163 CounterId: 480, 20164 Instance: "host/vim/vmvisor/netcpa", 20165 }, 20166 { 20167 CounterId: 482, 20168 Instance: "host/vim/vmvisor/hostd-probe/stats", 20169 }, 20170 { 20171 CounterId: 500, 20172 Instance: "host/vim/vmvisor/vmfstraced", 20173 }, 20174 { 20175 CounterId: 485, 20176 Instance: "host/vim/vmvisor/hostd-probe/stats", 20177 }, 20178 { 20179 CounterId: 479, 20180 Instance: "host/iofilters", 20181 }, 20182 { 20183 CounterId: 480, 20184 Instance: "host/iofilters", 20185 }, 20186 { 20187 CounterId: 500, 20188 Instance: "host/vim/vmvisor/net-daemons", 20189 }, 20190 { 20191 CounterId: 482, 20192 Instance: "host/iofilters", 20193 }, 20194 { 20195 CounterId: 481, 20196 Instance: "host/vim/vmvisor/nfsgssd", 20197 }, 20198 { 20199 CounterId: 499, 20200 Instance: "host/vim/vmvisor/hostd-probe/stats", 20201 }, 20202 { 20203 CounterId: 500, 20204 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20205 }, 20206 { 20207 CounterId: 480, 20208 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20209 }, 20210 { 20211 CounterId: 484, 20212 Instance: "host/iofilters", 20213 }, 20214 { 20215 CounterId: 476, 20216 Instance: "host/system/helper", 20217 }, 20218 { 20219 CounterId: 481, 20220 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20221 }, 20222 { 20223 CounterId: 499, 20224 Instance: "host/system/drivers", 20225 }, 20226 { 20227 CounterId: 500, 20228 Instance: "host/iofilters/iofiltervpd", 20229 }, 20230 { 20231 CounterId: 482, 20232 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20233 }, 20234 { 20235 CounterId: 483, 20236 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20237 }, 20238 { 20239 CounterId: 482, 20240 Instance: "host/system", 20241 }, 20242 { 20243 CounterId: 483, 20244 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20245 }, 20246 { 20247 CounterId: 499, 20248 Instance: "host/vim/vmvisor/hostd-probe/stats/awk", 20249 }, 20250 { 20251 CounterId: 500, 20252 Instance: "host/vim/vmvisor/nscd", 20253 }, 20254 { 20255 CounterId: 480, 20256 Instance: "host/vim/vmvisor/osfsd", 20257 }, 20258 { 20259 CounterId: 481, 20260 Instance: "host/vim/vmvisor/sfcb", 20261 }, 20262 { 20263 CounterId: 484, 20264 Instance: "host/vim/vimuser/terminal/ssh", 20265 }, 20266 { 20267 CounterId: 480, 20268 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 20269 }, 20270 { 20271 CounterId: 483, 20272 Instance: "host/vim/vmvisor/sioc", 20273 }, 20274 { 20275 CounterId: 476, 20276 Instance: "host/vim/vmvisor/dhclient", 20277 }, 20278 { 20279 CounterId: 483, 20280 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 20281 }, 20282 { 20283 CounterId: 484, 20284 Instance: "host/iofilters/iofiltervpd", 20285 }, 20286 { 20287 CounterId: 484, 20288 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 20289 }, 20290 { 20291 CounterId: 479, 20292 Instance: "host/iofilters/iofiltervpd", 20293 }, 20294 { 20295 CounterId: 485, 20296 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 20297 }, 20298 { 20299 CounterId: 483, 20300 Instance: "host/system/kernel/tmp", 20301 }, 20302 { 20303 CounterId: 499, 20304 Instance: "host/vim/vmvisor/hostd-probe/stats/head", 20305 }, 20306 { 20307 CounterId: 500, 20308 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 20309 }, 20310 { 20311 CounterId: 500, 20312 Instance: "host/vim/vmvisor/vpxa", 20313 }, 20314 { 20315 CounterId: 485, 20316 Instance: "host/vim/vmvisor/lacpd", 20317 }, 20318 { 20319 CounterId: 481, 20320 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 20321 }, 20322 { 20323 CounterId: 480, 20324 Instance: "host/vim/vmvisor/likewise", 20325 }, 20326 { 20327 CounterId: 480, 20328 Instance: "host/iofilters/iofiltervpd", 20329 }, 20330 { 20331 CounterId: 481, 20332 Instance: "host/iofilters/iofiltervpd", 20333 }, 20334 { 20335 CounterId: 483, 20336 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 20337 }, 20338 { 20339 CounterId: 479, 20340 Instance: "host/vim/vmvisor/usbArbitrator", 20341 }, 20342 { 20343 CounterId: 499, 20344 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 20345 }, 20346 { 20347 CounterId: 500, 20348 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20349 }, 20350 { 20351 CounterId: 482, 20352 Instance: "host/system/ft", 20353 }, 20354 { 20355 CounterId: 476, 20356 Instance: "host/vim/vmvisor/net-daemons", 20357 }, 20358 { 20359 CounterId: 479, 20360 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20361 }, 20362 { 20363 CounterId: 481, 20364 Instance: "host/vim/vmvisor", 20365 }, 20366 { 20367 CounterId: 482, 20368 Instance: "host/iofilters/iofiltervpd", 20369 }, 20370 { 20371 CounterId: 480, 20372 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20373 }, 20374 { 20375 CounterId: 481, 20376 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20377 }, 20378 { 20379 CounterId: 483, 20380 Instance: "host/vim/vmvisor/usbArbitrator", 20381 }, 20382 { 20383 CounterId: 482, 20384 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20385 }, 20386 { 20387 CounterId: 484, 20388 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20389 }, 20390 { 20391 CounterId: 485, 20392 Instance: "host/vim/vmvisor/hostd-probe/stats/ls", 20393 }, 20394 { 20395 CounterId: 476, 20396 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 20397 }, 20398 { 20399 CounterId: 483, 20400 Instance: "host/vim/vmvisor/pcscd", 20401 }, 20402 { 20403 CounterId: 482, 20404 Instance: "host/vim/vmvisor/hostd-probe/stats/pgrep", 20405 }, 20406 { 20407 CounterId: 480, 20408 Instance: "host/vim/vmvisor/sioc", 20409 }, 20410 { 20411 CounterId: 483, 20412 Instance: "host/iofilters/iofiltervpd", 20413 }, 20414 { 20415 CounterId: 500, 20416 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20417 }, 20418 { 20419 CounterId: 479, 20420 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20421 }, 20422 { 20423 CounterId: 481, 20424 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20425 }, 20426 { 20427 CounterId: 479, 20428 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20429 }, 20430 { 20431 CounterId: 482, 20432 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20433 }, 20434 { 20435 CounterId: 500, 20436 Instance: "host/system/kernel/etc", 20437 }, 20438 { 20439 CounterId: 483, 20440 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20441 }, 20442 { 20443 CounterId: 485, 20444 Instance: "host/iofilters/iofiltervpd", 20445 }, 20446 { 20447 CounterId: 485, 20448 Instance: "host/vim/vmvisor/hostd-probe/stats/probe", 20449 }, 20450 { 20451 CounterId: 480, 20452 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20453 }, 20454 { 20455 CounterId: 481, 20456 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20457 }, 20458 { 20459 CounterId: 482, 20460 Instance: "host/vim/vmvisor/netcpa", 20461 }, 20462 { 20463 CounterId: 480, 20464 Instance: "host/vim/vmvisor/vvoltraced", 20465 }, 20466 { 20467 CounterId: 481, 20468 Instance: "host/system/kernel", 20469 }, 20470 { 20471 CounterId: 483, 20472 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20473 }, 20474 { 20475 CounterId: 485, 20476 Instance: "host/vim/vmvisor/sioc", 20477 }, 20478 { 20479 CounterId: 485, 20480 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20481 }, 20482 { 20483 CounterId: 500, 20484 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 20485 }, 20486 { 20487 CounterId: 481, 20488 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 20489 }, 20490 { 20491 CounterId: 482, 20492 Instance: "host/vim/tmp", 20493 }, 20494 { 20495 CounterId: 483, 20496 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 20497 }, 20498 { 20499 CounterId: 483, 20500 Instance: "host/vim/vimuser/terminal/ssh", 20501 }, 20502 { 20503 CounterId: 476, 20504 Instance: "host/vim/vmvisor/vmfstraced", 20505 }, 20506 { 20507 CounterId: 499, 20508 Instance: "host/vim/vmvisor/hostd-probe/stats/vmkbacktrace", 20509 }, 20510 { 20511 CounterId: 499, 20512 Instance: "host/iofilters/iofiltervpd", 20513 }, 20514 { 20515 CounterId: 476, 20516 Instance: "host/vim/vmvisor/nfsgssd", 20517 }, 20518 { 20519 CounterId: 479, 20520 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 20521 }, 20522 { 20523 CounterId: 480, 20524 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 20525 }, 20526 { 20527 CounterId: 482, 20528 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 20529 }, 20530 { 20531 CounterId: 499, 20532 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 20533 }, 20534 { 20535 CounterId: 481, 20536 Instance: "host/vim/vmvisor/hostdCgiServer", 20537 }, 20538 { 20539 CounterId: 499, 20540 Instance: "host/vim/vmvisor/hostdCgiServer", 20541 }, 20542 { 20543 CounterId: 482, 20544 Instance: "host/vim/vmvisor/init", 20545 }, 20546 { 20547 CounterId: 482, 20548 Instance: "host/vim/vmvisor/hbrca", 20549 }, 20550 { 20551 CounterId: 483, 20552 Instance: "host/vim/vmvisor/init", 20553 }, 20554 { 20555 CounterId: 482, 20556 Instance: "host/vim/vmvisor/vmkdevmgr", 20557 }, 20558 { 20559 CounterId: 481, 20560 Instance: "host/vim/vmvisor/vmfstraced", 20561 }, 20562 { 20563 CounterId: 484, 20564 Instance: "host/vim/vmvisor/sioc", 20565 }, 20566 { 20567 CounterId: 476, 20568 Instance: "host/vim/vmvisor/lacpd", 20569 }, 20570 { 20571 CounterId: 479, 20572 Instance: "host/vim/vmvisor/lacpd", 20573 }, 20574 { 20575 CounterId: 480, 20576 Instance: "host/iofilters/vmwarevmcrypt", 20577 }, 20578 { 20579 CounterId: 480, 20580 Instance: "host/vim/vmvisor/lacpd", 20581 }, 20582 { 20583 CounterId: 480, 20584 Instance: "host/vim/vmvisor/nscd", 20585 }, 20586 { 20587 CounterId: 483, 20588 Instance: "host/vim/vmvisor/lacpd", 20589 }, 20590 { 20591 CounterId: 482, 20592 Instance: "host/vim/vmvisor/uwdaemons", 20593 }, 20594 { 20595 CounterId: 484, 20596 Instance: "host/vim/vmvisor/lacpd", 20597 }, 20598 { 20599 CounterId: 500, 20600 Instance: "host/system/drivers", 20601 }, 20602 { 20603 CounterId: 499, 20604 Instance: "host/vim/vmvisor/lacpd", 20605 }, 20606 { 20607 CounterId: 476, 20608 Instance: "host/vim/vmvisor/lbt", 20609 }, 20610 { 20611 CounterId: 499, 20612 Instance: "host/system/kernel/opt", 20613 }, 20614 { 20615 CounterId: 481, 20616 Instance: "host/vim/vmvisor/lbt", 20617 }, 20618 { 20619 CounterId: 482, 20620 Instance: "host/vim/vmvisor/lbt", 20621 }, 20622 { 20623 CounterId: 483, 20624 Instance: "host/vim/vmvisor/lbt", 20625 }, 20626 { 20627 CounterId: 484, 20628 Instance: "host/vim/vmvisor/vmkiscsid", 20629 }, 20630 { 20631 CounterId: 484, 20632 Instance: "host/vim/vmvisor/lbt", 20633 }, 20634 { 20635 CounterId: 479, 20636 Instance: "host/vim/vmvisor/nscd", 20637 }, 20638 { 20639 CounterId: 483, 20640 Instance: "host/vim/vmvisor/upitd", 20641 }, 20642 { 20643 CounterId: 481, 20644 Instance: "host/iofilters/vmwarevmcrypt", 20645 }, 20646 { 20647 CounterId: 479, 20648 Instance: "host/system/kernel/etc", 20649 }, 20650 { 20651 CounterId: 499, 20652 Instance: "host/vim/vmvisor/sfcb_aux", 20653 }, 20654 { 20655 CounterId: 485, 20656 Instance: "host/vim/vmvisor/lbt", 20657 }, 20658 { 20659 CounterId: 476, 20660 Instance: "host/vim/vmvisor/likewise", 20661 }, 20662 { 20663 CounterId: 482, 20664 Instance: "host/iofilters/vmwarevmcrypt", 20665 }, 20666 { 20667 CounterId: 476, 20668 Instance: "host/vim/vmvisor/aam", 20669 }, 20670 { 20671 CounterId: 476, 20672 Instance: "host/vim/vmvisor/hostd-probe/stats/vsish", 20673 }, 20674 { 20675 CounterId: 479, 20676 Instance: "host/vim/vmvisor/likewise", 20677 }, 20678 { 20679 CounterId: 482, 20680 Instance: "host/vim/vmvisor/likewise", 20681 }, 20682 { 20683 CounterId: 484, 20684 Instance: "host/vim/vmvisor/likewise", 20685 }, 20686 { 20687 CounterId: 484, 20688 Instance: "host/iofilters/vmwarevmcrypt", 20689 }, 20690 { 20691 CounterId: 485, 20692 Instance: "host/vim/vmvisor/memScrubber", 20693 }, 20694 { 20695 CounterId: 485, 20696 Instance: "host/vim/vmvisor/likewise", 20697 }, 20698 { 20699 CounterId: 476, 20700 Instance: "host/vim/vmvisor/snmpd", 20701 }, 20702 { 20703 CounterId: 483, 20704 Instance: "host/vim/vmvisor/osfsd", 20705 }, 20706 { 20707 CounterId: 482, 20708 Instance: "host/system/kernel/iofilters", 20709 }, 20710 { 20711 CounterId: 500, 20712 Instance: "host/vim/vmvisor/hostd-probe/stats", 20713 }, 20714 { 20715 CounterId: 476, 20716 Instance: "host/vim/vmvisor/logging", 20717 }, 20718 { 20719 CounterId: 479, 20720 Instance: "host/vim/vmvisor/logging", 20721 }, 20722 { 20723 CounterId: 483, 20724 Instance: "host/vim/vmvisor/logging", 20725 }, 20726 { 20727 CounterId: 484, 20728 Instance: "host/vim/vmvisor/logging", 20729 }, 20730 { 20731 CounterId: 485, 20732 Instance: "host/vim/vmvisor/logging", 20733 }, 20734 { 20735 CounterId: 484, 20736 Instance: "host/system/kernel/iofilters", 20737 }, 20738 { 20739 CounterId: 500, 20740 Instance: "host/vim/vmvisor/memScrubber", 20741 }, 20742 { 20743 CounterId: 500, 20744 Instance: "host/vim/vmvisor/hostd-probe", 20745 }, 20746 { 20747 CounterId: 482, 20748 Instance: "host/vim/vmvisor/memScrubber", 20749 }, 20750 { 20751 CounterId: 480, 20752 Instance: "host/system/kernel/root", 20753 }, 20754 { 20755 CounterId: 482, 20756 Instance: "host/vim/vmvisor/net-daemons", 20757 }, 20758 { 20759 CounterId: 484, 20760 Instance: "host/vim/vmvisor/net-daemons", 20761 }, 20762 { 20763 CounterId: 485, 20764 Instance: "host/vim/vmvisor/net-daemons", 20765 }, 20766 { 20767 CounterId: 499, 20768 Instance: "host/vim/vmvisor/net-daemons", 20769 }, 20770 { 20771 CounterId: 485, 20772 Instance: "host/iofilters/vmwarevmcrypt", 20773 }, 20774 { 20775 CounterId: 481, 20776 Instance: "host/vim/vmvisor/netcpa", 20777 }, 20778 { 20779 CounterId: 484, 20780 Instance: "host/vim/vimuser/terminal/shell", 20781 }, 20782 { 20783 CounterId: 483, 20784 Instance: "host/vim/vmvisor/netcpa", 20785 }, 20786 { 20787 CounterId: 479, 20788 Instance: "host/system/ft", 20789 }, 20790 { 20791 CounterId: 479, 20792 Instance: "host/vim/vmvisor/sfcb", 20793 }, 20794 { 20795 CounterId: 481, 20796 Instance: "host/vim/vmvisor/osfsd", 20797 }, 20798 { 20799 CounterId: 484, 20800 Instance: "host/vim/vmvisor/netcpa", 20801 }, 20802 { 20803 CounterId: 499, 20804 Instance: "host/vim/vmvisor/netcpa", 20805 }, 20806 { 20807 CounterId: 499, 20808 Instance: "host/iofilters/vmwarevmcrypt", 20809 }, 20810 { 20811 CounterId: 476, 20812 Instance: "host/vim/vmvisor/sensord", 20813 }, 20814 { 20815 CounterId: 479, 20816 Instance: "host/vim/vmvisor/swapobjd", 20817 }, 20818 { 20819 CounterId: 500, 20820 Instance: "host/vim/vmvisor/nfcd", 20821 }, 20822 { 20823 CounterId: 476, 20824 Instance: "host/vim/vmvisor/hostd-probe/stats/sh", 20825 }, 20826 { 20827 CounterId: 479, 20828 Instance: "host", 20829 }, 20830 { 20831 CounterId: 476, 20832 Instance: "host/vim/vmvisor/nfcd", 20833 }, 20834 { 20835 CounterId: 485, 20836 Instance: "host/vim/vmvisor/vvoltraced", 20837 }, 20838 { 20839 CounterId: 476, 20840 Instance: "host/system/kernel/etc", 20841 }, 20842 { 20843 CounterId: 481, 20844 Instance: "host/vim/vmvisor/nfcd", 20845 }, 20846 { 20847 CounterId: 484, 20848 Instance: "host/vim/vmvisor/vmkdevmgr", 20849 }, 20850 { 20851 CounterId: 500, 20852 Instance: "host/iofilters/spm", 20853 }, 20854 { 20855 CounterId: 482, 20856 Instance: "host/vim/vmvisor/nfcd", 20857 }, 20858 { 20859 CounterId: 476, 20860 Instance: "host/iofilters/spm", 20861 }, 20862 { 20863 CounterId: 483, 20864 Instance: "host/vim/vmvisor/nfcd", 20865 }, 20866 { 20867 CounterId: 482, 20868 Instance: "host/vim/vmvisor/dcui", 20869 }, 20870 { 20871 CounterId: 485, 20872 Instance: "host/vim/vmvisor/nfcd", 20873 }, 20874 { 20875 CounterId: 500, 20876 Instance: "host/vim/vmvisor/nfsgssd", 20877 }, 20878 { 20879 CounterId: 479, 20880 Instance: "host/vim/vmvisor/nfsgssd", 20881 }, 20882 { 20883 CounterId: 480, 20884 Instance: "host/vim/vmvisor/nfsgssd", 20885 }, 20886 { 20887 CounterId: 483, 20888 Instance: "host/vim/vmvisor/nfsgssd", 20889 }, 20890 { 20891 CounterId: 484, 20892 Instance: "host/vim/vmvisor/upittraced", 20893 }, 20894 { 20895 CounterId: 484, 20896 Instance: "host/vim/vmvisor/nfsgssd", 20897 }, 20898 { 20899 CounterId: 485, 20900 Instance: "host/vim/vmvisor/nfsgssd", 20901 }, 20902 { 20903 CounterId: 480, 20904 Instance: "host/iofilters/spm", 20905 }, 20906 { 20907 CounterId: 499, 20908 Instance: "host/vim/vmvisor/nfsgssd", 20909 }, 20910 { 20911 CounterId: 476, 20912 Instance: "host/vim/vmvisor/nscd", 20913 }, 20914 { 20915 CounterId: 485, 20916 Instance: "host/vim/vmvisor/hostd-probe", 20917 }, 20918 { 20919 CounterId: 481, 20920 Instance: "host/vim/vmvisor/rabbitmqproxy", 20921 }, 20922 { 20923 CounterId: 479, 20924 Instance: "host/vim/vmvisor/sioc", 20925 }, 20926 { 20927 CounterId: 481, 20928 Instance: "host/vim/vmvisor/nscd", 20929 }, 20930 { 20931 CounterId: 484, 20932 Instance: "host/vim/vmvisor/nscd", 20933 }, 20934 { 20935 CounterId: 499, 20936 Instance: "host/iofilters/spm", 20937 }, 20938 { 20939 CounterId: 500, 20940 Instance: "host/system/kernel/iofilters", 20941 }, 20942 { 20943 CounterId: 485, 20944 Instance: "host/vim/vmvisor/nscd", 20945 }, 20946 { 20947 CounterId: 500, 20948 Instance: "host/vim/vmvisor/sioc", 20949 }, 20950 { 20951 CounterId: 499, 20952 Instance: "host/vim/vmvisor/nscd", 20953 }, 20954 { 20955 CounterId: 481, 20956 Instance: "host/vim/vmvisor/net-daemons", 20957 }, 20958 { 20959 CounterId: 500, 20960 Instance: "host/vim/vmvisor/ntpd", 20961 }, 20962 { 20963 CounterId: 476, 20964 Instance: "host/vim/vmvisor/ntpd", 20965 }, 20966 { 20967 CounterId: 476, 20968 Instance: "host/user", 20969 }, 20970 { 20971 CounterId: 479, 20972 Instance: "host/vim/vmvisor/ntpd", 20973 }, 20974 { 20975 CounterId: 480, 20976 Instance: "host/vim/vmvisor/ntpd", 20977 }, 20978 { 20979 CounterId: 481, 20980 Instance: "host/vim/vmvisor/ntpd", 20981 }, 20982 { 20983 CounterId: 499, 20984 Instance: "host/vim/vmvisor/boot", 20985 }, 20986 { 20987 CounterId: 483, 20988 Instance: "host/vim/vmvisor/ntpd", 20989 }, 20990 { 20991 CounterId: 483, 20992 Instance: "host/vim/vmvisor/memScrubber", 20993 }, 20994 { 20995 CounterId: 479, 20996 Instance: "host/vim/vmvisor/osfsd", 20997 }, 20998 { 20999 CounterId: 479, 21000 Instance: "host/vim/vmvisor/sensord", 21001 }, 21002 { 21003 CounterId: 476, 21004 Instance: "host/vim/vmvisor/pcscd", 21005 }, 21006 { 21007 CounterId: 481, 21008 Instance: "host/vim/vmvisor/pcscd", 21009 }, 21010 { 21011 CounterId: 481, 21012 Instance: "host/vim/vmvisor/vvold", 21013 }, 21014 { 21015 CounterId: 481, 21016 Instance: "host/vim/vmvisor/sensord", 21017 }, 21018 { 21019 CounterId: 485, 21020 Instance: "host/vim/vmvisor/sfcb", 21021 }, 21022 { 21023 CounterId: 484, 21024 Instance: "host/vim/vmvisor/pcscd", 21025 }, 21026 { 21027 CounterId: 485, 21028 Instance: "host/vim/vmvisor/pcscd", 21029 }, 21030 { 21031 CounterId: 482, 21032 Instance: "host/vim/vmvisor/vmkeventd", 21033 }, 21034 { 21035 CounterId: 499, 21036 Instance: "host/vim/vmvisor/pcscd", 21037 }, 21038 { 21039 CounterId: 476, 21040 Instance: "host/vim/vmvisor/plugins", 21041 }, 21042 { 21043 CounterId: 481, 21044 Instance: "host/user", 21045 }, 21046 { 21047 CounterId: 479, 21048 Instance: "host/vim/vmvisor/plugins", 21049 }, 21050 { 21051 CounterId: 480, 21052 Instance: "host/system", 21053 }, 21054 { 21055 CounterId: 481, 21056 Instance: "host/vim/vmvisor/plugins", 21057 }, 21058 { 21059 CounterId: 499, 21060 Instance: "host/vim/vmvisor/nfcd", 21061 }, 21062 { 21063 CounterId: 484, 21064 Instance: "host/vim/vmvisor/plugins", 21065 }, 21066 { 21067 CounterId: 482, 21068 Instance: "host/user", 21069 }, 21070 { 21071 CounterId: 476, 21072 Instance: "host/vim/vmvisor/rabbitmqproxy", 21073 }, 21074 { 21075 CounterId: 480, 21076 Instance: "host/vim/vmvisor/sensord", 21077 }, 21078 { 21079 CounterId: 483, 21080 Instance: "host/vim/vmvisor/sensord", 21081 }, 21082 { 21083 CounterId: 499, 21084 Instance: "host/vim/vmvisor/sensord", 21085 }, 21086 { 21087 CounterId: 500, 21088 Instance: "host/vim/vmvisor/sfcb", 21089 }, 21090 { 21091 CounterId: 484, 21092 Instance: "host/user", 21093 }, 21094 { 21095 CounterId: 480, 21096 Instance: "host/vim/vmvisor/sfcb", 21097 }, 21098 { 21099 CounterId: 482, 21100 Instance: "host/vim/vmvisor/sfcb", 21101 }, 21102 { 21103 CounterId: 483, 21104 Instance: "host/vim/vmvisor/vvoltraced", 21105 }, 21106 { 21107 CounterId: 483, 21108 Instance: "host/vim/vmvisor/swapobjd", 21109 }, 21110 { 21111 CounterId: 483, 21112 Instance: "host/vim/vmvisor/sfcb", 21113 }, 21114 { 21115 CounterId: 476, 21116 Instance: "host/vim/vmvisor/osfsd", 21117 }, 21118 { 21119 CounterId: 485, 21120 Instance: "host/user", 21121 }, 21122 { 21123 CounterId: 479, 21124 Instance: "host/vim/vmvisor/sfcb_aux", 21125 }, 21126 { 21127 CounterId: 480, 21128 Instance: "host/vim/vmvisor/sfcb_aux", 21129 }, 21130 { 21131 CounterId: 476, 21132 Instance: "host/vim/vmvisor/hostd-probe/stats/logger", 21133 }, 21134 { 21135 CounterId: 481, 21136 Instance: "host/vim/vmvisor/sfcb_aux", 21137 }, 21138 { 21139 CounterId: 499, 21140 Instance: "host/vim/vimuser", 21141 }, 21142 { 21143 CounterId: 482, 21144 Instance: "host/vim/vmvisor/sfcb_aux", 21145 }, 21146 { 21147 CounterId: 479, 21148 Instance: "host/vim/vmvisor/rabbitmqproxy", 21149 }, 21150 { 21151 CounterId: 483, 21152 Instance: "host/vim/vmvisor/sfcb_aux", 21153 }, 21154 { 21155 CounterId: 485, 21156 Instance: "host/vim/vmvisor/sfcb_aux", 21157 }, 21158 { 21159 CounterId: 499, 21160 Instance: "host/vim/vmvisor/vmfstraced", 21161 }, 21162 { 21163 CounterId: 541, 21164 Instance: "vfc", 21165 }, 21166 } 21167 21168 // ************************************** Cluster Metrics ************************************** 21169 var ClusterMetrics = []types.PerfMetricId{ 21170 { 21171 CounterId: 22, 21172 Instance: "", 21173 }, 21174 { 21175 CounterId: 2, 21176 Instance: "", 21177 }, 21178 { 21179 CounterId: 9, 21180 Instance: "", 21181 }, 21182 { 21183 CounterId: 7, 21184 Instance: "", 21185 }, 21186 { 21187 CounterId: 8, 21188 Instance: "", 21189 }, 21190 { 21191 CounterId: 3, 21192 Instance: "", 21193 }, 21194 { 21195 CounterId: 4, 21196 Instance: "", 21197 }, 21198 { 21199 CounterId: 15, 21200 Instance: "", 21201 }, 21202 { 21203 CounterId: 17, 21204 Instance: "", 21205 }, 21206 { 21207 CounterId: 18, 21208 Instance: "", 21209 }, 21210 { 21211 CounterId: 19, 21212 Instance: "", 21213 }, 21214 { 21215 CounterId: 20, 21216 Instance: "", 21217 }, 21218 { 21219 CounterId: 21, 21220 Instance: "", 21221 }, 21222 { 21223 CounterId: 6, 21224 Instance: "", 21225 }, 21226 { 21227 CounterId: 139, 21228 Instance: "", 21229 }, 21230 { 21231 CounterId: 138, 21232 Instance: "", 21233 }, 21234 { 21235 CounterId: 107, 21236 Instance: "", 21237 }, 21238 { 21239 CounterId: 29, 21240 Instance: "", 21241 }, 21242 { 21243 CounterId: 33, 21244 Instance: "", 21245 }, 21246 { 21247 CounterId: 37, 21248 Instance: "", 21249 }, 21250 { 21251 CounterId: 41, 21252 Instance: "", 21253 }, 21254 { 21255 CounterId: 49, 21256 Instance: "", 21257 }, 21258 { 21259 CounterId: 90, 21260 Instance: "", 21261 }, 21262 { 21263 CounterId: 105, 21264 Instance: "", 21265 }, 21266 { 21267 CounterId: 106, 21268 Instance: "", 21269 }, 21270 { 21271 CounterId: 27, 21272 Instance: "", 21273 }, 21274 { 21275 CounterId: 108, 21276 Instance: "", 21277 }, 21278 { 21279 CounterId: 110, 21280 Instance: "", 21281 }, 21282 { 21283 CounterId: 111, 21284 Instance: "", 21285 }, 21286 { 21287 CounterId: 109, 21288 Instance: "", 21289 }, 21290 { 21291 CounterId: 112, 21292 Instance: "", 21293 }, 21294 { 21295 CounterId: 25, 21296 Instance: "", 21297 }, 21298 { 21299 CounterId: 103, 21300 Instance: "", 21301 }, 21302 { 21303 CounterId: 99, 21304 Instance: "", 21305 }, 21306 { 21307 CounterId: 30, 21308 Instance: "", 21309 }, 21310 { 21311 CounterId: 34, 21312 Instance: "", 21313 }, 21314 { 21315 CounterId: 38, 21316 Instance: "", 21317 }, 21318 { 21319 CounterId: 42, 21320 Instance: "", 21321 }, 21322 { 21323 CounterId: 50, 21324 Instance: "", 21325 }, 21326 { 21327 CounterId: 98, 21328 Instance: "", 21329 }, 21330 { 21331 CounterId: 26, 21332 Instance: "", 21333 }, 21334 { 21335 CounterId: 104, 21336 Instance: "", 21337 }, 21338 { 21339 CounterId: 100, 21340 Instance: "", 21341 }, 21342 { 21343 CounterId: 31, 21344 Instance: "", 21345 }, 21346 { 21347 CounterId: 102, 21348 Instance: "", 21349 }, 21350 { 21351 CounterId: 39, 21352 Instance: "", 21353 }, 21354 { 21355 CounterId: 43, 21356 Instance: "", 21357 }, 21358 { 21359 CounterId: 51, 21360 Instance: "", 21361 }, 21362 { 21363 CounterId: 92, 21364 Instance: "", 21365 }, 21366 { 21367 CounterId: 24, 21368 Instance: "", 21369 }, 21370 { 21371 CounterId: 35, 21372 Instance: "", 21373 }, 21374 { 21375 CounterId: 91, 21376 Instance: "", 21377 }, 21378 { 21379 CounterId: 153, 21380 Instance: "", 21381 }, 21382 { 21383 CounterId: 152, 21384 Instance: "", 21385 }, 21386 { 21387 CounterId: 151, 21388 Instance: "", 21389 }, 21390 { 21391 CounterId: 150, 21392 Instance: "", 21393 }, 21394 { 21395 CounterId: 157, 21396 Instance: "", 21397 }, 21398 { 21399 CounterId: 158, 21400 Instance: "", 21401 }, 21402 { 21403 CounterId: 159, 21404 Instance: "", 21405 }, 21406 { 21407 CounterId: 262, 21408 Instance: "", 21409 }, 21410 { 21411 CounterId: 257, 21412 Instance: "", 21413 }, 21414 { 21415 CounterId: 258, 21416 Instance: "", 21417 }, 21418 { 21419 CounterId: 259, 21420 Instance: "", 21421 }, 21422 { 21423 CounterId: 260, 21424 Instance: "", 21425 }, 21426 { 21427 CounterId: 261, 21428 Instance: "", 21429 }, 21430 { 21431 CounterId: 256, 21432 Instance: "", 21433 }, 21434 { 21435 CounterId: 263, 21436 Instance: "", 21437 }, 21438 { 21439 CounterId: 264, 21440 Instance: "", 21441 }, 21442 { 21443 CounterId: 265, 21444 Instance: "", 21445 }, 21446 { 21447 CounterId: 266, 21448 Instance: "", 21449 }, 21450 { 21451 CounterId: 267, 21452 Instance: "", 21453 }, 21454 { 21455 CounterId: 268, 21456 Instance: "", 21457 }, 21458 { 21459 CounterId: 269, 21460 Instance: "", 21461 }, 21462 { 21463 CounterId: 270, 21464 Instance: "", 21465 }, 21466 { 21467 CounterId: 271, 21468 Instance: "", 21469 }, 21470 { 21471 CounterId: 272, 21472 Instance: "", 21473 }, 21474 { 21475 CounterId: 273, 21476 Instance: "", 21477 }, 21478 { 21479 CounterId: 274, 21480 Instance: "", 21481 }, 21482 { 21483 CounterId: 275, 21484 Instance: "", 21485 }, 21486 } 21487 21488 // *************************************** Datastore metrics **************************************** 21489 var DatastoreMetrics = []types.PerfMetricId{ 21490 { 21491 CounterId: 178, 21492 Instance: "", 21493 }, 21494 { 21495 CounterId: 188, 21496 Instance: "", 21497 }, 21498 { 21499 CounterId: 187, 21500 Instance: "", 21501 }, 21502 { 21503 CounterId: 181, 21504 Instance: "", 21505 }, 21506 { 21507 CounterId: 180, 21508 Instance: "", 21509 }, 21510 { 21511 CounterId: 179, 21512 Instance: "", 21513 }, 21514 { 21515 CounterId: 281, 21516 Instance: "", 21517 }, 21518 { 21519 CounterId: 281, 21520 Instance: "$file", 21521 }, 21522 21523 { 21524 CounterId: 282, 21525 Instance: "", 21526 }, 21527 { 21528 CounterId: 282, 21529 Instance: "$file", 21530 }, 21531 { 21532 CounterId: 283, 21533 Instance: "", 21534 }, 21535 { 21536 CounterId: 284, 21537 Instance: "", 21538 }, 21539 { 21540 CounterId: 284, 21541 Instance: "$file", 21542 }, 21543 21544 { 21545 CounterId: 288, 21546 Instance: "", 21547 }, 21548 { 21549 CounterId: 286, 21550 Instance: "", 21551 }, 21552 { 21553 CounterId: 287, 21554 Instance: "", 21555 }, 21556 { 21557 CounterId: 287, 21558 Instance: "$file", 21559 }, 21560 } 21561 21562 // ********************************************* Resource pool metrics *********************************** 21563 var ResourcePoolMetrics = []types.PerfMetricId{ 21564 { 21565 CounterId: 6, 21566 Instance: "", 21567 }, 21568 { 21569 CounterId: 213, 21570 Instance: "", 21571 }, 21572 { 21573 CounterId: 7, 21574 Instance: "", 21575 }, 21576 { 21577 CounterId: 8, 21578 Instance: "", 21579 }, 21580 { 21581 CounterId: 16, 21582 Instance: "", 21583 }, 21584 { 21585 CounterId: 17, 21586 Instance: "", 21587 }, 21588 { 21589 CounterId: 18, 21590 Instance: "", 21591 }, 21592 { 21593 CounterId: 19, 21594 Instance: "", 21595 }, 21596 { 21597 CounterId: 20, 21598 Instance: "", 21599 }, 21600 { 21601 CounterId: 22, 21602 Instance: "", 21603 }, 21604 { 21605 CounterId: 138, 21606 Instance: "", 21607 }, 21608 { 21609 CounterId: 139, 21610 Instance: "", 21611 }, 21612 { 21613 CounterId: 112, 21614 Instance: "", 21615 }, 21616 { 21617 CounterId: 102, 21618 Instance: "", 21619 }, 21620 { 21621 CounterId: 98, 21622 Instance: "", 21623 }, 21624 { 21625 CounterId: 29, 21626 Instance: "", 21627 }, 21628 { 21629 CounterId: 33, 21630 Instance: "", 21631 }, 21632 { 21633 CounterId: 37, 21634 Instance: "", 21635 }, 21636 { 21637 CounterId: 41, 21638 Instance: "", 21639 }, 21640 { 21641 CounterId: 70, 21642 Instance: "", 21643 }, 21644 { 21645 CounterId: 90, 21646 Instance: "", 21647 }, 21648 { 21649 CounterId: 108, 21650 Instance: "", 21651 }, 21652 { 21653 CounterId: 109, 21654 Instance: "", 21655 }, 21656 { 21657 CounterId: 111, 21658 Instance: "", 21659 }, 21660 { 21661 CounterId: 214, 21662 Instance: "", 21663 }, 21664 { 21665 CounterId: 105, 21666 Instance: "", 21667 }, 21668 { 21669 CounterId: 106, 21670 Instance: "", 21671 }, 21672 { 21673 CounterId: 107, 21674 Instance: "", 21675 }, 21676 { 21677 CounterId: 103, 21678 Instance: "", 21679 }, 21680 { 21681 CounterId: 99, 21682 Instance: "", 21683 }, 21684 { 21685 CounterId: 30, 21686 Instance: "", 21687 }, 21688 { 21689 CounterId: 34, 21690 Instance: "", 21691 }, 21692 { 21693 CounterId: 38, 21694 Instance: "", 21695 }, 21696 { 21697 CounterId: 42, 21698 Instance: "", 21699 }, 21700 { 21701 CounterId: 71, 21702 Instance: "", 21703 }, 21704 { 21705 CounterId: 92, 21706 Instance: "", 21707 }, 21708 { 21709 CounterId: 104, 21710 Instance: "", 21711 }, 21712 { 21713 CounterId: 100, 21714 Instance: "", 21715 }, 21716 { 21717 CounterId: 31, 21718 Instance: "", 21719 }, 21720 { 21721 CounterId: 35, 21722 Instance: "", 21723 }, 21724 { 21725 CounterId: 39, 21726 Instance: "", 21727 }, 21728 { 21729 CounterId: 43, 21730 Instance: "", 21731 }, 21732 { 21733 CounterId: 72, 21734 Instance: "", 21735 }, 21736 { 21737 CounterId: 91, 21738 Instance: "", 21739 }, 21740 { 21741 CounterId: 152, 21742 Instance: "", 21743 }, 21744 { 21745 CounterId: 153, 21746 Instance: "", 21747 }, 21748 { 21749 CounterId: 157, 21750 Instance: "", 21751 }, 21752 { 21753 CounterId: 159, 21754 Instance: "", 21755 }, 21756 } 21757 21758 // ********************************************* Datacenter metrics *********************************** 21759 var DatacenterMetrics = []types.PerfMetricId{ 21760 { 21761 CounterId: 256, 21762 Instance: "", 21763 }, 21764 { 21765 CounterId: 257, 21766 Instance: "", 21767 }, 21768 { 21769 CounterId: 258, 21770 Instance: "", 21771 }, 21772 { 21773 CounterId: 259, 21774 Instance: "", 21775 }, 21776 { 21777 CounterId: 260, 21778 Instance: "", 21779 }, 21780 { 21781 CounterId: 261, 21782 Instance: "", 21783 }, 21784 { 21785 CounterId: 262, 21786 Instance: "", 21787 }, 21788 { 21789 CounterId: 263, 21790 Instance: "", 21791 }, 21792 { 21793 CounterId: 264, 21794 Instance: "", 21795 }, 21796 { 21797 CounterId: 265, 21798 Instance: "", 21799 }, 21800 { 21801 CounterId: 266, 21802 Instance: "", 21803 }, 21804 { 21805 CounterId: 267, 21806 Instance: "", 21807 }, 21808 { 21809 CounterId: 268, 21810 Instance: "", 21811 }, 21812 { 21813 CounterId: 269, 21814 Instance: "", 21815 }, 21816 { 21817 CounterId: 270, 21818 Instance: "", 21819 }, 21820 { 21821 CounterId: 271, 21822 Instance: "", 21823 }, 21824 { 21825 CounterId: 272, 21826 Instance: "", 21827 }, 21828 { 21829 CounterId: 273, 21830 Instance: "", 21831 }, 21832 { 21833 CounterId: 274, 21834 Instance: "", 21835 }, 21836 { 21837 CounterId: 275, 21838 Instance: "", 21839 }, 21840 }