mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 10:38:01 +01:00
Update legacy metric names
We're taking a massive history cliff when we move off Datadog anyway; let's take the opportunity to remove all the old-school `org.whispersystems.some.long.path.SomeClass.metric` names in favor of the newer `chat.SomeClass.metric` style, and update any metrics that were moved from one class to another and kept the old name for continuity's sake.
This commit is contained in:
committed by
Jonathan Klabunde Tomer
parent
23a3e32eb8
commit
6dc4bfe5fa
@@ -74,8 +74,8 @@ public class BackupManager {
|
||||
private static final Timer SYNCHRONOUS_DELETE_TIMER =
|
||||
Metrics.timer(MetricsUtil.name(BackupManager.class, "synchronousDelete"));
|
||||
|
||||
private static final String NUM_OBJECTS_SUMMARY_NAME = MetricsUtil.name(BackupsDb.class, "numObjects");
|
||||
private static final String BYTES_USED_SUMMARY_NAME = MetricsUtil.name(BackupsDb.class, "bytesUsed");
|
||||
private static final String NUM_OBJECTS_SUMMARY_NAME = MetricsUtil.name(BackupManager.class, "numObjects");
|
||||
private static final String BYTES_USED_SUMMARY_NAME = MetricsUtil.name(BackupManager.class, "bytesUsed");
|
||||
|
||||
private static final String SUCCESS_TAG_NAME = "success";
|
||||
private static final String FAILURE_REASON_TAG_NAME = "reason";
|
||||
|
||||
Reference in New Issue
Block a user