correct metric name in MaxMindDatabaseManager timer

This commit is contained in:
Jonathan Klabunde Tomer 2024-02-09 13:37:39 -08:00 committed by GitHub
parent 1591a2d9a3
commit 089af7cc1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class MaxMindDatabaseManager implements Supplier<DatabaseReader>, Managed
);
this.databaseTag = databaseTag;
this.refreshTimer = Metrics.timer(MetricsUtil.name(MaxMindDatabaseManager.class), "refresh", databaseTag);
this.refreshTimer = Metrics.timer(MetricsUtil.name(MaxMindDatabaseManager.class, "refresh"), "db", databaseTag);
}
private void handleDatabaseChanged(final InputStream inputStream) {