Merge pull request #140 from SigNoz/change-p90

feat: update p90 to p95
This commit is contained in:
Ankit Nayan 2021-05-31 22:01:29 +05:30 committed by GitHub
commit 9cd6e5cabe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ const aggregation_options = [
{
linked_entity: "duration",
default_selected: { title: "p99", dataindex: "p99" },
// 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:'p95', dataindex:'p95'}, {title:'p95', dataindex:'p95'}]
options_available: [
{ title: "p50", dataindex: "p50" },
{ title: "p95", dataindex: "p95" },

View File

@ -34,7 +34,7 @@ export interface externalErrCodeMetricsItem {
}
export interface topEndpointListItem {
p50: number;
p90: number;
p95: number;
p99: number;
numCalls: number;
name: string;

View File

@ -47,7 +47,7 @@ export const metricsInitialState: MetricsInitialState = {
topEndpointListItem: [
{
p50: 0,
p90: 0,
p95: 0,
p99: 0,
numCalls: 0,
name: "",