Logs infinite scrolling: create feature flag (#77885)

logsInfiniteScrolling: create feature flag
This commit is contained in:
Matias Chomicki 2023-11-09 11:54:03 +01:00 committed by GitHub
parent bb12fe7d82
commit 174c2ab45a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 0 deletions

View File

@ -162,6 +162,7 @@ Experimental features might be changed or removed without prior notice.
| `annotationPermissionUpdate` | Separate annotation permissions from dashboard permissions to allow for more granular control. |
| `extractFieldsNameDeduplication` | Make sure extracted field names are unique in the dataframe |
| `dashboardSceneForViewers` | Enables dashboard rendering using Scenes for viewer roles |
| `logsInfiniteScrolling` | Enables infinite scrolling for the Logs panel in Explore and Dashboards |
## Development feature toggles

View File

@ -159,4 +159,5 @@ export interface FeatureToggles {
panelFilterVariable?: boolean;
pdfTables?: boolean;
ssoSettingsApi?: boolean;
logsInfiniteScrolling?: boolean;
}

View File

@ -1025,6 +1025,13 @@ var (
FrontendOnly: false,
Owner: identityAccessTeam,
},
{
Name: "logsInfiniteScrolling",
Description: "Enables infinite scrolling for the Logs panel in Explore and Dashboards",
Stage: FeatureStageExperimental,
FrontendOnly: true,
Owner: grafanaObservabilityLogsSquad,
},
}
)

View File

@ -140,3 +140,4 @@ dashboardSceneForViewers,experimental,@grafana/dashboards-squad,false,false,fals
panelFilterVariable,experimental,@grafana/dashboards-squad,false,false,false,true
pdfTables,privatePreview,@grafana/sharing-squad,false,false,false,false
ssoSettingsApi,experimental,@grafana/identity-access-team,true,false,false,false
logsInfiniteScrolling,experimental,@grafana/observability-logs,false,false,false,true

1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
140 panelFilterVariable experimental @grafana/dashboards-squad false false false true
141 pdfTables privatePreview @grafana/sharing-squad false false false false
142 ssoSettingsApi experimental @grafana/identity-access-team true false false false
143 logsInfiniteScrolling experimental @grafana/observability-logs false false false true

View File

@ -570,4 +570,8 @@ const (
// FlagSsoSettingsApi
// Enables the SSO settings API
FlagSsoSettingsApi = "ssoSettingsApi"
// FlagLogsInfiniteScrolling
// Enables infinite scrolling for the Logs panel in Explore and Dashboards
FlagLogsInfiniteScrolling = "logsInfiniteScrolling"
)