Checking Agent Availability Using Command Line (Console)

Applies to ReadyAPI 3.52, last modified on April 18, 2024

If you run load tests across multiple agents using the command line, it can be difficult to keep track of what agents are available. To help you with that, ReadyAPI includes the agentavailability command-line tool.

Location

The tool is located in the <ReadyAPI>/bin directory. The file name is agentavailability.bat (Windows) or agentavailability.sh (Linux and macOS).

Syntax

The command line has the following syntax:

agentavailability.bat [-a <list of agents>] [-f <file with list of agents>]

Only one of the arguments must be used for one command, either -a or -f.
Arguments

-a <args>, or --agent_availability <args>

Specifies the remote agents to be checked for availability. To specify agents, use the following syntax:

-a <ip>:<port>[, <ip>:<port>[, <ip>:<port>...]]

  • ip – An IP address or computer name of the agent.

  • port – The port number to be used.

Example:

-a "127.46.44.12:80", "loadui-agent-17:6645", "loadui-agent-18:6645"

-f <args>, or --agent_name_file <args>

Specifies the file that contains a list of remote agents to be checked for availability. To specify the file, use the following syntax:

-f <file path>

Example:

-f "c:\work\loadtesting\agents\list.txt"

In the file, list the agent addresses separated by commas. Do not use spaces:

<ip>:<port>[,<ip>:<port>[,<ip>:<port>...]]

Results

After you send the command, the tool will return the list of checked agents and their statuses. Possible statuses are:

  • idle – The agent is detected and no scenario is running on it.

  • running – The agent is detected and is currently busy with running a scenario.

  • not available – No agent was detected at this address and on this port.

See Also

Install LoadUI agent Application
About Distributed Load Testing

Highlight search results