File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
site/src/pages/TemplatePage/TemplateInsightsPage Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ const UserLatencyPanel = ({
133
133
{ users && users . length === 0 && < NoDataAvailable /> }
134
134
{ users &&
135
135
users
136
- . sort ( ( a , b ) => b . latency_ms . p95 - a . latency_ms . p95 )
136
+ . sort ( ( a , b ) => b . latency_ms . p50 - a . latency_ms . p50 )
137
137
. map ( ( row ) => (
138
138
< Box
139
139
key = { row . user_id }
@@ -153,13 +153,13 @@ const UserLatencyPanel = ({
153
153
</ Box >
154
154
< Box
155
155
sx = { {
156
- color : getLatencyColor ( theme , row . latency_ms . p95 ) ,
156
+ color : getLatencyColor ( theme , row . latency_ms . p50 ) ,
157
157
fontWeight : 500 ,
158
158
fontSize : 13 ,
159
159
textAlign : "right" ,
160
160
} }
161
161
>
162
- { row . latency_ms . p95 . toFixed ( 0 ) } ms
162
+ { row . latency_ms . p50 . toFixed ( 0 ) } ms
163
163
</ Box >
164
164
</ Box >
165
165
) ) }
You can’t perform that action at this time.
0 commit comments