Skip to content

Commit

Permalink
feature/KTD-3733 generate pit report with proper schema 01
Browse files Browse the repository at this point in the history
  • Loading branch information
damwu1 committed May 25, 2024
1 parent 43229f1 commit e4a1240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s-deployer/src/test-app-client/report/schema-v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class ScalarMetric {
export class DistributionMetric {
type: MetricType = MetricType.DISTRIBUTION
value: any
constructor(readonly name: string, value: Map<any, number>) {
constructor(readonly name: string, value: Map<string | number, number>) {
this.value = Object.fromEntries(value.entries())
}
}
Expand Down

0 comments on commit e4a1240

Please sign in to comment.