This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Number of hosts per cluster in Report?

I am trying to include the number of hosts in each VMware cluster in my VMAN Orion reports, but cannot seem to find it in the available data. VMAN definitely knows the number of hosts per cluster, because if you hover over a cluster it will show #Hosts. What am I missing? Thanks.

Parents
  • alang  wrote:

    I am trying to include the number of hosts in each VMware cluster in my VMAN Orion reports, but cannot seem to find it in the available data. VMAN definitely knows the number of hosts per cluster, because if you hover over a cluster it will show #Hosts. What am I missing? Thanks.

    Are you looking just for the pure count or a report of the related hosts?

    If you add a custom table, specifying a swql query such as:
    "SELECT C.DisplayName as clusterName, H.DisplayName as hostName FROM Orion.VIM.Clusters C Inner Join Orion.VIM.Hosts H on C.ClusterId = H.ClusterId"

    Then you can gorup the results to create a report by cluster name that would give you all the associated hosts with the cluster.

    pastedImage_2.png

    you can modify the SWQL query to include only the count of hosts for instance like the following:

    SELECT C.DisplayName as clusterName, COUNT(H.DisplayName) as hostcount FROM Orion.VIM.Clusters C Inner Join Orion.VIM.Hosts H on C.ClusterId = H.ClusterId GROUP BY C.DisplayName

    Would give results such as the following:

    pastedImage_0.png

  • I am still trying to re-create reports that were readily available from the old VMAN appliance. Something like this would be great. Can the host count be integrated into the original table?

            

    Virtual DatacenterCluster NameHost CountCPU CoresCPU LoadMemory TotalMemory Used
    System ManagementMGMNT25620%1,024 GB20%
    Test clusterUSETST-BL38414%1,536 GB56%

    What I'm also still waiting for is the predictive capacity capability that the old appliance provided, like below:

              

    Virtual DatacenterCluster NameHost CountCPU CoresCPU LoadMemory TotalMemory Used# VMsAddtl' VM CapacityVM Constraint
    System ManagementMGMNT25620%1,024 GB20%119Disk
    Test clusterUSETST-BL38414%1,536 GB56%10848Disk
  • Hello.

    I spent half an hour testing around with a custom table and its fields. The best I came up with in regards of showing the amount of hosts that belong to a cluster is the "computed polling source". In my example I have (unmonitored Bastogne) St. Petersburg with 2 ESXi hosts and I have Sydney datacenter that has 1 host and 1 cluster managing 2 ESXi hosts.

    pastedImage_0.png

    pastedImage_2.png

    Best regards,

    Steffen

  • Thanks Steffen. I tried your suggestion, but it seems the Computer Polling Source is always 2 for every cluster, regardless of the number of hosts. Would have been nice...

Reply Children