Skip to main content

application_load_infos

Creates, updates, deletes, gets or lists an application_load_infos resource.

Overview

Nameapplication_load_infos
TypeResource
Idazure.service_fabric_dataplane.application_load_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ApplicationLoadMetricInformationarray
Idstring
MaximumNodesinteger (int64)
MinimumNodesinteger (int64)
NodeCountinteger (int64)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_application_load_infoselectapplication_id, endpointtimeoutGets load information about a Service Fabric application. Returns the load information about the application that was created or in the process of being created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response includes the name, minimum nodes, maximum nodes, the number of nodes the application is occupying currently, and application load metric information about the application.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
application_idstringThe identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the "" character. For example, if the application name is "fabric:/myapp/app1", the application identity would be "myappapp1" in 6.0+ and "myapp/app1" in previous versions.
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (int64)The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds.

SELECT examples

Gets load information about a Service Fabric application. Returns the load information about the application that was created or in the process of being created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response includes the name, minimum nodes, maximum nodes, the number of nodes the application is occupying currently, and application load metric information about the application.

SELECT
ApplicationLoadMetricInformation,
Id,
MaximumNodes,
MinimumNodes,
NodeCount
FROM azure.service_fabric_dataplane.application_load_infos
WHERE application_id = '{{ application_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;