Skip to main content

deployed_application_infos

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

Overview

Namedeployed_application_infos
TypeResource
Idazure.service_fabric_dataplane.deployed_application_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
HealthStatestring
Idstring
LogDirectorystring
Namestring
Statusstring
TempDirectorystring
TypeNamestring
TypeVersionstring
WorkDirectorystring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_deployed_application_infoselectapplication_id, node_name, endpointtimeout, IncludeHealthStateGets the information about an application deployed on a Service Fabric node. This query returns system application information if the application ID provided is for system application. Results encompass deployed applications in active, activating, and downloading states. This query requires that the node name corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service Fabric nodes on the cluster.

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: )
node_namestringThe name of the node.
IncludeHealthStatebooleanInclude the health state of an entity. If this parameter is false or not specified, then the health state returned is "Unknown". When set to true, the query goes in parallel to the node and the health system service before the results are merged. As a result, the query is more expensive and may take a longer time.
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 information about an application deployed on a Service Fabric node. This query returns system application information if the application ID provided is for system application. Results encompass deployed applications in active, activating, and downloading states. This query requires that the node name corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service Fabric nodes on the cluster.

SELECT
HealthState,
Id,
LogDirectory,
Name,
Status,
TempDirectory,
TypeName,
TypeVersion,
WorkDirectory
FROM azure.service_fabric_dataplane.deployed_application_infos
WHERE application_id = '{{ application_id }}' -- required
AND node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
AND IncludeHealthState = '{{ IncludeHealthState }}'
;