correct metric name in MaxMindDatabaseManager timer
This commit is contained in:
parent
1591a2d9a3
commit
089af7cc1f
|
@ -55,7 +55,7 @@ public class MaxMindDatabaseManager implements Supplier<DatabaseReader>, Managed
|
||||||
);
|
);
|
||||||
|
|
||||||
this.databaseTag = databaseTag;
|
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) {
|
private void handleDatabaseChanged(final InputStream inputStream) {
|
||||||
|
|
Loading…
Reference in New Issue