Forum Discussion

Lalitha_379027's avatar
Lalitha_379027
Icon for Altocumulus rankAltocumulus
Dec 18, 2018
Solved

Active/Standby BigIp details using BigIq REST APi

I would like to view Active and Standby details of clustered BIGIP using BIGIQ REST API. Like viewing DSC group details in BIGIQ, need to view the same using BIGIQ REST API. Please let me know how we can view the details using REST API.

 

  • ; will give dsc group details with Active/Standby information.

     

4 Replies

  • You can use

    tm cm
    class iControl REST endpoints to retrieve cluster status. For example,

    To get the

    tmsh show cm traffic-group
    equivalent output, run

    curl -sku : https:///mgmt/tm/cm/traffic-group/stats
    

    For

    tmsh show cm sync-status
    equivalent,

    curl -sku : https:///mgmt/tm/cm/sync-status
    

    For

    tmsh show cm failover-status
    equivalent,

    curl -sku : https:///mgmt/tm/cm/failover-status
    

    See also Wiki: iControlREST API Reference.

    • Bryan-00's avatar
      Bryan-00
      Icon for Altocumulus rankAltocumulus

      Hi Lalitha,

      did you find the REST API endpoint to indetify which one is active or standby in a DSC group?