Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
EuiEmptyPrompt,
EuiFlexGroup,
EuiFlexItem,
EuiLink,
EuiLoadingElastic,
useEuiTheme,
} from '@elastic/eui';
Expand Down Expand Up @@ -47,6 +48,7 @@ export function StreamListView() {
},
core,
} = context;
const streamsDocsLink = core.docLinks.links.observability.logsStreams;
const { onPageReady } = usePerformanceContext();
const router = useStreamsAppRouter();

Expand Down Expand Up @@ -213,6 +215,19 @@ export function StreamListView() {
)}
</EuiFlexGroup>
}
description={
<>
{i18n.translate('xpack.streams.streamsListView.pageHeaderDescription', {
defaultMessage:
'Manage how your data is ingested, structured, and retained across all your streams.',
})}{' '}
<EuiLink href={streamsDocsLink} target="_blank">
{i18n.translate('xpack.streams.streamsListView.pageHeaderDescriptionLearnMoreLink', {
defaultMessage: 'Learn more',
})}
</EuiLink>
</>
}
/>
<StreamsAppPageTemplate.Body grow>
{streamsListFetch.loading && streamsListFetch.value === undefined ? (
Expand Down
Loading