From 3c34324e16bf169cb267277a14060043b236b56c Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Fri, 5 Feb 2021 15:30:46 -0500 Subject: [PATCH 1/6] Add checks for datastore Ensure that datastore check gets called Add unit tests for the same --- pkg/check/datastore.go | 114 ++++++++++++++++++++++++++++++++++-- pkg/check/datastore_test.go | 36 +++++++++++- pkg/check/framework_test.go | 2 +- 3 files changed, 144 insertions(+), 8 deletions(-) diff --git a/pkg/check/datastore.go b/pkg/check/datastore.go index a7c44d87..2dd28fc2 100644 --- a/pkg/check/datastore.go +++ b/pkg/check/datastore.go @@ -6,10 +6,15 @@ import ( "os/exec" "strings" + "github.com/vmware/govmomi/object" + "github.com/vmware/govmomi/property" + configv1 "github.com/openshift/api/config/v1" + "github.com/vmware/govmomi/find" "github.com/vmware/govmomi/pbm" "github.com/vmware/govmomi/pbm/types" "github.com/vmware/govmomi/view" + "github.com/vmware/govmomi/vim25/mo" vim "github.com/vmware/govmomi/vim25/types" "k8s.io/klog/v2" ) @@ -17,11 +22,13 @@ import ( const ( dsParameter = "datastore" storagePolicyParameter = "storagepolicyname" - // Maximum length of -dynamic-pvc- for volume names. // Kubernetes uses 90, https://github.com/kubernetes/kubernetes/blob/93d288e2a47fa6d497b50d37c8b3a04e91da4228/pkg/volume/vsphere_volume/vsphere_volume_util.go#L100 // Using 63 to work around https://bugzilla.redhat.com/show_bug.cgi?id=1926943 - maxVolumeName = 63 + maxVolumeName = 63 + dataCenterType = "Datacenter" + DatastoreInfoProperty = "info" + SummaryProperty = "summary" ) // CheckStorageClasses tests that datastore name in all StorageClasses in the cluster is short enough. @@ -47,7 +54,7 @@ func CheckStorageClasses(ctx *CheckContext) error { for k, v := range sc.Parameters { switch strings.ToLower(k) { case dsParameter: - if err := checkDataStore(v, infra); err != nil { + if err := checkDataStore(ctx, v, infra); err != nil { klog.V(2).Infof("CheckStorageClasses: %s: %s", sc.Name, err) errs = append(errs, fmt.Errorf("StorageClass %s: %s", sc.Name, err)) } @@ -95,7 +102,7 @@ func CheckDefaultDatastore(ctx *CheckContext) error { } dsName := ctx.VMConfig.Workspace.DefaultDatastore - if err := checkDataStore(dsName, infra); err != nil { + if err := checkDataStore(ctx, dsName, infra); err != nil { return fmt.Errorf("defaultDatastore %q in vSphere configuration: %s", dsName, err) } return nil @@ -124,7 +131,7 @@ func checkStoragePolicy(ctx *CheckContext, policyName string, infrastructure *co var errs []error for _, dataStore := range dataStores { - err := checkDataStore(dataStore, infrastructure) + err := checkDataStore(ctx, dataStore, infrastructure) if err != nil { errs = append(errs, fmt.Errorf("storage policy %s: %s", policyName, err)) } @@ -231,7 +238,7 @@ func getPolicy(ctx *CheckContext, name string) ([]types.BasePbmProfile, error) { return c.RetrieveContent(tctx, []types.PbmProfileId{{UniqueId: name}}) } -func checkDataStore(dsName string, infrastructure *configv1.Infrastructure) error { +func checkDataStore(ctx *CheckContext, dsName string, infrastructure *configv1.Infrastructure) error { clusterID := infrastructure.Status.InfrastructureName volumeName := generateVolumeName(clusterID, "pvc-00000000-0000-0000-0000-000000000000", maxVolumeName) fullVolumeName := fmt.Sprintf("[%s] 00000000-0000-0000-0000-000000000000/%s.vmdk", dsName, volumeName) @@ -239,9 +246,104 @@ func checkDataStore(dsName string, infrastructure *configv1.Infrastructure) erro if err := checkVolumeName(fullVolumeName); err != nil { return fmt.Errorf("datastore %s: %s", dsName, err) } + if err := checkForDatastoreCluster(ctx, dsName); err != nil { + return err + } + return nil +} + +func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + finder := find.NewFinder(ctx.VMClient, false) + datacenters, err := finder.DatacenterList(tctx, "*") + if err != nil { + klog.Errorf("error listing datacenters: %v", err) + return nil + } + workspaceDC := ctx.VMConfig.Workspace.Datacenter + var matchingDC *object.Datacenter + for _, dc := range datacenters { + if dc.Name() == workspaceDC { + matchingDC = dc + } + } + + // lets fetch the datastore + finder = find.NewFinder(ctx.VMClient, false) + finder.SetDatacenter(matchingDC) + tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + ds, err := finder.Datastore(tctx, dataStoreName) + if err != nil { + klog.Errorf("error getting datastore %s: %v", dataStoreName, err) + return nil + } + + var dsMo mo.Datastore + pc := property.DefaultCollector(matchingDC.Client()) + properties := []string{DatastoreInfoProperty, SummaryProperty} + tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + err = pc.RetrieveOne(tctx, ds.Reference(), properties, &dsMo) + + if err != nil { + klog.Errorf("error getting properties of datastore %s: %v", dataStoreName, err) + return nil + } + + // list datastore cluster + m := view.NewManager(ctx.VMClient) + kind := []string{"StoragePod"} + tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + v, err := m.CreateContainerView(tctx, ctx.VMClient.ServiceContent.RootFolder, kind, true) + if err != nil { + klog.Errorf("error listing datastore cluster: %+v", err) + return nil + } + var content []mo.StoragePod + tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + err = v.Retrieve(tctx, kind, []string{SummaryProperty, "childEntity"}, &content) + if err != nil { + klog.Errorf("error retrieving datastore cluster properties: %+v", err) + return nil + } + err = v.Destroy(tctx) + if err != nil { + klog.Errorf("error destroying view: %+v", err) + return nil + } + for _, ds := range content { + for _, child := range ds.Folder.ChildEntity { + tDS, err := getDatastore(ctx, child) + if err != nil { + klog.Errorf("fetching datastore %s failed: %v", child.String(), err) + continue + } + if tDS.Summary.Url == dsMo.Summary.Url { + return fmt.Errorf("datastore %s is part of %s datastore cluster", tDS.Summary.Name, ds.Summary.Name) + } + } + } + klog.V(2).Infof("Checked datastore %s for SRDS - no problems found", dataStoreName) return nil } +func getDatastore(ctx *CheckContext, ref vim.ManagedObjectReference) (mo.Datastore, error) { + var dsMo mo.Datastore + pc := property.DefaultCollector(ctx.VMClient) + properties := []string{DatastoreInfoProperty, SummaryProperty} + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + err := pc.RetrieveOne(tctx, ref, properties, &dsMo) + if err != nil { + return dsMo, err + } + return dsMo, nil +} + func checkVolumeName(name string) error { path := fmt.Sprintf("/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/%s", name) escapedPath, err := systemdEscape(path) diff --git a/pkg/check/datastore_test.go b/pkg/check/datastore_test.go index 04c422e2..33bf1e4e 100644 --- a/pkg/check/datastore_test.go +++ b/pkg/check/datastore_test.go @@ -30,6 +30,16 @@ var ( datastore: "0-1-2-3-4-5-6-7-8-9", // 265 characters in the escaped path expectError: true, }, + { + name: "datastore which is part of a datastore cluster", + datastore: "/DC0/datastore/DC0_POD0/LocalDS_2", + expectError: true, + }, + { + name: "datastore which is not part of a datastore cluster", + datastore: "/DC0/datastore/LocalDS_1", + expectError: false, + }, } ) @@ -103,7 +113,31 @@ func TestCheckStorageClassesWithDatastore(t *testing.T) { } func TestCheckPVs(t *testing.T) { - for _, test := range datastoreTests { + var ( + pvWithDatastoreNames = []struct { + name string + datastore string + expectError bool + }{ + { + name: "short datastore", + datastore: "short", + expectError: false, + }, + { + name: "long datastore", + datastore: "01234567890123456789012345678901234567890123456789", // 269 characters in the escaped path + expectError: true, + }, + { + name: "short datastore with too many dashes", + datastore: "0-1-2-3-4-5-6-7-8-9", // 265 characters in the escaped path + expectError: true, + }, + } + ) + + for _, test := range pvWithDatastoreNames { t.Run(test.name, func(t *testing.T) { // Stage kubeClient := &fakeKubeClient{ diff --git a/pkg/check/framework_test.go b/pkg/check/framework_test.go index d3c07e72..6ab16bc7 100644 --- a/pkg/check/framework_test.go +++ b/pkg/check/framework_test.go @@ -24,7 +24,7 @@ const ( defaultDC = "DC0" defaultVMPath = "/DC0/vm/" defaultHost = "H0" - defaultHostId = "host-21" // Generated by vcsim + defaultHostId = "host-24" // Generated by vcsim defaultHostPath = "/DC0/host/DC0_" ) From 9cfad821d46a9a2ce8cb22025f7ec17e659ac39c Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Tue, 9 Feb 2021 18:53:23 -0500 Subject: [PATCH 2/6] Add test data for cluster fix test data to have datastore cluster --- pkg/check/testdata/README | 13 + .../0000-ServiceInstance-ServiceInstance.xml | 4 +- .../testdata/default/0001-Folder-group-d1.xml | 2 + .../0006-SessionManager-SessionManager.xml | 24 +- .../0012-EventManager-EventManager.xml | 30 + .../default/0013-TaskManager-TaskManager.xml | 67 +- ...onSpecManager-CustomizationSpecManager.xml | 8 +- .../default/0044-Datacenter-datacenter-2.xml | 11 +- .../testdata/default/0045-Folder-folder-3.xml | 20 +- ...-57.xml => 0046-VirtualMachine-vm-152.xml} | 53 +- .../0047-EnvironmentBrowser-envbrowser-20.xml | 3 - .../0047-EnvironmentBrowser-envbrowser-23.xml | 3 + ...-60.xml => 0048-VirtualMachine-vm-155.xml} | 53 +- ...-63.xml => 0049-VirtualMachine-vm-158.xml} | 47 +- .../0050-EnvironmentBrowser-envbrowser-25.xml | 3 - .../0050-EnvironmentBrowser-envbrowser-28.xml | 3 + ...-66.xml => 0051-VirtualMachine-vm-161.xml} | 41 +- .../default/0052-VirtualMachine-vm-164.xml | 494 ++ .../default/0053-VirtualMachine-vm-167.xml | 494 ++ ...-folder-4.xml => 0054-Folder-folder-4.xml} | 8 +- ...55-ComputeResource-computeresource-26.xml} | 17 +- ...ost-21.xml => 0056-HostSystem-host-24.xml} | 33 +- ...atastoreSystem-hostdatastoresystem-18.xml} | 7 +- ...ostNetworkSystem-hostnetworksystem-19.xml} | 2 +- ....xml => 0059-ResourcePool-resgroup-25.xml} | 12 +- ...uteResource-clustercomputeresource-30.xml} | 21 +- ...ost-34.xml => 0061-HostSystem-host-37.xml} | 32 +- ...atastoreSystem-hostdatastoresystem-32.xml} | 7 +- ...ostNetworkSystem-hostnetworksystem-33.xml} | 2 +- ...ost-42.xml => 0064-HostSystem-host-45.xml} | 33 +- ...atastoreSystem-hostdatastoresystem-40.xml} | 7 +- ...ostNetworkSystem-hostnetworksystem-41.xml} | 2 +- ...ost-50.xml => 0067-HostSystem-host-53.xml} | 31 +- ...atastoreSystem-hostdatastoresystem-48.xml} | 7 +- ...ostNetworkSystem-hostnetworksystem-49.xml} | 2 +- .../default/0070-ResourcePool-resgroup-29.xml | 180 + .../default/0071-ResourcePool-resgroup-55.xml | 172 + .../default/0072-ResourcePool-resgroup-56.xml | 172 + .../default/0073-VirtualApp-virtualapp-57.xml | 207 + .../testdata/default/0074-Folder-folder-5.xml | 183 + .../default/0075-StoragePod-storagepod-8.xml | 195 + ...im-DC0-LocalDS_0-741472776%40folder-5.xml} | 36 +- ...storeBrowser-hostdatastorebrowser-122.xml} | 4 +- ...sim-DC0-LocalDS_1-392731591%40folder-5.xml | 123 + ...astoreBrowser-hostdatastorebrowser-126.xml | 14 + ...sim-DC0-LocalDS_2-363093114%40folder-5.xml | 123 + ...astoreBrowser-hostdatastorebrowser-130.xml | 15 + ...sim-DC0-LocalDS_3-206027153%40folder-5.xml | 123 + ...astoreBrowser-hostdatastorebrowser-134.xml | 16 + ...-folder-6.xml => 0084-Folder-folder-6.xml} | 16 +- ...twork-7.xml => 0085-Network-network-7.xml} | 0 ... 0086-DistributedVirtualSwitch-dvs-10.xml} | 16 +- ...ibutedVirtualPortgroup-dvportgroup-12.xml} | 28 +- ...ibutedVirtualPortgroup-dvportgroup-14.xml} | 20 +- .../0089-OpaqueNetwork-opaquenetwork-15.xml | 88 + .../0090-OpaqueNetwork-opaquenetwork-16.xml | 88 + .../default/0091-Folder-folder-58.xml | 153 + .../default/0092-Datacenter-datacenter-59.xml | 103 + .../default/0093-Folder-folder-60.xml | 155 + .../default/0094-Folder-folder-69.xml | 165 + .../default/0095-VirtualMachine-vm-170.xml | 494 ++ .../0096-EnvironmentBrowser-envbrowser-84.xml | 3 + .../default/0097-VirtualMachine-vm-173.xml | 494 ++ .../default/0098-VirtualMachine-vm-176.xml | 494 ++ .../0099-EnvironmentBrowser-envbrowser-89.xml | 3 + .../default/0100-VirtualMachine-vm-179.xml | 494 ++ .../default/0101-VirtualMachine-vm-182.xml | 494 ++ .../default/0102-VirtualMachine-vm-185.xml | 494 ++ .../default/0103-Folder-folder-61.xml | 153 + .../default/0104-Folder-folder-67.xml | 155 + ...105-ComputeResource-computeresource-87.xml | 116 + .../default/0106-HostSystem-host-85.xml | 5301 +++++++++++++++++ ...DatastoreSystem-hostdatastoresystem-79.xml | 20 + ...HostNetworkSystem-hostnetworksystem-80.xml | 137 + ....xml => 0109-ResourcePool-resgroup-86.xml} | 12 +- ...puteResource-clustercomputeresource-91.xml | 164 + .../default/0111-HostSystem-host-98.xml | 5301 +++++++++++++++++ ...DatastoreSystem-hostdatastoresystem-93.xml | 20 + ...HostNetworkSystem-hostnetworksystem-94.xml | 137 + .../default/0114-HostSystem-host-106.xml | 5300 ++++++++++++++++ ...atastoreSystem-hostdatastoresystem-101.xml | 20 + ...ostNetworkSystem-hostnetworksystem-102.xml | 137 + .../default/0117-HostSystem-host-114.xml | 5300 ++++++++++++++++ ...atastoreSystem-hostdatastoresystem-109.xml | 20 + ...ostNetworkSystem-hostnetworksystem-110.xml | 137 + .../default/0120-ResourcePool-resgroup-90.xml | 180 + .../0121-ResourcePool-resgroup-116.xml | 172 + .../0122-ResourcePool-resgroup-117.xml | 172 + .../0123-VirtualApp-virtualapp-118.xml | 207 + ...folder-5.xml => 0124-Folder-folder-62.xml} | 18 +- .../default/0125-StoragePod-storagepod-65.xml | 187 + .../default/0126-Folder-folder-66.xml | 185 + ...im-DC1-LocalDS_0-236535740%40folder-66.xml | 130 + ...astoreBrowser-hostdatastorebrowser-138.xml | 13 + ...im-DC1-LocalDS_1-057538539%40folder-66.xml | 123 + ...astoreBrowser-hostdatastorebrowser-142.xml | 14 + ...im-DC1-LocalDS_2-622867534%40folder-66.xml | 123 + ...astoreBrowser-hostdatastorebrowser-146.xml | 15 + ...im-DC1-LocalDS_3-260484949%40folder-66.xml | 123 + ...astoreBrowser-hostdatastorebrowser-150.xml | 16 + .../default/0135-Folder-folder-63.xml | 157 + .../default/0136-Network-network-64.xml | 86 + .../default/0137-Folder-folder-68.xml | 163 + .../0138-DistributedVirtualSwitch-dvs-71.xml | 120 + ...ributedVirtualPortgroup-dvportgroup-73.xml | 150 + ...ributedVirtualPortgroup-dvportgroup-75.xml | 147 + .../0141-OpaqueNetwork-opaquenetwork-76.xml | 88 + .../0142-OpaqueNetwork-opaquenetwork-77.xml | 88 + pkg/check/testdata/default/README | 9 +- .../DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.nvram} | 0 .../DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx} | 0 .../DC0_C0_APP0_VM0}/disk1-flat.vmdk | 0 .../DC0_C0_APP0_VM0}/disk1.vmdk | 0 .../DC0_C0_APP0_VM0/vmware.log | 2 + .../DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.nvram} | 0 .../DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx} | 0 .../DC0_C0_APP0_VM1}/disk1-flat.vmdk | 0 .../DC0_C0_APP0_VM1}/disk1.vmdk | 0 .../DC0_C0_APP0_VM1/vmware.log | 2 + .../DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram} | 0 .../DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx} | 0 .../DC0_C0_RP0_VM0}/disk1-flat.vmdk | 0 .../DC0_C0_RP0_VM0}/disk1.vmdk | 0 .../DC0_C0_RP0_VM0/vmware.log | 2 + .../DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram} | 0 .../DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx} | 0 .../DC0_C0_RP0_VM1}/disk1-flat.vmdk | 0 .../DC0_C0_RP0_VM1}/disk1.vmdk | 0 .../DC0_C0_RP0_VM1/vmware.log | 2 + .../DC0_H0_VM0/DC0_H0_VM0.nvram | 0 .../DC0_H0_VM0/DC0_H0_VM0.vmx | 0 .../DC0_H0_VM0/disk1-flat.vmdk | 0 .../DC0_H0_VM0/disk1.vmdk | 0 .../DC0_H0_VM0/vmware.log | 2 + .../DC0_H0_VM1/DC0_H0_VM1.nvram | 0 .../DC0_H0_VM1/DC0_H0_VM1.vmx | 0 .../DC0_H0_VM1/disk1-flat.vmdk | 0 .../DC0_H0_VM1/disk1.vmdk | 0 .../DC0_H0_VM1/vmware.log | 2 + .../DC0_C0_RP0_VM0/vmware.log | 2 - .../DC0_C0_RP0_VM1/vmware.log | 2 - .../DC0_H0_VM0/vmware.log | 2 - .../DC0_H0_VM1/vmware.log | 2 - .../DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.nvram | 0 .../DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx | 0 .../DC1_C0_APP0_VM0/disk1-flat.vmdk | 0 .../DC1_C0_APP0_VM0/disk1.vmdk | 0 .../DC1_C0_APP0_VM0/vmware.log | 2 + .../DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.nvram | 0 .../DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx | 0 .../DC1_C0_APP0_VM1/disk1-flat.vmdk | 0 .../DC1_C0_APP0_VM1/disk1.vmdk | 0 .../DC1_C0_APP0_VM1/vmware.log | 2 + .../DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.nvram | 0 .../DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx | 0 .../DC1_C0_RP0_VM0/disk1-flat.vmdk | 0 .../DC1_C0_RP0_VM0/disk1.vmdk | 0 .../DC1_C0_RP0_VM0/vmware.log | 2 + .../DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.nvram | 0 .../DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx | 0 .../DC1_C0_RP0_VM1/disk1-flat.vmdk | 0 .../DC1_C0_RP0_VM1/disk1.vmdk | 0 .../DC1_C0_RP0_VM1/vmware.log | 2 + .../DC1_H0_VM0/DC1_H0_VM0.nvram | 0 .../DC1_H0_VM0/DC1_H0_VM0.vmx | 0 .../DC1_H0_VM0/disk1-flat.vmdk | 0 .../DC1_H0_VM0/disk1.vmdk | 0 .../DC1_H0_VM0/vmware.log | 2 + .../DC1_H0_VM1/DC1_H0_VM1.nvram | 0 .../DC1_H0_VM1/DC1_H0_VM1.vmx | 0 .../DC1_H0_VM1/disk1-flat.vmdk | 0 .../DC1_H0_VM1/disk1.vmdk | 0 .../DC1_H0_VM1/vmware.log | 2 + 173 files changed, 31792 insertions(+), 317 deletions(-) create mode 100644 pkg/check/testdata/README rename pkg/check/testdata/default/{0046-VirtualMachine-vm-57.xml => 0046-VirtualMachine-vm-152.xml} (93%) delete mode 100644 pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-20.xml create mode 100644 pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-23.xml rename pkg/check/testdata/default/{0048-VirtualMachine-vm-60.xml => 0048-VirtualMachine-vm-155.xml} (93%) rename pkg/check/testdata/default/{0049-VirtualMachine-vm-63.xml => 0049-VirtualMachine-vm-158.xml} (93%) delete mode 100644 pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-25.xml create mode 100644 pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-28.xml rename pkg/check/testdata/default/{0051-VirtualMachine-vm-66.xml => 0051-VirtualMachine-vm-161.xml} (94%) create mode 100644 pkg/check/testdata/default/0052-VirtualMachine-vm-164.xml create mode 100644 pkg/check/testdata/default/0053-VirtualMachine-vm-167.xml rename pkg/check/testdata/default/{0052-Folder-folder-4.xml => 0054-Folder-folder-4.xml} (97%) rename pkg/check/testdata/default/{0053-ComputeResource-computeresource-23.xml => 0055-ComputeResource-computeresource-26.xml} (86%) rename pkg/check/testdata/default/{0054-HostSystem-host-21.xml => 0056-HostSystem-host-24.xml} (99%) rename pkg/check/testdata/default/{0055-HostDatastoreSystem-hostdatastoresystem-15.xml => 0057-HostDatastoreSystem-hostdatastoresystem-18.xml} (55%) rename pkg/check/testdata/default/{0064-HostNetworkSystem-hostnetworksystem-38.xml => 0058-HostNetworkSystem-hostnetworksystem-19.xml} (98%) rename pkg/check/testdata/default/{0057-ResourcePool-resgroup-22.xml => 0059-ResourcePool-resgroup-25.xml} (95%) rename pkg/check/testdata/default/{0058-ClusterComputeResource-clustercomputeresource-27.xml => 0060-ClusterComputeResource-clustercomputeresource-30.xml} (88%) rename pkg/check/testdata/default/{0059-HostSystem-host-34.xml => 0061-HostSystem-host-37.xml} (99%) rename pkg/check/testdata/default/{0060-HostDatastoreSystem-hostdatastoresystem-29.xml => 0062-HostDatastoreSystem-hostdatastoresystem-32.xml} (55%) rename pkg/check/testdata/default/{0067-HostNetworkSystem-hostnetworksystem-46.xml => 0063-HostNetworkSystem-hostnetworksystem-33.xml} (98%) rename pkg/check/testdata/default/{0062-HostSystem-host-42.xml => 0064-HostSystem-host-45.xml} (99%) rename pkg/check/testdata/default/{0063-HostDatastoreSystem-hostdatastoresystem-37.xml => 0065-HostDatastoreSystem-hostdatastoresystem-40.xml} (55%) rename pkg/check/testdata/default/{0056-HostNetworkSystem-hostnetworksystem-16.xml => 0066-HostNetworkSystem-hostnetworksystem-41.xml} (98%) rename pkg/check/testdata/default/{0065-HostSystem-host-50.xml => 0067-HostSystem-host-53.xml} (99%) rename pkg/check/testdata/default/{0066-HostDatastoreSystem-hostdatastoresystem-45.xml => 0068-HostDatastoreSystem-hostdatastoresystem-48.xml} (55%) rename pkg/check/testdata/default/{0061-HostNetworkSystem-hostnetworksystem-30.xml => 0069-HostNetworkSystem-hostnetworksystem-49.xml} (98%) create mode 100644 pkg/check/testdata/default/0070-ResourcePool-resgroup-29.xml create mode 100644 pkg/check/testdata/default/0071-ResourcePool-resgroup-55.xml create mode 100644 pkg/check/testdata/default/0072-ResourcePool-resgroup-56.xml create mode 100644 pkg/check/testdata/default/0073-VirtualApp-virtualapp-57.xml create mode 100644 pkg/check/testdata/default/0074-Folder-folder-5.xml create mode 100644 pkg/check/testdata/default/0075-StoragePod-storagepod-8.xml rename pkg/check/testdata/default/{0070-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-824089577%40folder-5.xml => 0076-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-741472776%40folder-5.xml} (79%) rename pkg/check/testdata/default/{0071-HostDatastoreBrowser-hostdatastorebrowser-55.xml => 0077-HostDatastoreBrowser-hostdatastorebrowser-122.xml} (76%) create mode 100644 pkg/check/testdata/default/0078-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_1-392731591%40folder-5.xml create mode 100644 pkg/check/testdata/default/0079-HostDatastoreBrowser-hostdatastorebrowser-126.xml create mode 100644 pkg/check/testdata/default/0080-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_2-363093114%40folder-5.xml create mode 100644 pkg/check/testdata/default/0081-HostDatastoreBrowser-hostdatastorebrowser-130.xml create mode 100644 pkg/check/testdata/default/0082-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_3-206027153%40folder-5.xml create mode 100644 pkg/check/testdata/default/0083-HostDatastoreBrowser-hostdatastorebrowser-134.xml rename pkg/check/testdata/default/{0072-Folder-folder-6.xml => 0084-Folder-folder-6.xml} (92%) rename pkg/check/testdata/default/{0073-Network-network-7.xml => 0085-Network-network-7.xml} (100%) rename pkg/check/testdata/default/{0074-DistributedVirtualSwitch-dvs-9.xml => 0086-DistributedVirtualSwitch-dvs-10.xml} (91%) rename pkg/check/testdata/default/{0075-DistributedVirtualPortgroup-dvportgroup-11.xml => 0087-DistributedVirtualPortgroup-dvportgroup-12.xml} (91%) rename pkg/check/testdata/default/{0076-DistributedVirtualPortgroup-dvportgroup-13.xml => 0088-DistributedVirtualPortgroup-dvportgroup-14.xml} (92%) create mode 100644 pkg/check/testdata/default/0089-OpaqueNetwork-opaquenetwork-15.xml create mode 100644 pkg/check/testdata/default/0090-OpaqueNetwork-opaquenetwork-16.xml create mode 100644 pkg/check/testdata/default/0091-Folder-folder-58.xml create mode 100644 pkg/check/testdata/default/0092-Datacenter-datacenter-59.xml create mode 100644 pkg/check/testdata/default/0093-Folder-folder-60.xml create mode 100644 pkg/check/testdata/default/0094-Folder-folder-69.xml create mode 100644 pkg/check/testdata/default/0095-VirtualMachine-vm-170.xml create mode 100644 pkg/check/testdata/default/0096-EnvironmentBrowser-envbrowser-84.xml create mode 100644 pkg/check/testdata/default/0097-VirtualMachine-vm-173.xml create mode 100644 pkg/check/testdata/default/0098-VirtualMachine-vm-176.xml create mode 100644 pkg/check/testdata/default/0099-EnvironmentBrowser-envbrowser-89.xml create mode 100644 pkg/check/testdata/default/0100-VirtualMachine-vm-179.xml create mode 100644 pkg/check/testdata/default/0101-VirtualMachine-vm-182.xml create mode 100644 pkg/check/testdata/default/0102-VirtualMachine-vm-185.xml create mode 100644 pkg/check/testdata/default/0103-Folder-folder-61.xml create mode 100644 pkg/check/testdata/default/0104-Folder-folder-67.xml create mode 100644 pkg/check/testdata/default/0105-ComputeResource-computeresource-87.xml create mode 100644 pkg/check/testdata/default/0106-HostSystem-host-85.xml create mode 100644 pkg/check/testdata/default/0107-HostDatastoreSystem-hostdatastoresystem-79.xml create mode 100644 pkg/check/testdata/default/0108-HostNetworkSystem-hostnetworksystem-80.xml rename pkg/check/testdata/default/{0068-ResourcePool-resgroup-26.xml => 0109-ResourcePool-resgroup-86.xml} (94%) create mode 100644 pkg/check/testdata/default/0110-ClusterComputeResource-clustercomputeresource-91.xml create mode 100644 pkg/check/testdata/default/0111-HostSystem-host-98.xml create mode 100644 pkg/check/testdata/default/0112-HostDatastoreSystem-hostdatastoresystem-93.xml create mode 100644 pkg/check/testdata/default/0113-HostNetworkSystem-hostnetworksystem-94.xml create mode 100644 pkg/check/testdata/default/0114-HostSystem-host-106.xml create mode 100644 pkg/check/testdata/default/0115-HostDatastoreSystem-hostdatastoresystem-101.xml create mode 100644 pkg/check/testdata/default/0116-HostNetworkSystem-hostnetworksystem-102.xml create mode 100644 pkg/check/testdata/default/0117-HostSystem-host-114.xml create mode 100644 pkg/check/testdata/default/0118-HostDatastoreSystem-hostdatastoresystem-109.xml create mode 100644 pkg/check/testdata/default/0119-HostNetworkSystem-hostnetworksystem-110.xml create mode 100644 pkg/check/testdata/default/0120-ResourcePool-resgroup-90.xml create mode 100644 pkg/check/testdata/default/0121-ResourcePool-resgroup-116.xml create mode 100644 pkg/check/testdata/default/0122-ResourcePool-resgroup-117.xml create mode 100644 pkg/check/testdata/default/0123-VirtualApp-virtualapp-118.xml rename pkg/check/testdata/default/{0069-Folder-folder-5.xml => 0124-Folder-folder-62.xml} (84%) create mode 100644 pkg/check/testdata/default/0125-StoragePod-storagepod-65.xml create mode 100644 pkg/check/testdata/default/0126-Folder-folder-66.xml create mode 100644 pkg/check/testdata/default/0127-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_0-236535740%40folder-66.xml create mode 100644 pkg/check/testdata/default/0128-HostDatastoreBrowser-hostdatastorebrowser-138.xml create mode 100644 pkg/check/testdata/default/0129-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_1-057538539%40folder-66.xml create mode 100644 pkg/check/testdata/default/0130-HostDatastoreBrowser-hostdatastorebrowser-142.xml create mode 100644 pkg/check/testdata/default/0131-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_2-622867534%40folder-66.xml create mode 100644 pkg/check/testdata/default/0132-HostDatastoreBrowser-hostdatastorebrowser-146.xml create mode 100644 pkg/check/testdata/default/0133-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_3-260484949%40folder-66.xml create mode 100644 pkg/check/testdata/default/0134-HostDatastoreBrowser-hostdatastorebrowser-150.xml create mode 100644 pkg/check/testdata/default/0135-Folder-folder-63.xml create mode 100644 pkg/check/testdata/default/0136-Network-network-64.xml create mode 100644 pkg/check/testdata/default/0137-Folder-folder-68.xml create mode 100644 pkg/check/testdata/default/0138-DistributedVirtualSwitch-dvs-71.xml create mode 100644 pkg/check/testdata/default/0139-DistributedVirtualPortgroup-dvportgroup-73.xml create mode 100644 pkg/check/testdata/default/0140-DistributedVirtualPortgroup-dvportgroup-75.xml create mode 100644 pkg/check/testdata/default/0141-OpaqueNetwork-opaquenetwork-76.xml create mode 100644 pkg/check/testdata/default/0142-OpaqueNetwork-opaquenetwork-77.xml rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.nvram} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0}/disk1-flat.vmdk (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0}/disk1.vmdk (100%) create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/vmware.log rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.nvram} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1}/disk1-flat.vmdk (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1}/disk1.vmdk (100%) create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/vmware.log rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.nvram => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.vmx => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0}/disk1-flat.vmdk (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0}/disk1.vmdk (100%) create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/vmware.log rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.nvram => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.vmx => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx} (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1}/disk1-flat.vmdk (100%) rename pkg/check/testdata/default/{govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1 => govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1}/disk1.vmdk (100%) create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/vmware.log delete mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/vmware.log delete mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/vmware.log delete mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/vmware.log delete mode 100644 pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/vmware.log create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.nvram create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.vmx create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1-flat.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1.vmdk create mode 100644 pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/vmware.log diff --git a/pkg/check/testdata/README b/pkg/check/testdata/README new file mode 100644 index 00000000..fa84e222 --- /dev/null +++ b/pkg/check/testdata/README @@ -0,0 +1,13 @@ +This directory contains simulated vCenter environment, generated using vcsim and govc v0.23.1. + +# Run vcsim with default settings, i.e. with 1 host and 2 VMs +$ vcsim -tls=false + +# Save simulated objects in a directory. +$ govc object.save + +# Copy datastore content generated by vcsim from /tmp to here. +$ cp -r /tmp/govcsim-DC0-LocalDS_0* . + +# Change the datastore paths from "/tmp" to "testdata/default". +$ sed -i 's!/tmp/govcsim-DC0-LocalDS_0!testdata/default/govcsim-DC0-LocalDS_0!g' vcsim-127.0.0.1/*.xml diff --git a/pkg/check/testdata/default/0000-ServiceInstance-ServiceInstance.xml b/pkg/check/testdata/default/0000-ServiceInstance-ServiceInstance.xml index 8d310991..15ec0b03 100644 --- a/pkg/check/testdata/default/0000-ServiceInstance-ServiceInstance.xml +++ b/pkg/check/testdata/default/0000-ServiceInstance-ServiceInstance.xml @@ -7,8 +7,8 @@ propertyCollector ViewManager - VMware vCenter Server (govmomi simulator) - VMware vCenter Server 6.5.0 build-5973321 + VMware vCenter Server + VMware vCenter Server 6.5.0 build-5973321 (govmomi simulator) VMware, Inc. 6.5.0 5973321 diff --git a/pkg/check/testdata/default/0001-Folder-group-d1.xml b/pkg/check/testdata/default/0001-Folder-group-d1.xml index ac58d15e..52ee92fe 100644 --- a/pkg/check/testdata/default/0001-Folder-group-d1.xml +++ b/pkg/check/testdata/default/0001-Folder-group-d1.xml @@ -84,6 +84,7 @@ childEntity datacenter-2 + folder-58 @@ -170,6 +171,7 @@ childEntity datacenter-2 + folder-58 \ No newline at end of file diff --git a/pkg/check/testdata/default/0006-SessionManager-SessionManager.xml b/pkg/check/testdata/default/0006-SessionManager-SessionManager.xml index 8b53a425..08d93347 100644 --- a/pkg/check/testdata/default/0006-SessionManager-SessionManager.xml +++ b/pkg/check/testdata/default/0006-SessionManager-SessionManager.xml @@ -4,34 +4,34 @@ sessionList - acdb9fd2-8a1c-48ca-9c78-bcb24f5fa421 - user - user - 2021-01-08T16:09:12.979769656Z - 2021-01-08T17:09:12.982313915+01:00 + b7b1563d-7aca-41d6-bca4-774c66067b60 + administrator@vsphere.local + administrator@vsphere.local + 2021-02-10T04:00:17.990208341Z + 2021-02-09T23:00:37.69791866-05:00 en_US en_US false 127.0.0.1 govc/0.23.0 - 4 + 112 currentSession - acdb9fd2-8a1c-48ca-9c78-bcb24f5fa421 - user - user - 2021-01-08T16:09:12.979769656Z - 2021-01-08T17:09:12.982313915+01:00 + b7b1563d-7aca-41d6-bca4-774c66067b60 + administrator@vsphere.local + administrator@vsphere.local + 2021-02-10T04:00:17.990208341Z + 2021-02-09T23:00:37.69791866-05:00 en_US en_US false 127.0.0.1 govc/0.23.0 - 4 + 112 diff --git a/pkg/check/testdata/default/0012-EventManager-EventManager.xml b/pkg/check/testdata/default/0012-EventManager-EventManager.xml index 89fef785..6b9d9db0 100644 --- a/pkg/check/testdata/default/0012-EventManager-EventManager.xml +++ b/pkg/check/testdata/default/0012-EventManager-EventManager.xml @@ -353,6 +353,36 @@ Completed the relocation of the virtual machine + + CustomizationFailed + An error occurred during customization + info + + + + + An error occurred during customization on VM {{.Vm.Name}} + + + CustomizationStartedEvent + Started customization + info + + + + + Started customization of VM {{.Vm.Name}} + + + CustomizationSucceeded + Customization succeeded + info + + + + + Customization of VM {{.Vm.Name}} succeeded + DrsVmMigratedEvent DRS VM migrated diff --git a/pkg/check/testdata/default/0013-TaskManager-TaskManager.xml b/pkg/check/testdata/default/0013-TaskManager-TaskManager.xml index e93ba2b8..46f94750 100644 --- a/pkg/check/testdata/default/0013-TaskManager-TaskManager.xml +++ b/pkg/check/testdata/default/0013-TaskManager-TaskManager.xml @@ -3,25 +3,54 @@ recentTask - task-8 - task-10 - task-12 - task-14 - task-24 - task-28 - task-35 - task-36 - task-43 - task-44 - task-51 - task-56 - task-58 - task-59 - task-61 - task-62 - task-64 - task-65 - task-67 + task-9 + task-11 + task-13 + task-17 + task-27 + task-31 + task-38 + task-39 + task-46 + task-47 + task-54 + task-70 + task-72 + task-74 + task-78 + task-88 + task-92 + task-99 + task-100 + task-107 + task-108 + task-115 + task-151 + task-153 + task-154 + task-156 + task-157 + task-159 + task-160 + task-162 + task-163 + task-165 + task-166 + task-168 + task-169 + task-171 + task-172 + task-174 + task-175 + task-177 + task-178 + task-180 + task-181 + task-183 + task-184 + task-186 + task-187 + task-188 diff --git a/pkg/check/testdata/default/0015-CustomizationSpecManager-CustomizationSpecManager.xml b/pkg/check/testdata/default/0015-CustomizationSpecManager-CustomizationSpecManager.xml index 158744fe..d08bc7a3 100644 --- a/pkg/check/testdata/default/0015-CustomizationSpecManager-CustomizationSpecManager.xml +++ b/pkg/check/testdata/default/0015-CustomizationSpecManager-CustomizationSpecManager.xml @@ -8,28 +8,28 @@ Linux 1569965707 - 2021-01-08T17:08:20.679746468+01:00 + 2021-02-09T22:59:58.204412854-05:00 vcsim-linux-static Linux 1569969598 - 2021-01-08T17:08:20.679746894+01:00 + 2021-02-09T22:59:58.204413134-05:00 vcsim-windows-static Windows 1569978029 - 2021-01-08T17:08:20.679747102+01:00 + 2021-02-09T22:59:58.204413314-05:00 vcsim-windows-domain Windows 1569970234 - 2021-01-08T17:08:20.679747246+01:00 + 2021-02-09T22:59:58.204413454-05:00 diff --git a/pkg/check/testdata/default/0044-Datacenter-datacenter-2.xml b/pkg/check/testdata/default/0044-Datacenter-datacenter-2.xml index 0faeb9b3..6d812418 100644 --- a/pkg/check/testdata/default/0044-Datacenter-datacenter-2.xml +++ b/pkg/check/testdata/default/0044-Datacenter-datacenter-2.xml @@ -81,16 +81,19 @@ datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0045-Folder-folder-3.xml b/pkg/check/testdata/default/0045-Folder-folder-3.xml index 1a489b55..e9042dcf 100644 --- a/pkg/check/testdata/default/0045-Folder-folder-3.xml +++ b/pkg/check/testdata/default/0045-Folder-folder-3.xml @@ -73,10 +73,12 @@ childEntity - vm-57 - vm-60 - vm-63 - vm-66 + vm-152 + vm-155 + vm-158 + vm-161 + vm-164 + vm-167 @@ -152,10 +154,12 @@ childEntity - vm-57 - vm-60 - vm-63 - vm-66 + vm-152 + vm-155 + vm-158 + vm-161 + vm-164 + vm-167 \ No newline at end of file diff --git a/pkg/check/testdata/default/0046-VirtualMachine-vm-57.xml b/pkg/check/testdata/default/0046-VirtualMachine-vm-152.xml similarity index 93% rename from pkg/check/testdata/default/0046-VirtualMachine-vm-57.xml rename to pkg/check/testdata/default/0046-VirtualMachine-vm-152.xml index 1d88db22..26278100 100644 --- a/pkg/check/testdata/default/0046-VirtualMachine-vm-57.xml +++ b/pkg/check/testdata/default/0046-VirtualMachine-vm-152.xml @@ -1,5 +1,5 @@ - vm-57 + vm-152 value @@ -93,7 +93,7 @@ config - 2021-01-08T17:08:20.710831565+01:00 + 2021-02-09T22:59:58.257596587-05:00 DC0_H0_VM0 otherGuest vmx-13 @@ -220,13 +220,13 @@ 7 - 203 + 1697971134 - - cdrom-203 + + cdrom-1697971134 - cdrom--201-824636856992 + cdrom--201-824641947584 false @@ -238,16 +238,21 @@ 0 - 204 + 255511522 1,024 KB [LocalDS_0] DC0_H0_VM0/disk1.vmdk - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 persistent + false + false true + false + 0f7d94a1-43f3-5cdd-a5b7-cd730a719f51 + false 202 0 @@ -262,7 +267,7 @@ fea97929-4b2d-5972-b146-930c6d0b4014 - dvportgroup-13 + dvportgroup-14 @@ -306,6 +311,8 @@ govcsim TRUE + + bios @@ -314,7 +321,7 @@ DC0_H0_VM0.nvram vmware.log - 204 + 255511522 [LocalDS_0] DC0_H0_VM0/disk1.vmdk @@ -373,39 +380,39 @@ true - 204 + 255511522 5 6 - 2021-01-08T17:08:20.71170659+01:00 + 2021-02-09T22:59:58.258104816-05:00 storage - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 0 0 0 - 2021-01-08T17:08:20.711706377+01:00 + 2021-02-09T22:59:58.258104626-05:00 environmentBrowser - envbrowser-20 + envbrowser-23 resourcePool - resgroup-22 + resgroup-25 runtime - host-21 + host-24 connected poweredOn false @@ -430,13 +437,13 @@ summary - vm-57 + vm-152 - host-21 + host-24 connected poweredOn false - 2021-01-08T17:08:20.711818532+01:00 + 2021-02-09T22:59:58.258317375-05:00 0 @@ -460,7 +467,7 @@ 0 0 0 - 2021-01-08T17:08:20.711706435+01:00 + 2021-02-09T22:59:58.258104676-05:00 gray @@ -471,13 +478,13 @@ datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 network - dvportgroup-13 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-20.xml b/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-20.xml deleted file mode 100644 index 1ea51c82..00000000 --- a/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-20.xml +++ /dev/null @@ -1,3 +0,0 @@ - - envbrowser-20 - \ No newline at end of file diff --git a/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-23.xml b/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-23.xml new file mode 100644 index 00000000..4f769bd2 --- /dev/null +++ b/pkg/check/testdata/default/0047-EnvironmentBrowser-envbrowser-23.xml @@ -0,0 +1,3 @@ + + envbrowser-23 + \ No newline at end of file diff --git a/pkg/check/testdata/default/0048-VirtualMachine-vm-60.xml b/pkg/check/testdata/default/0048-VirtualMachine-vm-155.xml similarity index 93% rename from pkg/check/testdata/default/0048-VirtualMachine-vm-60.xml rename to pkg/check/testdata/default/0048-VirtualMachine-vm-155.xml index fe19c794..a9ccc237 100644 --- a/pkg/check/testdata/default/0048-VirtualMachine-vm-60.xml +++ b/pkg/check/testdata/default/0048-VirtualMachine-vm-155.xml @@ -1,5 +1,5 @@ - vm-60 + vm-155 value @@ -93,7 +93,7 @@ config - 2021-01-08T17:08:20.712084403+01:00 + 2021-02-09T22:59:58.258926233-05:00 DC0_H0_VM1 otherGuest vmx-13 @@ -220,13 +220,13 @@ 7 - 203 + 1440703602 - - cdrom-203 + + cdrom-1440703602 - cdrom--201-824636746096 + cdrom--201-824642608176 false @@ -238,16 +238,21 @@ 0 - 204 + 203 1,024 KB [LocalDS_0] DC0_H0_VM1/disk1.vmdk - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 persistent + false + false true + false + 9d75f549-529c-52a7-8e36-571334b34dda + false 202 0 @@ -262,7 +267,7 @@ fea97929-4b2d-5972-b146-930c6d0b4014 - dvportgroup-13 + dvportgroup-14 @@ -306,6 +311,8 @@ govcsim TRUE + + bios @@ -314,7 +321,7 @@ DC0_H0_VM1.nvram vmware.log - 204 + 203 [LocalDS_0] DC0_H0_VM1/disk1.vmdk @@ -373,39 +380,39 @@ true - 204 + 203 5 6 - 2021-01-08T17:08:20.71270383+01:00 + 2021-02-09T22:59:58.259977191-05:00 storage - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 0 0 0 - 2021-01-08T17:08:20.712703585+01:00 + 2021-02-09T22:59:58.259976851-05:00 environmentBrowser - envbrowser-20 + envbrowser-23 resourcePool - resgroup-22 + resgroup-25 runtime - host-21 + host-24 connected poweredOn false @@ -430,13 +437,13 @@ summary - vm-60 + vm-155 - host-21 + host-24 connected poweredOn false - 2021-01-08T17:08:20.712787081+01:00 + 2021-02-09T22:59:58.2600898-05:00 0 @@ -460,7 +467,7 @@ 0 0 0 - 2021-01-08T17:08:20.712703641+01:00 + 2021-02-09T22:59:58.259976951-05:00 gray @@ -471,13 +478,13 @@ datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 network - dvportgroup-13 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0049-VirtualMachine-vm-63.xml b/pkg/check/testdata/default/0049-VirtualMachine-vm-158.xml similarity index 93% rename from pkg/check/testdata/default/0049-VirtualMachine-vm-63.xml rename to pkg/check/testdata/default/0049-VirtualMachine-vm-158.xml index becfd0db..43734e5b 100644 --- a/pkg/check/testdata/default/0049-VirtualMachine-vm-63.xml +++ b/pkg/check/testdata/default/0049-VirtualMachine-vm-158.xml @@ -1,5 +1,5 @@ - vm-63 + vm-158 value @@ -93,7 +93,7 @@ config - 2021-01-08T17:08:20.712958895+01:00 + 2021-02-09T22:59:58.26034605-05:00 DC0_C0_RP0_VM0 otherGuest vmx-13 @@ -226,7 +226,7 @@ cdrom-203 - cdrom--201-824638594200 + cdrom--201-824645320968 false @@ -238,16 +238,21 @@ 0 - 204 + 1345084660 1,024 KB [LocalDS_0] DC0_C0_RP0_VM0/disk1.vmdk - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 persistent + false + false true + false + be8d2471-f32e-5c7e-a89b-22cb8e533890 + false 202 0 @@ -262,7 +267,7 @@ fea97929-4b2d-5972-b146-930c6d0b4014 - dvportgroup-13 + dvportgroup-14 @@ -306,6 +311,8 @@ govcsim TRUE + + bios @@ -314,7 +321,7 @@ DC0_C0_RP0_VM0.nvram vmware.log - 204 + 1345084660 [LocalDS_0] DC0_C0_RP0_VM0/disk1.vmdk @@ -373,39 +380,39 @@ true - 204 + 1345084660 5 6 - 2021-01-08T17:08:20.713581425+01:00 + 2021-02-09T22:59:58.261104958-05:00 storage - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 0 0 0 - 2021-01-08T17:08:20.713581175+01:00 + 2021-02-09T22:59:58.261104638-05:00 environmentBrowser - envbrowser-25 + envbrowser-28 resourcePool - resgroup-26 + resgroup-29 runtime - host-50 + host-45 connected poweredOn false @@ -430,13 +437,13 @@ summary - vm-63 + vm-158 - host-50 + host-45 connected poweredOn false - 2021-01-08T17:08:20.713668046+01:00 + 2021-02-09T22:59:58.261208227-05:00 0 @@ -460,7 +467,7 @@ 0 0 0 - 2021-01-08T17:08:20.713581236+01:00 + 2021-02-09T22:59:58.261104738-05:00 gray @@ -471,13 +478,13 @@ datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 network - dvportgroup-13 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-25.xml b/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-25.xml deleted file mode 100644 index 6205bce5..00000000 --- a/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-25.xml +++ /dev/null @@ -1,3 +0,0 @@ - - envbrowser-25 - \ No newline at end of file diff --git a/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-28.xml b/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-28.xml new file mode 100644 index 00000000..a7a2630e --- /dev/null +++ b/pkg/check/testdata/default/0050-EnvironmentBrowser-envbrowser-28.xml @@ -0,0 +1,3 @@ + + envbrowser-28 + \ No newline at end of file diff --git a/pkg/check/testdata/default/0051-VirtualMachine-vm-66.xml b/pkg/check/testdata/default/0051-VirtualMachine-vm-161.xml similarity index 94% rename from pkg/check/testdata/default/0051-VirtualMachine-vm-66.xml rename to pkg/check/testdata/default/0051-VirtualMachine-vm-161.xml index 7c5b6443..ffada3b1 100644 --- a/pkg/check/testdata/default/0051-VirtualMachine-vm-66.xml +++ b/pkg/check/testdata/default/0051-VirtualMachine-vm-161.xml @@ -1,5 +1,5 @@ - vm-66 + vm-161 value @@ -93,7 +93,7 @@ config - 2021-01-08T17:08:20.713854587+01:00 + 2021-02-09T22:59:58.261434357-05:00 DC0_C0_RP0_VM1 otherGuest vmx-13 @@ -226,7 +226,7 @@ cdrom-203 - cdrom--201-824639098712 + cdrom--201-824639105960 false @@ -245,9 +245,14 @@ [LocalDS_0] DC0_C0_RP0_VM1/disk1.vmdk - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 persistent + false + false true + false + 4d8ecf72-2296-5fc3-9511-4b69fab45a4f + false 202 0 @@ -262,7 +267,7 @@ fea97929-4b2d-5972-b146-930c6d0b4014 - dvportgroup-13 + dvportgroup-14 @@ -306,6 +311,8 @@ govcsim TRUE + + bios @@ -379,33 +386,33 @@ 6 - 2021-01-08T17:08:20.715290329+01:00 + 2021-02-09T22:59:58.262144515-05:00 storage - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 0 0 0 - 2021-01-08T17:08:20.715290106+01:00 + 2021-02-09T22:59:58.262144205-05:00 environmentBrowser - envbrowser-25 + envbrowser-28 resourcePool - resgroup-26 + resgroup-29 runtime - host-34 + host-37 connected poweredOn false @@ -430,13 +437,13 @@ summary - vm-66 + vm-161 - host-34 + host-37 connected poweredOn false - 2021-01-08T17:08:20.715375497+01:00 + 2021-02-09T22:59:58.262237884-05:00 0 @@ -460,7 +467,7 @@ 0 0 0 - 2021-01-08T17:08:20.715290162+01:00 + 2021-02-09T22:59:58.262144305-05:00 gray @@ -471,13 +478,13 @@ datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 network - dvportgroup-13 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0052-VirtualMachine-vm-164.xml b/pkg/check/testdata/default/0052-VirtualMachine-vm-164.xml new file mode 100644 index 00000000..142e0dae --- /dev/null +++ b/pkg/check/testdata/default/0052-VirtualMachine-vm-164.xml @@ -0,0 +1,494 @@ + + vm-164 + + value + + + + availableField + + + + parent + folder-3 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_C0_APP0_VM0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.262439594-05:00 + DC0_C0_APP0_VM0 + otherGuest + vmx-13 + bb58202a-c925-5cb6-b552-a8648ba3f1d5 + dd207ae0-7d81-5139-aa85-a7e5a292b005 + + otherGuest + + + [LocalDS_0] DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx + [LocalDS_0] DC0_C0_APP0_VM0 + [LocalDS_0] DC0_C0_APP0_VM0 + [LocalDS_0] DC0_C0_APP0_VM0 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 2082145907 + + + cdrom-2082145907 + + + cdrom--201-824644764200 + false + + + true + true + true + + 202 + 0 + + + 800410273 + + + 1,024 KB + + + [LocalDS_0] DC0_C0_APP0_VM0/disk1.vmdk + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + persistent + false + false + true + false + 8d3249b3-dd6a-58de-82a5-fc8bc0fc06b8 + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-14 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:31:64:35 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC0_C0_APP0_VM0.nvram + vmware.log + + 800410273 + [LocalDS_0] DC0_C0_APP0_VM0/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC0_C0_APP0_VM0.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC0_C0_APP0_VM0.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC0_C0_APP0_VM0/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC0_C0_APP0_VM0/disk1.vmdk + diskDescriptor + 0 + true + + + 800410273 + + 5 + 6 + + + 2021-02-09T22:59:58.263122332-05:00 + + + + storage + + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + 0 + 0 + 0 + + 2021-02-09T22:59:58.263122042-05:00 + + + + environmentBrowser + envbrowser-28 + + + resourcePool + virtualapp-57 + + + runtime + + host-37 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:31:64:35 + true + 4000 + + + + + + summary + + vm-164 + + host-37 + connected + poweredOn + false + 2021-02-09T22:59:58.263214622-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC0_C0_APP0_VM0 + + [LocalDS_0] DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx + 32 + 1 + 1 + 1 + bb58202a-c925-5cb6-b552-a8648ba3f1d5 + dd207ae0-7d81-5139-aa85-a7e5a292b005 + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.263122142-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + + + + network + + dvportgroup-14 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0053-VirtualMachine-vm-167.xml b/pkg/check/testdata/default/0053-VirtualMachine-vm-167.xml new file mode 100644 index 00000000..2712ebac --- /dev/null +++ b/pkg/check/testdata/default/0053-VirtualMachine-vm-167.xml @@ -0,0 +1,494 @@ + + vm-167 + + value + + + + availableField + + + + parent + folder-3 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_C0_APP0_VM1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.263422211-05:00 + DC0_C0_APP0_VM1 + otherGuest + vmx-13 + baf53482-475d-59dc-8777-2b193e7af804 + 7a6cc2df-3fc0-577a-ad08-6c0ec1525506 + + otherGuest + + + [LocalDS_0] DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx + [LocalDS_0] DC0_C0_APP0_VM1 + [LocalDS_0] DC0_C0_APP0_VM1 + [LocalDS_0] DC0_C0_APP0_VM1 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 203 + + + cdrom-203 + + + cdrom--201-824640119528 + false + + + true + true + true + + 202 + 0 + + + 204 + + + 1,024 KB + + + [LocalDS_0] DC0_C0_APP0_VM1/disk1.vmdk + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + persistent + false + false + true + false + 0ea2fee7-8aa8-5b6e-b067-b7388d2f7a4f + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-14 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:31:64:35 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC0_C0_APP0_VM1.nvram + vmware.log + + 204 + [LocalDS_0] DC0_C0_APP0_VM1/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC0_C0_APP0_VM1.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC0_C0_APP0_VM1.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC0_C0_APP0_VM1/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC0_C0_APP0_VM1/disk1.vmdk + diskDescriptor + 0 + true + + + 204 + + 5 + 6 + + + 2021-02-09T22:59:58.264116969-05:00 + + + + storage + + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + 0 + 0 + 0 + + 2021-02-09T22:59:58.264116669-05:00 + + + + environmentBrowser + envbrowser-28 + + + resourcePool + virtualapp-57 + + + runtime + + host-53 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:31:64:35 + true + 4000 + + + + + + summary + + vm-167 + + host-53 + connected + poweredOn + false + 2021-02-09T22:59:58.264209379-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC0_C0_APP0_VM1 + + [LocalDS_0] DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx + 32 + 1 + 1 + 1 + baf53482-475d-59dc-8777-2b193e7af804 + 7a6cc2df-3fc0-577a-ad08-6c0ec1525506 + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.264116759-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + + + + network + + dvportgroup-14 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0052-Folder-folder-4.xml b/pkg/check/testdata/default/0054-Folder-folder-4.xml similarity index 97% rename from pkg/check/testdata/default/0052-Folder-folder-4.xml rename to pkg/check/testdata/default/0054-Folder-folder-4.xml index 3504e9c8..52dea783 100644 --- a/pkg/check/testdata/default/0052-Folder-folder-4.xml +++ b/pkg/check/testdata/default/0054-Folder-folder-4.xml @@ -72,8 +72,8 @@ childEntity - computeresource-23 - clustercomputeresource-27 + computeresource-26 + clustercomputeresource-30 @@ -148,8 +148,8 @@ childEntity - computeresource-23 - clustercomputeresource-27 + computeresource-26 + clustercomputeresource-30 \ No newline at end of file diff --git a/pkg/check/testdata/default/0053-ComputeResource-computeresource-23.xml b/pkg/check/testdata/default/0055-ComputeResource-computeresource-26.xml similarity index 86% rename from pkg/check/testdata/default/0053-ComputeResource-computeresource-23.xml rename to pkg/check/testdata/default/0055-ComputeResource-computeresource-26.xml index 5029bea2..e1985fd5 100644 --- a/pkg/check/testdata/default/0053-ComputeResource-computeresource-23.xml +++ b/pkg/check/testdata/default/0055-ComputeResource-computeresource-26.xml @@ -1,5 +1,5 @@ - computeresource-23 + computeresource-26 value @@ -64,26 +64,29 @@ resourcePool - resgroup-22 + resgroup-25 host - host-21 + host-24 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 @@ -102,7 +105,7 @@ environmentBrowser - envbrowser-20 + envbrowser-23 configurationEx diff --git a/pkg/check/testdata/default/0054-HostSystem-host-21.xml b/pkg/check/testdata/default/0056-HostSystem-host-24.xml similarity index 99% rename from pkg/check/testdata/default/0054-HostSystem-host-21.xml rename to pkg/check/testdata/default/0056-HostSystem-host-24.xml index 61478b59..268593f3 100644 --- a/pkg/check/testdata/default/0054-HostSystem-host-21.xml +++ b/pkg/check/testdata/default/0056-HostSystem-host-24.xml @@ -1,5 +1,5 @@ - host-21 + host-24 value @@ -10,7 +10,7 @@ parent - computeresource-23 + computeresource-26 customValue @@ -68,7 +68,7 @@ connected poweredOn false - 2021-01-08T17:08:20.682378072+01:00 + 2021-02-09T22:59:58.206270389-05:00 @@ -1187,7 +1187,7 @@ summary - host-21 + host-24 VMware, Inc. (govmomi simulator) VMware Virtual Platform @@ -1237,7 +1237,7 @@ connected poweredOn false - 2021-01-08T17:08:20.682378072+01:00 + 2021-02-09T22:59:58.206270389-05:00 @@ -3152,15 +3152,15 @@ configManager cpuSchedulerSystem - hostdatastoresystem-15 + hostdatastoresystem-18 memoryManagerSystem - hoststoragesystem-19 - hostnetworksystem-16 + hoststoragesystem-22 + hostnetworksystem-19 ha-vmotion-system ha-vnic-mgr serviceSystem - hostfirewallsystem-18 - optionmanager-17 + hostfirewallsystem-21 + optionmanager-20 diagnosticsystem ha-autostart-mgr ha-snmp-agent @@ -5273,22 +5273,25 @@ vm - vm-57 - vm-60 + vm-152 + vm-155 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0055-HostDatastoreSystem-hostdatastoresystem-15.xml b/pkg/check/testdata/default/0057-HostDatastoreSystem-hostdatastoresystem-18.xml similarity index 55% rename from pkg/check/testdata/default/0055-HostDatastoreSystem-hostdatastoresystem-15.xml rename to pkg/check/testdata/default/0057-HostDatastoreSystem-hostdatastoresystem-18.xml index 8f609c75..9c5a9c48 100644 --- a/pkg/check/testdata/default/0055-HostDatastoreSystem-hostdatastoresystem-15.xml +++ b/pkg/check/testdata/default/0057-HostDatastoreSystem-hostdatastoresystem-18.xml @@ -1,9 +1,12 @@ - hostdatastoresystem-15 + hostdatastoresystem-18 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 diff --git a/pkg/check/testdata/default/0064-HostNetworkSystem-hostnetworksystem-38.xml b/pkg/check/testdata/default/0058-HostNetworkSystem-hostnetworksystem-19.xml similarity index 98% rename from pkg/check/testdata/default/0064-HostNetworkSystem-hostnetworksystem-38.xml rename to pkg/check/testdata/default/0058-HostNetworkSystem-hostnetworksystem-19.xml index 051d2577..5c8b4563 100644 --- a/pkg/check/testdata/default/0064-HostNetworkSystem-hostnetworksystem-38.xml +++ b/pkg/check/testdata/default/0058-HostNetworkSystem-hostnetworksystem-19.xml @@ -1,5 +1,5 @@ - hostnetworksystem-38 + hostnetworksystem-19 value diff --git a/pkg/check/testdata/default/0057-ResourcePool-resgroup-22.xml b/pkg/check/testdata/default/0059-ResourcePool-resgroup-25.xml similarity index 95% rename from pkg/check/testdata/default/0057-ResourcePool-resgroup-22.xml rename to pkg/check/testdata/default/0059-ResourcePool-resgroup-25.xml index 6e0f72f1..1f7e614e 100644 --- a/pkg/check/testdata/default/0057-ResourcePool-resgroup-22.xml +++ b/pkg/check/testdata/default/0059-ResourcePool-resgroup-25.xml @@ -1,5 +1,5 @@ - resgroup-22 + resgroup-25 value @@ -10,7 +10,7 @@ parent - computeresource-23 + computeresource-26 customValue @@ -65,7 +65,7 @@ summary - Resources + DC1_C0_APP0 ha-root-pool @@ -132,7 +132,7 @@ owner - computeresource-23 + computeresource-26 resourcePool @@ -141,8 +141,8 @@ vm - vm-57 - vm-60 + vm-152 + vm-155 diff --git a/pkg/check/testdata/default/0058-ClusterComputeResource-clustercomputeresource-27.xml b/pkg/check/testdata/default/0060-ClusterComputeResource-clustercomputeresource-30.xml similarity index 88% rename from pkg/check/testdata/default/0058-ClusterComputeResource-clustercomputeresource-27.xml rename to pkg/check/testdata/default/0060-ClusterComputeResource-clustercomputeresource-30.xml index 3f68c22c..f2c246ea 100644 --- a/pkg/check/testdata/default/0058-ClusterComputeResource-clustercomputeresource-27.xml +++ b/pkg/check/testdata/default/0060-ClusterComputeResource-clustercomputeresource-30.xml @@ -1,5 +1,5 @@ - clustercomputeresource-27 + clustercomputeresource-30 value @@ -64,28 +64,31 @@ resourcePool - resgroup-26 + resgroup-29 host - host-34 - host-42 - host-50 + host-37 + host-45 + host-53 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 @@ -119,7 +122,7 @@ environmentBrowser - envbrowser-25 + envbrowser-28 configurationEx diff --git a/pkg/check/testdata/default/0059-HostSystem-host-34.xml b/pkg/check/testdata/default/0061-HostSystem-host-37.xml similarity index 99% rename from pkg/check/testdata/default/0059-HostSystem-host-34.xml rename to pkg/check/testdata/default/0061-HostSystem-host-37.xml index fac1e603..3507ff85 100644 --- a/pkg/check/testdata/default/0059-HostSystem-host-34.xml +++ b/pkg/check/testdata/default/0061-HostSystem-host-37.xml @@ -1,5 +1,5 @@ - host-34 + host-37 value @@ -10,7 +10,7 @@ parent - clustercomputeresource-27 + clustercomputeresource-30 customValue @@ -68,7 +68,7 @@ connected poweredOn false - 2021-01-08T17:08:20.69168753+01:00 + 2021-02-09T22:59:58.215295504-05:00 @@ -1187,7 +1187,7 @@ summary - host-34 + host-37 VMware, Inc. (govmomi simulator) VMware Virtual Platform @@ -1237,7 +1237,7 @@ connected poweredOn false - 2021-01-08T17:08:20.69168753+01:00 + 2021-02-09T22:59:58.215295504-05:00 @@ -3152,15 +3152,15 @@ configManager cpuSchedulerSystem - hostdatastoresystem-29 + hostdatastoresystem-32 memoryManagerSystem - hoststoragesystem-33 - hostnetworksystem-30 + hoststoragesystem-36 + hostnetworksystem-33 ha-vmotion-system ha-vnic-mgr serviceSystem - hostfirewallsystem-32 - optionmanager-31 + hostfirewallsystem-35 + optionmanager-34 diagnosticsystem ha-autostart-mgr ha-snmp-agent @@ -5273,21 +5273,25 @@ vm - vm-66 + vm-161 + vm-164 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0060-HostDatastoreSystem-hostdatastoresystem-29.xml b/pkg/check/testdata/default/0062-HostDatastoreSystem-hostdatastoresystem-32.xml similarity index 55% rename from pkg/check/testdata/default/0060-HostDatastoreSystem-hostdatastoresystem-29.xml rename to pkg/check/testdata/default/0062-HostDatastoreSystem-hostdatastoresystem-32.xml index 4b32f0de..2df301a5 100644 --- a/pkg/check/testdata/default/0060-HostDatastoreSystem-hostdatastoresystem-29.xml +++ b/pkg/check/testdata/default/0062-HostDatastoreSystem-hostdatastoresystem-32.xml @@ -1,9 +1,12 @@ - hostdatastoresystem-29 + hostdatastoresystem-32 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 diff --git a/pkg/check/testdata/default/0067-HostNetworkSystem-hostnetworksystem-46.xml b/pkg/check/testdata/default/0063-HostNetworkSystem-hostnetworksystem-33.xml similarity index 98% rename from pkg/check/testdata/default/0067-HostNetworkSystem-hostnetworksystem-46.xml rename to pkg/check/testdata/default/0063-HostNetworkSystem-hostnetworksystem-33.xml index cf1fe666..8408c82b 100644 --- a/pkg/check/testdata/default/0067-HostNetworkSystem-hostnetworksystem-46.xml +++ b/pkg/check/testdata/default/0063-HostNetworkSystem-hostnetworksystem-33.xml @@ -1,5 +1,5 @@ - hostnetworksystem-46 + hostnetworksystem-33 value diff --git a/pkg/check/testdata/default/0062-HostSystem-host-42.xml b/pkg/check/testdata/default/0064-HostSystem-host-45.xml similarity index 99% rename from pkg/check/testdata/default/0062-HostSystem-host-42.xml rename to pkg/check/testdata/default/0064-HostSystem-host-45.xml index 01e73c86..76765664 100644 --- a/pkg/check/testdata/default/0062-HostSystem-host-42.xml +++ b/pkg/check/testdata/default/0064-HostSystem-host-45.xml @@ -1,5 +1,5 @@ - host-42 + host-45 value @@ -10,7 +10,7 @@ parent - clustercomputeresource-27 + clustercomputeresource-30 customValue @@ -68,7 +68,7 @@ connected poweredOn false - 2021-01-08T17:08:20.697733144+01:00 + 2021-02-09T22:59:58.222617124-05:00 @@ -1187,7 +1187,7 @@ summary - host-42 + host-45 VMware, Inc. (govmomi simulator) VMware Virtual Platform @@ -1237,7 +1237,7 @@ connected poweredOn false - 2021-01-08T17:08:20.697733144+01:00 + 2021-02-09T22:59:58.222617124-05:00 @@ -3152,15 +3152,15 @@ configManager cpuSchedulerSystem - hostdatastoresystem-37 + hostdatastoresystem-40 memoryManagerSystem - hoststoragesystem-41 - hostnetworksystem-38 + hoststoragesystem-44 + hostnetworksystem-41 ha-vmotion-system ha-vnic-mgr serviceSystem - hostfirewallsystem-40 - optionmanager-39 + hostfirewallsystem-43 + optionmanager-42 diagnosticsystem ha-autostart-mgr ha-snmp-agent @@ -5272,20 +5272,25 @@ vm - + + vm-158 + datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0063-HostDatastoreSystem-hostdatastoresystem-37.xml b/pkg/check/testdata/default/0065-HostDatastoreSystem-hostdatastoresystem-40.xml similarity index 55% rename from pkg/check/testdata/default/0063-HostDatastoreSystem-hostdatastoresystem-37.xml rename to pkg/check/testdata/default/0065-HostDatastoreSystem-hostdatastoresystem-40.xml index 87959bfc..81c6e9fe 100644 --- a/pkg/check/testdata/default/0063-HostDatastoreSystem-hostdatastoresystem-37.xml +++ b/pkg/check/testdata/default/0065-HostDatastoreSystem-hostdatastoresystem-40.xml @@ -1,9 +1,12 @@ - hostdatastoresystem-37 + hostdatastoresystem-40 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 diff --git a/pkg/check/testdata/default/0056-HostNetworkSystem-hostnetworksystem-16.xml b/pkg/check/testdata/default/0066-HostNetworkSystem-hostnetworksystem-41.xml similarity index 98% rename from pkg/check/testdata/default/0056-HostNetworkSystem-hostnetworksystem-16.xml rename to pkg/check/testdata/default/0066-HostNetworkSystem-hostnetworksystem-41.xml index 21ca6644..520b0aa2 100644 --- a/pkg/check/testdata/default/0056-HostNetworkSystem-hostnetworksystem-16.xml +++ b/pkg/check/testdata/default/0066-HostNetworkSystem-hostnetworksystem-41.xml @@ -1,5 +1,5 @@ - hostnetworksystem-16 + hostnetworksystem-41 value diff --git a/pkg/check/testdata/default/0065-HostSystem-host-50.xml b/pkg/check/testdata/default/0067-HostSystem-host-53.xml similarity index 99% rename from pkg/check/testdata/default/0065-HostSystem-host-50.xml rename to pkg/check/testdata/default/0067-HostSystem-host-53.xml index c4436a45..0995011e 100644 --- a/pkg/check/testdata/default/0065-HostSystem-host-50.xml +++ b/pkg/check/testdata/default/0067-HostSystem-host-53.xml @@ -1,5 +1,5 @@ - host-50 + host-53 value @@ -10,7 +10,7 @@ parent - clustercomputeresource-27 + clustercomputeresource-30 customValue @@ -68,7 +68,7 @@ connected poweredOn false - 2021-01-08T17:08:20.703393303+01:00 + 2021-02-09T22:59:58.230664752-05:00 @@ -1187,7 +1187,7 @@ summary - host-50 + host-53 VMware, Inc. (govmomi simulator) VMware Virtual Platform @@ -1237,7 +1237,7 @@ connected poweredOn false - 2021-01-08T17:08:20.703393303+01:00 + 2021-02-09T22:59:58.230664752-05:00 @@ -3152,15 +3152,15 @@ configManager cpuSchedulerSystem - hostdatastoresystem-45 + hostdatastoresystem-48 memoryManagerSystem - hoststoragesystem-49 - hostnetworksystem-46 + hoststoragesystem-52 + hostnetworksystem-49 ha-vmotion-system ha-vnic-mgr serviceSystem - hostfirewallsystem-48 - optionmanager-47 + hostfirewallsystem-51 + optionmanager-50 diagnosticsystem ha-autostart-mgr ha-snmp-agent @@ -5273,21 +5273,24 @@ vm - vm-63 + vm-167 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 network network-7 - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 diff --git a/pkg/check/testdata/default/0066-HostDatastoreSystem-hostdatastoresystem-45.xml b/pkg/check/testdata/default/0068-HostDatastoreSystem-hostdatastoresystem-48.xml similarity index 55% rename from pkg/check/testdata/default/0066-HostDatastoreSystem-hostdatastoresystem-45.xml rename to pkg/check/testdata/default/0068-HostDatastoreSystem-hostdatastoresystem-48.xml index 5f2451c3..c91be3d3 100644 --- a/pkg/check/testdata/default/0066-HostDatastoreSystem-hostdatastoresystem-45.xml +++ b/pkg/check/testdata/default/0068-HostDatastoreSystem-hostdatastoresystem-48.xml @@ -1,9 +1,12 @@ - hostdatastoresystem-45 + hostdatastoresystem-48 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 diff --git a/pkg/check/testdata/default/0061-HostNetworkSystem-hostnetworksystem-30.xml b/pkg/check/testdata/default/0069-HostNetworkSystem-hostnetworksystem-49.xml similarity index 98% rename from pkg/check/testdata/default/0061-HostNetworkSystem-hostnetworksystem-30.xml rename to pkg/check/testdata/default/0069-HostNetworkSystem-hostnetworksystem-49.xml index ebd3d726..49318e41 100644 --- a/pkg/check/testdata/default/0061-HostNetworkSystem-hostnetworksystem-30.xml +++ b/pkg/check/testdata/default/0069-HostNetworkSystem-hostnetworksystem-49.xml @@ -1,5 +1,5 @@ - hostnetworksystem-30 + hostnetworksystem-49 value diff --git a/pkg/check/testdata/default/0070-ResourcePool-resgroup-29.xml b/pkg/check/testdata/default/0070-ResourcePool-resgroup-29.xml new file mode 100644 index 00000000..ccbc06c5 --- /dev/null +++ b/pkg/check/testdata/default/0070-ResourcePool-resgroup-29.xml @@ -0,0 +1,180 @@ + + resgroup-29 + + value + + + + availableField + + + + parent + clustercomputeresource-30 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + Resources + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-30 + + + resourcePool + + resgroup-55 + resgroup-56 + virtualapp-57 + + + + vm + + vm-158 + vm-161 + + + + config + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0071-ResourcePool-resgroup-55.xml b/pkg/check/testdata/default/0071-ResourcePool-resgroup-55.xml new file mode 100644 index 00000000..8c5c4e80 --- /dev/null +++ b/pkg/check/testdata/default/0071-ResourcePool-resgroup-55.xml @@ -0,0 +1,172 @@ + + resgroup-55 + + value + + + + availableField + + + + parent + resgroup-29 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_C0_RP1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-30 + + + resourcePool + + + + vm + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0072-ResourcePool-resgroup-56.xml b/pkg/check/testdata/default/0072-ResourcePool-resgroup-56.xml new file mode 100644 index 00000000..d1805592 --- /dev/null +++ b/pkg/check/testdata/default/0072-ResourcePool-resgroup-56.xml @@ -0,0 +1,172 @@ + + resgroup-56 + + value + + + + availableField + + + + parent + resgroup-29 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_C0_RP2 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-30 + + + resourcePool + + + + vm + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0073-VirtualApp-virtualapp-57.xml b/pkg/check/testdata/default/0073-VirtualApp-virtualapp-57.xml new file mode 100644 index 00000000..a71abb2b --- /dev/null +++ b/pkg/check/testdata/default/0073-VirtualApp-virtualapp-57.xml @@ -0,0 +1,207 @@ + + virtualapp-57 + + value + + + + availableField + + + + parent + resgroup-29 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_C0_APP0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-30 + + + resourcePool + + + + vm + + vm-164 + vm-167 + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + + parentFolder + folder-3 + + + datastore + + + + network + + + + vAppConfig + + + 0 + vcsim + VMware + 0.1 + http://www.vmware.com/ + + + false + 0 + vcsim + + + + childLink + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0074-Folder-folder-5.xml b/pkg/check/testdata/default/0074-Folder-folder-5.xml new file mode 100644 index 00000000..224ed08c --- /dev/null +++ b/pkg/check/testdata/default/0074-Folder-folder-5.xml @@ -0,0 +1,183 @@ + + folder-5 + + value + + + + availableField + + + + parent + datacenter-2 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + datastore + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + StoragePod + Folder + + + + childEntity + + storagepod-8 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + + + + value + + + + availableField + + + + parent + datacenter-2 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + datastore + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + StoragePod + Folder + + + + childEntity + + storagepod-8 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0075-StoragePod-storagepod-8.xml b/pkg/check/testdata/default/0075-StoragePod-storagepod-8.xml new file mode 100644 index 00000000..3beca691 --- /dev/null +++ b/pkg/check/testdata/default/0075-StoragePod-storagepod-8.xml @@ -0,0 +1,195 @@ + + storagepod-8 + + value + + + + availableField + + + + parent + folder-5 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_POD0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + + + + childEntity + + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + + + + summary + + + 0 + 0 + + + + podStorageDrsEntry + + + + true + false + + + + + + + value + + + + availableField + + + + parent + folder-5 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC0_POD0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + + + + childEntity + + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + + + + summary + + + 0 + 0 + + + + podStorageDrsEntry + + + + true + false + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0070-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-824089577%40folder-5.xml b/pkg/check/testdata/default/0076-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-741472776%40folder-5.xml similarity index 79% rename from pkg/check/testdata/default/0070-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-824089577%40folder-5.xml rename to pkg/check/testdata/default/0076-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-741472776%40folder-5.xml index 144376d8..03781733 100644 --- a/pkg/check/testdata/default/0070-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-824089577%40folder-5.xml +++ b/pkg/check/testdata/default/0076-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_0-741472776%40folder-5.xml @@ -1,5 +1,5 @@ - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 value @@ -66,22 +66,22 @@ info LocalDS_0 - testdata/default/govcsim-DC0-LocalDS_0-824089577 - 16629899264 - 16634093568 - 16634093568 - 2021-01-08T17:08:20.710164907+01:00 - testdata/default/govcsim-DC0-LocalDS_0-824089577 + testdata/default/govcsim-DC0-LocalDS_0-741472776 + 33505005568 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.25671251-05:00 + testdata/default/govcsim-DC0-LocalDS_0-741472776 summary - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 LocalDS_0 - testdata/default/govcsim-DC0-LocalDS_0-824089577 - 16753934336 - 16629899264 + testdata/default/govcsim-DC0-LocalDS_0-741472776 + 33681489920 + 33505005568 true OTHER normal @@ -91,7 +91,7 @@ host - host-50 + host-53 readWrite true @@ -103,15 +103,17 @@ vm - vm-57 - vm-60 - vm-63 - vm-66 + vm-152 + vm-155 + vm-158 + vm-161 + vm-164 + vm-167 browser - hostdatastorebrowser-55 + hostdatastorebrowser-122 capability diff --git a/pkg/check/testdata/default/0071-HostDatastoreBrowser-hostdatastorebrowser-55.xml b/pkg/check/testdata/default/0077-HostDatastoreBrowser-hostdatastorebrowser-122.xml similarity index 76% rename from pkg/check/testdata/default/0071-HostDatastoreBrowser-hostdatastorebrowser-55.xml rename to pkg/check/testdata/default/0077-HostDatastoreBrowser-hostdatastorebrowser-122.xml index 8bc765ae..1e034dc2 100644 --- a/pkg/check/testdata/default/0071-HostDatastoreBrowser-hostdatastorebrowser-55.xml +++ b/pkg/check/testdata/default/0077-HostDatastoreBrowser-hostdatastorebrowser-122.xml @@ -1,9 +1,9 @@ - hostdatastorebrowser-55 + hostdatastorebrowser-122 datastore - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 diff --git a/pkg/check/testdata/default/0078-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_1-392731591%40folder-5.xml b/pkg/check/testdata/default/0078-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_1-392731591%40folder-5.xml new file mode 100644 index 00000000..d70a3f94 --- /dev/null +++ b/pkg/check/testdata/default/0078-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_1-392731591%40folder-5.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + + value + + + + availableField + + + + parent + folder-5 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_1 + testdata/default/govcsim-DC0-LocalDS_1-392731591 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.2567795-05:00 + testdata/default/govcsim-DC0-LocalDS_1-392731591 + + + + summary + + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + LocalDS_1 + testdata/default/govcsim-DC0-LocalDS_1-392731591 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-53 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-126 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0079-HostDatastoreBrowser-hostdatastorebrowser-126.xml b/pkg/check/testdata/default/0079-HostDatastoreBrowser-hostdatastorebrowser-126.xml new file mode 100644 index 00000000..84f4ce9c --- /dev/null +++ b/pkg/check/testdata/default/0079-HostDatastoreBrowser-hostdatastorebrowser-126.xml @@ -0,0 +1,14 @@ + + hostdatastorebrowser-126 + + datastore + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0080-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_2-363093114%40folder-5.xml b/pkg/check/testdata/default/0080-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_2-363093114%40folder-5.xml new file mode 100644 index 00000000..f0adfd0c --- /dev/null +++ b/pkg/check/testdata/default/0080-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_2-363093114%40folder-5.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + + value + + + + availableField + + + + parent + storagepod-8 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_2 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_2 + testdata/default/govcsim-DC0-LocalDS_2-363093114 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.256840079-05:00 + testdata/default/govcsim-DC0-LocalDS_2-363093114 + + + + summary + + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + LocalDS_2 + testdata/default/govcsim-DC0-LocalDS_2-363093114 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-53 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-130 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0081-HostDatastoreBrowser-hostdatastorebrowser-130.xml b/pkg/check/testdata/default/0081-HostDatastoreBrowser-hostdatastorebrowser-130.xml new file mode 100644 index 00000000..315266f7 --- /dev/null +++ b/pkg/check/testdata/default/0081-HostDatastoreBrowser-hostdatastorebrowser-130.xml @@ -0,0 +1,15 @@ + + hostdatastorebrowser-130 + + datastore + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0082-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_3-206027153%40folder-5.xml b/pkg/check/testdata/default/0082-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_3-206027153%40folder-5.xml new file mode 100644 index 00000000..05586d96 --- /dev/null +++ b/pkg/check/testdata/default/0082-Datastore-%2Ftmp%2Fgovcsim-DC0-LocalDS_3-206027153%40folder-5.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + + value + + + + availableField + + + + parent + storagepod-8 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_3 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_3 + testdata/default/govcsim-DC0-LocalDS_3-206027153 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.256916189-05:00 + testdata/default/govcsim-DC0-LocalDS_3-206027153 + + + + summary + + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + LocalDS_3 + testdata/default/govcsim-DC0-LocalDS_3-206027153 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-53 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-134 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0083-HostDatastoreBrowser-hostdatastorebrowser-134.xml b/pkg/check/testdata/default/0083-HostDatastoreBrowser-hostdatastorebrowser-134.xml new file mode 100644 index 00000000..943bd2e5 --- /dev/null +++ b/pkg/check/testdata/default/0083-HostDatastoreBrowser-hostdatastorebrowser-134.xml @@ -0,0 +1,16 @@ + + hostdatastorebrowser-134 + + datastore + + testdata/default/govcsim-DC0-LocalDS_0-741472776@folder-5 + testdata/default/govcsim-DC0-LocalDS_1-392731591@folder-5 + testdata/default/govcsim-DC0-LocalDS_2-363093114@folder-5 + testdata/default/govcsim-DC0-LocalDS_3-206027153@folder-5 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0072-Folder-folder-6.xml b/pkg/check/testdata/default/0084-Folder-folder-6.xml similarity index 92% rename from pkg/check/testdata/default/0072-Folder-folder-6.xml rename to pkg/check/testdata/default/0084-Folder-folder-6.xml index 9b3a74b9..ad7c5b11 100644 --- a/pkg/check/testdata/default/0072-Folder-folder-6.xml +++ b/pkg/check/testdata/default/0084-Folder-folder-6.xml @@ -74,9 +74,11 @@ childEntity network-7 - dvs-9 - dvportgroup-11 - dvportgroup-13 + dvs-10 + dvportgroup-12 + dvportgroup-14 + opaquenetwork-15 + opaquenetwork-16 @@ -153,9 +155,11 @@ childEntity network-7 - dvs-9 - dvportgroup-11 - dvportgroup-13 + dvs-10 + dvportgroup-12 + dvportgroup-14 + opaquenetwork-15 + opaquenetwork-16 \ No newline at end of file diff --git a/pkg/check/testdata/default/0073-Network-network-7.xml b/pkg/check/testdata/default/0085-Network-network-7.xml similarity index 100% rename from pkg/check/testdata/default/0073-Network-network-7.xml rename to pkg/check/testdata/default/0085-Network-network-7.xml diff --git a/pkg/check/testdata/default/0074-DistributedVirtualSwitch-dvs-9.xml b/pkg/check/testdata/default/0086-DistributedVirtualSwitch-dvs-10.xml similarity index 91% rename from pkg/check/testdata/default/0074-DistributedVirtualSwitch-dvs-9.xml rename to pkg/check/testdata/default/0086-DistributedVirtualSwitch-dvs-10.xml index a966fcd6..74a936ba 100644 --- a/pkg/check/testdata/default/0074-DistributedVirtualSwitch-dvs-9.xml +++ b/pkg/check/testdata/default/0086-DistributedVirtualSwitch-dvs-10.xml @@ -1,5 +1,5 @@ - dvs-9 + dvs-10 value @@ -83,11 +83,11 @@ 5973321 etherswitch - host-21 - host-34 - host-42 - host-50 - DVS0-DVUplinks-9 + host-24 + host-37 + host-45 + host-53 + DVS0-DVUplinks-10 DC0_DVPG0 @@ -113,8 +113,8 @@ portgroup - dvportgroup-11 - dvportgroup-13 + dvportgroup-12 + dvportgroup-14 \ No newline at end of file diff --git a/pkg/check/testdata/default/0075-DistributedVirtualPortgroup-dvportgroup-11.xml b/pkg/check/testdata/default/0087-DistributedVirtualPortgroup-dvportgroup-12.xml similarity index 91% rename from pkg/check/testdata/default/0075-DistributedVirtualPortgroup-dvportgroup-11.xml rename to pkg/check/testdata/default/0087-DistributedVirtualPortgroup-dvportgroup-12.xml index 02fcaf67..0ff021f6 100644 --- a/pkg/check/testdata/default/0075-DistributedVirtualPortgroup-dvportgroup-11.xml +++ b/pkg/check/testdata/default/0087-DistributedVirtualPortgroup-dvportgroup-12.xml @@ -1,5 +1,5 @@ - dvportgroup-11 + dvportgroup-12 value @@ -40,7 +40,7 @@ name - DVS0-DVUplinks-9 + DVS0-DVUplinks-10 disabledMethod @@ -65,8 +65,8 @@ summary - dvportgroup-11 - DVS0-DVUplinks-9 + dvportgroup-12 + DVS0-DVUplinks-10 true @@ -74,10 +74,10 @@ host - host-21 - host-34 - host-42 - host-50 + host-24 + host-37 + host-45 + host-53 @@ -86,19 +86,19 @@ name - DVS0-DVUplinks-9 + DVS0-DVUplinks-10 key - dvportgroup-11 + dvportgroup-12 config - dvportgroup-11 - DVS0-DVUplinks-9 + dvportgroup-12 + DVS0-DVUplinks-10 0 - dvs-9 + dvs-10 false @@ -127,7 +127,7 @@ - + earlyBinding true false diff --git a/pkg/check/testdata/default/0076-DistributedVirtualPortgroup-dvportgroup-13.xml b/pkg/check/testdata/default/0088-DistributedVirtualPortgroup-dvportgroup-14.xml similarity index 92% rename from pkg/check/testdata/default/0076-DistributedVirtualPortgroup-dvportgroup-13.xml rename to pkg/check/testdata/default/0088-DistributedVirtualPortgroup-dvportgroup-14.xml index c06e4b35..710cbe05 100644 --- a/pkg/check/testdata/default/0076-DistributedVirtualPortgroup-dvportgroup-13.xml +++ b/pkg/check/testdata/default/0088-DistributedVirtualPortgroup-dvportgroup-14.xml @@ -1,5 +1,5 @@ - dvportgroup-13 + dvportgroup-14 value @@ -65,7 +65,7 @@ summary - dvportgroup-13 + dvportgroup-14 DC0_DVPG0 true @@ -74,10 +74,10 @@ host - host-21 - host-34 - host-42 - host-50 + host-24 + host-37 + host-45 + host-53 @@ -90,15 +90,15 @@ key - dvportgroup-13 + dvportgroup-14 config - dvportgroup-13 + dvportgroup-14 DC0_DVPG0 0 - dvs-9 + dvs-10 false @@ -124,7 +124,7 @@ - + earlyBinding true false diff --git a/pkg/check/testdata/default/0089-OpaqueNetwork-opaquenetwork-15.xml b/pkg/check/testdata/default/0089-OpaqueNetwork-opaquenetwork-15.xml new file mode 100644 index 00000000..b2aae8a2 --- /dev/null +++ b/pkg/check/testdata/default/0089-OpaqueNetwork-opaquenetwork-15.xml @@ -0,0 +1,88 @@ + + opaquenetwork-15 + + value + + + + availableField + + + + parent + folder-6 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + opaquenetwork-15 + DC0_NSX0 + true + + a660233a-1ff0-4db2-9967-06676875efe3 + nsx.LogicalSwitch + + + + host + + + + vm + + + + name + DC0_NSX0 + + + extraConfig + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0090-OpaqueNetwork-opaquenetwork-16.xml b/pkg/check/testdata/default/0090-OpaqueNetwork-opaquenetwork-16.xml new file mode 100644 index 00000000..8a97e9e1 --- /dev/null +++ b/pkg/check/testdata/default/0090-OpaqueNetwork-opaquenetwork-16.xml @@ -0,0 +1,88 @@ + + opaquenetwork-16 + + value + + + + availableField + + + + parent + folder-6 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + opaquenetwork-16 + DC0_NSX1 + true + + eab84262-0fcc-4954-9288-c9ba7d93fad1 + nsx.LogicalSwitch + + + + host + + + + vm + + + + name + DC0_NSX1 + + + extraConfig + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0091-Folder-folder-58.xml b/pkg/check/testdata/default/0091-Folder-folder-58.xml new file mode 100644 index 00000000..6bcc4df1 --- /dev/null +++ b/pkg/check/testdata/default/0091-Folder-folder-58.xml @@ -0,0 +1,153 @@ + + folder-58 + + value + + + + availableField + + + + parent + group-d1 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Folder + Datacenter + + + + childEntity + + datacenter-59 + + + + value + + + + availableField + + + + parent + group-d1 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Folder + Datacenter + + + + childEntity + + datacenter-59 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0092-Datacenter-datacenter-59.xml b/pkg/check/testdata/default/0092-Datacenter-datacenter-59.xml new file mode 100644 index 00000000..cf3ba466 --- /dev/null +++ b/pkg/check/testdata/default/0092-Datacenter-datacenter-59.xml @@ -0,0 +1,103 @@ + + datacenter-59 + + value + + + + availableField + + + + parent + folder-58 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + vmFolder + folder-60 + + + hostFolder + folder-61 + + + datastoreFolder + folder-62 + + + networkFolder + folder-63 + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + dvportgroup-75 + + + + configuration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0093-Folder-folder-60.xml b/pkg/check/testdata/default/0093-Folder-folder-60.xml new file mode 100644 index 00000000..25ce5bd4 --- /dev/null +++ b/pkg/check/testdata/default/0093-Folder-folder-60.xml @@ -0,0 +1,155 @@ + + folder-60 + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + vm + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + VirtualMachine + VirtualApp + Folder + + + + childEntity + + folder-69 + + + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + vm + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + VirtualMachine + VirtualApp + Folder + + + + childEntity + + folder-69 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0094-Folder-folder-69.xml b/pkg/check/testdata/default/0094-Folder-folder-69.xml new file mode 100644 index 00000000..93dc6160 --- /dev/null +++ b/pkg/check/testdata/default/0094-Folder-folder-69.xml @@ -0,0 +1,165 @@ + + folder-69 + + value + + + + availableField + + + + parent + folder-60 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + VirtualMachine + VirtualApp + Folder + + + + childEntity + + vm-170 + vm-173 + vm-176 + vm-179 + vm-182 + vm-185 + + + + value + + + + availableField + + + + parent + folder-60 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + VirtualMachine + VirtualApp + Folder + + + + childEntity + + vm-170 + vm-173 + vm-176 + vm-179 + vm-182 + vm-185 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0095-VirtualMachine-vm-170.xml b/pkg/check/testdata/default/0095-VirtualMachine-vm-170.xml new file mode 100644 index 00000000..dba0e712 --- /dev/null +++ b/pkg/check/testdata/default/0095-VirtualMachine-vm-170.xml @@ -0,0 +1,494 @@ + + vm-170 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_H0_VM0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.264447068-05:00 + DC1_H0_VM0 + otherGuest + vmx-13 + 7930a567-e3b5-5e70-8d60-d32f5c963f60 + a628c174-5062-55cb-82be-c528a0b08c02 + + otherGuest + + + [LocalDS_0] DC1_H0_VM0/DC1_H0_VM0.vmx + [LocalDS_0] DC1_H0_VM0 + [LocalDS_0] DC1_H0_VM0 + [LocalDS_0] DC1_H0_VM0 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 203 + + + cdrom-203 + + + cdrom--201-824641149856 + false + + + true + true + true + + 202 + 0 + + + 204 + + + 1,024 KB + + + [LocalDS_0] DC1_H0_VM0/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + 3ef531e6-4e1b-5910-a47d-7097c691b3bf + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:66:36:30 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_H0_VM0.nvram + vmware.log + + 204 + [LocalDS_0] DC1_H0_VM0/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_H0_VM0.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_H0_VM0.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_H0_VM0/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_H0_VM0/disk1.vmdk + diskDescriptor + 0 + true + + + 204 + + 5 + 6 + + + 2021-02-09T22:59:58.265202376-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.265202056-05:00 + + + + environmentBrowser + envbrowser-84 + + + resourcePool + resgroup-86 + + + runtime + + host-85 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:66:36:30 + true + 4000 + + + + + + summary + + vm-170 + + host-85 + connected + poweredOn + false + 2021-02-09T22:59:58.265284486-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_H0_VM0 + + [LocalDS_0] DC1_H0_VM0/DC1_H0_VM0.vmx + 32 + 1 + 1 + 1 + 7930a567-e3b5-5e70-8d60-d32f5c963f60 + a628c174-5062-55cb-82be-c528a0b08c02 + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.265202156-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0096-EnvironmentBrowser-envbrowser-84.xml b/pkg/check/testdata/default/0096-EnvironmentBrowser-envbrowser-84.xml new file mode 100644 index 00000000..44e2a273 --- /dev/null +++ b/pkg/check/testdata/default/0096-EnvironmentBrowser-envbrowser-84.xml @@ -0,0 +1,3 @@ + + envbrowser-84 + \ No newline at end of file diff --git a/pkg/check/testdata/default/0097-VirtualMachine-vm-173.xml b/pkg/check/testdata/default/0097-VirtualMachine-vm-173.xml new file mode 100644 index 00000000..ba9ccb48 --- /dev/null +++ b/pkg/check/testdata/default/0097-VirtualMachine-vm-173.xml @@ -0,0 +1,494 @@ + + vm-173 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_H0_VM1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.265495465-05:00 + DC1_H0_VM1 + otherGuest + vmx-13 + 45412182-a62f-5c2f-bacb-4d3a45e2e5d9 + e69f1292-4e60-540d-8182-ff2b19e4e97f + + otherGuest + + + [LocalDS_0] DC1_H0_VM1/DC1_H0_VM1.vmx + [LocalDS_0] DC1_H0_VM1 + [LocalDS_0] DC1_H0_VM1 + [LocalDS_0] DC1_H0_VM1 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 1378320822 + + + cdrom-1378320822 + + + cdrom--201-824635601528 + false + + + true + true + true + + 202 + 0 + + + 203 + + + 1,024 KB + + + [LocalDS_0] DC1_H0_VM1/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + 86a4017d-fc99-503d-be04-afb8c80ca22c + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:66:36:30 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_H0_VM1.nvram + vmware.log + + 203 + [LocalDS_0] DC1_H0_VM1/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_H0_VM1.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_H0_VM1.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_H0_VM1/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_H0_VM1/disk1.vmdk + diskDescriptor + 0 + true + + + 203 + + 5 + 6 + + + 2021-02-09T22:59:58.266267783-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.266267483-05:00 + + + + environmentBrowser + envbrowser-84 + + + resourcePool + resgroup-86 + + + runtime + + host-85 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:66:36:30 + true + 4000 + + + + + + summary + + vm-173 + + host-85 + connected + poweredOn + false + 2021-02-09T22:59:58.266348703-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_H0_VM1 + + [LocalDS_0] DC1_H0_VM1/DC1_H0_VM1.vmx + 32 + 1 + 1 + 1 + 45412182-a62f-5c2f-bacb-4d3a45e2e5d9 + e69f1292-4e60-540d-8182-ff2b19e4e97f + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.266267573-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0098-VirtualMachine-vm-176.xml b/pkg/check/testdata/default/0098-VirtualMachine-vm-176.xml new file mode 100644 index 00000000..c55d9ad8 --- /dev/null +++ b/pkg/check/testdata/default/0098-VirtualMachine-vm-176.xml @@ -0,0 +1,494 @@ + + vm-176 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_RP0_VM0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.266567433-05:00 + DC1_C0_RP0_VM0 + otherGuest + vmx-13 + 48cb9b41-18e2-5b40-8751-9f67e5cfbd87 + e9aeab08-6234-57ae-b312-929d3116064c + + otherGuest + + + [LocalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx + [LocalDS_0] DC1_C0_RP0_VM0 + [LocalDS_0] DC1_C0_RP0_VM0 + [LocalDS_0] DC1_C0_RP0_VM0 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 203 + + + cdrom-203 + + + cdrom--201-824641743496 + false + + + true + true + true + + 202 + 0 + + + 204 + + + 1,024 KB + + + [LocalDS_0] DC1_C0_RP0_VM0/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + 8b7e5ac1-9ba4-54eb-b192-71711eb7cae7 + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:64:38:37 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_C0_RP0_VM0.nvram + vmware.log + + 204 + [LocalDS_0] DC1_C0_RP0_VM0/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_C0_RP0_VM0.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_C0_RP0_VM0.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_C0_RP0_VM0/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_C0_RP0_VM0/disk1.vmdk + diskDescriptor + 0 + true + + + 204 + + 5 + 6 + + + 2021-02-09T22:59:58.26734035-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.26734005-05:00 + + + + environmentBrowser + envbrowser-89 + + + resourcePool + resgroup-90 + + + runtime + + host-114 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:64:38:37 + true + 4000 + + + + + + summary + + vm-176 + + host-114 + connected + poweredOn + false + 2021-02-09T22:59:58.26741974-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_C0_RP0_VM0 + + [LocalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx + 32 + 1 + 1 + 1 + 48cb9b41-18e2-5b40-8751-9f67e5cfbd87 + e9aeab08-6234-57ae-b312-929d3116064c + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.26734014-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0099-EnvironmentBrowser-envbrowser-89.xml b/pkg/check/testdata/default/0099-EnvironmentBrowser-envbrowser-89.xml new file mode 100644 index 00000000..e4d4ffe3 --- /dev/null +++ b/pkg/check/testdata/default/0099-EnvironmentBrowser-envbrowser-89.xml @@ -0,0 +1,3 @@ + + envbrowser-89 + \ No newline at end of file diff --git a/pkg/check/testdata/default/0100-VirtualMachine-vm-179.xml b/pkg/check/testdata/default/0100-VirtualMachine-vm-179.xml new file mode 100644 index 00000000..a7977be9 --- /dev/null +++ b/pkg/check/testdata/default/0100-VirtualMachine-vm-179.xml @@ -0,0 +1,494 @@ + + vm-179 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_RP0_VM1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.267638059-05:00 + DC1_C0_RP0_VM1 + otherGuest + vmx-13 + e0d1be9b-5697-5cc0-a940-56cee271abe4 + cdefc757-d0f6-58aa-aea2-f1f3c83b60ff + + otherGuest + + + [LocalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx + [LocalDS_0] DC1_C0_RP0_VM1 + [LocalDS_0] DC1_C0_RP0_VM1 + [LocalDS_0] DC1_C0_RP0_VM1 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 590594780 + + + cdrom-590594780 + + + cdrom--201-824637756632 + false + + + true + true + true + + 202 + 0 + + + 203 + + + 1,024 KB + + + [LocalDS_0] DC1_C0_RP0_VM1/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + daa4a96d-4853-5046-87b5-ec59fe7479fb + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:64:38:37 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_C0_RP0_VM1.nvram + vmware.log + + 203 + [LocalDS_0] DC1_C0_RP0_VM1/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_C0_RP0_VM1.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_C0_RP0_VM1.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_C0_RP0_VM1/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_C0_RP0_VM1/disk1.vmdk + diskDescriptor + 0 + true + + + 203 + + 5 + 6 + + + 2021-02-09T22:59:58.268432047-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.268431717-05:00 + + + + environmentBrowser + envbrowser-89 + + + resourcePool + resgroup-90 + + + runtime + + host-106 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:64:38:37 + true + 4000 + + + + + + summary + + vm-179 + + host-106 + connected + poweredOn + false + 2021-02-09T22:59:58.268512937-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_C0_RP0_VM1 + + [LocalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx + 32 + 1 + 1 + 1 + e0d1be9b-5697-5cc0-a940-56cee271abe4 + cdefc757-d0f6-58aa-aea2-f1f3c83b60ff + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.268431807-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0101-VirtualMachine-vm-182.xml b/pkg/check/testdata/default/0101-VirtualMachine-vm-182.xml new file mode 100644 index 00000000..a1319559 --- /dev/null +++ b/pkg/check/testdata/default/0101-VirtualMachine-vm-182.xml @@ -0,0 +1,494 @@ + + vm-182 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_APP0_VM0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.268732997-05:00 + DC1_C0_APP0_VM0 + otherGuest + vmx-13 + db46440b-5e5c-5d0d-a4da-b1cdd238015e + 0f4f30ee-c3b9-5099-8589-0500b30477b4 + + otherGuest + + + [LocalDS_0] DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx + [LocalDS_0] DC1_C0_APP0_VM0 + [LocalDS_0] DC1_C0_APP0_VM0 + [LocalDS_0] DC1_C0_APP0_VM0 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 1062690721 + + + cdrom-1062690721 + + + cdrom--201-824647588824 + false + + + true + true + true + + 202 + 0 + + + 203 + + + 1,024 KB + + + [LocalDS_0] DC1_C0_APP0_VM0/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + f53288b7-2535-540b-a0af-eabc98e9bdc0 + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:31:35:65 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_C0_APP0_VM0.nvram + vmware.log + + 203 + [LocalDS_0] DC1_C0_APP0_VM0/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_C0_APP0_VM0.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_C0_APP0_VM0.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_C0_APP0_VM0/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_C0_APP0_VM0/disk1.vmdk + diskDescriptor + 0 + true + + + 203 + + 5 + 6 + + + 2021-02-09T22:59:58.269518374-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.269518074-05:00 + + + + environmentBrowser + envbrowser-89 + + + resourcePool + virtualapp-118 + + + runtime + + host-98 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:31:35:65 + true + 4000 + + + + + + summary + + vm-182 + + host-98 + connected + poweredOn + false + 2021-02-09T22:59:58.269601004-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_C0_APP0_VM0 + + [LocalDS_0] DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx + 32 + 1 + 1 + 1 + db46440b-5e5c-5d0d-a4da-b1cdd238015e + 0f4f30ee-c3b9-5099-8589-0500b30477b4 + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.269518174-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0102-VirtualMachine-vm-185.xml b/pkg/check/testdata/default/0102-VirtualMachine-vm-185.xml new file mode 100644 index 00000000..ea49d1e3 --- /dev/null +++ b/pkg/check/testdata/default/0102-VirtualMachine-vm-185.xml @@ -0,0 +1,494 @@ + + vm-185 + + value + + + + availableField + + + + parent + folder-69 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_APP0_VM1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + capability + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + false + + + + config + + + 2021-02-09T22:59:58.270204512-05:00 + DC1_C0_APP0_VM1 + otherGuest + vmx-13 + 4adcb8cf-a507-5765-8974-16da31b62dca + 0950ecb4-b343-5182-a66e-e2d2c3df8ef5 + + otherGuest + + + [LocalDS_0] DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx + [LocalDS_0] DC1_C0_APP0_VM1 + [LocalDS_0] DC1_C0_APP0_VM1 + [LocalDS_0] DC1_C0_APP0_VM1 + + + + + + 1 + 1 + 32 + + 200 + + + IDE 0 + + 0 + + + 201 + + + IDE 1 + + 1 + + + 300 + + + PS2 controller 0 + + 0 + 600 + 700 + + + 100 + + + PCI controller 0 + + 0 + 500 + 12000 + + + 400 + + + SIO controller 0 + + 0 + + + 600 + + + Keyboard + + 300 + 0 + + + 700 + + + Pointing device; Device + + + + false + autodetect + + 300 + 1 + + + 500 + + + Video card + + 100 + 0 + 4096 + 1 + false + false + automatic + 262144 + + + 12000 + + + Device on the virtual machine PCI bus that provides support for the virtual machine communication interface + + 100 + 17 + -1 + false + true + + + 202 + + + pvscsi-202 + + 0 + noSharing + 7 + + + 1302581265 + + + cdrom-1302581265 + + + cdrom--201-824647826760 + false + + + true + true + true + + 202 + 0 + + + 2045176213 + + + 1,024 KB + + + [LocalDS_0] DC1_C0_APP0_VM1/disk1.vmdk + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + persistent + false + false + true + false + 8a393bae-aaa1-52c5-8811-36a0f515e878 + false + + 202 + 0 + 1024 + + + 4000 + + + DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014 + + + + fea97929-4b2d-5972-b146-930c6d0b4014 + dvportgroup-75 + + + + true + true + false + untried + + + 32 + + 100 + 7 + generated + 00:0c:29:31:35:65 + true + + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + normal + + + govcsim + TRUE + + + bios + + + + layout + + DC1_C0_APP0_VM1.nvram + vmware.log + + 2045176213 + [LocalDS_0] DC1_C0_APP0_VM1/disk1.vmdk + + + + + layoutEx + + + 0 + [LocalDS_0] DC1_C0_APP0_VM1.nvram + nvram + 0 + true + + + 1 + [LocalDS_0] DC1_C0_APP0_VM1.vmx + config + 0 + true + + + 2 + [LocalDS_0] disk1-flat.vmdk + diskExtent + 0 + true + + + 3 + [LocalDS_0] disk1.vmdk + diskDescriptor + 0 + true + + + 4 + [LocalDS_0] vmware.log + log + 32 + 32 + true + + + 5 + [LocalDS_0] DC1_C0_APP0_VM1/disk1-flat.vmdk + diskExtent + 0 + true + + + 6 + [LocalDS_0] DC1_C0_APP0_VM1/disk1.vmdk + diskDescriptor + 0 + true + + + 2045176213 + + 5 + 6 + + + 2021-02-09T22:59:58.27117368-05:00 + + + + storage + + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + 0 + 0 + 0 + + 2021-02-09T22:59:58.27117331-05:00 + + + + environmentBrowser + envbrowser-89 + + + resourcePool + virtualapp-118 + + + runtime + + host-98 + connected + poweredOn + false + 0 + + + + guest + + toolsNotInstalled + guestToolsNotRunning + 0 + linuxGuest + + 00:0c:29:31:35:65 + true + 4000 + + + + + + summary + + vm-185 + + host-98 + connected + poweredOn + false + 2021-02-09T22:59:58.271294849-05:00 + 0 + + + otherGuest + toolsNotInstalled + + + DC1_C0_APP0_VM1 + + [LocalDS_0] DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx + 32 + 1 + 1 + 1 + 4adcb8cf-a507-5765-8974-16da31b62dca + 0950ecb4-b343-5182-a66e-e2d2c3df8ef5 + otherGuest + otherGuest + + + 0 + 0 + 0 + 2021-02-09T22:59:58.27117341-05:00 + + + gray + + green + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + network + + dvportgroup-75 + + + + rootSnapshot + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0103-Folder-folder-61.xml b/pkg/check/testdata/default/0103-Folder-folder-61.xml new file mode 100644 index 00000000..4c357867 --- /dev/null +++ b/pkg/check/testdata/default/0103-Folder-folder-61.xml @@ -0,0 +1,153 @@ + + folder-61 + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + host + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + ComputeResource + Folder + + + + childEntity + + folder-67 + + + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + host + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + ComputeResource + Folder + + + + childEntity + + folder-67 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0104-Folder-folder-67.xml b/pkg/check/testdata/default/0104-Folder-folder-67.xml new file mode 100644 index 00000000..22c40bb9 --- /dev/null +++ b/pkg/check/testdata/default/0104-Folder-folder-67.xml @@ -0,0 +1,155 @@ + + folder-67 + + value + + + + availableField + + + + parent + folder-61 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + ComputeResource + Folder + + + + childEntity + + computeresource-87 + clustercomputeresource-91 + + + + value + + + + availableField + + + + parent + folder-61 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + ComputeResource + Folder + + + + childEntity + + computeresource-87 + clustercomputeresource-91 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0105-ComputeResource-computeresource-87.xml b/pkg/check/testdata/default/0105-ComputeResource-computeresource-87.xml new file mode 100644 index 00000000..07ef5dd3 --- /dev/null +++ b/pkg/check/testdata/default/0105-ComputeResource-computeresource-87.xml @@ -0,0 +1,116 @@ + + computeresource-87 + + value + + + + availableField + + + + parent + folder-67 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_H0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + resourcePool + resgroup-86 + + + host + + host-85 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + summary + + 2294 + 4294430720 + 2 + 2 + 2294 + 4294430720 + 1 + 1 + green + + + + environmentBrowser + envbrowser-84 + + + configurationEx + + vmDirectory + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0106-HostSystem-host-85.xml b/pkg/check/testdata/default/0106-HostSystem-host-85.xml new file mode 100644 index 00000000..7c16b86b --- /dev/null +++ b/pkg/check/testdata/default/0106-HostSystem-host-85.xml @@ -0,0 +1,5301 @@ + + host-85 + + value + + + + availableField + + + + parent + computeresource-87 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_H0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + runtime + + connected + poweredOn + false + 2021-02-09T22:59:58.237589813-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + + summary + + host-85 + + VMware, Inc. (govmomi simulator) + VMware Virtual Platform + 2975dcb5-267a-508b-991e-41679bc816db + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 2f 12 80 41 63 9b-50 18 05 a8 35 b7 2e af + + + Service tag of the system + ServiceTag + + + 4294430720 + Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz + 2294 + 2 + 2 + 2 + 1 + 3 + + + connected + poweredOn + false + 2021-02-09T22:59:58.237589813-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + DC1_H0 + 8989 + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + false + true + + + 67 + 1404 + 77229 + + gray + false + + + + hardware + + + VMware, Inc. + VMware Virtual Platform + 2975dcb5-267a-508b-991e-41679bc816db + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 8d e8 1e 9f a1 3e-71 fa 13 a8 e1 a7 fd 70 + + + Service tag of the system + ServiceTag + + + + + Balanced + + + 2 + 2 + 2 + 3591345000 + + + 0 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 0 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + + 1 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 1 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0010:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 4294430720 + + NUMA + 1 + + 0 + 1 + 0 + 4294967296 + 1073741824 + + + false + + 0000:00:00.0 + 1536 + 0 + 0 + 0 + -32634 + 5549 + Intel Corporation + 29072 + 6518 + Virtual Machine Chipset + + + 0000:00:01.0 + 1540 + 0 + 1 + 0 + -32634 + 0 + Intel Corporation + 29073 + 0 + 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge + + + 0000:00:07.0 + 1537 + 0 + 7 + 0 + -32634 + 5549 + Intel Corporation + 28944 + 6518 + Virtual Machine Chipset + + + 0000:00:07.1 + 257 + 0 + 7 + 1 + -32634 + 5549 + Intel Corporation + 28945 + 6518 + PIIX4 for 430TX/440BX/MX IDE Controller + + + 0000:00:07.3 + 1664 + 0 + 7 + 3 + -32634 + 5549 + Intel Corporation + 28947 + 6518 + Virtual Machine Chipset + + + 0000:00:07.7 + 2176 + 0 + 7 + 7 + 5549 + 5549 + VMware + 1856 + 1856 + Virtual Machine Communication Interface + + + 0000:00:0f.0 + 768 + 0 + 15 + 0 + 5549 + 5549 + VMware + 1029 + 1029 + SVGA II Adapter + + + 0000:00:11.0 + 1540 + 0 + 17 + 0 + 5549 + 0 + VMware + 1936 + 0 + PCI bridge + + + 0000:00:15.0 + 1540 + 0 + 21 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.1 + 1540 + 0 + 21 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.2 + 1540 + 0 + 21 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.3 + 1540 + 0 + 21 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.4 + 1540 + 0 + 21 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.5 + 1540 + 0 + 21 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.6 + 1540 + 0 + 21 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.7 + 1540 + 0 + 21 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.0 + 1540 + 0 + 22 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.1 + 1540 + 0 + 22 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.2 + 1540 + 0 + 22 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.3 + 1540 + 0 + 22 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.4 + 1540 + 0 + 22 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.5 + 1540 + 0 + 22 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.6 + 1540 + 0 + 22 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.7 + 1540 + 0 + 22 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.0 + 1540 + 0 + 23 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.1 + 1540 + 0 + 23 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.2 + 1540 + 0 + 23 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.3 + 1540 + 0 + 23 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.4 + 1540 + 0 + 23 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.5 + 1540 + 0 + 23 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.6 + 1540 + 0 + 23 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.7 + 1540 + 0 + 23 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.0 + 1540 + 0 + 24 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.1 + 1540 + 0 + 24 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.2 + 1540 + 0 + 24 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.3 + 1540 + 0 + 24 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.4 + 1540 + 0 + 24 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.5 + 1540 + 0 + 24 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.6 + 1540 + 0 + 24 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.7 + 1540 + 0 + 24 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:03:00.0 + 263 + 3 + 0 + 0 + 5549 + 5549 + VMware + 1984 + 1984 + 0000:00:15.0 + PVSCSI SCSI Controller + + + 0000:0b:00.0 + 512 + 11 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:16.0 + vmxnet3 Virtual Ethernet Controller + + + 0000:13:00.0 + 512 + 19 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:17.0 + vmxnet3 Virtual Ethernet Controller + + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 6.00 + 2015-07-02T00:00:00Z + + + 0 + + + + + licensableResource + + + numCpuPackages + + numCpuPackages + 2 + + + + + + configManager + + cpuSchedulerSystem + hostdatastoresystem-79 + memoryManagerSystem + hoststoragesystem-83 + hostnetworksystem-80 + ha-vmotion-system + ha-vnic-mgr + serviceSystem + hostfirewallsystem-82 + optionmanager-81 + diagnosticsystem + ha-autostart-mgr + ha-snmp-agent + dateTimeSystem + ha-host-patch-manager + ha-image-config-manager + ha-firmwareSystem + healthStatusSystem + ha-pcipassthrusystem + ha-license-manager + kernelModuleSystem + ha-auth-manager + ha-power-system + ha-cache-configuration-manager + iscsiManager + ha-vflash-manager + vsanSystem + messageBusProxy + ha-user-directory + ha-localacctmgr + ha-host-access-manager + ha-graphics-manager + ha-vsan-internal-system + ha-certificate-manager + + + + config + + ha-host + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + + false + + + false + false + true + + + + key-vim.host.ParallelScsiHba-vmhba0 + vmhba0 + 3 + unknown + PVSCSI SCSI Controller + pvscsi + 0000:03:00.0 + + + key-vim.host.BlockHba-vmhba1 + vmhba1 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + key-vim.host.BlockHba-vmhba64 + vmhba64 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0 + cdrom + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + + lowQuality + mpx.vmhba1:C0:T0:L0 + + + lowQuality + vml.0005000000766d686261313a303a30 + + + lowQuality + 0005000000766d686261313a303a30 + + mpx.vmhba1:C0:T0:L0 + Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0) + cdrom + NECVMWar + VMware IDE CDR00 + 1.00 + 5 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + ok + + false + + vStorageUnsupported + false + + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + disk + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + + lowQuality + mpx.vmhba0:C0:T0:L0 + + + lowQuality + vml.0000000000766d686261303a303a30 + + + lowQuality + 0000000000766d686261303a303a30 + + mpx.vmhba0:C0:T0:L0 + Local VMware, Disk (mpx.vmhba0:C0:T0:L0) + disk + VMware, + VMware Virtual S + 1.0 + 2 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + 1024 + ok + + false + + vStorageUnsupported + false + + 512 + 67108864 + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + true + true + false + native512 + + + + key-vim.host.ScsiTopology.Interface-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + + key-vim.host.ScsiTopology.Target-vmhba0:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30 + 0 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba1 + key-vim.host.BlockHba-vmhba1 + + key-vim.host.ScsiTopology.Target-vmhba1:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30 + 0 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + + + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + active + active + true + key-vim.host.BlockHba-vmhba1 + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + + + + VMW_PSP_FIXED + vmhba1:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + active + active + true + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + + + + VMW_PSP_FIXED + vmhba0:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + + + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.BlockHba-vmhba1 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + + + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.PlugStoreTopology.Target-ide.0:0 + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + + + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + + + + key-vim.host.PlugStoreTopology.Target-ide.0:0 + + + + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Plugin-NMP + NMP + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + false + + + + vSwitch0 + key-vim.host.VirtualSwitch-vSwitch0 + 1536 + 1530 + 1500 + key-vim.host.PortGroup-VM Network + key-vim.host.PortGroup-Management Network + key-vim.host.PhysicalNic-vmnic0 + + 128 + + vmnic0 + + 1 + + + cdp + listen + + + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + key-vim.host.PhysicalNic-vmnic0 + vmnic0 + 0000:0b:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:a0 + + 3 + 00:0c:29:81:d8:a0 + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + key-vim.host.PhysicalNic-vmnic1 + vmnic1 + 0000:13:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:aa + + 3 + 00:0c:29:81:d8:aa + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + vmk0 + key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + key-vim.host.PortGroup.Port-33554436 + + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + false + false + + vSphereProvisioning + + false + + + + + 11000 + newreno + true + + + vmotion + + false + + + + + 11000 + newreno + true + + + defaultTcpipStack + defaultTcpipStack + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + 11000 + newreno + true + + + ignore + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + + ignore + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + +
+
+ + + + vmk0 + VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + + faultToleranceLogging + true + + vmk0 + faultToleranceLogging.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + management + true + + vmk1 + management.key-vim.host.VirtualNic-vmk1 + + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:00 + Management Network + 1500 + true + defaultTcpipStack + + + + vmk0 + management.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + management.key-vim.host.VirtualNic-vmk0 + + + vSphereProvisioning + true + + vmk0 + vSphereProvisioning.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplication + true + + vmk0 + vSphereReplication.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplicationNFC + true + + vmk0 + vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vmotion + true + + vmk0 + vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsan + true + + vmk0 + vsan.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsanWitness + true + + vmk0 + vsanWitness.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + true + true + loadbalance_ip + loadbalance_srcmac + loadbalance_srcid + failover_explicit + true + false + true + true + true + true + true + true + true + + + true + true + false + true + + + true + true + true + + + + DCUI + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM-SSH + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lbtd + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lwsmd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + ntpd + + false + false + false + ntpClient + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + pcscd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + sfcbd-watchdog + + false + false + false + CIMHttpServer + CIMHttpsServer + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + snmpd + + false + false + false + snmp + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vmsyslogd + + true + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vpxa + + false + false + false + vpxHeartbeats + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + xorg + + false + false + false + on + + esx-xserver + This VIB contains X Server used for virtual machine 3D hardware acceleration. + + + + + + true + true + + + CIMHttpServer + + false + + 5988 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMHttpsServer + + false + + 5989 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMSLP + + false + + 427 + inbound + dst + udp + + + 427 + outbound + dst + udp + + + 427 + inbound + dst + tcp + + + 427 + outbound + dst + tcp + + true + + true + + + + DHCPv6 + + false + + 547 + outbound + dst + tcp + + + 546 + inbound + dst + tcp + + + 547 + outbound + dst + udp + + + 546 + inbound + dst + udp + + true + + true + + + + DVFilter + + false + + 2222 + inbound + dst + tcp + + false + + true + + + + DVSSync + + false + + 8302 + outbound + dst + udp + + + 8301 + inbound + dst + udp + + + 8301 + outbound + dst + udp + + + 8302 + inbound + dst + udp + + true + + true + + + + HBR + + false + + 31031 + outbound + dst + tcp + + + 44046 + outbound + dst + tcp + + true + + true + + + + NFC + + false + + 902 + inbound + dst + tcp + + + 902 + outbound + dst + tcp + + true + + true + + + + WOL + + false + + 9 + outbound + dst + udp + + true + + true + + + + activeDirectoryAll + + false + + 88 + outbound + dst + udp + + + 88 + outbound + dst + tcp + + + 123 + outbound + dst + udp + + + 137 + outbound + dst + udp + + + 139 + outbound + dst + tcp + + + 389 + outbound + dst + tcp + + + 389 + outbound + dst + udp + + + 445 + outbound + dst + tcp + + + 464 + outbound + dst + udp + + + 464 + outbound + dst + tcp + + + 3268 + outbound + dst + tcp + + + 7476 + outbound + dst + tcp + + + 2020 + inbound + dst + tcp + + false + + true + + + + cmmds + + false + + 12345 + inbound + dst + udp + + + 23451 + inbound + dst + udp + + + 12345 + outbound + dst + udp + + + 23451 + outbound + dst + udp + + + 12321 + inbound + dst + udp + + + 12321 + outbound + dst + udp + + false + + true + + + + dhcp + + false + + 68 + inbound + dst + udp + + + 68 + outbound + src + udp + + true + + true + + + + dns + + false + + 53 + inbound + dst + udp + + + 53 + outbound + dst + udp + + + 53 + outbound + dst + tcp + + true + + true + + + + esxupdate + + false + + 443 + outbound + dst + tcp + + false + + true + + + + faultTolerance + + false + + 80 + outbound + dst + tcp + + + 8300 + inbound + dst + tcp + + + 8300 + outbound + dst + tcp + + true + + true + + + + ftpClient + + false + + 21 + outbound + dst + tcp + + + 20 + inbound + src + tcp + + false + + true + + + + gdbserver + + false + + 1000 + 9999 + inbound + dst + tcp + + + 50000 + 50999 + inbound + dst + tcp + + false + + true + + + + httpClient + + false + + 80 + outbound + dst + tcp + + + 443 + outbound + dst + tcp + + false + + true + + + + iSCSI + + false + + 3260 + outbound + dst + tcp + + false + + true + + + + iofiltervp + + false + + 9080 + inbound + dst + tcp + + true + + true + + + + ipfam + + false + + 6999 + inbound + dst + udp + + + 6999 + outbound + dst + udp + + false + + true + + + + nfs41Client + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + nfsClient + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + ntpClient + + false + + 123 + outbound + dst + udp + + ntpd + false + + true + + + + pvrdma + + false + + 28250 + 28761 + outbound + dst + tcp + + + 28250 + 28761 + inbound + dst + tcp + + false + + true + + + + rabbitmqproxy + + false + + 5671 + outbound + dst + tcp + + true + + true + + + + rdt + + false + + 2233 + inbound + dst + tcp + + + 2233 + outbound + dst + tcp + + false + + true + + + + remoteSerialPort + + false + + 0 + 65535 + outbound + dst + tcp + + + 23 + inbound + dst + tcp + + + 1024 + 65535 + inbound + dst + tcp + + false + + true + + + + snmp + + false + + 161 + inbound + dst + udp + + snmpd + true + + true + + + + sshClient + + false + + 22 + outbound + dst + tcp + + false + + true + + + + sshServer + + true + + 22 + inbound + dst + tcp + + true + + true + + + + syslog + + false + + 514 + outbound + dst + udp + + + 514 + outbound + dst + tcp + + + 1514 + outbound + dst + tcp + + false + + true + + + + updateManager + + false + + 80 + outbound + dst + tcp + + + 9000 + 9100 + outbound + dst + tcp + + true + + true + + + + vMotion + + false + + 8000 + inbound + dst + tcp + + + 8000 + outbound + dst + tcp + + true + + true + + + + vSPC + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vSphereClient + + true + + 902 + inbound + dst + tcp + + + 443 + inbound + dst + tcp + + true + + true + + + + vpxHeartbeats + + false + + 902 + outbound + dst + udp + + vpxa + true + + true + + + + vsanEncryption + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vsanhealth-multicasttest + + false + + 5001 + outbound + dst + udp + + + 5001 + inbound + dst + udp + + false + + true + + + + vsanvp + + false + + 8080 + inbound + dst + tcp + + + 8080 + outbound + dst + tcp + + false + + true + + + + vvold + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + webAccess + + false + + 80 + inbound + dst + tcp + + true + + true + + + + + + 120 + 120 + false + PowerOff + + + + directAttached + singleHost + -15 + + mpx.vmhba0:C0:T0:L0 + 9 + + + + lockdownDisabled + 10 + + + true + + + false + false + + + + + 1 + PowerPolicy.static.name + static + PowerPolicy.static.description + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + 3 + PowerPolicy.low.name + low + PowerPolicy.low.description + + + 4 + PowerPolicy.custom.name + custom + PowerPolicy.custom.description + + + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + + 5980f676-21a5db76-9eef-000c2981d8a0 + 0 + + false + + false + ha-host + + + false + + + + + + + + shared + performance + + + VMW_spm_1.0.0 + spm + VMW + 1.0.230 + datastoreIoControl + VMware Storage I/O Control + 2016-07-21 + true + + + VMW_vmwarevmcrypt_1.0.0 + vmwarevmcrypt + VMW + 1.0.0 + encryption + VMcrypt IO Filter + 2016-07-21 + true + +
+
+ + vm + + vm-170 + vm-173 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + datastoreBrowser + ha-host-datastorebrowser + +
\ No newline at end of file diff --git a/pkg/check/testdata/default/0107-HostDatastoreSystem-hostdatastoresystem-79.xml b/pkg/check/testdata/default/0107-HostDatastoreSystem-hostdatastoresystem-79.xml new file mode 100644 index 00000000..2e79f998 --- /dev/null +++ b/pkg/check/testdata/default/0107-HostDatastoreSystem-hostdatastoresystem-79.xml @@ -0,0 +1,20 @@ + + hostdatastoresystem-79 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + capabilities + + false + false + false + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0108-HostNetworkSystem-hostnetworksystem-80.xml b/pkg/check/testdata/default/0108-HostNetworkSystem-hostnetworksystem-80.xml new file mode 100644 index 00000000..cbc6227e --- /dev/null +++ b/pkg/check/testdata/default/0108-HostNetworkSystem-hostnetworksystem-80.xml @@ -0,0 +1,137 @@ + + hostnetworksystem-80 + + value + + + + availableField + + + + networkInfo + + + vSwitch0 + + 0 + 0 + VM Network + + 0 + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0068-ResourcePool-resgroup-26.xml b/pkg/check/testdata/default/0109-ResourcePool-resgroup-86.xml similarity index 94% rename from pkg/check/testdata/default/0068-ResourcePool-resgroup-26.xml rename to pkg/check/testdata/default/0109-ResourcePool-resgroup-86.xml index 024be685..f4a3b6f1 100644 --- a/pkg/check/testdata/default/0068-ResourcePool-resgroup-26.xml +++ b/pkg/check/testdata/default/0109-ResourcePool-resgroup-86.xml @@ -1,5 +1,5 @@ - resgroup-26 + resgroup-86 value @@ -10,7 +10,7 @@ parent - clustercomputeresource-27 + computeresource-87 customValue @@ -65,7 +65,7 @@ summary - Resources + DC1_C0_APP0 ha-root-pool @@ -132,7 +132,7 @@ owner - clustercomputeresource-27 + computeresource-87 resourcePool @@ -141,8 +141,8 @@ vm - vm-63 - vm-66 + vm-170 + vm-173 diff --git a/pkg/check/testdata/default/0110-ClusterComputeResource-clustercomputeresource-91.xml b/pkg/check/testdata/default/0110-ClusterComputeResource-clustercomputeresource-91.xml new file mode 100644 index 00000000..03621631 --- /dev/null +++ b/pkg/check/testdata/default/0110-ClusterComputeResource-clustercomputeresource-91.xml @@ -0,0 +1,164 @@ + + clustercomputeresource-91 + + value + + + + availableField + + + + parent + folder-67 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + resourcePool + resgroup-90 + + + host + + host-98 + host-106 + host-114 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + summary + + 6882 + 12883292160 + 6 + 6 + 6882 + 12883292160 + 3 + 3 + green + 0 + 0 + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + + environmentBrowser + envbrowser-89 + + + configurationEx + + vmDirectory + + + true + + + + + configuration + + + + + + + recommendation + + + + drsRecommendation + + + + migrationHistory + + + + actionHistory + + + + drsFault + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0111-HostSystem-host-98.xml b/pkg/check/testdata/default/0111-HostSystem-host-98.xml new file mode 100644 index 00000000..0016ef2a --- /dev/null +++ b/pkg/check/testdata/default/0111-HostSystem-host-98.xml @@ -0,0 +1,5301 @@ + + host-98 + + value + + + + availableField + + + + parent + clustercomputeresource-91 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_H0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + runtime + + connected + poweredOn + false + 2021-02-09T22:59:58.243820875-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + + summary + + host-98 + + VMware, Inc. (govmomi simulator) + VMware Virtual Platform + c9c66d13-420d-50b7-8ccf-6fbeef74baba + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 2f 12 80 41 63 9b-50 18 05 a8 35 b7 2e af + + + Service tag of the system + ServiceTag + + + 4294430720 + Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz + 2294 + 2 + 2 + 2 + 1 + 3 + + + connected + poweredOn + false + 2021-02-09T22:59:58.243820875-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + DC1_C0_H0 + 8989 + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + false + true + + + 67 + 1404 + 77229 + + gray + false + + + + hardware + + + VMware, Inc. + VMware Virtual Platform + c9c66d13-420d-50b7-8ccf-6fbeef74baba + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 8d e8 1e 9f a1 3e-71 fa 13 a8 e1 a7 fd 70 + + + Service tag of the system + ServiceTag + + + + + Balanced + + + 2 + 2 + 2 + 3591345000 + + + 0 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 0 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + + 1 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 1 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0010:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 4294430720 + + NUMA + 1 + + 0 + 1 + 0 + 4294967296 + 1073741824 + + + false + + 0000:00:00.0 + 1536 + 0 + 0 + 0 + -32634 + 5549 + Intel Corporation + 29072 + 6518 + Virtual Machine Chipset + + + 0000:00:01.0 + 1540 + 0 + 1 + 0 + -32634 + 0 + Intel Corporation + 29073 + 0 + 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge + + + 0000:00:07.0 + 1537 + 0 + 7 + 0 + -32634 + 5549 + Intel Corporation + 28944 + 6518 + Virtual Machine Chipset + + + 0000:00:07.1 + 257 + 0 + 7 + 1 + -32634 + 5549 + Intel Corporation + 28945 + 6518 + PIIX4 for 430TX/440BX/MX IDE Controller + + + 0000:00:07.3 + 1664 + 0 + 7 + 3 + -32634 + 5549 + Intel Corporation + 28947 + 6518 + Virtual Machine Chipset + + + 0000:00:07.7 + 2176 + 0 + 7 + 7 + 5549 + 5549 + VMware + 1856 + 1856 + Virtual Machine Communication Interface + + + 0000:00:0f.0 + 768 + 0 + 15 + 0 + 5549 + 5549 + VMware + 1029 + 1029 + SVGA II Adapter + + + 0000:00:11.0 + 1540 + 0 + 17 + 0 + 5549 + 0 + VMware + 1936 + 0 + PCI bridge + + + 0000:00:15.0 + 1540 + 0 + 21 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.1 + 1540 + 0 + 21 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.2 + 1540 + 0 + 21 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.3 + 1540 + 0 + 21 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.4 + 1540 + 0 + 21 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.5 + 1540 + 0 + 21 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.6 + 1540 + 0 + 21 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.7 + 1540 + 0 + 21 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.0 + 1540 + 0 + 22 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.1 + 1540 + 0 + 22 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.2 + 1540 + 0 + 22 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.3 + 1540 + 0 + 22 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.4 + 1540 + 0 + 22 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.5 + 1540 + 0 + 22 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.6 + 1540 + 0 + 22 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.7 + 1540 + 0 + 22 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.0 + 1540 + 0 + 23 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.1 + 1540 + 0 + 23 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.2 + 1540 + 0 + 23 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.3 + 1540 + 0 + 23 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.4 + 1540 + 0 + 23 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.5 + 1540 + 0 + 23 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.6 + 1540 + 0 + 23 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.7 + 1540 + 0 + 23 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.0 + 1540 + 0 + 24 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.1 + 1540 + 0 + 24 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.2 + 1540 + 0 + 24 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.3 + 1540 + 0 + 24 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.4 + 1540 + 0 + 24 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.5 + 1540 + 0 + 24 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.6 + 1540 + 0 + 24 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.7 + 1540 + 0 + 24 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:03:00.0 + 263 + 3 + 0 + 0 + 5549 + 5549 + VMware + 1984 + 1984 + 0000:00:15.0 + PVSCSI SCSI Controller + + + 0000:0b:00.0 + 512 + 11 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:16.0 + vmxnet3 Virtual Ethernet Controller + + + 0000:13:00.0 + 512 + 19 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:17.0 + vmxnet3 Virtual Ethernet Controller + + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 6.00 + 2015-07-02T00:00:00Z + + + 0 + + + + + licensableResource + + + numCpuPackages + + numCpuPackages + 2 + + + + + + configManager + + cpuSchedulerSystem + hostdatastoresystem-93 + memoryManagerSystem + hoststoragesystem-97 + hostnetworksystem-94 + ha-vmotion-system + ha-vnic-mgr + serviceSystem + hostfirewallsystem-96 + optionmanager-95 + diagnosticsystem + ha-autostart-mgr + ha-snmp-agent + dateTimeSystem + ha-host-patch-manager + ha-image-config-manager + ha-firmwareSystem + healthStatusSystem + ha-pcipassthrusystem + ha-license-manager + kernelModuleSystem + ha-auth-manager + ha-power-system + ha-cache-configuration-manager + iscsiManager + ha-vflash-manager + vsanSystem + messageBusProxy + ha-user-directory + ha-localacctmgr + ha-host-access-manager + ha-graphics-manager + ha-vsan-internal-system + ha-certificate-manager + + + + config + + ha-host + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + + false + + + false + false + true + + + + key-vim.host.ParallelScsiHba-vmhba0 + vmhba0 + 3 + unknown + PVSCSI SCSI Controller + pvscsi + 0000:03:00.0 + + + key-vim.host.BlockHba-vmhba1 + vmhba1 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + key-vim.host.BlockHba-vmhba64 + vmhba64 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0 + cdrom + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + + lowQuality + mpx.vmhba1:C0:T0:L0 + + + lowQuality + vml.0005000000766d686261313a303a30 + + + lowQuality + 0005000000766d686261313a303a30 + + mpx.vmhba1:C0:T0:L0 + Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0) + cdrom + NECVMWar + VMware IDE CDR00 + 1.00 + 5 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + ok + + false + + vStorageUnsupported + false + + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + disk + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + + lowQuality + mpx.vmhba0:C0:T0:L0 + + + lowQuality + vml.0000000000766d686261303a303a30 + + + lowQuality + 0000000000766d686261303a303a30 + + mpx.vmhba0:C0:T0:L0 + Local VMware, Disk (mpx.vmhba0:C0:T0:L0) + disk + VMware, + VMware Virtual S + 1.0 + 2 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + 1024 + ok + + false + + vStorageUnsupported + false + + 512 + 67108864 + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + true + true + false + native512 + + + + key-vim.host.ScsiTopology.Interface-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + + key-vim.host.ScsiTopology.Target-vmhba0:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30 + 0 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba1 + key-vim.host.BlockHba-vmhba1 + + key-vim.host.ScsiTopology.Target-vmhba1:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30 + 0 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + + + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + active + active + true + key-vim.host.BlockHba-vmhba1 + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + + + + VMW_PSP_FIXED + vmhba1:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + active + active + true + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + + + + VMW_PSP_FIXED + vmhba0:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + + + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.BlockHba-vmhba1 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + + + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.PlugStoreTopology.Target-ide.0:0 + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + + + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + + + + key-vim.host.PlugStoreTopology.Target-ide.0:0 + + + + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Plugin-NMP + NMP + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + false + + + + vSwitch0 + key-vim.host.VirtualSwitch-vSwitch0 + 1536 + 1530 + 1500 + key-vim.host.PortGroup-VM Network + key-vim.host.PortGroup-Management Network + key-vim.host.PhysicalNic-vmnic0 + + 128 + + vmnic0 + + 1 + + + cdp + listen + + + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + key-vim.host.PhysicalNic-vmnic0 + vmnic0 + 0000:0b:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:a0 + + 3 + 00:0c:29:81:d8:a0 + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + key-vim.host.PhysicalNic-vmnic1 + vmnic1 + 0000:13:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:aa + + 3 + 00:0c:29:81:d8:aa + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + vmk0 + key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + key-vim.host.PortGroup.Port-33554436 + + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + false + false + + vSphereProvisioning + + false + + + + + 11000 + newreno + true + + + vmotion + + false + + + + + 11000 + newreno + true + + + defaultTcpipStack + defaultTcpipStack + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + 11000 + newreno + true + + + ignore + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + + ignore + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + +
+
+ + + + vmk0 + VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + + faultToleranceLogging + true + + vmk0 + faultToleranceLogging.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + management + true + + vmk1 + management.key-vim.host.VirtualNic-vmk1 + + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:00 + Management Network + 1500 + true + defaultTcpipStack + + + + vmk0 + management.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + management.key-vim.host.VirtualNic-vmk0 + + + vSphereProvisioning + true + + vmk0 + vSphereProvisioning.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplication + true + + vmk0 + vSphereReplication.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplicationNFC + true + + vmk0 + vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vmotion + true + + vmk0 + vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsan + true + + vmk0 + vsan.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsanWitness + true + + vmk0 + vsanWitness.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + true + true + loadbalance_ip + loadbalance_srcmac + loadbalance_srcid + failover_explicit + true + false + true + true + true + true + true + true + true + + + true + true + false + true + + + true + true + true + + + + DCUI + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM-SSH + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lbtd + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lwsmd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + ntpd + + false + false + false + ntpClient + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + pcscd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + sfcbd-watchdog + + false + false + false + CIMHttpServer + CIMHttpsServer + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + snmpd + + false + false + false + snmp + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vmsyslogd + + true + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vpxa + + false + false + false + vpxHeartbeats + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + xorg + + false + false + false + on + + esx-xserver + This VIB contains X Server used for virtual machine 3D hardware acceleration. + + + + + + true + true + + + CIMHttpServer + + false + + 5988 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMHttpsServer + + false + + 5989 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMSLP + + false + + 427 + inbound + dst + udp + + + 427 + outbound + dst + udp + + + 427 + inbound + dst + tcp + + + 427 + outbound + dst + tcp + + true + + true + + + + DHCPv6 + + false + + 547 + outbound + dst + tcp + + + 546 + inbound + dst + tcp + + + 547 + outbound + dst + udp + + + 546 + inbound + dst + udp + + true + + true + + + + DVFilter + + false + + 2222 + inbound + dst + tcp + + false + + true + + + + DVSSync + + false + + 8302 + outbound + dst + udp + + + 8301 + inbound + dst + udp + + + 8301 + outbound + dst + udp + + + 8302 + inbound + dst + udp + + true + + true + + + + HBR + + false + + 31031 + outbound + dst + tcp + + + 44046 + outbound + dst + tcp + + true + + true + + + + NFC + + false + + 902 + inbound + dst + tcp + + + 902 + outbound + dst + tcp + + true + + true + + + + WOL + + false + + 9 + outbound + dst + udp + + true + + true + + + + activeDirectoryAll + + false + + 88 + outbound + dst + udp + + + 88 + outbound + dst + tcp + + + 123 + outbound + dst + udp + + + 137 + outbound + dst + udp + + + 139 + outbound + dst + tcp + + + 389 + outbound + dst + tcp + + + 389 + outbound + dst + udp + + + 445 + outbound + dst + tcp + + + 464 + outbound + dst + udp + + + 464 + outbound + dst + tcp + + + 3268 + outbound + dst + tcp + + + 7476 + outbound + dst + tcp + + + 2020 + inbound + dst + tcp + + false + + true + + + + cmmds + + false + + 12345 + inbound + dst + udp + + + 23451 + inbound + dst + udp + + + 12345 + outbound + dst + udp + + + 23451 + outbound + dst + udp + + + 12321 + inbound + dst + udp + + + 12321 + outbound + dst + udp + + false + + true + + + + dhcp + + false + + 68 + inbound + dst + udp + + + 68 + outbound + src + udp + + true + + true + + + + dns + + false + + 53 + inbound + dst + udp + + + 53 + outbound + dst + udp + + + 53 + outbound + dst + tcp + + true + + true + + + + esxupdate + + false + + 443 + outbound + dst + tcp + + false + + true + + + + faultTolerance + + false + + 80 + outbound + dst + tcp + + + 8300 + inbound + dst + tcp + + + 8300 + outbound + dst + tcp + + true + + true + + + + ftpClient + + false + + 21 + outbound + dst + tcp + + + 20 + inbound + src + tcp + + false + + true + + + + gdbserver + + false + + 1000 + 9999 + inbound + dst + tcp + + + 50000 + 50999 + inbound + dst + tcp + + false + + true + + + + httpClient + + false + + 80 + outbound + dst + tcp + + + 443 + outbound + dst + tcp + + false + + true + + + + iSCSI + + false + + 3260 + outbound + dst + tcp + + false + + true + + + + iofiltervp + + false + + 9080 + inbound + dst + tcp + + true + + true + + + + ipfam + + false + + 6999 + inbound + dst + udp + + + 6999 + outbound + dst + udp + + false + + true + + + + nfs41Client + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + nfsClient + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + ntpClient + + false + + 123 + outbound + dst + udp + + ntpd + false + + true + + + + pvrdma + + false + + 28250 + 28761 + outbound + dst + tcp + + + 28250 + 28761 + inbound + dst + tcp + + false + + true + + + + rabbitmqproxy + + false + + 5671 + outbound + dst + tcp + + true + + true + + + + rdt + + false + + 2233 + inbound + dst + tcp + + + 2233 + outbound + dst + tcp + + false + + true + + + + remoteSerialPort + + false + + 0 + 65535 + outbound + dst + tcp + + + 23 + inbound + dst + tcp + + + 1024 + 65535 + inbound + dst + tcp + + false + + true + + + + snmp + + false + + 161 + inbound + dst + udp + + snmpd + true + + true + + + + sshClient + + false + + 22 + outbound + dst + tcp + + false + + true + + + + sshServer + + true + + 22 + inbound + dst + tcp + + true + + true + + + + syslog + + false + + 514 + outbound + dst + udp + + + 514 + outbound + dst + tcp + + + 1514 + outbound + dst + tcp + + false + + true + + + + updateManager + + false + + 80 + outbound + dst + tcp + + + 9000 + 9100 + outbound + dst + tcp + + true + + true + + + + vMotion + + false + + 8000 + inbound + dst + tcp + + + 8000 + outbound + dst + tcp + + true + + true + + + + vSPC + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vSphereClient + + true + + 902 + inbound + dst + tcp + + + 443 + inbound + dst + tcp + + true + + true + + + + vpxHeartbeats + + false + + 902 + outbound + dst + udp + + vpxa + true + + true + + + + vsanEncryption + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vsanhealth-multicasttest + + false + + 5001 + outbound + dst + udp + + + 5001 + inbound + dst + udp + + false + + true + + + + vsanvp + + false + + 8080 + inbound + dst + tcp + + + 8080 + outbound + dst + tcp + + false + + true + + + + vvold + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + webAccess + + false + + 80 + inbound + dst + tcp + + true + + true + + + + + + 120 + 120 + false + PowerOff + + + + directAttached + singleHost + -15 + + mpx.vmhba0:C0:T0:L0 + 9 + + + + lockdownDisabled + 10 + + + true + + + false + false + + + + + 1 + PowerPolicy.static.name + static + PowerPolicy.static.description + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + 3 + PowerPolicy.low.name + low + PowerPolicy.low.description + + + 4 + PowerPolicy.custom.name + custom + PowerPolicy.custom.description + + + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + + 5980f676-21a5db76-9eef-000c2981d8a0 + 0 + + false + + false + ha-host + + + false + + + + + + + + shared + performance + + + VMW_spm_1.0.0 + spm + VMW + 1.0.230 + datastoreIoControl + VMware Storage I/O Control + 2016-07-21 + true + + + VMW_vmwarevmcrypt_1.0.0 + vmwarevmcrypt + VMW + 1.0.0 + encryption + VMcrypt IO Filter + 2016-07-21 + true + +
+
+ + vm + + vm-182 + vm-185 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + datastoreBrowser + ha-host-datastorebrowser + +
\ No newline at end of file diff --git a/pkg/check/testdata/default/0112-HostDatastoreSystem-hostdatastoresystem-93.xml b/pkg/check/testdata/default/0112-HostDatastoreSystem-hostdatastoresystem-93.xml new file mode 100644 index 00000000..75389146 --- /dev/null +++ b/pkg/check/testdata/default/0112-HostDatastoreSystem-hostdatastoresystem-93.xml @@ -0,0 +1,20 @@ + + hostdatastoresystem-93 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + capabilities + + false + false + false + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0113-HostNetworkSystem-hostnetworksystem-94.xml b/pkg/check/testdata/default/0113-HostNetworkSystem-hostnetworksystem-94.xml new file mode 100644 index 00000000..4241d20b --- /dev/null +++ b/pkg/check/testdata/default/0113-HostNetworkSystem-hostnetworksystem-94.xml @@ -0,0 +1,137 @@ + + hostnetworksystem-94 + + value + + + + availableField + + + + networkInfo + + + vSwitch0 + + 0 + 0 + VM Network + + 0 + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0114-HostSystem-host-106.xml b/pkg/check/testdata/default/0114-HostSystem-host-106.xml new file mode 100644 index 00000000..3c04df36 --- /dev/null +++ b/pkg/check/testdata/default/0114-HostSystem-host-106.xml @@ -0,0 +1,5300 @@ + + host-106 + + value + + + + availableField + + + + parent + clustercomputeresource-91 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_H1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + runtime + + connected + poweredOn + false + 2021-02-09T22:59:58.250143328-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + + summary + + host-106 + + VMware, Inc. (govmomi simulator) + VMware Virtual Platform + 312f6b87-47ed-596b-a0e1-46a8a635e95a + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 2f 12 80 41 63 9b-50 18 05 a8 35 b7 2e af + + + Service tag of the system + ServiceTag + + + 4294430720 + Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz + 2294 + 2 + 2 + 2 + 1 + 3 + + + connected + poweredOn + false + 2021-02-09T22:59:58.250143328-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + DC1_C0_H1 + 8989 + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + false + true + + + 67 + 1404 + 77229 + + gray + false + + + + hardware + + + VMware, Inc. + VMware Virtual Platform + 312f6b87-47ed-596b-a0e1-46a8a635e95a + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 8d e8 1e 9f a1 3e-71 fa 13 a8 e1 a7 fd 70 + + + Service tag of the system + ServiceTag + + + + + Balanced + + + 2 + 2 + 2 + 3591345000 + + + 0 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 0 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + + 1 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 1 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0010:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 4294430720 + + NUMA + 1 + + 0 + 1 + 0 + 4294967296 + 1073741824 + + + false + + 0000:00:00.0 + 1536 + 0 + 0 + 0 + -32634 + 5549 + Intel Corporation + 29072 + 6518 + Virtual Machine Chipset + + + 0000:00:01.0 + 1540 + 0 + 1 + 0 + -32634 + 0 + Intel Corporation + 29073 + 0 + 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge + + + 0000:00:07.0 + 1537 + 0 + 7 + 0 + -32634 + 5549 + Intel Corporation + 28944 + 6518 + Virtual Machine Chipset + + + 0000:00:07.1 + 257 + 0 + 7 + 1 + -32634 + 5549 + Intel Corporation + 28945 + 6518 + PIIX4 for 430TX/440BX/MX IDE Controller + + + 0000:00:07.3 + 1664 + 0 + 7 + 3 + -32634 + 5549 + Intel Corporation + 28947 + 6518 + Virtual Machine Chipset + + + 0000:00:07.7 + 2176 + 0 + 7 + 7 + 5549 + 5549 + VMware + 1856 + 1856 + Virtual Machine Communication Interface + + + 0000:00:0f.0 + 768 + 0 + 15 + 0 + 5549 + 5549 + VMware + 1029 + 1029 + SVGA II Adapter + + + 0000:00:11.0 + 1540 + 0 + 17 + 0 + 5549 + 0 + VMware + 1936 + 0 + PCI bridge + + + 0000:00:15.0 + 1540 + 0 + 21 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.1 + 1540 + 0 + 21 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.2 + 1540 + 0 + 21 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.3 + 1540 + 0 + 21 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.4 + 1540 + 0 + 21 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.5 + 1540 + 0 + 21 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.6 + 1540 + 0 + 21 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.7 + 1540 + 0 + 21 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.0 + 1540 + 0 + 22 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.1 + 1540 + 0 + 22 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.2 + 1540 + 0 + 22 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.3 + 1540 + 0 + 22 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.4 + 1540 + 0 + 22 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.5 + 1540 + 0 + 22 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.6 + 1540 + 0 + 22 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.7 + 1540 + 0 + 22 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.0 + 1540 + 0 + 23 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.1 + 1540 + 0 + 23 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.2 + 1540 + 0 + 23 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.3 + 1540 + 0 + 23 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.4 + 1540 + 0 + 23 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.5 + 1540 + 0 + 23 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.6 + 1540 + 0 + 23 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.7 + 1540 + 0 + 23 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.0 + 1540 + 0 + 24 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.1 + 1540 + 0 + 24 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.2 + 1540 + 0 + 24 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.3 + 1540 + 0 + 24 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.4 + 1540 + 0 + 24 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.5 + 1540 + 0 + 24 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.6 + 1540 + 0 + 24 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.7 + 1540 + 0 + 24 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:03:00.0 + 263 + 3 + 0 + 0 + 5549 + 5549 + VMware + 1984 + 1984 + 0000:00:15.0 + PVSCSI SCSI Controller + + + 0000:0b:00.0 + 512 + 11 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:16.0 + vmxnet3 Virtual Ethernet Controller + + + 0000:13:00.0 + 512 + 19 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:17.0 + vmxnet3 Virtual Ethernet Controller + + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 6.00 + 2015-07-02T00:00:00Z + + + 0 + + + + + licensableResource + + + numCpuPackages + + numCpuPackages + 2 + + + + + + configManager + + cpuSchedulerSystem + hostdatastoresystem-101 + memoryManagerSystem + hoststoragesystem-105 + hostnetworksystem-102 + ha-vmotion-system + ha-vnic-mgr + serviceSystem + hostfirewallsystem-104 + optionmanager-103 + diagnosticsystem + ha-autostart-mgr + ha-snmp-agent + dateTimeSystem + ha-host-patch-manager + ha-image-config-manager + ha-firmwareSystem + healthStatusSystem + ha-pcipassthrusystem + ha-license-manager + kernelModuleSystem + ha-auth-manager + ha-power-system + ha-cache-configuration-manager + iscsiManager + ha-vflash-manager + vsanSystem + messageBusProxy + ha-user-directory + ha-localacctmgr + ha-host-access-manager + ha-graphics-manager + ha-vsan-internal-system + ha-certificate-manager + + + + config + + ha-host + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + + false + + + false + false + true + + + + key-vim.host.ParallelScsiHba-vmhba0 + vmhba0 + 3 + unknown + PVSCSI SCSI Controller + pvscsi + 0000:03:00.0 + + + key-vim.host.BlockHba-vmhba1 + vmhba1 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + key-vim.host.BlockHba-vmhba64 + vmhba64 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0 + cdrom + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + + lowQuality + mpx.vmhba1:C0:T0:L0 + + + lowQuality + vml.0005000000766d686261313a303a30 + + + lowQuality + 0005000000766d686261313a303a30 + + mpx.vmhba1:C0:T0:L0 + Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0) + cdrom + NECVMWar + VMware IDE CDR00 + 1.00 + 5 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + ok + + false + + vStorageUnsupported + false + + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + disk + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + + lowQuality + mpx.vmhba0:C0:T0:L0 + + + lowQuality + vml.0000000000766d686261303a303a30 + + + lowQuality + 0000000000766d686261303a303a30 + + mpx.vmhba0:C0:T0:L0 + Local VMware, Disk (mpx.vmhba0:C0:T0:L0) + disk + VMware, + VMware Virtual S + 1.0 + 2 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + 1024 + ok + + false + + vStorageUnsupported + false + + 512 + 67108864 + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + true + true + false + native512 + + + + key-vim.host.ScsiTopology.Interface-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + + key-vim.host.ScsiTopology.Target-vmhba0:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30 + 0 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba1 + key-vim.host.BlockHba-vmhba1 + + key-vim.host.ScsiTopology.Target-vmhba1:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30 + 0 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + + + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + active + active + true + key-vim.host.BlockHba-vmhba1 + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + + + + VMW_PSP_FIXED + vmhba1:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + active + active + true + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + + + + VMW_PSP_FIXED + vmhba0:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + + + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.BlockHba-vmhba1 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + + + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.PlugStoreTopology.Target-ide.0:0 + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + + + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + + + + key-vim.host.PlugStoreTopology.Target-ide.0:0 + + + + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Plugin-NMP + NMP + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + false + + + + vSwitch0 + key-vim.host.VirtualSwitch-vSwitch0 + 1536 + 1530 + 1500 + key-vim.host.PortGroup-VM Network + key-vim.host.PortGroup-Management Network + key-vim.host.PhysicalNic-vmnic0 + + 128 + + vmnic0 + + 1 + + + cdp + listen + + + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + key-vim.host.PhysicalNic-vmnic0 + vmnic0 + 0000:0b:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:a0 + + 3 + 00:0c:29:81:d8:a0 + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + key-vim.host.PhysicalNic-vmnic1 + vmnic1 + 0000:13:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:aa + + 3 + 00:0c:29:81:d8:aa + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + vmk0 + key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + key-vim.host.PortGroup.Port-33554436 + + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + false + false + + vSphereProvisioning + + false + + + + + 11000 + newreno + true + + + vmotion + + false + + + + + 11000 + newreno + true + + + defaultTcpipStack + defaultTcpipStack + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + 11000 + newreno + true + + + ignore + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + + ignore + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + +
+
+ + + + vmk0 + VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + + faultToleranceLogging + true + + vmk0 + faultToleranceLogging.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + management + true + + vmk1 + management.key-vim.host.VirtualNic-vmk1 + + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:00 + Management Network + 1500 + true + defaultTcpipStack + + + + vmk0 + management.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + management.key-vim.host.VirtualNic-vmk0 + + + vSphereProvisioning + true + + vmk0 + vSphereProvisioning.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplication + true + + vmk0 + vSphereReplication.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplicationNFC + true + + vmk0 + vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vmotion + true + + vmk0 + vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsan + true + + vmk0 + vsan.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsanWitness + true + + vmk0 + vsanWitness.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + true + true + loadbalance_ip + loadbalance_srcmac + loadbalance_srcid + failover_explicit + true + false + true + true + true + true + true + true + true + + + true + true + false + true + + + true + true + true + + + + DCUI + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM-SSH + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lbtd + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lwsmd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + ntpd + + false + false + false + ntpClient + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + pcscd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + sfcbd-watchdog + + false + false + false + CIMHttpServer + CIMHttpsServer + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + snmpd + + false + false + false + snmp + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vmsyslogd + + true + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vpxa + + false + false + false + vpxHeartbeats + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + xorg + + false + false + false + on + + esx-xserver + This VIB contains X Server used for virtual machine 3D hardware acceleration. + + + + + + true + true + + + CIMHttpServer + + false + + 5988 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMHttpsServer + + false + + 5989 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMSLP + + false + + 427 + inbound + dst + udp + + + 427 + outbound + dst + udp + + + 427 + inbound + dst + tcp + + + 427 + outbound + dst + tcp + + true + + true + + + + DHCPv6 + + false + + 547 + outbound + dst + tcp + + + 546 + inbound + dst + tcp + + + 547 + outbound + dst + udp + + + 546 + inbound + dst + udp + + true + + true + + + + DVFilter + + false + + 2222 + inbound + dst + tcp + + false + + true + + + + DVSSync + + false + + 8302 + outbound + dst + udp + + + 8301 + inbound + dst + udp + + + 8301 + outbound + dst + udp + + + 8302 + inbound + dst + udp + + true + + true + + + + HBR + + false + + 31031 + outbound + dst + tcp + + + 44046 + outbound + dst + tcp + + true + + true + + + + NFC + + false + + 902 + inbound + dst + tcp + + + 902 + outbound + dst + tcp + + true + + true + + + + WOL + + false + + 9 + outbound + dst + udp + + true + + true + + + + activeDirectoryAll + + false + + 88 + outbound + dst + udp + + + 88 + outbound + dst + tcp + + + 123 + outbound + dst + udp + + + 137 + outbound + dst + udp + + + 139 + outbound + dst + tcp + + + 389 + outbound + dst + tcp + + + 389 + outbound + dst + udp + + + 445 + outbound + dst + tcp + + + 464 + outbound + dst + udp + + + 464 + outbound + dst + tcp + + + 3268 + outbound + dst + tcp + + + 7476 + outbound + dst + tcp + + + 2020 + inbound + dst + tcp + + false + + true + + + + cmmds + + false + + 12345 + inbound + dst + udp + + + 23451 + inbound + dst + udp + + + 12345 + outbound + dst + udp + + + 23451 + outbound + dst + udp + + + 12321 + inbound + dst + udp + + + 12321 + outbound + dst + udp + + false + + true + + + + dhcp + + false + + 68 + inbound + dst + udp + + + 68 + outbound + src + udp + + true + + true + + + + dns + + false + + 53 + inbound + dst + udp + + + 53 + outbound + dst + udp + + + 53 + outbound + dst + tcp + + true + + true + + + + esxupdate + + false + + 443 + outbound + dst + tcp + + false + + true + + + + faultTolerance + + false + + 80 + outbound + dst + tcp + + + 8300 + inbound + dst + tcp + + + 8300 + outbound + dst + tcp + + true + + true + + + + ftpClient + + false + + 21 + outbound + dst + tcp + + + 20 + inbound + src + tcp + + false + + true + + + + gdbserver + + false + + 1000 + 9999 + inbound + dst + tcp + + + 50000 + 50999 + inbound + dst + tcp + + false + + true + + + + httpClient + + false + + 80 + outbound + dst + tcp + + + 443 + outbound + dst + tcp + + false + + true + + + + iSCSI + + false + + 3260 + outbound + dst + tcp + + false + + true + + + + iofiltervp + + false + + 9080 + inbound + dst + tcp + + true + + true + + + + ipfam + + false + + 6999 + inbound + dst + udp + + + 6999 + outbound + dst + udp + + false + + true + + + + nfs41Client + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + nfsClient + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + ntpClient + + false + + 123 + outbound + dst + udp + + ntpd + false + + true + + + + pvrdma + + false + + 28250 + 28761 + outbound + dst + tcp + + + 28250 + 28761 + inbound + dst + tcp + + false + + true + + + + rabbitmqproxy + + false + + 5671 + outbound + dst + tcp + + true + + true + + + + rdt + + false + + 2233 + inbound + dst + tcp + + + 2233 + outbound + dst + tcp + + false + + true + + + + remoteSerialPort + + false + + 0 + 65535 + outbound + dst + tcp + + + 23 + inbound + dst + tcp + + + 1024 + 65535 + inbound + dst + tcp + + false + + true + + + + snmp + + false + + 161 + inbound + dst + udp + + snmpd + true + + true + + + + sshClient + + false + + 22 + outbound + dst + tcp + + false + + true + + + + sshServer + + true + + 22 + inbound + dst + tcp + + true + + true + + + + syslog + + false + + 514 + outbound + dst + udp + + + 514 + outbound + dst + tcp + + + 1514 + outbound + dst + tcp + + false + + true + + + + updateManager + + false + + 80 + outbound + dst + tcp + + + 9000 + 9100 + outbound + dst + tcp + + true + + true + + + + vMotion + + false + + 8000 + inbound + dst + tcp + + + 8000 + outbound + dst + tcp + + true + + true + + + + vSPC + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vSphereClient + + true + + 902 + inbound + dst + tcp + + + 443 + inbound + dst + tcp + + true + + true + + + + vpxHeartbeats + + false + + 902 + outbound + dst + udp + + vpxa + true + + true + + + + vsanEncryption + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vsanhealth-multicasttest + + false + + 5001 + outbound + dst + udp + + + 5001 + inbound + dst + udp + + false + + true + + + + vsanvp + + false + + 8080 + inbound + dst + tcp + + + 8080 + outbound + dst + tcp + + false + + true + + + + vvold + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + webAccess + + false + + 80 + inbound + dst + tcp + + true + + true + + + + + + 120 + 120 + false + PowerOff + + + + directAttached + singleHost + -15 + + mpx.vmhba0:C0:T0:L0 + 9 + + + + lockdownDisabled + 10 + + + true + + + false + false + + + + + 1 + PowerPolicy.static.name + static + PowerPolicy.static.description + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + 3 + PowerPolicy.low.name + low + PowerPolicy.low.description + + + 4 + PowerPolicy.custom.name + custom + PowerPolicy.custom.description + + + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + + 5980f676-21a5db76-9eef-000c2981d8a0 + 0 + + false + + false + ha-host + + + false + + + + + + + + shared + performance + + + VMW_spm_1.0.0 + spm + VMW + 1.0.230 + datastoreIoControl + VMware Storage I/O Control + 2016-07-21 + true + + + VMW_vmwarevmcrypt_1.0.0 + vmwarevmcrypt + VMW + 1.0.0 + encryption + VMcrypt IO Filter + 2016-07-21 + true + +
+
+ + vm + + vm-179 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + datastoreBrowser + ha-host-datastorebrowser + +
\ No newline at end of file diff --git a/pkg/check/testdata/default/0115-HostDatastoreSystem-hostdatastoresystem-101.xml b/pkg/check/testdata/default/0115-HostDatastoreSystem-hostdatastoresystem-101.xml new file mode 100644 index 00000000..287d9dda --- /dev/null +++ b/pkg/check/testdata/default/0115-HostDatastoreSystem-hostdatastoresystem-101.xml @@ -0,0 +1,20 @@ + + hostdatastoresystem-101 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + capabilities + + false + false + false + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0116-HostNetworkSystem-hostnetworksystem-102.xml b/pkg/check/testdata/default/0116-HostNetworkSystem-hostnetworksystem-102.xml new file mode 100644 index 00000000..6a069e54 --- /dev/null +++ b/pkg/check/testdata/default/0116-HostNetworkSystem-hostnetworksystem-102.xml @@ -0,0 +1,137 @@ + + hostnetworksystem-102 + + value + + + + availableField + + + + networkInfo + + + vSwitch0 + + 0 + 0 + VM Network + + 0 + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0117-HostSystem-host-114.xml b/pkg/check/testdata/default/0117-HostSystem-host-114.xml new file mode 100644 index 00000000..e0ac7aa3 --- /dev/null +++ b/pkg/check/testdata/default/0117-HostSystem-host-114.xml @@ -0,0 +1,5300 @@ + + host-114 + + value + + + + availableField + + + + parent + clustercomputeresource-91 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_H2 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + runtime + + connected + poweredOn + false + 2021-02-09T22:59:58.253373289-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + + summary + + host-114 + + VMware, Inc. (govmomi simulator) + VMware Virtual Platform + 02089e9d-a50d-5408-b679-4fcd54a4f0d8 + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 2f 12 80 41 63 9b-50 18 05 a8 35 b7 2e af + + + Service tag of the system + ServiceTag + + + 4294430720 + Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz + 2294 + 2 + 2 + 2 + 1 + 3 + + + connected + poweredOn + false + 2021-02-09T22:59:58.253373289-05:00 + + + + VMware Rollup Health State + + + Sensor is operating under normal conditions + green + + 0 + 0 + + system + + + CPU socket #0 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #0 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-1 Cache is 16384 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + CPU socket #1 Level-2 Cache is 0 B + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Processors + + + Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000 + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 driver 8.0.3.1-NAPI + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + e1000 device firmware N/A + + + Sensor is operating under normal conditions + green + + 0 + 0 + + Software Components + + + + + CPU socket #0 + + + Physical element is functioning as expected + Green + + + + CPU socket #1 + + + Physical element is functioning as expected + Green + + + + + + + + defaultTcpipStack + active + vmk0 + 11000 + true + + + 68169720922112 + + + DC1_C0_H2 + 8989 + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + false + true + + + 67 + 1404 + 77229 + + gray + false + + + + hardware + + + VMware, Inc. + VMware Virtual Platform + 02089e9d-a50d-5408-b679-4fcd54a4f0d8 + + No Asset Tag + + + Asset tag of the system + AssetTag + + + + [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + + + OEM specific string + OemSpecificString + + + + Welcome to the Virtual Machine + + + OEM specific string + OemSpecificString + + + + VMware-56 4d 8d e8 1e 9f a1 3e-71 fa 13 a8 e1 a7 fd 70 + + + Service tag of the system + ServiceTag + + + + + Balanced + + + 2 + 2 + 2 + 3591345000 + + + 0 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 0 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + + 1 + intel + 3591345000 + 115849838 + Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz + 1 + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0010:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 4294430720 + + NUMA + 1 + + 0 + 1 + 0 + 4294967296 + 1073741824 + + + false + + 0000:00:00.0 + 1536 + 0 + 0 + 0 + -32634 + 5549 + Intel Corporation + 29072 + 6518 + Virtual Machine Chipset + + + 0000:00:01.0 + 1540 + 0 + 1 + 0 + -32634 + 0 + Intel Corporation + 29073 + 0 + 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge + + + 0000:00:07.0 + 1537 + 0 + 7 + 0 + -32634 + 5549 + Intel Corporation + 28944 + 6518 + Virtual Machine Chipset + + + 0000:00:07.1 + 257 + 0 + 7 + 1 + -32634 + 5549 + Intel Corporation + 28945 + 6518 + PIIX4 for 430TX/440BX/MX IDE Controller + + + 0000:00:07.3 + 1664 + 0 + 7 + 3 + -32634 + 5549 + Intel Corporation + 28947 + 6518 + Virtual Machine Chipset + + + 0000:00:07.7 + 2176 + 0 + 7 + 7 + 5549 + 5549 + VMware + 1856 + 1856 + Virtual Machine Communication Interface + + + 0000:00:0f.0 + 768 + 0 + 15 + 0 + 5549 + 5549 + VMware + 1029 + 1029 + SVGA II Adapter + + + 0000:00:11.0 + 1540 + 0 + 17 + 0 + 5549 + 0 + VMware + 1936 + 0 + PCI bridge + + + 0000:00:15.0 + 1540 + 0 + 21 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.1 + 1540 + 0 + 21 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.2 + 1540 + 0 + 21 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.3 + 1540 + 0 + 21 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.4 + 1540 + 0 + 21 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.5 + 1540 + 0 + 21 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.6 + 1540 + 0 + 21 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:15.7 + 1540 + 0 + 21 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.0 + 1540 + 0 + 22 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.1 + 1540 + 0 + 22 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.2 + 1540 + 0 + 22 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.3 + 1540 + 0 + 22 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.4 + 1540 + 0 + 22 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.5 + 1540 + 0 + 22 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.6 + 1540 + 0 + 22 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:16.7 + 1540 + 0 + 22 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.0 + 1540 + 0 + 23 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.1 + 1540 + 0 + 23 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.2 + 1540 + 0 + 23 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.3 + 1540 + 0 + 23 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.4 + 1540 + 0 + 23 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.5 + 1540 + 0 + 23 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.6 + 1540 + 0 + 23 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:17.7 + 1540 + 0 + 23 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.0 + 1540 + 0 + 24 + 0 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.1 + 1540 + 0 + 24 + 1 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.2 + 1540 + 0 + 24 + 2 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.3 + 1540 + 0 + 24 + 3 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.4 + 1540 + 0 + 24 + 4 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.5 + 1540 + 0 + 24 + 5 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.6 + 1540 + 0 + 24 + 6 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:00:18.7 + 1540 + 0 + 24 + 7 + 5549 + 0 + VMware + 1952 + 0 + PCI Express Root Port + + + 0000:03:00.0 + 263 + 3 + 0 + 0 + 5549 + 5549 + VMware + 1984 + 1984 + 0000:00:15.0 + PVSCSI SCSI Controller + + + 0000:0b:00.0 + 512 + 11 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:16.0 + vmxnet3 Virtual Ethernet Controller + + + 0000:13:00.0 + 512 + 19 + 0 + 0 + 5549 + 5549 + VMware Inc. + 1968 + 1968 + 0000:00:17.0 + vmxnet3 Virtual Ethernet Controller + + + 0 + 0000:0000:0000:0000:0000:0000:0000:1101 + 0111:0101:0110:1110:0110:0101:0100:0111 + 0110:1100:0110:0101:0111:0100:0110:1110 + 0100:1001:0110:0101:0110:1110:0110:1001 + + + 1 + 0000:0000:0000:0010:0000:0110:1101:0111 + 0000:0000:0000:0001:0000:1000:0000:0000 + 1001:0111:1011:1010:0010:0010:0010:1011 + 0000:1111:1010:1011:1111:1011:1111:1111 + + + -2147483648 + 1000:0000:0000:0000:0000:0000:0000:1000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + -2147483647 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0001 + 0010:1000:0001:0000:0000:1000:0000:0000 + + + -2147483640 + 0000:0000:0000:0000:0011:0000:0010:1010 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + 0000:0000:0000:0000:0000:0000:0000:0000 + + + 6.00 + 2015-07-02T00:00:00Z + + + 0 + + + + + licensableResource + + + numCpuPackages + + numCpuPackages + 2 + + + + + + configManager + + cpuSchedulerSystem + hostdatastoresystem-109 + memoryManagerSystem + hoststoragesystem-113 + hostnetworksystem-110 + ha-vmotion-system + ha-vnic-mgr + serviceSystem + hostfirewallsystem-112 + optionmanager-111 + diagnosticsystem + ha-autostart-mgr + ha-snmp-agent + dateTimeSystem + ha-host-patch-manager + ha-image-config-manager + ha-firmwareSystem + healthStatusSystem + ha-pcipassthrusystem + ha-license-manager + kernelModuleSystem + ha-auth-manager + ha-power-system + ha-cache-configuration-manager + iscsiManager + ha-vflash-manager + vsanSystem + messageBusProxy + ha-user-directory + ha-localacctmgr + ha-host-access-manager + ha-graphics-manager + ha-vsan-internal-system + ha-certificate-manager + + + + config + + ha-host + + VMware ESXi + VMware ESXi 6.5.0 build-5969303 + VMware, Inc. + 6.5.0 + 5969303 + INTL + 000 + vmnix-x86 + embeddedEsx + HostAgent + 6.5 + VMware ESX Server + 6.0 + + + false + + + false + false + true + + + + key-vim.host.ParallelScsiHba-vmhba0 + vmhba0 + 3 + unknown + PVSCSI SCSI Controller + pvscsi + 0000:03:00.0 + + + key-vim.host.BlockHba-vmhba1 + vmhba1 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + key-vim.host.BlockHba-vmhba64 + vmhba64 + 0 + unknown + PIIX4 for 430TX/440BX/MX IDE Controller + vmkata + 0000:00:07.1 + + + /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0 + cdrom + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + + lowQuality + mpx.vmhba1:C0:T0:L0 + + + lowQuality + vml.0005000000766d686261313a303a30 + + + lowQuality + 0005000000766d686261313a303a30 + + mpx.vmhba1:C0:T0:L0 + Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0) + cdrom + NECVMWar + VMware IDE CDR00 + 1.00 + 5 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + ok + + false + + vStorageUnsupported + false + + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + disk + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + + lowQuality + mpx.vmhba0:C0:T0:L0 + + + lowQuality + vml.0000000000766d686261303a303a30 + + + lowQuality + 0000000000766d686261303a303a30 + + mpx.vmhba0:C0:T0:L0 + Local VMware, Disk (mpx.vmhba0:C0:T0:L0) + disk + VMware, + VMware Virtual S + 1.0 + 2 + unavailable + + GENERIC_VPD + 5 + -79 + + + GENERIC_VPD + 5 + 0 + + 0 + 1024 + ok + + false + + vStorageUnsupported + false + + 512 + 67108864 + + /vmfs/devices/disks/mpx.vmhba0:C0:T0:L0 + true + true + false + native512 + + + + key-vim.host.ScsiTopology.Interface-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + + key-vim.host.ScsiTopology.Target-vmhba0:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30 + 0 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba1 + key-vim.host.BlockHba-vmhba1 + + key-vim.host.ScsiTopology.Target-vmhba1:0:0 + 0 + + key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30 + 0 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + + + + + key-vim.host.ScsiTopology.Interface-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + + + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + 0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + + key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + active + active + true + key-vim.host.BlockHba-vmhba1 + key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30 + + + + VMW_PSP_FIXED + vmhba1:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + 0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + + key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + active + active + true + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30 + + + + VMW_PSP_FIXED + vmhba0:C0:T0:L0 + + + VMW_SATP_LOCAL + + + + + + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.ParallelScsiHba-vmhba0 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.BlockHba-vmhba1 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Adapter-vmhba64 + key-vim.host.BlockHba-vmhba64 + + + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba0 + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + + + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + vmhba1:C0:T0:L0 + key-vim.host.PlugStoreTopology.Adapter-vmhba1 + key-vim.host.PlugStoreTopology.Target-ide.0:0 + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + + + key-vim.host.PlugStoreTopology.Target-pscsi.0:0 + + + + key-vim.host.PlugStoreTopology.Target-ide.0:0 + + + + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.ScsiLun-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.ScsiDisk-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + + + key-vim.host.PlugStoreTopology.Plugin-NMP + NMP + key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30 + key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30 + key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0 + key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0 + + + false + + + + vSwitch0 + key-vim.host.VirtualSwitch-vSwitch0 + 1536 + 1530 + 1500 + key-vim.host.PortGroup-VM Network + key-vim.host.PortGroup-Management Network + key-vim.host.PhysicalNic-vmnic0 + + 128 + + vmnic0 + + 1 + + + cdp + listen + + + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + key-vim.host.PhysicalNic-vmnic0 + vmnic0 + 0000:0b:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:a0 + + 3 + 00:0c:29:81:d8:a0 + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + key-vim.host.PhysicalNic-vmnic1 + vmnic1 + 0000:13:00.0 + nvmxnet3 + + 10000 + true + + + 10000 + true + + + + false + + + 10000 + true + + + false + 00:0c:29:81:d8:aa + + 3 + 00:0c:29:81:d8:aa + + 0 + 0 + + + false + false + true + + false + + false + true + false + + + vmk0 + key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + key-vim.host.PortGroup.Port-33554436 + + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + false + false + + vSphereProvisioning + + false + + + + + 11000 + newreno + true + + + vmotion + + false + + + + + 11000 + newreno + true + + + defaultTcpipStack + defaultTcpipStack + + true + vmk0 + localhost + localdomain +
8.8.8.8
+ localdomain +
+ + 127.0.0.1 + + 11000 + newreno + true + + + ignore + + 0.0.0.0 + 0 + 127.0.0.1 + vmk0 + + + + ignore + + 127.0.0.0 + 8 + 0.0.0.0 + vmk0 + + + +
+
+ + + + vmk0 + VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + + faultToleranceLogging + true + + vmk0 + faultToleranceLogging.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + management + true + + vmk1 + management.key-vim.host.VirtualNic-vmk1 + + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:00 + Management Network + 1500 + true + defaultTcpipStack + + + + vmk0 + management.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + management.key-vim.host.VirtualNic-vmk0 + + + vSphereProvisioning + true + + vmk0 + vSphereProvisioning.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplication + true + + vmk0 + vSphereReplication.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vSphereReplicationNFC + true + + vmk0 + vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vmotion + true + + vmk0 + vmotion.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsan + true + + vmk0 + vsan.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + vsanWitness + true + + vmk0 + vsanWitness.key-vim.host.VirtualNic-vmk0 + Management Network + + + true + 127.0.0.1 + 255.0.0.0 + + 00:0c:29:81:d8:a0 + Management Network + 1500 + true + defaultTcpipStack + + + + + + true + true + loadbalance_ip + loadbalance_srcmac + loadbalance_srcid + failover_explicit + true + false + true + true + true + true + true + true + true + + + true + true + false + true + + + true + true + true + + + + DCUI + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + TSM-SSH + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lbtd + + false + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + lwsmd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + ntpd + + false + false + false + ntpClient + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + pcscd + + false + false + false + off + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + sfcbd-watchdog + + false + false + false + CIMHttpServer + CIMHttpsServer + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + snmpd + + false + false + false + snmp + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vmsyslogd + + true + false + true + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + vpxa + + false + false + false + vpxHeartbeats + on + + esx-base + This VIB contains all of the base functionality of vSphere ESXi. + + + + xorg + + false + false + false + on + + esx-xserver + This VIB contains X Server used for virtual machine 3D hardware acceleration. + + + + + + true + true + + + CIMHttpServer + + false + + 5988 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMHttpsServer + + false + + 5989 + inbound + dst + tcp + + sfcbd-watchdog + true + + true + + + + CIMSLP + + false + + 427 + inbound + dst + udp + + + 427 + outbound + dst + udp + + + 427 + inbound + dst + tcp + + + 427 + outbound + dst + tcp + + true + + true + + + + DHCPv6 + + false + + 547 + outbound + dst + tcp + + + 546 + inbound + dst + tcp + + + 547 + outbound + dst + udp + + + 546 + inbound + dst + udp + + true + + true + + + + DVFilter + + false + + 2222 + inbound + dst + tcp + + false + + true + + + + DVSSync + + false + + 8302 + outbound + dst + udp + + + 8301 + inbound + dst + udp + + + 8301 + outbound + dst + udp + + + 8302 + inbound + dst + udp + + true + + true + + + + HBR + + false + + 31031 + outbound + dst + tcp + + + 44046 + outbound + dst + tcp + + true + + true + + + + NFC + + false + + 902 + inbound + dst + tcp + + + 902 + outbound + dst + tcp + + true + + true + + + + WOL + + false + + 9 + outbound + dst + udp + + true + + true + + + + activeDirectoryAll + + false + + 88 + outbound + dst + udp + + + 88 + outbound + dst + tcp + + + 123 + outbound + dst + udp + + + 137 + outbound + dst + udp + + + 139 + outbound + dst + tcp + + + 389 + outbound + dst + tcp + + + 389 + outbound + dst + udp + + + 445 + outbound + dst + tcp + + + 464 + outbound + dst + udp + + + 464 + outbound + dst + tcp + + + 3268 + outbound + dst + tcp + + + 7476 + outbound + dst + tcp + + + 2020 + inbound + dst + tcp + + false + + true + + + + cmmds + + false + + 12345 + inbound + dst + udp + + + 23451 + inbound + dst + udp + + + 12345 + outbound + dst + udp + + + 23451 + outbound + dst + udp + + + 12321 + inbound + dst + udp + + + 12321 + outbound + dst + udp + + false + + true + + + + dhcp + + false + + 68 + inbound + dst + udp + + + 68 + outbound + src + udp + + true + + true + + + + dns + + false + + 53 + inbound + dst + udp + + + 53 + outbound + dst + udp + + + 53 + outbound + dst + tcp + + true + + true + + + + esxupdate + + false + + 443 + outbound + dst + tcp + + false + + true + + + + faultTolerance + + false + + 80 + outbound + dst + tcp + + + 8300 + inbound + dst + tcp + + + 8300 + outbound + dst + tcp + + true + + true + + + + ftpClient + + false + + 21 + outbound + dst + tcp + + + 20 + inbound + src + tcp + + false + + true + + + + gdbserver + + false + + 1000 + 9999 + inbound + dst + tcp + + + 50000 + 50999 + inbound + dst + tcp + + false + + true + + + + httpClient + + false + + 80 + outbound + dst + tcp + + + 443 + outbound + dst + tcp + + false + + true + + + + iSCSI + + false + + 3260 + outbound + dst + tcp + + false + + true + + + + iofiltervp + + false + + 9080 + inbound + dst + tcp + + true + + true + + + + ipfam + + false + + 6999 + inbound + dst + udp + + + 6999 + outbound + dst + udp + + false + + true + + + + nfs41Client + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + nfsClient + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + ntpClient + + false + + 123 + outbound + dst + udp + + ntpd + false + + true + + + + pvrdma + + false + + 28250 + 28761 + outbound + dst + tcp + + + 28250 + 28761 + inbound + dst + tcp + + false + + true + + + + rabbitmqproxy + + false + + 5671 + outbound + dst + tcp + + true + + true + + + + rdt + + false + + 2233 + inbound + dst + tcp + + + 2233 + outbound + dst + tcp + + false + + true + + + + remoteSerialPort + + false + + 0 + 65535 + outbound + dst + tcp + + + 23 + inbound + dst + tcp + + + 1024 + 65535 + inbound + dst + tcp + + false + + true + + + + snmp + + false + + 161 + inbound + dst + udp + + snmpd + true + + true + + + + sshClient + + false + + 22 + outbound + dst + tcp + + false + + true + + + + sshServer + + true + + 22 + inbound + dst + tcp + + true + + true + + + + syslog + + false + + 514 + outbound + dst + udp + + + 514 + outbound + dst + tcp + + + 1514 + outbound + dst + tcp + + false + + true + + + + updateManager + + false + + 80 + outbound + dst + tcp + + + 9000 + 9100 + outbound + dst + tcp + + true + + true + + + + vMotion + + false + + 8000 + inbound + dst + tcp + + + 8000 + outbound + dst + tcp + + true + + true + + + + vSPC + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vSphereClient + + true + + 902 + inbound + dst + tcp + + + 443 + inbound + dst + tcp + + true + + true + + + + vpxHeartbeats + + false + + 902 + outbound + dst + udp + + vpxa + true + + true + + + + vsanEncryption + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + vsanhealth-multicasttest + + false + + 5001 + outbound + dst + udp + + + 5001 + inbound + dst + udp + + false + + true + + + + vsanvp + + false + + 8080 + inbound + dst + tcp + + + 8080 + outbound + dst + tcp + + false + + true + + + + vvold + + false + + 0 + 65535 + outbound + dst + tcp + + false + + true + + + + webAccess + + false + + 80 + inbound + dst + tcp + + true + + true + + + + + + 120 + 120 + false + PowerOff + + + + directAttached + singleHost + -15 + + mpx.vmhba0:C0:T0:L0 + 9 + + + + lockdownDisabled + 10 + + + true + + + false + false + + + + + 1 + PowerPolicy.static.name + static + PowerPolicy.static.description + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + 3 + PowerPolicy.low.name + low + PowerPolicy.low.description + + + 4 + PowerPolicy.custom.name + custom + PowerPolicy.custom.description + + + + + 2 + PowerPolicy.dynamic.name + dynamic + PowerPolicy.dynamic.description + + + + 5980f676-21a5db76-9eef-000c2981d8a0 + 0 + + false + + false + ha-host + + + false + + + + + + + + shared + performance + + + VMW_spm_1.0.0 + spm + VMW + 1.0.230 + datastoreIoControl + VMware Storage I/O Control + 2016-07-21 + true + + + VMW_vmwarevmcrypt_1.0.0 + vmwarevmcrypt + VMW + 1.0.0 + encryption + VMcrypt IO Filter + 2016-07-21 + true + +
+
+ + vm + + vm-176 + + + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + network + + network-64 + dvportgroup-73 + dvportgroup-75 + + + + datastoreBrowser + ha-host-datastorebrowser + +
\ No newline at end of file diff --git a/pkg/check/testdata/default/0118-HostDatastoreSystem-hostdatastoresystem-109.xml b/pkg/check/testdata/default/0118-HostDatastoreSystem-hostdatastoresystem-109.xml new file mode 100644 index 00000000..2fdfe66a --- /dev/null +++ b/pkg/check/testdata/default/0118-HostDatastoreSystem-hostdatastoresystem-109.xml @@ -0,0 +1,20 @@ + + hostdatastoresystem-109 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + capabilities + + false + false + false + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0119-HostNetworkSystem-hostnetworksystem-110.xml b/pkg/check/testdata/default/0119-HostNetworkSystem-hostnetworksystem-110.xml new file mode 100644 index 00000000..554d15b3 --- /dev/null +++ b/pkg/check/testdata/default/0119-HostNetworkSystem-hostnetworksystem-110.xml @@ -0,0 +1,137 @@ + + hostnetworksystem-110 + + value + + + + availableField + + + + networkInfo + + + vSwitch0 + + 0 + 0 + VM Network + + 0 + + + + key-vim.host.PortGroup-VM Network + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + VM Network + 0 + vSwitch0 + + + + + + + + + + + + key-vim.host.PortGroup-Management Network + + key-vim.host.PortGroup.Port-33554436 + 00:0c:29:81:d8:a0 + host + + key-vim.host.VirtualSwitch-vSwitch0 + + + false + true + true + + + loadbalance_srcid + true + true + false + + minimum + 10 + false + false + false + false + + + vmnic0 + + + + true + true + true + + + false + + + + Management Network + 0 + vSwitch0 + + + + loadbalance_srcid + true + false + + false + + + vmnic0 + + + + + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0120-ResourcePool-resgroup-90.xml b/pkg/check/testdata/default/0120-ResourcePool-resgroup-90.xml new file mode 100644 index 00000000..79fc3217 --- /dev/null +++ b/pkg/check/testdata/default/0120-ResourcePool-resgroup-90.xml @@ -0,0 +1,180 @@ + + resgroup-90 + + value + + + + availableField + + + + parent + clustercomputeresource-91 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + Resources + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-91 + + + resourcePool + + resgroup-116 + resgroup-117 + virtualapp-118 + + + + vm + + vm-176 + vm-179 + + + + config + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0121-ResourcePool-resgroup-116.xml b/pkg/check/testdata/default/0121-ResourcePool-resgroup-116.xml new file mode 100644 index 00000000..5da9738e --- /dev/null +++ b/pkg/check/testdata/default/0121-ResourcePool-resgroup-116.xml @@ -0,0 +1,172 @@ + + resgroup-116 + + value + + + + availableField + + + + parent + resgroup-90 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_RP1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-91 + + + resourcePool + + + + vm + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0122-ResourcePool-resgroup-117.xml b/pkg/check/testdata/default/0122-ResourcePool-resgroup-117.xml new file mode 100644 index 00000000..c75a61a7 --- /dev/null +++ b/pkg/check/testdata/default/0122-ResourcePool-resgroup-117.xml @@ -0,0 +1,172 @@ + + resgroup-117 + + value + + + + availableField + + + + parent + resgroup-90 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_RP2 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-91 + + + resourcePool + + + + vm + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0123-VirtualApp-virtualapp-118.xml b/pkg/check/testdata/default/0123-VirtualApp-virtualapp-118.xml new file mode 100644 index 00000000..61b40f6f --- /dev/null +++ b/pkg/check/testdata/default/0123-VirtualApp-virtualapp-118.xml @@ -0,0 +1,207 @@ + + virtualapp-118 + + value + + + + availableField + + + + parent + resgroup-90 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_C0_APP0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + DC1_C0_APP0 + + ha-root-pool + + 4121 + false + 4121 + + 9000 + custom + + + + 961 + false + 961 + + 9000 + custom + + + + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + + runtime + + + 0 + 0 + 1007681536 + 1007681536 + 0 + 1007681536 + + + 0 + 0 + 4121 + 4121 + 0 + 4121 + + green + + + + owner + clustercomputeresource-91 + + + resourcePool + + + + vm + + vm-182 + vm-185 + + + + config + + + 0 + true + -1 + + 0 + normal + + + + 0 + true + -1 + + 0 + normal + + + + + + childConfiguration + + + + parentFolder + folder-60 + + + datastore + + + + network + + + + vAppConfig + + + 0 + vcsim + VMware + 0.1 + http://www.vmware.com/ + + + false + 0 + vcsim + + + + childLink + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0069-Folder-folder-5.xml b/pkg/check/testdata/default/0124-Folder-folder-62.xml similarity index 84% rename from pkg/check/testdata/default/0069-Folder-folder-5.xml rename to pkg/check/testdata/default/0124-Folder-folder-62.xml index 8b541020..c98a5eee 100644 --- a/pkg/check/testdata/default/0069-Folder-folder-5.xml +++ b/pkg/check/testdata/default/0124-Folder-folder-62.xml @@ -1,5 +1,5 @@ - folder-5 + folder-62 value @@ -10,7 +10,7 @@ parent - datacenter-2 + datacenter-59 customValue @@ -73,10 +73,8 @@ childEntity - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + storagepod-65 + folder-66 @@ -89,7 +87,7 @@ parent - datacenter-2 + datacenter-59 customValue @@ -152,10 +150,8 @@ childEntity - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 - testdata/default/govcsim-DC0-LocalDS_0-824089577@folder-5 + storagepod-65 + folder-66 \ No newline at end of file diff --git a/pkg/check/testdata/default/0125-StoragePod-storagepod-65.xml b/pkg/check/testdata/default/0125-StoragePod-storagepod-65.xml new file mode 100644 index 00000000..f156883b --- /dev/null +++ b/pkg/check/testdata/default/0125-StoragePod-storagepod-65.xml @@ -0,0 +1,187 @@ + + storagepod-65 + + value + + + + availableField + + + + parent + folder-62 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_POD0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + + + + childEntity + + + + summary + + + 0 + 0 + + + + podStorageDrsEntry + + + + true + false + + + + + + + value + + + + availableField + + + + parent + folder-62 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_POD0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + + + + childEntity + + + + summary + + + 0 + 0 + + + + podStorageDrsEntry + + + + true + false + + + + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0126-Folder-folder-66.xml b/pkg/check/testdata/default/0126-Folder-folder-66.xml new file mode 100644 index 00000000..8bb134cf --- /dev/null +++ b/pkg/check/testdata/default/0126-Folder-folder-66.xml @@ -0,0 +1,185 @@ + + folder-66 + + value + + + + availableField + + + + parent + folder-62 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + StoragePod + Folder + + + + childEntity + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + value + + + + availableField + + + + parent + folder-62 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Datastore + StoragePod + Folder + + + + childEntity + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0127-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_0-236535740%40folder-66.xml b/pkg/check/testdata/default/0127-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_0-236535740%40folder-66.xml new file mode 100644 index 00000000..7d6a19fb --- /dev/null +++ b/pkg/check/testdata/default/0127-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_0-236535740%40folder-66.xml @@ -0,0 +1,130 @@ + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + value + + + + availableField + + + + parent + folder-66 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_0 + testdata/default/govcsim-DC1-LocalDS_0-236535740 + 33505005568 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.256980059-05:00 + testdata/default/govcsim-DC1-LocalDS_0-236535740 + + + + summary + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + LocalDS_0 + testdata/default/govcsim-DC1-LocalDS_0-236535740 + 33681489920 + 33505005568 + true + OTHER + normal + + + + host + + + host-114 + + readWrite + true + true + + + + + + vm + + vm-170 + vm-173 + vm-176 + vm-179 + vm-182 + vm-185 + + + + browser + hostdatastorebrowser-138 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0128-HostDatastoreBrowser-hostdatastorebrowser-138.xml b/pkg/check/testdata/default/0128-HostDatastoreBrowser-hostdatastorebrowser-138.xml new file mode 100644 index 00000000..5d118e11 --- /dev/null +++ b/pkg/check/testdata/default/0128-HostDatastoreBrowser-hostdatastorebrowser-138.xml @@ -0,0 +1,13 @@ + + hostdatastorebrowser-138 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0129-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_1-057538539%40folder-66.xml b/pkg/check/testdata/default/0129-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_1-057538539%40folder-66.xml new file mode 100644 index 00000000..f11ff1c1 --- /dev/null +++ b/pkg/check/testdata/default/0129-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_1-057538539%40folder-66.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + + value + + + + availableField + + + + parent + folder-66 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_1 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_1 + testdata/default/govcsim-DC1-LocalDS_1-057538539 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.257044009-05:00 + testdata/default/govcsim-DC1-LocalDS_1-057538539 + + + + summary + + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + LocalDS_1 + testdata/default/govcsim-DC1-LocalDS_1-057538539 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-114 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-142 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0130-HostDatastoreBrowser-hostdatastorebrowser-142.xml b/pkg/check/testdata/default/0130-HostDatastoreBrowser-hostdatastorebrowser-142.xml new file mode 100644 index 00000000..de5db4d1 --- /dev/null +++ b/pkg/check/testdata/default/0130-HostDatastoreBrowser-hostdatastorebrowser-142.xml @@ -0,0 +1,14 @@ + + hostdatastorebrowser-142 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0131-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_2-622867534%40folder-66.xml b/pkg/check/testdata/default/0131-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_2-622867534%40folder-66.xml new file mode 100644 index 00000000..8ba7a51a --- /dev/null +++ b/pkg/check/testdata/default/0131-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_2-622867534%40folder-66.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + + value + + + + availableField + + + + parent + folder-66 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_2 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_2 + testdata/default/govcsim-DC1-LocalDS_2-622867534 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.257102599-05:00 + testdata/default/govcsim-DC1-LocalDS_2-622867534 + + + + summary + + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + LocalDS_2 + testdata/default/govcsim-DC1-LocalDS_2-622867534 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-114 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-146 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0132-HostDatastoreBrowser-hostdatastorebrowser-146.xml b/pkg/check/testdata/default/0132-HostDatastoreBrowser-hostdatastorebrowser-146.xml new file mode 100644 index 00000000..c51c7d8c --- /dev/null +++ b/pkg/check/testdata/default/0132-HostDatastoreBrowser-hostdatastorebrowser-146.xml @@ -0,0 +1,15 @@ + + hostdatastorebrowser-146 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0133-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_3-260484949%40folder-66.xml b/pkg/check/testdata/default/0133-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_3-260484949%40folder-66.xml new file mode 100644 index 00000000..b54d8a53 --- /dev/null +++ b/pkg/check/testdata/default/0133-Datastore-%2Ftmp%2Fgovcsim-DC1-LocalDS_3-260484949%40folder-66.xml @@ -0,0 +1,123 @@ + + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + value + + + + availableField + + + + parent + folder-66 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + LocalDS_3 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + info + + LocalDS_3 + testdata/default/govcsim-DC1-LocalDS_3-260484949 + 33511297024 + 33511297024 + 33511297024 + 2021-02-09T22:59:58.257162689-05:00 + testdata/default/govcsim-DC1-LocalDS_3-260484949 + + + + summary + + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + LocalDS_3 + testdata/default/govcsim-DC1-LocalDS_3-260484949 + 33681489920 + 33511297024 + true + OTHER + normal + + + + host + + + host-114 + + readWrite + true + true + + + + + + vm + + + + browser + hostdatastorebrowser-150 + + + capability + + true + false + true + true + false + true + true + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0134-HostDatastoreBrowser-hostdatastorebrowser-150.xml b/pkg/check/testdata/default/0134-HostDatastoreBrowser-hostdatastorebrowser-150.xml new file mode 100644 index 00000000..90f13c9b --- /dev/null +++ b/pkg/check/testdata/default/0134-HostDatastoreBrowser-hostdatastorebrowser-150.xml @@ -0,0 +1,16 @@ + + hostdatastorebrowser-150 + + datastore + + testdata/default/govcsim-DC1-LocalDS_0-236535740@folder-66 + testdata/default/govcsim-DC1-LocalDS_1-057538539@folder-66 + testdata/default/govcsim-DC1-LocalDS_2-622867534@folder-66 + testdata/default/govcsim-DC1-LocalDS_3-260484949@folder-66 + + + + supportedType + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0135-Folder-folder-63.xml b/pkg/check/testdata/default/0135-Folder-folder-63.xml new file mode 100644 index 00000000..0f4bd753 --- /dev/null +++ b/pkg/check/testdata/default/0135-Folder-folder-63.xml @@ -0,0 +1,157 @@ + + folder-63 + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + network + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Network + DistributedVirtualSwitch + Folder + + + + childEntity + + network-64 + folder-68 + + + + value + + + + availableField + + + + parent + datacenter-59 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + network + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Network + DistributedVirtualSwitch + Folder + + + + childEntity + + network-64 + folder-68 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0136-Network-network-64.xml b/pkg/check/testdata/default/0136-Network-network-64.xml new file mode 100644 index 00000000..6f52b91a --- /dev/null +++ b/pkg/check/testdata/default/0136-Network-network-64.xml @@ -0,0 +1,86 @@ + + network-64 + + value + + + + availableField + + + + parent + folder-63 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + VM Network + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + network-64 + VM Network + true + + + + + host + + + + vm + + + + name + VM Network + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0137-Folder-folder-68.xml b/pkg/check/testdata/default/0137-Folder-folder-68.xml new file mode 100644 index 00000000..9c9a4160 --- /dev/null +++ b/pkg/check/testdata/default/0137-Folder-folder-68.xml @@ -0,0 +1,163 @@ + + folder-68 + + value + + + + availableField + + + + parent + folder-63 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Network + DistributedVirtualSwitch + Folder + + + + childEntity + + dvs-71 + dvportgroup-73 + dvportgroup-75 + opaquenetwork-76 + opaquenetwork-77 + + + + value + + + + availableField + + + + parent + folder-63 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + F0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + childType + + Network + DistributedVirtualSwitch + Folder + + + + childEntity + + dvs-71 + dvportgroup-73 + dvportgroup-75 + opaquenetwork-76 + opaquenetwork-77 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0138-DistributedVirtualSwitch-dvs-71.xml b/pkg/check/testdata/default/0138-DistributedVirtualSwitch-dvs-71.xml new file mode 100644 index 00000000..688a29d4 --- /dev/null +++ b/pkg/check/testdata/default/0138-DistributedVirtualSwitch-dvs-71.xml @@ -0,0 +1,120 @@ + + dvs-71 + + value + + + + availableField + + + + parent + folder-68 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DVS0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + uuid + fea97929-4b2d-5972-b146-930c6d0b4014 + + + capability + + + + summary + + DVS0 + fea97929-4b2d-5972-b146-930c6d0b4014 + 0 + + DVS + VMware, Inc. + 6.5.0 + 5973321 + etherswitch + + host-85 + host-98 + host-106 + host-114 + DVS0-DVUplinks-71 + DC1_DVPG0 + + + + config + + fea97929-4b2d-5972-b146-930c6d0b4014 + DVS0 + 0 + 0 + 0 + + + + 0001-01-01T00:00:00Z + 0 + + + + networkResourcePool + + + + portgroup + + dvportgroup-73 + dvportgroup-75 + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0139-DistributedVirtualPortgroup-dvportgroup-73.xml b/pkg/check/testdata/default/0139-DistributedVirtualPortgroup-dvportgroup-73.xml new file mode 100644 index 00000000..b8ece2da --- /dev/null +++ b/pkg/check/testdata/default/0139-DistributedVirtualPortgroup-dvportgroup-73.xml @@ -0,0 +1,150 @@ + + dvportgroup-73 + + value + + + + availableField + + + + parent + folder-68 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DVS0-DVUplinks-71 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + dvportgroup-73 + DVS0-DVUplinks-71 + true + + + + + host + + host-85 + host-98 + host-106 + host-114 + + + + vm + + + + name + DVS0-DVUplinks-71 + + + key + dvportgroup-73 + + + config + + dvportgroup-73 + DVS0-DVUplinks-71 + 0 + dvs-71 + + + false + + 0 + 4094 + + + + false + + false + loadbalance_srcid + + + false + true + + + false + true + + + false + true + + + + earlyBinding + + true + false + false + false + true + false + false + false + false + false + false + + + + + portKeys + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0140-DistributedVirtualPortgroup-dvportgroup-75.xml b/pkg/check/testdata/default/0140-DistributedVirtualPortgroup-dvportgroup-75.xml new file mode 100644 index 00000000..8b42148a --- /dev/null +++ b/pkg/check/testdata/default/0140-DistributedVirtualPortgroup-dvportgroup-75.xml @@ -0,0 +1,147 @@ + + dvportgroup-75 + + value + + + + availableField + + + + parent + folder-68 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + name + DC1_DVPG0 + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + dvportgroup-75 + DC1_DVPG0 + true + + + + + host + + host-85 + host-98 + host-106 + host-114 + + + + vm + + + + name + DC1_DVPG0 + + + key + dvportgroup-75 + + + config + + dvportgroup-75 + DC1_DVPG0 + 0 + dvs-71 + + + false + 0 + + + false + + false + loadbalance_srcid + + + false + true + + + false + true + + + false + true + + + + earlyBinding + + true + false + false + false + true + false + false + false + false + false + false + + + + + portKeys + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0141-OpaqueNetwork-opaquenetwork-76.xml b/pkg/check/testdata/default/0141-OpaqueNetwork-opaquenetwork-76.xml new file mode 100644 index 00000000..55a23967 --- /dev/null +++ b/pkg/check/testdata/default/0141-OpaqueNetwork-opaquenetwork-76.xml @@ -0,0 +1,88 @@ + + opaquenetwork-76 + + value + + + + availableField + + + + parent + folder-68 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + opaquenetwork-76 + DC1_NSX0 + true + + fb718cf7-4198-4633-b4a1-bf2afd2e764b + nsx.LogicalSwitch + + + + host + + + + vm + + + + name + DC1_NSX0 + + + extraConfig + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/0142-OpaqueNetwork-opaquenetwork-77.xml b/pkg/check/testdata/default/0142-OpaqueNetwork-opaquenetwork-77.xml new file mode 100644 index 00000000..5e2f7062 --- /dev/null +++ b/pkg/check/testdata/default/0142-OpaqueNetwork-opaquenetwork-77.xml @@ -0,0 +1,88 @@ + + opaquenetwork-77 + + value + + + + availableField + + + + parent + folder-68 + + + customValue + + + + overallStatus + green + + + configStatus + green + + + configIssue + + + + effectiveRole + + -1 + + + + permission + + + + disabledMethod + + + + recentTask + + + + declaredAlarmState + + + + triggeredAlarmState + + + + tag + + + + summary + + opaquenetwork-77 + DC1_NSX1 + true + + 571745e6-fc43-48f1-8022-11075240320d + nsx.LogicalSwitch + + + + host + + + + vm + + + + name + DC1_NSX1 + + + extraConfig + + + \ No newline at end of file diff --git a/pkg/check/testdata/default/README b/pkg/check/testdata/default/README index fa84e222..dd67ce6d 100644 --- a/pkg/check/testdata/default/README +++ b/pkg/check/testdata/default/README @@ -1,7 +1,12 @@ This directory contains simulated vCenter environment, generated using vcsim and govc v0.23.1. -# Run vcsim with default settings, i.e. with 1 host and 2 VMs -$ vcsim -tls=false +# Run vcsim with following settings. +$ vcsim -tls=false -dc 2 -folder 1 -ds 4 -pod 1 -nsx 2 -pool 2 -app 1 -vm 2 + +# this will give us a datastore cluster with no datastores inside it. +# we should move some datastores in the datastore cluster +$ govc object.mv /DC0/datastore/LocalDS_2 /DC0/datastore/DC0_POD0 +$ govc object.mv /DC0/datastore/LocalDS_3 /DC0/datastore/DC0_POD0 # Save simulated objects in a directory. $ govc object.save diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.nvram similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.nvram diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/DC0_C0_APP0_VM0.vmx diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/disk1-flat.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/disk1-flat.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/disk1-flat.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/disk1.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/disk1.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/disk1.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.nvram similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.nvram diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/DC0_C0_APP0_VM1.vmx diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/disk1-flat.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/disk1-flat.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/disk1-flat.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/disk1.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/disk1.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/disk1.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_APP0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.nvram rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.nvram diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/DC0_H0_VM0.vmx rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmx diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/disk1-flat.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/disk1-flat.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/disk1-flat.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/disk1.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/disk1.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/disk1.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.nvram rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.nvram diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/DC0_H0_VM1.vmx rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmx diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/disk1-flat.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/disk1-flat.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/disk1-flat.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/disk1.vmdk similarity index 100% rename from pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/disk1.vmdk rename to pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/disk1.vmdk diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_C0_RP0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/DC0_H0_VM0.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/DC0_H0_VM1.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-741472776/DC0_H0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/vmware.log deleted file mode 100644 index abe158ce..00000000 --- a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM0/vmware.log +++ /dev/null @@ -1,2 +0,0 @@ -vmx 2021/01/08 17:08:20 created -vmx 2021/01/08 17:08:20 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/vmware.log deleted file mode 100644 index abe158ce..00000000 --- a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_C0_RP0_VM1/vmware.log +++ /dev/null @@ -1,2 +0,0 @@ -vmx 2021/01/08 17:08:20 created -vmx 2021/01/08 17:08:20 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/vmware.log deleted file mode 100644 index abe158ce..00000000 --- a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM0/vmware.log +++ /dev/null @@ -1,2 +0,0 @@ -vmx 2021/01/08 17:08:20 created -vmx 2021/01/08 17:08:20 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/vmware.log deleted file mode 100644 index abe158ce..00000000 --- a/pkg/check/testdata/default/govcsim-DC0-LocalDS_0-824089577/DC0_H0_VM1/vmware.log +++ /dev/null @@ -1,2 +0,0 @@ -vmx 2021/01/08 17:08:20 created -vmx 2021/01/08 17:08:20 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/DC1_C0_APP0_VM0.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/DC1_C0_APP0_VM1.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_APP0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_C0_RP0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/DC1_H0_VM0.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM0/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.nvram b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.nvram new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.vmx b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/DC1_H0_VM1.vmx new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1-flat.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1-flat.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1.vmdk b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/disk1.vmdk new file mode 100644 index 00000000..e69de29b diff --git a/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/vmware.log b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/vmware.log new file mode 100644 index 00000000..2495a70d --- /dev/null +++ b/pkg/check/testdata/default/govcsim-DC1-LocalDS_0-236535740/DC1_H0_VM1/vmware.log @@ -0,0 +1,2 @@ +vmx 2021/02/09 22:59:58 created +vmx 2021/02/09 22:59:58 running power task: requesting poweredOn, existing poweredOff From 687d0f15baf0745ee4fac6c2461639f2f2a8fc16 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Tue, 9 Feb 2021 23:32:43 -0500 Subject: [PATCH 3/6] refactor code to reuse getDatacenter function Also add comments that explains when alerts gets ignored --- pkg/check/datastore.go | 39 +++++++++++++++------------------------ pkg/check/folder.go | 21 +++++++++++++++------ 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/pkg/check/datastore.go b/pkg/check/datastore.go index 2dd28fc2..47499e08 100644 --- a/pkg/check/datastore.go +++ b/pkg/check/datastore.go @@ -6,7 +6,6 @@ import ( "os/exec" "strings" - "github.com/vmware/govmomi/object" "github.com/vmware/govmomi/property" configv1 "github.com/openshift/api/config/v1" @@ -66,7 +65,7 @@ func CheckStorageClasses(ctx *CheckContext) error { } } } - klog.V(2).Infof("CheckStorageClasses checked %d storage classes, %d problems found", len(scs), len(errs)) + klog.V(4).Infof("CheckStorageClasses checked %d storage classes, %d problems found", len(scs), len(errs)) return JoinErrors(errs) } @@ -253,26 +252,14 @@ func checkDataStore(ctx *CheckContext, dsName string, infrastructure *configv1.I } func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - finder := find.NewFinder(ctx.VMClient, false) - datacenters, err := finder.DatacenterList(tctx, "*") + matchingDC, err := getDatacenter(ctx, ctx.VMConfig.Workspace.Datacenter) if err != nil { - klog.Errorf("error listing datacenters: %v", err) - return nil - } - workspaceDC := ctx.VMConfig.Workspace.Datacenter - var matchingDC *object.Datacenter - for _, dc := range datacenters { - if dc.Name() == workspaceDC { - matchingDC = dc - } + return err } - // lets fetch the datastore - finder = find.NewFinder(ctx.VMClient, false) + finder := find.NewFinder(ctx.VMClient, false) finder.SetDatacenter(matchingDC) - tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) defer cancel() ds, err := finder.Datastore(tctx, dataStoreName) if err != nil { @@ -286,7 +273,6 @@ func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) defer cancel() err = pc.RetrieveOne(tctx, ds.Reference(), properties, &dsMo) - if err != nil { klog.Errorf("error getting properties of datastore %s: %v", dataStoreName, err) return nil @@ -302,23 +288,28 @@ func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { klog.Errorf("error listing datastore cluster: %+v", err) return nil } + defer func() { + v.Destroy(tctx) + }() + var content []mo.StoragePod tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) defer cancel() err = v.Retrieve(tctx, kind, []string{SummaryProperty, "childEntity"}, &content) if err != nil { klog.Errorf("error retrieving datastore cluster properties: %+v", err) + // it is possible that we do not actually have permission to fetch datastore clusters + // in which case rather than throwing an error - we will silently return nil, so as + // we don't trigger unnecessary alerts. return nil } - err = v.Destroy(tctx) - if err != nil { - klog.Errorf("error destroying view: %+v", err) - return nil - } + for _, ds := range content { for _, child := range ds.Folder.ChildEntity { tDS, err := getDatastore(ctx, child) if err != nil { + // we may not have permissions to fetch unrelated datastores in OCP + // and hence we are going to ignore the error. klog.Errorf("fetching datastore %s failed: %v", child.String(), err) continue } diff --git a/pkg/check/folder.go b/pkg/check/folder.go index 418886ed..141f5f08 100644 --- a/pkg/check/folder.go +++ b/pkg/check/folder.go @@ -17,16 +17,14 @@ import ( // The check tries to list "kubevols/". It tolerates when it's missing, // it will be created by OCP on the first provisioning. func CheckFolderPermissions(ctx *CheckContext) error { - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - finder := find.NewFinder(ctx.VMClient, false) - dc, err := finder.Datacenter(tctx, ctx.VMConfig.Workspace.Datacenter) + dc, err := getDatacenter(ctx, ctx.VMConfig.Workspace.Datacenter) if err != nil { - return fmt.Errorf("failed to access datacenter %s: %s", ctx.VMConfig.Workspace.Datacenter, err) + return err } - tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) defer cancel() + finder := find.NewFinder(ctx.VMClient, false) finder.SetDatacenter(dc) ds, err := finder.Datastore(tctx, ctx.VMConfig.Workspace.DefaultDatastore) if err != nil { @@ -106,3 +104,14 @@ func listDirectory(ctx *CheckContext, ds *object.Datastore, path string, tolerat } return nil } + +func getDatacenter(ctx *CheckContext, dcName string) (*object.Datacenter, error) { + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + finder := find.NewFinder(ctx.VMClient, false) + dc, err := finder.Datacenter(tctx, dcName) + if err != nil { + return nil, fmt.Errorf("failed to access datacenter %s: %s", dcName, err) + } + return dc, nil +} From 1ffea30ca3d39b7dd683226b62689bd4db81008d Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Tue, 9 Feb 2021 23:35:44 -0500 Subject: [PATCH 4/6] Change readme location and add some additional comments --- pkg/check/testdata/README | 9 +++++++-- pkg/check/testdata/default/README | 18 ------------------ 2 files changed, 7 insertions(+), 20 deletions(-) delete mode 100644 pkg/check/testdata/default/README diff --git a/pkg/check/testdata/README b/pkg/check/testdata/README index fa84e222..dd67ce6d 100644 --- a/pkg/check/testdata/README +++ b/pkg/check/testdata/README @@ -1,7 +1,12 @@ This directory contains simulated vCenter environment, generated using vcsim and govc v0.23.1. -# Run vcsim with default settings, i.e. with 1 host and 2 VMs -$ vcsim -tls=false +# Run vcsim with following settings. +$ vcsim -tls=false -dc 2 -folder 1 -ds 4 -pod 1 -nsx 2 -pool 2 -app 1 -vm 2 + +# this will give us a datastore cluster with no datastores inside it. +# we should move some datastores in the datastore cluster +$ govc object.mv /DC0/datastore/LocalDS_2 /DC0/datastore/DC0_POD0 +$ govc object.mv /DC0/datastore/LocalDS_3 /DC0/datastore/DC0_POD0 # Save simulated objects in a directory. $ govc object.save diff --git a/pkg/check/testdata/default/README b/pkg/check/testdata/default/README deleted file mode 100644 index dd67ce6d..00000000 --- a/pkg/check/testdata/default/README +++ /dev/null @@ -1,18 +0,0 @@ -This directory contains simulated vCenter environment, generated using vcsim and govc v0.23.1. - -# Run vcsim with following settings. -$ vcsim -tls=false -dc 2 -folder 1 -ds 4 -pod 1 -nsx 2 -pool 2 -app 1 -vm 2 - -# this will give us a datastore cluster with no datastores inside it. -# we should move some datastores in the datastore cluster -$ govc object.mv /DC0/datastore/LocalDS_2 /DC0/datastore/DC0_POD0 -$ govc object.mv /DC0/datastore/LocalDS_3 /DC0/datastore/DC0_POD0 - -# Save simulated objects in a directory. -$ govc object.save - -# Copy datastore content generated by vcsim from /tmp to here. -$ cp -r /tmp/govcsim-DC0-LocalDS_0* . - -# Change the datastore paths from "/tmp" to "testdata/default". -$ sed -i 's!/tmp/govcsim-DC0-LocalDS_0!testdata/default/govcsim-DC0-LocalDS_0!g' vcsim-127.0.0.1/*.xml From 6c5ef4d8d03cc23e1c1f9ad14e58c4a38f44c2dd Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Wed, 10 Feb 2021 10:37:25 -0500 Subject: [PATCH 5/6] refactor code to reuse datacenter and datastore fetch functions also fix logging --- pkg/check/datastore.go | 28 +++++------------------- pkg/check/folder.go | 18 +--------------- pkg/check/util.go | 48 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+), 40 deletions(-) create mode 100644 pkg/check/util.go diff --git a/pkg/check/datastore.go b/pkg/check/datastore.go index 47499e08..67d4fc97 100644 --- a/pkg/check/datastore.go +++ b/pkg/check/datastore.go @@ -9,7 +9,6 @@ import ( "github.com/vmware/govmomi/property" configv1 "github.com/openshift/api/config/v1" - "github.com/vmware/govmomi/find" "github.com/vmware/govmomi/pbm" "github.com/vmware/govmomi/pbm/types" "github.com/vmware/govmomi/view" @@ -65,7 +64,7 @@ func CheckStorageClasses(ctx *CheckContext) error { } } } - klog.V(4).Infof("CheckStorageClasses checked %d storage classes, %d problems found", len(scs), len(errs)) + klog.V(2).Infof("CheckStorageClasses checked %d storage classes, %d problems found", len(scs), len(errs)) return JoinErrors(errs) } @@ -254,14 +253,10 @@ func checkDataStore(ctx *CheckContext, dsName string, infrastructure *configv1.I func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { matchingDC, err := getDatacenter(ctx, ctx.VMConfig.Workspace.Datacenter) if err != nil { + klog.Errorf("error getting datacenter %s: %v", ctx.VMConfig.Workspace.Datacenter, err) return err } - // lets fetch the datastore - finder := find.NewFinder(ctx.VMClient, false) - finder.SetDatacenter(matchingDC) - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - ds, err := finder.Datastore(tctx, dataStoreName) + ds, err := getDataStoreByName(ctx, dataStoreName, matchingDC) if err != nil { klog.Errorf("error getting datastore %s: %v", dataStoreName, err) return nil @@ -270,7 +265,7 @@ func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { var dsMo mo.Datastore pc := property.DefaultCollector(matchingDC.Client()) properties := []string{DatastoreInfoProperty, SummaryProperty} - tctx, cancel = context.WithTimeout(ctx.Context, *Timeout) + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) defer cancel() err = pc.RetrieveOne(tctx, ds.Reference(), properties, &dsMo) if err != nil { @@ -318,23 +313,10 @@ func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { } } } - klog.V(2).Infof("Checked datastore %s for SRDS - no problems found", dataStoreName) + klog.V(4).Infof("Checked datastore %s for SRDS - no problems found", dataStoreName) return nil } -func getDatastore(ctx *CheckContext, ref vim.ManagedObjectReference) (mo.Datastore, error) { - var dsMo mo.Datastore - pc := property.DefaultCollector(ctx.VMClient) - properties := []string{DatastoreInfoProperty, SummaryProperty} - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - err := pc.RetrieveOne(tctx, ref, properties, &dsMo) - if err != nil { - return dsMo, err - } - return dsMo, nil -} - func checkVolumeName(name string) error { path := fmt.Sprintf("/var/lib/kubelet/plugins/kubernetes.io/vsphere-volume/mounts/%s", name) escapedPath, err := systemdEscape(path) diff --git a/pkg/check/folder.go b/pkg/check/folder.go index 141f5f08..9f3f65d5 100644 --- a/pkg/check/folder.go +++ b/pkg/check/folder.go @@ -4,7 +4,6 @@ import ( "context" "fmt" - "github.com/vmware/govmomi/find" "github.com/vmware/govmomi/object" "github.com/vmware/govmomi/vim25/types" "k8s.io/klog/v2" @@ -22,11 +21,7 @@ func CheckFolderPermissions(ctx *CheckContext) error { return err } - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - finder := find.NewFinder(ctx.VMClient, false) - finder.SetDatacenter(dc) - ds, err := finder.Datastore(tctx, ctx.VMConfig.Workspace.DefaultDatastore) + ds, err := getDataStoreByName(ctx, ctx.VMConfig.Workspace.DefaultDatastore, dc) if err != nil { return fmt.Errorf("failed to access datastore %s: %s", ctx.VMConfig.Workspace.DefaultDatastore, err) } @@ -104,14 +99,3 @@ func listDirectory(ctx *CheckContext, ds *object.Datastore, path string, tolerat } return nil } - -func getDatacenter(ctx *CheckContext, dcName string) (*object.Datacenter, error) { - tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) - defer cancel() - finder := find.NewFinder(ctx.VMClient, false) - dc, err := finder.Datacenter(tctx, dcName) - if err != nil { - return nil, fmt.Errorf("failed to access datacenter %s: %s", dcName, err) - } - return dc, nil -} diff --git a/pkg/check/util.go b/pkg/check/util.go new file mode 100644 index 00000000..e18aaf36 --- /dev/null +++ b/pkg/check/util.go @@ -0,0 +1,48 @@ +package check + +import ( + "context" + "fmt" + + "github.com/vmware/govmomi/find" + "github.com/vmware/govmomi/object" + "github.com/vmware/govmomi/property" + "github.com/vmware/govmomi/vim25/mo" + vim "github.com/vmware/govmomi/vim25/types" +) + +func getDatacenter(ctx *CheckContext, dcName string) (*object.Datacenter, error) { + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + finder := find.NewFinder(ctx.VMClient, false) + dc, err := finder.Datacenter(tctx, dcName) + if err != nil { + return nil, fmt.Errorf("failed to access datacenter %s: %s", dcName, err) + } + return dc, nil +} + +func getDataStoreByName(ctx *CheckContext, dsName string, dc *object.Datacenter) (*object.Datastore, error) { + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + finder := find.NewFinder(ctx.VMClient, false) + finder.SetDatacenter(dc) + ds, err := finder.Datastore(tctx, dsName) + if err != nil { + return nil, fmt.Errorf("failed to access datastore %s: %s", dsName, err) + } + return ds, nil +} + +func getDatastore(ctx *CheckContext, ref vim.ManagedObjectReference) (mo.Datastore, error) { + var dsMo mo.Datastore + pc := property.DefaultCollector(ctx.VMClient) + properties := []string{DatastoreInfoProperty, SummaryProperty} + tctx, cancel := context.WithTimeout(ctx.Context, *Timeout) + defer cancel() + err := pc.RetrieveOne(tctx, ref, properties, &dsMo) + if err != nil { + return dsMo, err + } + return dsMo, nil +} From aed5b4ee7b65150460fb8c901489897bf4eca315 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Wed, 10 Feb 2021 10:58:29 -0500 Subject: [PATCH 6/6] Return error when we can't find datastore --- pkg/check/datastore.go | 2 +- pkg/check/datastore_test.go | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pkg/check/datastore.go b/pkg/check/datastore.go index 67d4fc97..5e018361 100644 --- a/pkg/check/datastore.go +++ b/pkg/check/datastore.go @@ -259,7 +259,7 @@ func checkForDatastoreCluster(ctx *CheckContext, dataStoreName string) error { ds, err := getDataStoreByName(ctx, dataStoreName, matchingDC) if err != nil { klog.Errorf("error getting datastore %s: %v", dataStoreName, err) - return nil + return err } var dsMo mo.Datastore diff --git a/pkg/check/datastore_test.go b/pkg/check/datastore_test.go index 33bf1e4e..54baebfa 100644 --- a/pkg/check/datastore_test.go +++ b/pkg/check/datastore_test.go @@ -17,9 +17,14 @@ var ( }{ { name: "short datastore", - datastore: "short", + datastore: "LocalDS_1", expectError: false, }, + { + name: "non-existant datastore", + datastore: "foobar", // this datastore does not exist and hence should result in error + expectError: true, + }, { name: "long datastore", datastore: "01234567890123456789012345678901234567890123456789", // 269 characters in the escaped path @@ -121,7 +126,7 @@ func TestCheckPVs(t *testing.T) { }{ { name: "short datastore", - datastore: "short", + datastore: "LocalDS_1", expectError: false, }, {