Skip to content

Commit a3e4f1b

Browse files
chore: fix metric label post handler (#327)
1 parent 8218cc1 commit a3e4f1b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

bin/stacks/dashboard-stack.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export class DashboardStack extends cdk.NestedStack {
217217
[
218218
{
219219
expression: `(${prefix}m1/${prefix}m2)*100`,
220-
label: `Chain${chainId} Error Rate`,
220+
label: `Chain${chainId} 5XX Error Rate`,
221221
id: `${prefix}e1`,
222222
},
223223
],
@@ -242,7 +242,13 @@ export class DashboardStack extends cdk.NestedStack {
242242
region,
243243
stat: 'Sum',
244244
period: 300,
245-
title: 'Orders Posted Error Rates by Chain',
245+
title: 'Post Order Handler 5XX Error Rates by Chain',
246+
yAxis: {
247+
left: {
248+
showUnits: false,
249+
label: '%',
250+
},
251+
},
246252
},
247253
},
248254
{

0 commit comments

Comments
 (0)