Skip to content

Commit

Permalink
chore(monitor): add tenderly latencies to routing dashboard (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrsv authored Aug 16, 2024
1 parent d06f1a6 commit f769bf4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions bin/stacks/routing-dashboard-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,27 @@ export class RoutingDashboardStack extends cdk.NestedStack {
},
},
},
{
type: 'metric',
width: 12,
height: 8,
properties: {
view: 'timeSeries',
stacked: false,
metrics: [
[NAMESPACE, 'TenderlySimulationSwapRouter02Latencies', 'Service', 'RoutingAPI', { stat: 'p90' }],
['.', 'TenderlySimulationSwapRouter02Latencies', '.', '.', { stat: 'p99' }],
['.', 'TenderlySimulationSwapRouter02Latencies', '.', '.', { stat: 'p50' }],
['.', 'TenderlySimulationUniversalRouterLatencies', '.', '.', { stat: 'p90' }],
['.', 'TenderlySimulationUniversalRouterLatencies', '.', '.', { stat: 'p99' }],
['.', 'TenderlySimulationUniversalRouterLatencies', '.', '.', { stat: 'p50' }],
],
region,
title: 'Tenderly Simulation Latencies',
period: 300,
stat: 'SampleCount',
},
},
])
.concat(rpcProvidersWidgetsForRoutingDashboard),
}),
Expand Down

0 comments on commit f769bf4

Please sign in to comment.