Correct metric names

This commit is contained in:
Jon Chambers 2025-05-05 13:36:27 -04:00 committed by Jon Chambers
parent 287da6e7e3
commit 7a91c4d5b7
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ public class LockAccountsWithoutPniIdentityKeysCommand extends AbstractSinglePas
static final String RETRIES_ARGUMENT = "retries"; static final String RETRIES_ARGUMENT = "retries";
private static final String LOCKED_ACCOUNT_COUNTER_NAME = private static final String LOCKED_ACCOUNT_COUNTER_NAME =
MetricsUtil.name(LockAccountsWithoutPqKeysCommand.class, "lockedAccount"); MetricsUtil.name(LockAccountsWithoutPniIdentityKeysCommand.class, "lockedAccount");
private static final Logger log = LoggerFactory.getLogger(LockAccountsWithoutPniIdentityKeysCommand.class); private static final Logger log = LoggerFactory.getLogger(LockAccountsWithoutPniIdentityKeysCommand.class);

View File

@ -32,7 +32,7 @@ public class RemoveAccountsWithoutPniIdentityKeysCommand extends AbstractSingleP
static final String RETRIES_ARGUMENT = "retries"; static final String RETRIES_ARGUMENT = "retries";
private static final String REMOVED_ACCOUNT_COUNTER_NAME = private static final String REMOVED_ACCOUNT_COUNTER_NAME =
MetricsUtil.name(LockAccountsWithoutPqKeysCommand.class, "removedAccount"); MetricsUtil.name(RemoveAccountsWithoutPniIdentityKeysCommand.class, "removedAccount");
private static final Logger log = LoggerFactory.getLogger(RemoveAccountsWithoutPniIdentityKeysCommand.class); private static final Logger log = LoggerFactory.getLogger(RemoveAccountsWithoutPniIdentityKeysCommand.class);

View File

@ -35,7 +35,7 @@ public class RemoveLinkedDevicesWithoutPniKeysCommand extends AbstractSinglePass
static final String RETRIES_ARGUMENT = "retries"; static final String RETRIES_ARGUMENT = "retries";
private static final String REMOVED_DEVICE_COUNTER_NAME = private static final String REMOVED_DEVICE_COUNTER_NAME =
MetricsUtil.name(RemoveLinkedDevicesWithoutPqKeysCommand.class, "removedDevice"); MetricsUtil.name(RemoveLinkedDevicesWithoutPniKeysCommand.class, "removedDevice");
private static final Logger log = LoggerFactory.getLogger(RemoveLinkedDevicesWithoutPniKeysCommand.class); private static final Logger log = LoggerFactory.getLogger(RemoveLinkedDevicesWithoutPniKeysCommand.class);