mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 03:29:02 +08:00
Merge pull request #138 from SigNoz/change-p90
feat: update response param p90 to p95 for /top_endpoints
This commit is contained in:
commit
f2164a1a86
@ -85,10 +85,10 @@ const _TopEndpointsTable = (props: TopEndpointsTableProps) => {
|
|||||||
render: (value: number) => (value / 1000000).toFixed(2),
|
render: (value: number) => (value / 1000000).toFixed(2),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "P90 (in ms)",
|
title: "P95 (in ms)",
|
||||||
dataIndex: "p90",
|
dataIndex: "p95",
|
||||||
key: "p90",
|
key: "p95",
|
||||||
sorter: (a: any, b: any) => a.p90 - b.p90,
|
sorter: (a: any, b: any) => a.p95 - b.p95,
|
||||||
// sortDirections: ['descend', 'ascend'],
|
// sortDirections: ['descend', 'ascend'],
|
||||||
render: (value: number) => (value / 1000000).toFixed(2),
|
render: (value: number) => (value / 1000000).toFixed(2),
|
||||||
},
|
},
|
||||||
|
@ -47,7 +47,7 @@ const aggregation_options = [
|
|||||||
// options_available: [ {title:'Avg', dataindex:'avg'}, {title:'Max', dataindex:'max'},{title:'Min', dataindex:'min'}, {title:'p50', dataindex:'p50'},{title:'p90', dataindex:'p90'}, {title:'p95', dataindex:'p95'}]
|
// options_available: [ {title:'Avg', dataindex:'avg'}, {title:'Max', dataindex:'max'},{title:'Min', dataindex:'min'}, {title:'p50', dataindex:'p50'},{title:'p90', dataindex:'p90'}, {title:'p95', dataindex:'p95'}]
|
||||||
options_available: [
|
options_available: [
|
||||||
{ title: "p50", dataindex: "p50" },
|
{ title: "p50", dataindex: "p50" },
|
||||||
{ title: "p90", dataindex: "p90" },
|
{ title: "p95", dataindex: "p95" },
|
||||||
{ title: "p99", dataindex: "p99" },
|
{ title: "p99", dataindex: "p99" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
0
frontend/src/store/actions/metrics.ts
Normal file
0
frontend/src/store/actions/metrics.ts
Normal file
Loading…
x
Reference in New Issue
Block a user