integration_runtime_monitoring_data
Creates, updates, deletes, gets or lists an integration_runtime_monitoring_data
resource.
Overview
Name | integration_runtime_monitoring_data |
Type | Resource |
Id | azure.synapse.integration_runtime_monitoring_data |
Fields
The following fields are returned by SELECT
queries:
- list
OK.
Name | Datatype | Description |
---|---|---|
name | string | Integration runtime name. |
nodes | array | Integration runtime node monitoring data. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , workspaceName , integrationRuntimeName | Get monitoring data for an integration runtime |
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 |
---|---|---|
integrationRuntimeName | string | Integration runtime name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- list
Get monitoring data for an integration runtime
SELECT
name,
nodes
FROM azure.synapse.integration_runtime_monitoring_data
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
;