Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: can arguments for .with_label_values() be returned from the function? #474

Open
Antiarchitect opened this issue Jan 3, 2023 · 0 comments

Comments

@Antiarchitect
Copy link

Antiarchitect commented Jan 3, 2023

Assume I have:

struct A {
    a: String,
    b: String
}

Can I effectively construct a method:

impl A {
    pub fn prometheus_label_values(&self) -> &[&str] {
        &[
            self.a.as_str(),
            self.b.as_str()
        ]
    }
}

To return arguments for with_label_values? It seems &[&str] argument type is too restrictive. Even declaring the lifetimes does not help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant