mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Profiling] reporting linux bug (#161551)
<img width="1354" alt="Screenshot 2023-07-10 at 11 21 12 AM"
src="f9da535c
-8fb4-4fb4-b662-ed5e5886d949">
This commit is contained in:
parent
ac0630015f
commit
e3c3fa605a
1 changed files with 46 additions and 0 deletions
|
@ -8,6 +8,7 @@ import { i18n } from '@kbn/i18n';
|
|||
import React from 'react';
|
||||
import {
|
||||
EuiButton,
|
||||
EuiCallOut,
|
||||
EuiCode,
|
||||
EuiCodeBlock,
|
||||
EuiFlexGroup,
|
||||
|
@ -462,6 +463,51 @@ docker.elastic.co/observability/profiling-agent:${hostAgentVersion} /root/pf-hos
|
|||
<></>
|
||||
) : (
|
||||
<>
|
||||
<EuiCallOut
|
||||
color="warning"
|
||||
iconType="help"
|
||||
title={
|
||||
<FormattedMessage
|
||||
id="xpack.profiling.tabs.debWarning"
|
||||
defaultMessage="Due to a {linuxLink}, we have stopped host-agents on kernel versions {versionFrom} to {versionTo}. Refer to {debianLink} and {fedoraLink} to learn more."
|
||||
values={{
|
||||
versionFrom: <strong>5.19</strong>,
|
||||
versionTo: <strong>6.4</strong>,
|
||||
linuxLink: (
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d319f344561de23e810515d109c7278919bff7b0"
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.debWarning.linuxLink', {
|
||||
defaultMessage: 'Linux kernel bug',
|
||||
})}
|
||||
</EuiLink>
|
||||
),
|
||||
debianLink: (
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1033398"
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.debWarning.debianLink', {
|
||||
defaultMessage: 'Debian',
|
||||
})}
|
||||
</EuiLink>
|
||||
),
|
||||
fedoraLink: (
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href="https://bugzilla.redhat.com/show_bug.cgi?id=2211455"
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.debWarning.fedoraLink', {
|
||||
defaultMessage: 'Fedora/CentOS',
|
||||
})}
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
<EuiSpacer />
|
||||
<EuiText>
|
||||
{i18n.translate('xpack.profiling.noDataPage.addDataTitle', {
|
||||
defaultMessage: 'Select an option below to deploy the host-agent.',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue