mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
Logs infinite scrolling: create feature flag (#77885)
logsInfiniteScrolling: create feature flag
This commit is contained in:
parent
bb12fe7d82
commit
174c2ab45a
@ -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
|
||||
|
||||
|
@ -159,4 +159,5 @@ export interface FeatureToggles {
|
||||
panelFilterVariable?: boolean;
|
||||
pdfTables?: boolean;
|
||||
ssoSettingsApi?: boolean;
|
||||
logsInfiniteScrolling?: boolean;
|
||||
}
|
||||
|
@ -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,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -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
|
||||
|
|
@ -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"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user