monitors_app_services
Creates, updates, deletes, gets or lists a monitors_app_services
resource.
Overview
Name | monitors_app_services |
Type | Resource |
Id | azure_isv.dynatrace.monitors_app_services |
Fields
The following fields are returned by SELECT
queries:
- list
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
autoUpdateSetting | string | Update settings of OneAgent. |
availabilityState | string | The availability state of OneAgent. |
hostGroup | string | The name of the host group |
hostName | string | The name of the host |
logModule | string | Tells whether log modules are enabled or not |
monitoringType | string | The monitoring mode of OneAgent |
resourceId | string | App service resource ID |
updateStatus | string | The current update status of OneAgent. |
version | string | Version of the Dynatrace agent installed on the App Service. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , monitorName |
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 |
---|---|---|
monitorName | string | Monitor resource name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
ARM operation completed successfully.
SELECT
autoUpdateSetting,
availabilityState,
hostGroup,
hostName,
logModule,
monitoringType,
resourceId,
updateStatus,
version
FROM azure_isv.dynatrace.monitors_app_services
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
;