Skip to content

Commit

Permalink
Update project schema to include 90th, 95th, and 99th percentile fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy committed Jun 1, 2024
1 parent 2cc7ff5 commit b64c6b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/server/schema-validator/project-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ export const updateProjectSchema = {
topMetricsSettings: Joi.object({
virtualUsers: Joi.boolean().required(),
errorRate: Joi.boolean().required(),
percentile: Joi.boolean().required(),
percentile90: Joi.boolean().required(),
percentile95: Joi.boolean().required(),
percentile99: Joi.boolean().required(),
throughput: Joi.boolean().required(),
network: Joi.boolean().required(),
avgLatency: Joi.boolean().required(),
Expand Down

0 comments on commit b64c6b8

Please sign in to comment.