Skip to main content

monitoring_settings

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

Overview

Namemonitoring_settings
TypeResource
Idazure.spring_apps.monitoring_settings

Fields

NameDatatypeDescription
app_insights_agent_versionstextfield from the properties object
app_insights_instrumentation_keytextfield from the properties object
app_insights_sampling_ratetextfield from the properties object
errortextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
subscriptionIdtextfield from the properties object
trace_enabledtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, serviceName, subscriptionIdGet the Monitoring Setting and its properties.
update_patchEXECresourceGroupName, serviceName, subscriptionIdUpdate the Monitoring Setting.
update_putEXECresourceGroupName, serviceName, subscriptionIdUpdate the Monitoring Setting.

SELECT examples

Get the Monitoring Setting and its properties.

SELECT
app_insights_agent_versions,
app_insights_instrumentation_key,
app_insights_sampling_rate,
error,
provisioning_state,
resourceGroupName,
serviceName,
subscriptionId,
trace_enabled
FROM azure.spring_apps.vw_monitoring_settings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';