-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Propagate context.Context through Gather and Collect #1538
Comments
Thanks! Sounds like the primary use case is to implement client side filtering (similar to #135 discussion) as well as client side timeout provided via query parameter. Valid use cases, but I wonder, do you see a way to implement those in explicit way (param support or filtering or passing more options). We think it will be more useful to others, plus we avoid controversial passing everything through context values. 🤔 Let's discuss more! WDYT? |
Another use case: TLDR: We store our logger instance in the context. So current interface makes it impossible to log anything for us from the We use |
Direct support for parameters would be a big help, to be sure. But there are still plenty of other cases where passing a context is valuable. Context passing is valuable for things like deadline or timeout contexts and tons of middleware uses. It's fundamental to how Go decouples orthogonal concerns, and should be supported irrespective of whether a more convenient interface to query parameters is supplied. Context passing is needed for things like:
The promhttp docs themselves warn that timeout handling is broken. This is due to the lack of context-passing support. |
Cool, thanks. I think we could try proposing |
This would be very useful for us. I see there hasn't been any activity on this since July, is this work still being planned? |
I ran out of time to work on it, but hope to return to it. The approach I propose here is quite intrusive, and requires a lot of duplicate API, since golang doesn't support optional methods on interfaces, default implementations for interface methods, or any other way to extend an interface that retains compatibility with existing implementers. I had hoped to figure out something better, but so far haven't been able to. When my current priority project is done, I'm hoping to come back to this, but would welcome input from anyone else with similar needs in the meantime. |
Yea, agree context would be nice. The selection of metrics or labels to use is something that we ideally have natively, but it's unclear what exactly selection mechanisms would be better in the ecosystem (matchers on any labels? on just metric name? Only filtering names?). For this reason starting with context first would be one way. Maybe it's time for some |
Given how invasive the changes needed are, does it make sense to pass around a |
I propose new variants of
Gatherer
andCollector
that support golang'scontext.Context
propagation through the request chain to provide a means of passing timeout and request information through to collectors.This would greatly enhance the capabilities of promhttp middleware and make it much easier (and safer) to handle client-supplied timeout headers, query-params passed to a scrape endpoint, etc.
For example, a metrics endpoint that wishes to support query parameters for selective scraping currently has a difficult time capturing this and passing this through the layers of indirection. It's difficult to pass contextual info through the
promhttp.Handler
->prometheus.Gatherer
(possibly aRegistry
) ->prometheus.Collector
chain. Especially sincepromhttp.HandlerForTransactional
and the rest ofpromhttp
offers few points of extension. This can be worked around by having an application's generic http handler create a new Prometheus handler, registry, etc in a closure for each request then delegate to it, but that can be inefficient and it loses cross-scrape-persistent instrumentation state.If a
context.Context
was propagated from thepromhttp.Handler
through the layers, applications could pass relevant details transparently through Prometheus without exposing protocol-specifics etc to the Prometheus APIs.I'm sure there are less intrusive and smarter ways to do this than I can come up with, which is:
prometheus.Gatherer
,prometheus.Gatherers
,prometheus.Collector
that accept acontext.Context
argument toGather(...)
,Collect(...)
etc. ExposeRegistry
API to accept them. Methods aren't added to the existing interfaces as that would break API compatibility with existing implementations.promhttp.HandlerForTransactional
, read thecontext.Context
from thehttp.Request
withRequest.Context()
HandlerForTransactional
's callGather()
as e.g.GatherWithContext(ctx)
Gatherer
asCollect(ctx)
calls on theCollector
(s)prometheus.CollectorWithContext
(or whatever) implementations acceptCollect(ctx context.context, ch chan<- prometheus.Metric)
so they can usectx.Value(...)
to access contextual info, check a propagated timeout or cancellation function, etc.This would also allow the documented limitations around timeout handing in promhttp to be fixed, because a
context.WithTimeout(...)
could be passed.promhttp
could also automatically handle any client-suppliedX-Prometheus-Scrape-Timeout-Seconds
header; currently it has no way to propagate this knowledge down through the gatherer to the collectors.It'd also be convenient to have a
promhttp.WithContextFunc(...)
that accepts afunc(r *http.Request) context.Context
argument and returns anOption
. Akin toWithLabelFromCtx
. So the app doesn't have to implement its ownhttp.Handler
to delegate to Prometheus's, it can use a Prometheus-supplied wrapper.Maybe there's a sensible way to do this now. Or maybe it's reasonable to just make a new registry etc for each scrape, and just ensure that any more expensive application state is well separated from the prometheus API implementations so the app's Registry, its Collector instances etc are one-shot and request-specific. But that doesn't work well with the instrumentation wrappers in
promhttp
, and it's hard to see what would.The text was updated successfully, but these errors were encountered: