Logs popover: enabled by default (#80146)

This commit is contained in:
Matias Chomicki 2024-01-08 17:03:39 +01:00 committed by GitHub
parent c3d8c6e0ea
commit cff1ad4922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -55,6 +55,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `alertingInsights` | Show the new alerting insights landing page | Yes |
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
| `lokiQueryHints` | Enables query hints for Loki | Yes |
@ -166,7 +167,6 @@ Experimental features might be changed or removed without prior notice.
| `dashboardScene` | Enables dashboard rendering using scenes for all roles |
| `logsInfiniteScrolling` | Enables infinite scrolling for the Logs panel in Explore and Dashboards |
| `flameGraphItemCollapsing` | Allow collapsing of flame graph items |
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected |
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
| `tableSharedCrosshair` | Enables shared crosshair in table panel |

View File

@ -1226,8 +1226,9 @@ var (
{
Name: "logRowsPopoverMenu",
Description: "Enable filtering menu displayed when text of a log line is selected",
Stage: FeatureStageExperimental,
Stage: FeatureStageGeneralAvailability,
FrontendOnly: true,
Expression: "true",
Owner: grafanaObservabilityLogsSquad,
Created: time.Date(2023, time.November, 16, 12, 0, 0, 0, time.UTC),
},

View File

@ -144,7 +144,7 @@ flameGraphItemCollapsing,experimental,@grafana/observability-traces-and-profilin
alertingDetailsViewV2,experimental,@grafana/alerting-squad,2023-11-09,false,false,false,true
datatrails,experimental,@grafana/dashboards-squad,2023-11-15,false,false,false,true
alertingSimplifiedRouting,experimental,@grafana/alerting-squad,2023-11-10,false,false,false,false
logRowsPopoverMenu,experimental,@grafana/observability-logs,2023-11-16,false,false,false,true
logRowsPopoverMenu,GA,@grafana/observability-logs,2023-11-16,false,false,false,true
pluginsSkipHostEnvVars,experimental,@grafana/plugins-platform-backend,2023-11-15,false,false,false,false
tableSharedCrosshair,experimental,@grafana/grafana-bi-squad,2023-12-12,false,false,false,true
regressionTransformation,preview,@grafana/grafana-bi-squad,2023-11-24,false,false,false,true

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
144 alertingDetailsViewV2 experimental @grafana/alerting-squad 2023-11-09 false false false true
145 datatrails experimental @grafana/dashboards-squad 2023-11-15 false false false true
146 alertingSimplifiedRouting experimental @grafana/alerting-squad 2023-11-10 false false false false
147 logRowsPopoverMenu experimental GA @grafana/observability-logs 2023-11-16 false false false true
148 pluginsSkipHostEnvVars experimental @grafana/plugins-platform-backend 2023-11-15 false false false false
149 tableSharedCrosshair experimental @grafana/grafana-bi-squad 2023-12-12 false false false true
150 regressionTransformation preview @grafana/grafana-bi-squad 2023-11-24 false false false true