Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,25 @@ export const EndpointBottleneckInsight = (
/>
</Details>
<ColumnsContainer>
<KeyValue label={"% of Duration"}>
<KeyValue
label={
<Info
text={
"The percentage of the overall request time taken up by this bottleneck asset"
}
name={"% of Duration"}
/>
}
>
{span.avgFractionWhenBeingBottleneck}%
</KeyValue>
<KeyValue
label={
<Info
text={"Percentage of request consumed by the bottleneck span"}
name={"% of Request"}
text={
"The percentage of requests for the selected endpoint experiencing this bottleneck"
}
name={"% of Requests"}
/>
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,25 @@ export const SpanEndpointBottleneckInsight = (
</Details>
{selectedEndpoint && (
<ColumnsContainer>
<KeyValue label={"% of Duration"}>
<KeyValue
label={
<Info
text={
"The percentage of the overall request time taken up by this bottleneck asset"
}
name={"% of Duration"}
/>
}
>
{selectedEndpoint.avgFractionWhenBeingBottleneck}%
</KeyValue>
<KeyValue
label={
<Info
text={
"Percentage of request consumed by the bottleneck span"
"The percentage of requests for the selected endpoint experiencing this bottleneck"
}
name={"% of Request"}
name={"% of Requests"}
/>
}
>
Expand Down