monitors_app_services
Creates, updates, deletes, gets or lists a monitors_app_services
resource.
Overview
Name | monitors_app_services |
Type | Resource |
Id | azure_isv.newrelic.monitors_app_services |
Fields
Name | Datatype | Description |
---|---|---|
agentStatus | string | Status of the NewRelic agent installed on the App service. |
agentVersion | string | Version of the NewRelic agent installed on the App service. |
azureResourceId | string | Azure App service resource ID |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | monitorName, resourceGroupName, subscriptionId, data__userEmail | List the app service resources currently being monitored by the NewRelic resource. |
SELECT
examples
List the app service resources currently being monitored by the NewRelic resource.
SELECT
agentStatus,
agentVersion,
azureResourceId
FROM azure_isv.newrelic.monitors_app_services
WHERE monitorName = '{{ monitorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__userEmail = '{{ data__userEmail }}';