Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit a916d18

Browse files
authored
rename query_total_elapsed_time_ms to query_total_elapsed_time_ms (#367)
1 parent a97e758 commit a916d18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ serde_json = { version = "1.0.48", optional = true, features = ["float_roundtrip
9090
native-tls = { version = "0.2", optional = true }
9191
bit-vec = { version = "0.6.1", optional = true }
9292
bytes = { version = "1.0", optional = true }
93-
mobc = { git = "https://github.com/prisma/mobc", tag = "1.0.2", optional = true }
93+
mobc = { git = "https://github.com/prisma/mobc", tag = "1.0.3", optional = true }
9494
serde = { version = "1.0", optional = true }
9595
sqlformat = { version = "0.2.0", optional = true }
9696

src/connector/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ where
4040
}
4141

4242
histogram!(format!("{}.query.time", tag), start.elapsed());
43-
histogram!("query_total_elapsed_time", start.elapsed());
43+
histogram!("query_total_elapsed_time_ms", start.elapsed());
4444
increment_counter!("query_total_queries");
4545

4646
res

0 commit comments

Comments
 (0)