Skip to main content

deployed_service_replica_detail_infos

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

Overview

Namedeployed_service_replica_detail_infos
TypeResource
Idazure.service_fabric_dataplane.deployed_service_replica_detail_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
CurrentServiceOperationstring
CurrentServiceOperationStartTimeUtcstring (date-time)
PartitionIdstring
ReportedLoadarray
ServiceKindstring
ServiceNamestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_deployed_service_replica_detail_infoselectreplica_id, partition_id, node_name, endpointtimeoutGets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information.
get_deployed_service_replica_detail_info_by_partition_idselectpartition_id, node_name, endpointtimeoutGets the details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information.

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: )
node_namestringThe name of the node.
partition_idstringThe identity of the partition.
replica_idstringThe identifier of the replica.
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 details of replica deployed on a Service Fabric node. Gets the details of the replica deployed on a Service Fabric node. The information includes service kind, service name, current service operation, current service operation start date time, partition ID, replica/instance ID, reported load, and other information.

SELECT
CurrentServiceOperation,
CurrentServiceOperationStartTimeUtc,
PartitionId,
ReportedLoad,
ServiceKind,
ServiceName
FROM azure.service_fabric_dataplane.deployed_service_replica_detail_infos
WHERE replica_id = '{{ replica_id }}' -- required
AND partition_id = '{{ partition_id }}' -- required
AND node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;