1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: remove unsued metric 'optimal304DiffingCounter' (#5810)

This metric was used while developing the optimal304 feature. The
feature flag has been removed and this data is not longer being
collected and this will remove the metric from Prometheus.
This commit is contained in:
Ivar Conradi Østhus 2024-01-09 18:54:28 +01:00 committed by GitHub
parent dcb8b5b5a1
commit 6d4a727bdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,12 +195,6 @@ export default class MetricsMonitor {
labelNames: ['sdk_name', 'sdk_version'],
});
const optimal304DiffingCounter = new client.Counter({
name: 'optimal_304_diffing',
help: 'Count the Optimal 304 diffing with status',
labelNames: ['status'],
});
const productionChanges30 = new client.Gauge({
name: 'production_changes_30',
help: 'Changes made to production environment last 30 days',
@ -361,10 +355,6 @@ export default class MetricsMonitor {
schedulerDuration.labels(jobId).observe(time);
});
eventBus.on('optimal304Differ', ({ status }) => {
optimal304DiffingCounter.labels(status).inc();
});
eventBus.on(events.DB_TIME, ({ store, action, time }) => {
dbDuration.labels(store, action).observe(time);
});