21 lines
473 B
Go
21 lines
473 B
Go
package metrics
|
|
|
|
import "context"
|
|
|
|
type key int
|
|
|
|
const (
|
|
groupKey key = iota
|
|
)
|
|
|
|
// NewContextWithGroup returns a new context with the given Group added.
|
|
func NewContextWithGroup(ctx context.Context, c *Group) context.Context {
|
|
return context.WithValue(ctx, groupKey, c)
|
|
}
|
|
|
|
// GroupFromContext returns the Group associated with ctx or nil if no Group has been assigned.
|
|
func GroupFromContext(ctx context.Context) *Group {
|
|
c, _ := ctx.Value(groupKey).(*Group)
|
|
return c
|
|
}
|