Skip to content

Commit

Permalink
correct metric name in MaxMindDatabaseManager timer
Browse files Browse the repository at this point in the history
  • Loading branch information
jkt-signal committed Feb 9, 2024
1 parent 1591a2d commit 089af7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public MaxMindDatabaseManager(
);

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) {
Expand Down

0 comments on commit 089af7c

Please sign in to comment.