Retrieve product version information
- Last UpdatedAug 20, 2024
- 1 minute read
The product version information includes the adapter framework version, application version, the version of the underlying .NET Core framework, and the operating system that the agent is running on.
Complete the following steps to retrieve the product version information:
1. Use any of the Configuration tools capable of making HTTP requests.
2. Run a GET command to the following endpoint: http://localhost:5590/api/v1/Diagnostics/ProductInformation
Note: 5590 is the default port number. If you selected a different port number, replace it with that value.
Using Curl commands
Get product information for an agent hosted on port 5590.
curl.exe --ntlm --negotiate -u <UserName> -X GET "http://localhost:5590/api/v1/Diagnostics/ProductInformation"
Example result:
{
"Product Name": "AVEVA Events to CONNECT",
"Product Version": "1.0.1.46",
"Adapter Framework Version": "1.8.3.49",
"Runtime Version": ".NET 8.0.8",
"Operating System": "Microsoft Windows 10.0.20348"
}
Using Configurator plugin
Navigate to General tab to view the Product Information.
