Skip to main content

cluster_health_chunks

Creates, updates, deletes, gets or lists a cluster_health_chunks resource.

Overview

Namecluster_health_chunks
TypeResource
Idazure.service_fabric_dataplane.cluster_health_chunks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ApplicationHealthStateChunksobjectThe 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.
HealthStatestring
NodeHealthStateChunksobjectThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cluster_health_chunkselectendpointtimeoutGets 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.

NameDatatypeDescription
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 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 }}'
;