Можно ли программно получить состояние оповещения Azure Monitor?

#azure #azure Вопрос: У меня есть следующий код: var credentials = SdkContext.AzureCredentialsFactory.FromServicePrincipal(configuration.AzureClientId, configuration.AzureClientSecret, configuration.AzureTenantId, AzureEnvironment.AzureGlobalCloud); var azure = Azure.Configure() .WithLogLevel(HttpLoggingDelegatingHandler.Level.Basic) .Authenticate(credentials) .WithSubscription(configuration.AzureSubscriptionId); var alert = azure.AlertRules.MetricAlerts.GetById("stuff"); var isFiring = alert.???…

Продолжить чтениеМожно ли программно получить состояние оповещения Azure Monitor?