From d5674c70afcaabf57551a73dcfe711f94140e5fd Mon Sep 17 00:00:00 2001 From: Boris Kirov Date: Tue, 21 Feb 2023 09:54:00 +0100 Subject: [PATCH] Update tooltip diff flamegraph (#151625) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary We recently reviewed the final copy for the `Normalize by` menu in the Diff Flamegraph with the writing team and we have the final copy that we will use there. This PR is aiming to update that. Related to: https://github.com/elastic/kibana/pull/151437 --------- Co-authored-by: Tim Rühsen --- .../components/flame_graphs_view/normalization_menu.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/profiling/public/components/flame_graphs_view/normalization_menu.tsx b/x-pack/plugins/profiling/public/components/flame_graphs_view/normalization_menu.tsx index 17d4bfefea2943..9a6eaba2af677b 100644 --- a/x-pack/plugins/profiling/public/components/flame_graphs_view/normalization_menu.tsx +++ b/x-pack/plugins/profiling/public/components/flame_graphs_view/normalization_menu.tsx @@ -156,7 +156,7 @@ export function NormalizationMenu(props: Props) { 'xpack.profiling.flameGraphNormalizationMenu.normalizeByTimeTooltip', { defaultMessage: - 'To compare a set of machines over time periods of different lengths (for example: Compare the last hour against the last 24h), choose Normalize by Time. The number of samples on the shorter timeframe will be multiplied to match the longer timeframe (in this example, by 24).', + 'Select Normalize by Scale factor and set your Baseline and Comparison scale factors to compare a set of machines of different sizes. For example, you can compare a deployment of 10% of machines to a deployment of 90% of machines.', } )} @@ -167,7 +167,7 @@ export function NormalizationMenu(props: Props) { 'xpack.profiling.flameGraphNormalizationMenu.normalizeByScaleTooltip', { defaultMessage: - 'To compare differently-sized sets of machines (e.g. a deployment on 10% of machines against a deployment on 90% of machines), choose Scale Factor and provide an appropriate factor to multiply the right-hand side with.', + 'Select Normalize by Time to compare a set of machines across different time periods. For example, if you compare the last hour to the last 24 hours, the shorter timeframe (1 hour) is multiplied to match the longer timeframe (24 hours).', } )}