mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
# Backport This will backport the following commits from `main` to `8.8`: - [Profiling: improve "Add Symbols" page (#157507)](https://github.com/elastic/kibana/pull/157507) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Joel Höner","email":"joel@zyantific.com"},"sourceCommit":{"committedDate":"2023-05-13T17:47:12Z","message":"Profiling: improve \"Add Symbols\" page (#157507)\n\nThis PR adds a link to the previously missing ARM64 variant of the\r\n`symbtool` link and applies some general visual improvements to the `Add\r\nSymbols` tab on Universal Profiling's \"No Data\"-page. Most notably, it\r\nreplaces the ugly overlong headlines with text blocks.\r\n\r\nResolves https://github.com/elastic/prodfiler/issues/3350","sha":"f4c9a33697310849ef94c2d53fddbfc908752e8b","branchLabelMapping":{"^v8.9.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","backport","release_note:skip","ci:build-cloud-image","ci:cloud-deploy","ci:cloud-redeploy","v8.8.0","v8.9.0"],"number":157507,"url":"https://github.com/elastic/kibana/pull/157507","mergeCommit":{"message":"Profiling: improve \"Add Symbols\" page (#157507)\n\nThis PR adds a link to the previously missing ARM64 variant of the\r\n`symbtool` link and applies some general visual improvements to the `Add\r\nSymbols` tab on Universal Profiling's \"No Data\"-page. Most notably, it\r\nreplaces the ugly overlong headlines with text blocks.\r\n\r\nResolves https://github.com/elastic/prodfiler/issues/3350","sha":"f4c9a33697310849ef94c2d53fddbfc908752e8b"}},"sourceBranch":"main","suggestedTargetBranches":["8.8"],"targetPullRequestStates":[{"branch":"8.8","label":"v8.8.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.9.0","labelRegex":"^v8.9.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/157507","number":157507,"mergeCommit":{"message":"Profiling: improve \"Add Symbols\" page (#157507)\n\nThis PR adds a link to the previously missing ARM64 variant of the\r\n`symbtool` link and applies some general visual improvements to the `Add\r\nSymbols` tab on Universal Profiling's \"No Data\"-page. Most notably, it\r\nreplaces the ugly overlong headlines with text blocks.\r\n\r\nResolves https://github.com/elastic/prodfiler/issues/3350","sha":"f4c9a33697310849ef94c2d53fddbfc908752e8b"}}]}] BACKPORT--> Co-authored-by: Joel Höner <joel@zyantific.com>
This commit is contained in:
parent
6ab16fcb6a
commit
9b269278dd
1 changed files with 64 additions and 23 deletions
|
@ -5,6 +5,7 @@
|
|||
* 2.0.
|
||||
*/
|
||||
import {
|
||||
EuiCode,
|
||||
EuiCodeBlock,
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
|
@ -20,6 +21,7 @@ import {
|
|||
EuiText,
|
||||
} from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import React, { useState } from 'react';
|
||||
import { AsyncStatus, useAsync } from '../hooks/use_async';
|
||||
import { useProfilingDependencies } from './contexts/profiling_dependencies/use_profiling_dependencies';
|
||||
|
@ -39,6 +41,7 @@ export function NoDataPage({ subTitle }: { subTitle: string }) {
|
|||
|
||||
const secretToken = data?.variables.secretToken;
|
||||
const collectionAgentHostPort = data?.variables.apmServerUrl.replace('https://', '');
|
||||
const symbolUrl = data?.variables.apmServerUrl.replace(/\.apm\./, '.symbols.');
|
||||
const hostAgentVersion = 'v3';
|
||||
|
||||
const tabs = [
|
||||
|
@ -265,43 +268,81 @@ docker.elastic.co/observability/profiling-agent:${hostAgentVersion} /root/pf-hos
|
|||
steps: [
|
||||
{
|
||||
title: i18n.translate('xpack.profiling.tabs.symbols.step1', {
|
||||
defaultMessage: 'Download the symbtool binary from the URL below:',
|
||||
defaultMessage: 'Download and extract symbtool',
|
||||
}),
|
||||
content: (
|
||||
<EuiLink target="_blank" href={`https://ela.st/symbtool-linux-amd64`}>
|
||||
https://ela.st/symbtool-linux-amd64
|
||||
</EuiLink>
|
||||
<EuiText>
|
||||
<b>For x86_64:</b>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiCodeBlock paddingSize="s" isCopyable>
|
||||
{`wget -O symbtool-amd64.tgz "https://ela.st/symbtool-linux-amd64" && tar xzf symbtool-amd64.tgz && cd symbtool-*-linux-x86_64`}
|
||||
</EuiCodeBlock>
|
||||
<EuiSpacer size="m" />
|
||||
<b>For ARM64:</b>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiCodeBlock paddingSize="s" isCopyable>
|
||||
{`wget -O symbtool-arm64.tgz "https://ela.st/symbtool-linux-arm64" && tar xzf symbtool-arm64.tgz && cd symbtool-*-linux-arm64`}
|
||||
</EuiCodeBlock>
|
||||
</EuiText>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: i18n.translate('xpack.profiling.tabs.symbols.step2', {
|
||||
defaultMessage: 'Generate an Elasticsearch token:',
|
||||
defaultMessage: 'Generate an Elasticsearch token',
|
||||
}),
|
||||
content: (
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href={`https://www.elastic.co/guide/en/kibana/master/api-keys.html`}
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.symbols.step2.instructions', {
|
||||
defaultMessage: 'Instructions here',
|
||||
})}
|
||||
</EuiLink>
|
||||
<EuiText>
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href={`https://www.elastic.co/guide/en/kibana/master/api-keys.html`}
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.symbols.step2.instructions', {
|
||||
defaultMessage: 'Instructions here',
|
||||
})}
|
||||
</EuiLink>
|
||||
</EuiText>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: i18n.translate('xpack.profiling.tabs.symbols.step3', {
|
||||
defaultMessage:
|
||||
'Fetch the symbols endpoint from the Cloud console, navigating in the Integrations Server section',
|
||||
}),
|
||||
},
|
||||
{
|
||||
title: i18n.translate('xpack.profiling.tabs.symbols.step4', {
|
||||
defaultMessage: 'Run the following command, replacing the placeholders between <>:',
|
||||
defaultMessage: 'Upload symbols',
|
||||
}),
|
||||
content: (
|
||||
<EuiCodeBlock paddingSize="s" isCopyable>
|
||||
{`./symbtool push-symbols executable --url <symbols endpoint> --api-key <api key> --help`}
|
||||
</EuiCodeBlock>
|
||||
<div>
|
||||
<EuiCodeBlock paddingSize="s" isCopyable>
|
||||
{`./symbtool push-symbols executable -u "${symbolUrl}" -t <ES token> -e <my executable>`}
|
||||
</EuiCodeBlock>
|
||||
<EuiSpacer size="m" />
|
||||
<EuiText>
|
||||
<FormattedMessage
|
||||
id="xpack.profiling.tabs.symbols.step3.replace"
|
||||
defaultMessage="Replace {es_token} etc. with the actual values. You can pass {help} to obtain a list of other arguments."
|
||||
values={{
|
||||
es_token: <EuiCode>{`<ES token>`}</EuiCode>,
|
||||
help: <EuiCode>--help</EuiCode>,
|
||||
}}
|
||||
/>
|
||||
</EuiText>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiText>
|
||||
<FormattedMessage
|
||||
id="xpack.profiling.tabs.symbols.step3.doc-ref"
|
||||
defaultMessage="Documentation for more advanced uses cases is available in {link}."
|
||||
values={{
|
||||
link: (
|
||||
<EuiLink
|
||||
target="_blank"
|
||||
href={`https://www.elastic.co/guide/en/observability/current/profiling-add-symbols.html`}
|
||||
>
|
||||
{i18n.translate('xpack.profiling.tabs.symbols.step3.doc-ref.link', {
|
||||
defaultMessage: 'the corresponding documentation page',
|
||||
})}
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
</EuiText>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue