Skip to content

Commit 650416c

Browse files
committed
update metric name to be more accurate
1 parent 2c4bca6 commit 650416c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/uid2/shared/vertx/CloudSyncVerticle.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ public CloudSyncVerticle(String name, ICloudStorage cloudStorage, ICloudStorage
152152
.description("gauge for number of consecutive " + name + " store refresh failures")
153153
.register(Metrics.globalRegistry);
154154

155-
this.downloadSuccessTimer = Metrics.timer("uid2_s3_download_duration", "store_name", name, "status", "success");
155+
this.downloadSuccessTimer = Metrics.timer("uid2_cloud_download_duration", "store_name", name, "status", "success");
156156

157-
this.downloadFailureTimer = Metrics.timer("uid2_s3_download_duration", "store_name", name, "status", "failure");
157+
this.downloadFailureTimer = Metrics.timer("uid2_cloud_download_duration", "store_name", name, "status", "failure");
158158
}
159159

160160
@Override

0 commit comments

Comments
 (0)