You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One question that occasionally arises at work is "how do we attach telemetry labels to a cowboy route?". We'd like to be able to attach arbitrary metadata to a route, and have it available in the cowboy_metrics_h callback.
Ideally, it would be an extra element in the route tuple, something like this:
...and would be picked up by the cowboy_router middleware and put in the env along with handler and handler_opts.
(to avoid ambiguity, if you wanted this, you'd have to explicitly specify constraints, possibly empty -- or maybe {Handler, Opts} would need to be a tuple in this case).
Does this seem like a good idea? Is there another way to do it right now?
The text was updated successfully, but these errors were encountered:
I've been wracking my brains for ways to wrap cowboy_router:compile or the cowboy_router middleware, or to wrap the individual handlers, but I can't come up with anything that doesn't feel like a hack.
One question that occasionally arises at work is "how do we attach telemetry labels to a cowboy route?". We'd like to be able to attach arbitrary metadata to a route, and have it available in the
cowboy_metrics_h
callback.Ideally, it would be an extra element in the route tuple, something like this:
...and would be picked up by the
cowboy_router
middleware and put in the env along withhandler
andhandler_opts
.(to avoid ambiguity, if you wanted this, you'd have to explicitly specify constraints, possibly empty -- or maybe
{Handler, Opts}
would need to be a tuple in this case).Does this seem like a good idea? Is there another way to do it right now?
The text was updated successfully, but these errors were encountered: