Correct metric names
This commit is contained in:
parent
287da6e7e3
commit
7a91c4d5b7
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue