Skip to main content

monitors_app_services

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

Overview

Namemonitors_app_services
TypeResource
Idazure_isv.newrelic.monitors_app_services

Fields

NameDatatypeDescription
agentStatusstringStatus of the NewRelic agent installed on the App service.
agentVersionstringVersion of the NewRelic agent installed on the App service.
azureResourceIdstringAzure App service resource ID

Methods

NameAccessible byRequired ParamsDescription
listSELECTmonitorName, resourceGroupName, subscriptionId, data__userEmailList 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 }}';