Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/serverless.oblt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,9 @@ xpack.ml.nlp:
max: 128
xpack.ml.compatibleModuleType: 'observability'

# ES|QL Views API is not available in serverless Elasticsearch builds
uiSettings.overrides:
observability:streamsEnableWiredStreamViews: false

# Disable the embedded Dev Console
console.ui.embeddedEnabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,10 @@ export function registerFeatureFlags(
name: i18n.translate('xpack.streams.wiredStreamViewsSettingsName', {
defaultMessage: 'Wired stream views',
}),
value: false,
value: true,
description: i18n.translate('xpack.streams.wiredStreamViewsSettingsDescription', {
defaultMessage: 'Enable ES|QL views for wired streams.',
defaultMessage:
'Enable ES|QL views for wired streams (stateful). Off by default on serverless where the Views API is unavailable.',
}),
type: 'boolean',
schema: schema.boolean(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function useStreamsPrivileges() {

const wiredStreamViewsEnabled = uiSettings.get(
OBSERVABILITY_STREAMS_ENABLE_WIRED_STREAM_VIEWS,
false
true
);

const overviewPageEnabled = uiSettings.get(OBSERVABILITY_STREAMS_ENABLE_OVERVIEW_PAGE, false);
Expand Down
Loading