We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd2cab1 commit 917a293Copy full SHA for 917a293
components/server/src/monitoring-endpoints.ts
@@ -22,10 +22,7 @@ export class MonitoringEndpointsApp {
22
// Append redis metrics to default registry
23
redisMetricsRegistry()
24
.getMetricsAsArray()
25
- .then((metrics) => {
26
- metrics.forEach((metric) => registry.registerMetric(metric as any));
27
- })
28
- .catch(console.error);
+ .forEach((metric) => registry.registerMetric(metric as any));
29
30
const monApp = express();
31
monApp.get("/metrics", async (req, res) => {
0 commit comments