Skip to content

Commit e44ea06

Browse files
Merge pull request #1339 from digma-ai/fix/inefficient-query-duration
Update wording in Inefficient Query insight
2 parents f1f6b97 + 8b1e896 commit e44ea06

File tree

2 files changed

+3
-3
lines changed
  • src/components/Insights/InsightsCatalog/InsightsPage/InsightCardRenderer/insightCards

2 files changed

+3
-3
lines changed

src/components/Insights/InsightsCatalog/InsightsPage/InsightCardRenderer/insightCards/EndpointQueryOptimizationV2InsightCard/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const EndpointQueryOptimizationV2InsightCard = ({
5858
<ColumnsContainer>
5959
<KeyValue
6060
label={"Duration"}
61-
info={"Th average execution time of the query"}
61+
info={"Th median execution time of the query"}
6262
>
6363
{getDurationString(insight.span.duration)}
6464
</KeyValue>

src/components/Insights/InsightsCatalog/InsightsPage/InsightCardRenderer/insightCards/SpanQueryOptimizationInsightCard/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ export const SpanQueryOptimizationInsightCard = ({
7272
<ColumnsContainer>
7373
<KeyValue
7474
label={"Duration"}
75-
info={"The average execution time of the query"}
75+
info={"The median execution time of the query"}
7676
>
7777
{durationString}
7878
</KeyValue>
7979
<KeyValue
8080
label={"Typical Duration"}
8181
info={
82-
"The average duration of other queries of the same type (e.g. SELECT, UPDATE, INSERT etc.) running against the same DB in the same environment"
82+
"The median duration of other queries of the same type (e.g. SELECT, UPDATE, INSERT etc.) running against the same DB in the same environment"
8383
}
8484
>
8585
{getDurationString(insight.typicalDuration)}

0 commit comments

Comments
 (0)