mirror of
https://github.com/grafana/grafana.git
synced 2024-12-25 08:21:46 -06:00
Reporting: useReportRawTimeRange FF (#95683)
This commit is contained in:
parent
3a921d898c
commit
ec1a722504
@ -115,6 +115,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
||||
| `azureMonitorPrometheusExemplars` | Allows configuration of Azure Monitor as a data source that can provide Prometheus exemplars |
|
||||
| `ssoSettingsLDAP` | Use the new SSO Settings API to configure LDAP |
|
||||
| `useSessionStorageForRedirection` | Use session storage for handling the redirection after login |
|
||||
| `reportingUseRawTimeRange` | Uses the original report or dashboard time range instead of making an absolute transformation |
|
||||
|
||||
## Experimental feature toggles
|
||||
|
||||
|
@ -237,4 +237,5 @@ export interface FeatureToggles {
|
||||
zipkinBackendMigration?: boolean;
|
||||
enableSCIM?: boolean;
|
||||
crashDetection?: boolean;
|
||||
reportingUseRawTimeRange?: boolean;
|
||||
}
|
||||
|
@ -1637,6 +1637,13 @@ var (
|
||||
Owner: grafanaObservabilityTracesAndProfilingSquad,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "reportingUseRawTimeRange",
|
||||
Description: "Uses the original report or dashboard time range instead of making an absolute transformation",
|
||||
Stage: FeatureStagePublicPreview,
|
||||
Owner: grafanaSharingSquad,
|
||||
Expression: "false", // disabled by default
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -218,3 +218,4 @@ enableExtensionsAdminPage,experimental,@grafana/plugins-platform-backend,false,t
|
||||
zipkinBackendMigration,experimental,@grafana/oss-big-tent,false,false,false
|
||||
enableSCIM,experimental,@grafana/identity-access-team,false,false,false
|
||||
crashDetection,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
||||
reportingUseRawTimeRange,preview,@grafana/sharing-squad,false,false,false
|
||||
|
|
@ -882,4 +882,8 @@ const (
|
||||
// FlagCrashDetection
|
||||
// Enables browser crash detection reporting to Faro.
|
||||
FlagCrashDetection = "crashDetection"
|
||||
|
||||
// FlagReportingUseRawTimeRange
|
||||
// Uses the original report or dashboard time range instead of making an absolute transformation
|
||||
FlagReportingUseRawTimeRange = "reportingUseRawTimeRange"
|
||||
)
|
||||
|
@ -3017,6 +3017,22 @@
|
||||
"requiresRestart": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "reportingUseRawTimeRange",
|
||||
"resourceVersion": "1731604692461",
|
||||
"creationTimestamp": "2024-11-13T15:48:28Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2024-11-14 17:18:12.461446 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Uses the original report or dashboard time range instead of making an absolute transformation",
|
||||
"stage": "preview",
|
||||
"codeowner": "@grafana/sharing-squad",
|
||||
"expression": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "rolePickerDrawer",
|
||||
|
Loading…
Reference in New Issue
Block a user