For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delegate disconnected via API check

Problem Statement

How to identify if the delegate is disconnected using api ?

Resolution

Delegate status can be seen in the UI however it always helps if there is a progrmatic way of get the status of the delegates along with some other delegate details.

We have a graphql api function that helps us provide such details. We can parse the response to get name , ip of the delegate version and connection status information.

Below is an example graphql api for the same:


    nodes {

      delegateName

      ip

      status
      
      disconnected

      version

      hostName

      lastHeartBeat

    }

  }

}

Last updated

Was this helpful?