prometheus / prometheus/client_rust
src/registry: Consider using Into for metric when registering
Open
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 606
- Forks
- 113
- Avg merge
- 9h 7m
- Merged PRs (30d)
- 8
Description
With the diff below, one would not need to Box a metric before registering it with a Registry<Box<M>>. The downside is, that it makes it harder for Rust to infer M.
diff --git a/src/lib.rs b/src/lib.rs
index d39b566..d86d2dd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -52,7 +52,7 @@
//! "http_requests",
//! // And the metric help text.
//! "Number of HTTP requests received",
-//! Box::new(http_requests.clone()),
+//! http_requests.clone(),
//! );
//!
//! // Somewhere in your business logic record a single HTTP GET request.
diff --git a/src/registry.rs b/src/registry.rs
index be9fd18..3033483 100644
--- a/src/registry.rs
+++ b/src/registry.rs
@@ -97,8 +97,8 @@ impl<M> Registry<M> {
///
/// registry.register("my_counter", "This is my counter", counter.clone());
/// ```
- pub fn register<N: Into<String>, H: Into<String>>(&mut self, name: N, help: H, metric: M) {
- self.priv_register(name, help, metric, None)
+ pub fn register<N: Into<String>, H: Into<String>, IM: Into<M>>(&mut self, name: N, help: H, metric: IM) {
+ self.priv_register(name, help, metric.into(), None)
}
/// Register a metric with the [`Registry`] specifying the metric's unit.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the register method in src/registry.rs and the registration example in src/lib.rs. Compare accepting a metric through Into with the stated Rust type-inference downside, then check that the example and registry API remain coherent. Done means metrics can be registered without explicitly boxing them where the proposed diff applies.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- observability-sre
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100