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