mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Explore Logs: Add feature flags (#92670)
This commit is contained in:
parent
dfba5776b9
commit
15a4ff992b
@ -195,6 +195,9 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `adhocFilterOneOf` | Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter. |
|
||||
| `lokiSendDashboardPanelNames` | Send dashboard and panel names to Loki when querying |
|
||||
| `singleTopNav` | Unifies the top search bar and breadcrumb bar into one |
|
||||
| `exploreLogsShardSplitting` | Used in Explore Logs to split queries into multiple queries based on the number of shards |
|
||||
| `exploreLogsAggregatedMetrics` | Used in Explore Logs to query by aggregated metrics |
|
||||
| `exploreLogsLimitedTimeRange` | Used in Explore Logs to limit the time range |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -204,4 +204,7 @@ export interface FeatureToggles {
|
||||
adhocFilterOneOf?: boolean;
|
||||
lokiSendDashboardPanelNames?: boolean;
|
||||
singleTopNav?: boolean;
|
||||
exploreLogsShardSplitting?: boolean;
|
||||
exploreLogsAggregatedMetrics?: boolean;
|
||||
exploreLogsLimitedTimeRange?: boolean;
|
||||
}
|
||||
|
@ -1404,6 +1404,27 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaFrontendPlatformSquad,
|
||||
},
|
||||
{
|
||||
Name: "exploreLogsShardSplitting",
|
||||
Description: "Used in Explore Logs to split queries into multiple queries based on the number of shards",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
},
|
||||
{
|
||||
Name: "exploreLogsAggregatedMetrics",
|
||||
Description: "Used in Explore Logs to query by aggregated metrics",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
},
|
||||
{
|
||||
Name: "exploreLogsLimitedTimeRange",
|
||||
Description: "Used in Explore Logs to limit the time range",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -185,3 +185,6 @@ dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,
|
||||
adhocFilterOneOf,experimental,@grafana/dashboards-squad,false,false,false
|
||||
lokiSendDashboardPanelNames,experimental,@grafana/observability-logs,false,false,false
|
||||
singleTopNav,experimental,@grafana/grafana-frontend-platform,false,false,true
|
||||
exploreLogsShardSplitting,experimental,@grafana/observability-logs,false,false,true
|
||||
exploreLogsAggregatedMetrics,experimental,@grafana/observability-logs,false,false,true
|
||||
exploreLogsLimitedTimeRange,experimental,@grafana/observability-logs,false,false,true
|
||||
|
|
@ -750,4 +750,16 @@ const (
|
||||
// FlagSingleTopNav
|
||||
// Unifies the top search bar and breadcrumb bar into one
|
||||
FlagSingleTopNav = "singleTopNav"
|
||||
|
||||
// FlagExploreLogsShardSplitting
|
||||
// Used in Explore Logs to split queries into multiple queries based on the number of shards
|
||||
FlagExploreLogsShardSplitting = "exploreLogsShardSplitting"
|
||||
|
||||
// FlagExploreLogsAggregatedMetrics
|
||||
// Used in Explore Logs to query by aggregated metrics
|
||||
FlagExploreLogsAggregatedMetrics = "exploreLogsAggregatedMetrics"
|
||||
|
||||
// FlagExploreLogsLimitedTimeRange
|
||||
// Used in Explore Logs to limit the time range
|
||||
FlagExploreLogsLimitedTimeRange = "exploreLogsLimitedTimeRange"
|
||||
)
|
||||
|
@ -1046,6 +1046,45 @@
|
||||
"allowSelfServe": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "exploreLogsAggregatedMetrics",
|
||||
"resourceVersion": "1724938092041",
|
||||
"creationTimestamp": "2024-08-29T13:28:12Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Used in Explore Logs to query by aggregated metrics",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/observability-logs",
|
||||
"frontend": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "exploreLogsLimitedTimeRange",
|
||||
"resourceVersion": "1724938092041",
|
||||
"creationTimestamp": "2024-08-29T13:28:12Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Used in Explore Logs to limit the time range",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/observability-logs",
|
||||
"frontend": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "exploreLogsShardSplitting",
|
||||
"resourceVersion": "1724938092041",
|
||||
"creationTimestamp": "2024-08-29T13:28:12Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Used in Explore Logs to split queries into multiple queries based on the number of shards",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/observability-logs",
|
||||
"frontend": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "exploreMetrics",
|
||||
|
Loading…
Reference in New Issue
Block a user