Correct a counter name

This commit is contained in:
Jon Chambers 2024-08-08 15:21:43 -04:00 committed by Jon Chambers
parent 206e97d374
commit 9128d4cc49
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class NotifyIdleDevicesWithoutMessagesCommand extends AbstractSinglePassC
static final Duration MAX_IDLE_DURATION = Duration.ofDays(30);
private static final Counter DEVICE_INSPECTED_COUNTER =
Metrics.counter(MetricsUtil.name(StartPushNotificationExperimentCommand.class, "deviceInspected"));
Metrics.counter(MetricsUtil.name(NotifyIdleDevicesWithoutMessagesCommand.class, "deviceInspected"));
private static final String SCHEDULED_NOTIFICATION_COUNTER_NAME =
MetricsUtil.name(NotifyIdleDevicesWithoutMessagesCommand.class, "scheduleNotification");