cluster_loads
Creates, updates, deletes, gets or lists a cluster_loads resource.
Overview
| Name | cluster_loads |
| Type | Resource |
| Id | azure.service_fabric_dataplane.cluster_loads |
Fields
The following fields are returned by SELECT queries:
- get_cluster_load
| Name | Datatype | Description |
|---|---|---|
LastBalancingEndTimeUtc | string (date-time) | |
LastBalancingStartTimeUtc | string (date-time) | |
LoadMetricInformation | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_cluster_load | select | endpoint | timeout | Gets the load of a Service Fabric cluster. Retrieves the load information of a Service Fabric cluster for all the metrics that have load or capacity defined. |
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.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (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
- get_cluster_load
Gets the load of a Service Fabric cluster. Retrieves the load information of a Service Fabric cluster for all the metrics that have load or capacity defined.
SELECT
LastBalancingEndTimeUtc,
LastBalancingStartTimeUtc,
LoadMetricInformation
FROM azure.service_fabric_dataplane.cluster_loads
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;