PublicDashboards: change wording and FF to public preview state (#68262)
This commit is contained in:
@@ -45,6 +45,8 @@ Some stable features are enabled by default. You can disable a stable feature by
|
||||
| `trimDefaults` | Use cue schema to remove values that will be applied automatically |
|
||||
| `panelTitleSearch` | Search for dashboards using panel title |
|
||||
| `prometheusAzureOverrideAudience` | Experimental. Allow override default AAD audience for Azure Prometheus endpoint |
|
||||
| `publicDashboards` | Enables public access to dashboards |
|
||||
| `publicDashboardsEmailSharing` | Enables public dashboard sharing to be restricted to only allowed emails |
|
||||
| `migrationLocking` | Lock database during migrations |
|
||||
| `exploreMixedDatasource` | Enable mixed datasource in Explore |
|
||||
| `correlations` | Correlations page |
|
||||
@@ -70,8 +72,6 @@ Alpha features might be changed or removed without prior notice.
|
||||
| ---------------------------------- | -------------------------------------------------------------------------------------------------------------- |
|
||||
| `live-service-web-worker` | This will use a webworker thread to processes events rather than the main thread |
|
||||
| `queryOverLive` | Use Grafana Live WebSocket to execute backend queries |
|
||||
| `publicDashboards` | Enables public access to dashboards |
|
||||
| `publicDashboardsEmailSharing` | Enables public dashboard sharing to be restricted to only allowed emails |
|
||||
| `lokiLive` | Support WebSocket streaming for loki (early prototype) |
|
||||
| `storage` | Configurable storage for dashboards, datasources, and resources |
|
||||
| `newTraceViewHeader` | Shows the new trace view header |
|
||||
|
||||
@@ -50,13 +50,13 @@ var (
|
||||
{
|
||||
Name: "publicDashboards",
|
||||
Description: "Enables public access to dashboards",
|
||||
State: FeatureStateAlpha,
|
||||
State: FeatureStateBeta,
|
||||
Owner: grafanaDashboardsSquad,
|
||||
},
|
||||
{
|
||||
Name: "publicDashboardsEmailSharing",
|
||||
Description: "Enables public dashboard sharing to be restricted to only allowed emails",
|
||||
State: FeatureStateAlpha,
|
||||
State: FeatureStateBeta,
|
||||
RequiresLicense: true,
|
||||
Owner: grafanaDashboardsSquad,
|
||||
},
|
||||
|
||||
@@ -5,8 +5,8 @@ live-service-web-worker,alpha,@grafana/grafana-app-platform-squad,false,false,fa
|
||||
queryOverLive,alpha,@grafana/grafana-app-platform-squad,false,false,false,true
|
||||
panelTitleSearch,beta,@grafana/grafana-app-platform-squad,false,false,false,false
|
||||
prometheusAzureOverrideAudience,beta,@grafana/observability-metrics,false,false,false,false
|
||||
publicDashboards,alpha,@grafana/dashboards-squad,false,false,false,false
|
||||
publicDashboardsEmailSharing,alpha,@grafana/dashboards-squad,false,true,false,false
|
||||
publicDashboards,beta,@grafana/dashboards-squad,false,false,false,false
|
||||
publicDashboardsEmailSharing,beta,@grafana/dashboards-squad,false,true,false,false
|
||||
lokiLive,alpha,@grafana/observability-logs,false,false,false,false
|
||||
featureHighlights,stable,@grafana/grafana-as-code,false,false,false,false
|
||||
migrationLocking,beta,@grafana/backend-platform,false,false,false,false
|
||||
|
||||
|
+1
-1
@@ -45,7 +45,7 @@ const CreatePublicDashboard = ({ isError }: { isError: boolean }) => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p className={styles.title}>Welcome to public dashboards alpha!</p>
|
||||
<p className={styles.title}>Welcome to public dashboards public preview!</p>
|
||||
<Description />
|
||||
{!hasWritePermissions && <NoUpsertPermissionsAlert mode="create" />}
|
||||
{dashboardHasTemplateVariables(dashboard.getVariables()) && <UnsupportedTemplateVariablesAlert />}
|
||||
|
||||
+1
-1
@@ -175,7 +175,7 @@ describe('SharePublic - New config setup', () => {
|
||||
it('renders when public dashboards feature is enabled', async () => {
|
||||
await renderSharePublicDashboard();
|
||||
|
||||
await screen.findByText('Welcome to public dashboards alpha!');
|
||||
await screen.findByText('Welcome to public dashboards public preview!');
|
||||
expect(screen.getByText('Generate public URL')).toBeInTheDocument();
|
||||
|
||||
expect(screen.queryByTestId(selectors.WillBePublicCheckbox)).toBeInTheDocument();
|
||||
|
||||
Reference in New Issue
Block a user