@@ -22,8 +22,8 @@ function confidenceMessage({sampleCount, confidence, topEvents, isSampled}: Prop
22
22
const isTopN = defined ( topEvents ) && topEvents > 1 ;
23
23
if ( ! defined ( sampleCount ) ) {
24
24
return isTopN
25
- ? t ( '* Chart for top %s groups extrapolated from \u2026' , topEvents )
26
- : t ( '* Chart extrapolated from \u2026' ) ;
25
+ ? t ( '* Top %s groups extrapolated based on \u2026' , topEvents )
26
+ : t ( '* Extrapolated based on \u2026' ) ;
27
27
}
28
28
29
29
const noSampling = defined ( isSampled ) && ! isSampled ;
@@ -33,7 +33,7 @@ function confidenceMessage({sampleCount, confidence, topEvents, isSampled}: Prop
33
33
if ( confidence === 'low' ) {
34
34
if ( isTopN ) {
35
35
return tct (
36
- 'Top [topEvents] groups based on [tooltip:[sampleCountComponent] samples]' ,
36
+ 'Top [topEvents] groups extrapolated based on [tooltip:[sampleCountComponent] span samples]' ,
37
37
{
38
38
topEvents,
39
39
tooltip : lowAccuracyFullSampleCount ,
@@ -42,20 +42,23 @@ function confidenceMessage({sampleCount, confidence, topEvents, isSampled}: Prop
42
42
) ;
43
43
}
44
44
45
- return tct ( 'Based on [tooltip:[sampleCountComponent] samples]' , {
45
+ return tct ( 'Extrapolated based on [tooltip:[sampleCountComponent] span samples]' , {
46
46
tooltip : lowAccuracyFullSampleCount ,
47
47
sampleCountComponent,
48
48
} ) ;
49
49
}
50
50
51
51
if ( isTopN ) {
52
- return tct ( 'Top [topEvents] groups based on [sampleCountComponent] samples' , {
53
- topEvents,
54
- sampleCountComponent,
55
- } ) ;
52
+ return tct (
53
+ 'Top [topEvents] groups extrapolated based on [sampleCountComponent] span samples' ,
54
+ {
55
+ topEvents,
56
+ sampleCountComponent,
57
+ }
58
+ ) ;
56
59
}
57
60
58
- return tct ( 'Based on [sampleCountComponent] samples' , {
61
+ return tct ( 'Extrapolated based on [sampleCountComponent] span samples' , {
59
62
sampleCountComponent,
60
63
} ) ;
61
64
}
@@ -71,11 +74,13 @@ function _LowAccuracyFullTooltip({
71
74
< Tooltip
72
75
title = {
73
76
< div >
74
- { t ( 'You may not have enough samples for high accuracy.' ) }
77
+ { t (
78
+ 'You may not have enough span samples for a high accuracy extrapolation of your query.'
79
+ ) }
75
80
< br />
76
81
< br />
77
82
{ t (
78
- ' You can try adjusting your query by removing filters or increasing the time interval.'
83
+ " You can try adjusting your query by narrowing the date range, removing filters or increasing the chart's time interval."
79
84
) }
80
85
< br />
81
86
< br />
0 commit comments