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

Implement collector interface #36

Open
grobie opened this issue Nov 3, 2016 · 6 comments
Open

Implement collector interface #36

grobie opened this issue Nov 3, 2016 · 6 comments

Comments

@grobie
Copy link
Member

grobie commented Nov 3, 2016

The client library should follow our standard collector design and not scrape metrics directly: https://prometheus.io/docs/instrumenting/writing_clientlibs/#overall-structure

@grobie
Copy link
Member Author

grobie commented Mar 7, 2017

Once this has been done, more performance optimizations are possible, like incrementing all affected histogram buckets during a scrape instead of during each observe. See https://github.com/prometheus/client_golang/blob/a5060f1eaab721946b185b2de468ff83ea5b89cb/prometheus/histogram.go#L240-L282

@dmagliola
Copy link
Collaborator

@grobie Reading that doc, I'm not sure I understand what this would be.
How is this different from the Registry the client already supports?

As for the performance improvement mentioned, we're doing that already:
https://github.com/prometheus/client_ruby/blob/master/lib/prometheus/client/histogram.rb#L77
https://github.com/prometheus/client_ruby/blob/master/lib/prometheus/client/histogram.rb#L93

:)

@nieltg
Copy link

nieltg commented Nov 19, 2019

@dmagliola,
I think I can answer from the Go language client library perspective.

Registry is able to register collectors. Collector itself has two methods: Describe and Collect. While the scrapping process is running, the HTTP server which serves /metrics endpoint will gather metrics from the registry and the registry will collect all of the registered metrics.

One use case which I encountered here is to create a custom collector that collects metrics when it's instructed. One example on Go language is in this LXD exporter which exports metrics as instructed. I think this isn't possible for current version of client_ruby.

@dmagliola
Copy link
Collaborator

Thank you for your explanation @nieltg !
I'd like to try to tackle this issue sooner than later, since it unblocks a bunch of other use cases, but i'd like to make sure I understand it fully before starting, to not end up with an inadequate solution.

My understanding so far is that the way the Ruby client works, the main difference between a "regular" Metric, and a "Custom Collector" is that the Custom Collector can actually define multiple metrics. This is what makes it non-trivial to implement.

And the other of course being that these metrics inside the Custom Collector get their value assigned at scrape time, rather than during normal app operation.

Is that correct?

If we had a solution where we have a CustomCollector class that implementors can inherit from, which includes a metrics method to return all its metrics, and a collect method that tells it to set their values... Would that basically solve the problem?
Or am I missing something?

@brian-brazil
Copy link

Is that correct?

Yes.

metrics method to return all its metrics, and a collect method that tells it to set their values... Would that basically solve the problem?

No. collect should return all the metrics, as a collector doesn't always know which metrics it'll return in advance (plus that'd be racy).

@dmagliola
Copy link
Collaborator

Ah, right, excellent.
I'll do a quick proof of concept in the next couple of weeks, and get your feedback.

Thank you!

@Sinjo Sinjo modified the milestones: v0.8.0, v3.0.0 Jan 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants