1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
|
// Copyright (c) 2021 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package prometheus
import (
"net/http"
"strings"
"sync"
"time"
"github.com/pkg/errors"
prom "github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
tally "github.com/uber-go/tally/v4"
)
const (
// DefaultSeparator is the default separator that should be used with
// a tally scope for a prometheus reporter.
DefaultSeparator = "_"
)
var (
errUnknownTimerType = errors.New("unknown metric timer type")
ms = float64(time.Millisecond) / float64(time.Second)
)
// DefaultHistogramBuckets is the default histogram buckets used when
// creating a new Histogram in the prometheus registry.
// See: https://godoc.org/github.com/prometheus/client_golang/prometheus#HistogramOpts
func DefaultHistogramBuckets() []float64 {
return []float64{
ms,
2 * ms,
5 * ms,
10 * ms,
20 * ms,
50 * ms,
100 * ms,
200 * ms,
500 * ms,
1000 * ms,
2000 * ms,
5000 * ms,
10000 * ms,
}
}
// DefaultSummaryObjectives is the default objectives used when
// creating a new Summary in the prometheus registry.
// See: https://godoc.org/github.com/prometheus/client_golang/prometheus#SummaryOpts
func DefaultSummaryObjectives() map[float64]float64 {
return map[float64]float64{
0.5: 0.01,
0.75: 0.001,
0.95: 0.001,
0.99: 0.001,
0.999: 0.0001,
}
}
// Reporter is a Prometheus backed tally reporter.
type Reporter interface {
tally.CachedStatsReporter
// HTTPHandler provides the Prometheus HTTP scrape handler.
HTTPHandler() http.Handler
// RegisterCounter is a helper method to initialize a counter
// in the Prometheus backend with a given help text.
// If not called explicitly, the Reporter will create one for
// you on first use, with a not super helpful HELP string.
RegisterCounter(
name string,
tagKeys []string,
desc string,
) (*prom.CounterVec, error)
// RegisterGauge is a helper method to initialize a gauge
// in the prometheus backend with a given help text.
// If not called explicitly, the Reporter will create one for
// you on first use, with a not super helpful HELP string.
RegisterGauge(
name string,
tagKeys []string,
desc string,
) (*prom.GaugeVec, error)
// RegisterTimer is a helper method to initialize a timer
// summary or histogram vector in the prometheus backend
// with a given help text.
// If not called explicitly, the Reporter will create one for
// you on first use, with a not super helpful HELP string.
// You may pass opts as nil to get the default timer type
// and objectives/buckets.
// You may also pass objectives/buckets as nil in opts to
// get the default objectives/buckets for the specified
// timer type.
RegisterTimer(
name string,
tagKeys []string,
desc string,
opts *RegisterTimerOptions,
) (TimerUnion, error)
}
// RegisterTimerOptions provides options when registering a timer on demand.
// By default you can pass nil for the options to get the reporter defaults.
type RegisterTimerOptions struct {
TimerType TimerType
HistogramBuckets []float64
SummaryObjectives map[float64]float64
}
// TimerUnion is a representation of either a summary or a histogram
// described by the TimerType.
type TimerUnion struct {
TimerType TimerType
Histogram *prom.HistogramVec
Summary *prom.SummaryVec
}
type metricID string
type reporter struct {
sync.RWMutex
registerer prom.Registerer
gatherer prom.Gatherer
timerType TimerType
objectives map[float64]float64
buckets []float64
onRegisterError func(e error)
counters map[metricID]*prom.CounterVec
gauges map[metricID]*prom.GaugeVec
timers map[metricID]*promTimerVec
}
type promTimerVec struct {
summary *prom.SummaryVec
histogram *prom.HistogramVec
}
type cachedMetric struct {
counter prom.Counter
gauge prom.Gauge
reportTimer func(d time.Duration)
histogram prom.Observer
summary prom.Observer
}
func (m *cachedMetric) ReportCount(value int64) {
m.counter.Add(float64(value))
}
func (m *cachedMetric) ReportGauge(value float64) {
m.gauge.Set(value)
}
func (m *cachedMetric) ReportTimer(interval time.Duration) {
m.reportTimer(interval)
}
func (m *cachedMetric) reportTimerHistogram(interval time.Duration) {
m.histogram.Observe(float64(interval) / float64(time.Second))
}
func (m *cachedMetric) reportTimerSummary(interval time.Duration) {
m.summary.Observe(float64(interval) / float64(time.Second))
}
func (m *cachedMetric) ValueBucket(
bucketLowerBound, bucketUpperBound float64,
) tally.CachedHistogramBucket {
return cachedHistogramBucket{m, bucketUpperBound}
}
func (m *cachedMetric) DurationBucket(
bucketLowerBound, bucketUpperBound time.Duration,
) tally.CachedHistogramBucket {
upperBound := float64(bucketUpperBound) / float64(time.Second)
return cachedHistogramBucket{m, upperBound}
}
type cachedHistogramBucket struct {
metric *cachedMetric
upperBound float64
}
func (b cachedHistogramBucket) ReportSamples(value int64) {
for i := int64(0); i < value; i++ {
b.metric.histogram.Observe(b.upperBound)
}
}
type noopMetric struct{}
func (m noopMetric) ReportCount(value int64) {}
func (m noopMetric) ReportGauge(value float64) {}
func (m noopMetric) ReportTimer(interval time.Duration) {}
func (m noopMetric) ReportSamples(value int64) {}
func (m noopMetric) ValueBucket(lower, upper float64) tally.CachedHistogramBucket {
return m
}
func (m noopMetric) DurationBucket(lower, upper time.Duration) tally.CachedHistogramBucket {
return m
}
func (r *reporter) HTTPHandler() http.Handler {
return promhttp.HandlerFor(r.gatherer, promhttp.HandlerOpts{})
}
// TimerType describes a type of timer
type TimerType int
const (
// SummaryTimerType is a timer type that reports into a summary
SummaryTimerType TimerType = iota
// HistogramTimerType is a timer type that reports into a histogram
HistogramTimerType
)
// Options is a set of options for the tally reporter.
type Options struct {
// Registerer is the prometheus registerer to register
// metrics with. Use nil to specify the default registerer.
Registerer prom.Registerer
// Gatherer is the prometheus gatherer to gather
// metrics with. Use nil to specify the default gatherer.
Gatherer prom.Gatherer
// DefaultTimerType is the default type timer type to create
// when using timers. It's default value is a summary timer type.
DefaultTimerType TimerType
// DefaultHistogramBuckets is the default histogram buckets
// to use. Use nil to specify the default histogram buckets.
DefaultHistogramBuckets []float64
// DefaultSummaryObjectives is the default summary objectives
// to use. Use nil to specify the default summary objectives.
DefaultSummaryObjectives map[float64]float64
// OnRegisterError defines a method to call to when registering
// a metric with the registerer fails. Use nil to specify
// to panic by default when registering fails.
OnRegisterError func(err error)
}
// NewReporter returns a new Reporter for Prometheus client backed metrics
// objectives is the objectives used when creating a new Summary histogram for Timers. See
// https://godoc.org/github.com/prometheus/client_golang/prometheus#SummaryOpts for more details.
func NewReporter(opts Options) Reporter {
if opts.Registerer == nil {
opts.Registerer = prom.DefaultRegisterer
} else {
// A specific registerer was set, check if it's a registry and if
// no gatherer was set, then use that as the gatherer
if reg, ok := opts.Registerer.(*prom.Registry); ok && opts.Gatherer == nil {
opts.Gatherer = reg
}
}
if opts.Gatherer == nil {
opts.Gatherer = prom.DefaultGatherer
}
if opts.DefaultHistogramBuckets == nil {
opts.DefaultHistogramBuckets = DefaultHistogramBuckets()
}
if opts.DefaultSummaryObjectives == nil {
opts.DefaultSummaryObjectives = DefaultSummaryObjectives()
}
if opts.OnRegisterError == nil {
opts.OnRegisterError = func(err error) {
// n.b. Because our forked Prometheus client does not actually emit
// this message as a concrete error type (it uses fmt.Errorf),
// we need to check the error message.
if strings.Contains(err.Error(), "previously registered") {
err = errors.WithMessagef(
err,
"potential tally.Scope() vs Prometheus usage contract mismatch: "+
"if this occurs after using Scope.Tagged(), different metric "+
"names must be used than were registered with the parent scope",
)
}
panic(err)
}
}
return &reporter{
registerer: opts.Registerer,
gatherer: opts.Gatherer,
timerType: opts.DefaultTimerType,
buckets: opts.DefaultHistogramBuckets,
objectives: opts.DefaultSummaryObjectives,
onRegisterError: opts.OnRegisterError,
counters: make(map[metricID]*prom.CounterVec),
gauges: make(map[metricID]*prom.GaugeVec),
timers: make(map[metricID]*promTimerVec),
}
}
func (r *reporter) RegisterCounter(
name string,
tagKeys []string,
desc string,
) (*prom.CounterVec, error) {
return r.counterVec(name, tagKeys, desc)
}
func (r *reporter) counterVec(
name string,
tagKeys []string,
desc string,
) (*prom.CounterVec, error) {
id := canonicalMetricID(name, tagKeys)
r.Lock()
defer r.Unlock()
if ctr, ok := r.counters[id]; ok {
return ctr, nil
}
ctr := prom.NewCounterVec(
prom.CounterOpts{
Name: name,
Help: desc,
},
tagKeys,
)
if err := r.registerer.Register(ctr); err != nil {
return nil, err
}
r.counters[id] = ctr
return ctr, nil
}
// AllocateCounter implements tally.CachedStatsReporter.
func (r *reporter) AllocateCounter(name string, tags map[string]string) tally.CachedCount {
tagKeys := keysFromMap(tags)
counterVec, err := r.counterVec(name, tagKeys, name+" counter")
if err != nil {
r.onRegisterError(err)
return noopMetric{}
}
return &cachedMetric{counter: counterVec.With(tags)}
}
func (r *reporter) RegisterGauge(
name string,
tagKeys []string,
desc string,
) (*prom.GaugeVec, error) {
return r.gaugeVec(name, tagKeys, desc)
}
func (r *reporter) gaugeVec(
name string,
tagKeys []string,
desc string,
) (*prom.GaugeVec, error) {
id := canonicalMetricID(name, tagKeys)
r.Lock()
defer r.Unlock()
if g, ok := r.gauges[id]; ok {
return g, nil
}
g := prom.NewGaugeVec(
prom.GaugeOpts{
Name: name,
Help: desc,
},
tagKeys,
)
if err := r.registerer.Register(g); err != nil {
return nil, err
}
r.gauges[id] = g
return g, nil
}
// AllocateGauge implements tally.CachedStatsReporter.
func (r *reporter) AllocateGauge(name string, tags map[string]string) tally.CachedGauge {
tagKeys := keysFromMap(tags)
gaugeVec, err := r.gaugeVec(name, tagKeys, name+" gauge")
if err != nil {
r.onRegisterError(err)
return noopMetric{}
}
return &cachedMetric{gauge: gaugeVec.With(tags)}
}
func (r *reporter) RegisterTimer(
name string,
tagKeys []string,
desc string,
opts *RegisterTimerOptions,
) (TimerUnion, error) {
timerType, buckets, objectives := r.timerConfig(opts)
switch timerType {
case HistogramTimerType:
h, err := r.histogramVec(name, tagKeys, desc, buckets)
return TimerUnion{TimerType: timerType, Histogram: h}, err
case SummaryTimerType:
s, err := r.summaryVec(name, tagKeys, desc, objectives)
return TimerUnion{TimerType: timerType, Summary: s}, err
}
return TimerUnion{}, errUnknownTimerType
}
func (r *reporter) timerConfig(
opts *RegisterTimerOptions,
) (
timerType TimerType,
buckets []float64,
objectives map[float64]float64,
) {
timerType = r.timerType
objectives = r.objectives
buckets = r.buckets
if opts != nil {
timerType = opts.TimerType
if opts.SummaryObjectives != nil {
objectives = opts.SummaryObjectives
}
if opts.HistogramBuckets != nil {
buckets = opts.HistogramBuckets
}
}
return
}
func (r *reporter) summaryVec(
name string,
tagKeys []string,
desc string,
objectives map[float64]float64,
) (*prom.SummaryVec, error) {
id := canonicalMetricID(name, tagKeys)
r.Lock()
defer r.Unlock()
if s, ok := r.timers[id]; ok {
return s.summary, nil
}
s := prom.NewSummaryVec(
prom.SummaryOpts{
Name: name,
Help: desc,
Objectives: objectives,
},
tagKeys,
)
if err := r.registerer.Register(s); err != nil {
return nil, err
}
r.timers[id] = &promTimerVec{summary: s}
return s, nil
}
func (r *reporter) histogramVec(
name string,
tagKeys []string,
desc string,
buckets []float64,
) (*prom.HistogramVec, error) {
id := canonicalMetricID(name, tagKeys)
r.Lock()
defer r.Unlock()
if h, ok := r.timers[id]; ok {
return h.histogram, nil
}
h := prom.NewHistogramVec(
prom.HistogramOpts{
Name: name,
Help: desc,
Buckets: buckets,
},
tagKeys,
)
if err := r.registerer.Register(h); err != nil {
return nil, err
}
r.timers[id] = &promTimerVec{histogram: h}
return h, nil
}
// AllocateTimer implements tally.CachedStatsReporter.
func (r *reporter) AllocateTimer(name string, tags map[string]string) tally.CachedTimer {
var (
timer tally.CachedTimer
err error
)
tagKeys := keysFromMap(tags)
timerType, buckets, objectives := r.timerConfig(nil)
switch timerType {
case HistogramTimerType:
var histogramVec *prom.HistogramVec
histogramVec, err = r.histogramVec(name, tagKeys, name+" histogram", buckets)
if err == nil {
t := &cachedMetric{histogram: histogramVec.With(tags)}
t.reportTimer = t.reportTimerHistogram
timer = t
}
case SummaryTimerType:
var summaryVec *prom.SummaryVec
summaryVec, err = r.summaryVec(name, tagKeys, name+" summary", objectives)
if err == nil {
t := &cachedMetric{summary: summaryVec.With(tags)}
t.reportTimer = t.reportTimerSummary
timer = t
}
default:
err = errUnknownTimerType
}
if err != nil {
r.onRegisterError(err)
return noopMetric{}
}
return timer
}
func (r *reporter) AllocateHistogram(
name string,
tags map[string]string,
buckets tally.Buckets,
) tally.CachedHistogram {
tagKeys := keysFromMap(tags)
histogramVec, err := r.histogramVec(name, tagKeys, name+" histogram", buckets.AsValues())
if err != nil {
r.onRegisterError(err)
return noopMetric{}
}
return &cachedMetric{histogram: histogramVec.With(tags)}
}
func (r *reporter) Capabilities() tally.Capabilities {
return r
}
func (r *reporter) Reporting() bool {
return true
}
func (r *reporter) Tagging() bool {
return true
}
// Flush does nothing for prometheus
func (r *reporter) Flush() {}
var metricIDKeyValue = "1"
// NOTE: this generates a canonical MetricID for a given name+label keys,
// not values. This omits label values, as we track metrics as
// Vectors in order to support on-the-fly label changes.
func canonicalMetricID(name string, tagKeys []string) metricID {
keySet := make(map[string]string, len(tagKeys))
for _, key := range tagKeys {
keySet[key] = metricIDKeyValue
}
return metricID(tally.KeyForPrefixedStringMap(name, keySet))
}
func keysFromMap(m map[string]string) []string {
labelKeys := make([]string, len(m))
i := 0
for k := range m {
labelKeys[i] = k
i++
}
return labelKeys
}
|