AzureMonitor: Fix feature flag (#61863)

This commit is contained in:
Andres Martinez Gotor 2023-01-20 16:29:23 +01:00 committed by GitHub
parent 87f8e7e223
commit b1efd911c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -95,6 +95,7 @@ Alpha features might be changed or removed without prior notice.
| `authnService` | Use new auth service to perform authentication |
| `sessionRemoteCache` | Enable using remote cache for user sessions |
| `alertingBacktesting` | Rule backtesting API for alerting |
| `azureMultipleResourcePicker` | Azure multiple resource picker |
## Development feature toggles

View File

@ -403,5 +403,10 @@ var (
State: FeatureStateBeta,
RequiresRestart: false,
},
{
Name: "azureMultipleResourcePicker",
Description: "Azure multiple resource picker",
State: FeatureStateAlpha,
},
}
)

View File

@ -294,4 +294,8 @@ const (
// FlagAlertingNoNormalState
// Stop maintaining state of alerts that are not firing
FlagAlertingNoNormalState = "alertingNoNormalState"
// FlagAzureMultipleResourcePicker
// Azure multiple resource picker
FlagAzureMultipleResourcePicker = "azureMultipleResourcePicker"
)