cluster_health_chunks
Creates, updates, deletes, gets or lists a cluster_health_chunks resource.
Overview
| Name | cluster_health_chunks |
| Type | Resource |
| Id | azure.service_fabric_dataplane.cluster_health_chunks |
Fields
The following fields are returned by SELECT queries:
- get_cluster_health_chunk
| Name | Datatype | Description |
|---|---|---|
ApplicationHealthStateChunks | object | The list of application health state chunks in the cluster that respect the input filters in the chunk query. Returned by get cluster health state chunks query. |
HealthState | string | |
NodeHealthStateChunks | object | The list of node health state chunks in the cluster that respect the input filters in the chunk query. Returned by get cluster health state chunks query. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_cluster_health_chunk | select | endpoint | timeout | Gets the health of a Service Fabric cluster using health chunks. Gets the health of a Service Fabric cluster using health chunks. Includes the aggregated health state of the cluster, but none of the cluster entities. To expand the cluster health and get the health state of all or some of the entities, use the POST URI and specify the cluster health chunk query description. |
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_health_chunk
Gets the health of a Service Fabric cluster using health chunks. Gets the health of a Service Fabric cluster using health chunks. Includes the aggregated health state of the cluster, but none of the cluster entities. To expand the cluster health and get the health state of all or some of the entities, use the POST URI and specify the cluster health chunk query description.
SELECT
ApplicationHealthStateChunks,
HealthState,
NodeHealthStateChunks
FROM azure.service_fabric_dataplane.cluster_health_chunks
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;