DX Unified Infrastructure Management

  • 1.  VMWARE Datastore Capacity

    Posted Mar 08, 2018 10:10 AM

    Hi,

     

    I need to collect the capacity of Datastores which is  in vmware probe. I checked probe_Config_get call back utility, but am unable to get required information. Is there any option to get this report kindly suggest. probe version 6.87



  • 2.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 10:31 AM

    Is the need to configure the vmware probe to monitor datastore capacity, or is the need to obtain the values that the probe is already collecting for this?



  • 3.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 10:33 AM

    Hi,

     

    Need to obtain the values that the probe is already collecting.



  • 4.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 10:43 AM

    UMP > Design > Performance Reports Designer

    From there you can select either by Host or QoS and then the target.

    Drag and drop the target into the graph.

    The graph has a button at the top left to generate a URL which can be given to users so they can see the graph as designed.



  • 5.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 11:17 AM

    Hi,

     

    I have no UMP installed in my setup. Any other options like DB query or Scripts?



  • 6.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 11:33 AM

    Do you want to see current utilization? Can you be specific what info you are looking for  ?



  • 7.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 11:35 AM

    Hi,

     

    Am trying to get Total Capacity of that datastore



  • 8.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 11:39 AM

    We can't get the total capacity of datastore I Hope .



  • 9.  Re: VMWARE Datastore Capacity

    Posted Mar 08, 2018 11:34 AM

    The data points will be contained in a RN_ table.

    Each RN table is for one specific QoS.

    Within that RN table table_id is used to identify that QoS data for a specific target.

    S_QOS_DATA has to be used to find which RN table and the table_id.

    so something like

    select * FROM [CA_UIM1].[dbo].[S_QOS_DATA] where probe = 'vmware'

    or

    select * FROM [CA_UIM1].[dbo].[S_QOS_DATA] where qos = 'xxxx'

    then once you have the needed RN table and table_id

    select * FROM [CA_UIM1].[dbo].[RN_QOS_DATA_xxxxx where table_id = 'xxxx'