vw_monitoring_settings
Creates, updates, deletes, gets or lists a vw_monitoring_settings
resource.
Overview
Name | vw_monitoring_settings |
Type | View |
Id | azure.spring_apps.vw_monitoring_settings |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.error') as "error",
JSON_EXTRACT(properties, '$.traceEnabled') as "trace_enabled",
JSON_EXTRACT(properties, '$.appInsightsInstrumentationKey') as "app_insights_instrumentation_key",
JSON_EXTRACT(properties, '$.appInsightsSamplingRate') as "app_insights_sampling_rate",
JSON_EXTRACT(properties, '$.appInsightsAgentVersions') as "app_insights_agent_versions",
subscriptionId,
resourceGroupName,
serviceName
FROM azure.spring_apps.monitoring_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.error') as "error",
json_extract_path_text(properties, '$.traceEnabled') as "trace_enabled",
json_extract_path_text(properties, '$.appInsightsInstrumentationKey') as "app_insights_instrumentation_key",
json_extract_path_text(properties, '$.appInsightsSamplingRate') as "app_insights_sampling_rate",
json_extract_path_text(properties, '$.appInsightsAgentVersions') as "app_insights_agent_versions",
subscriptionId,
resourceGroupName,
serviceName
FROM azure.spring_apps.monitoring_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';