mirror of
https://github.com/grafana/grafana.git
synced 2025-01-13 09:32:12 -06:00
parent
7fa4a979e3
commit
3d51ca7377
@ -220,6 +220,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `playlistsWatcher` | Enables experimental watcher for playlists |
|
||||
| `enableExtensionsAdminPage` | Enables the extension admin page regardless of development mode |
|
||||
| `zipkinBackendMigration` | Enables querying Zipkin data source without the proxy |
|
||||
| `enableSCIM` | Enables SCIM support for user and group management |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -233,4 +233,5 @@ export interface FeatureToggles {
|
||||
exploreMetricsRelatedLogs?: boolean;
|
||||
enableExtensionsAdminPage?: boolean;
|
||||
zipkinBackendMigration?: boolean;
|
||||
enableSCIM?: boolean;
|
||||
}
|
||||
|
@ -1608,6 +1608,12 @@ var (
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaOSSBigTent,
|
||||
},
|
||||
{
|
||||
Name: "enableSCIM",
|
||||
Description: "Enables SCIM support for user and group management",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: identityAccessTeam,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -214,3 +214,4 @@ playlistsWatcher,experimental,@grafana/grafana-app-platform-squad,false,true,fal
|
||||
exploreMetricsRelatedLogs,experimental,@grafana/observability-metrics,false,false,true
|
||||
enableExtensionsAdminPage,experimental,@grafana/plugins-platform-backend,false,true,false
|
||||
zipkinBackendMigration,experimental,@grafana/oss-big-tent,false,false,false
|
||||
enableSCIM,experimental,@grafana/identity-access-team,false,false,false
|
||||
|
|
@ -866,4 +866,8 @@ const (
|
||||
// FlagZipkinBackendMigration
|
||||
// Enables querying Zipkin data source without the proxy
|
||||
FlagZipkinBackendMigration = "zipkinBackendMigration"
|
||||
|
||||
// FlagEnableSCIM
|
||||
// Enables SCIM support for user and group management
|
||||
FlagEnableSCIM = "enableSCIM"
|
||||
)
|
||||
|
@ -1231,6 +1231,18 @@
|
||||
"hideFromAdminPage": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "enableSCIM",
|
||||
"resourceVersion": "1730980484343",
|
||||
"creationTimestamp": "2024-11-07T11:54:44Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables SCIM support for user and group management",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/identity-access-team"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "enableScopesInMetricsExplore",
|
||||
|
Loading…
Reference in New Issue
Block a user