Skip to content

Commit b51b530

Browse files
Arthur Silva SensArthurSens
Arthur Silva Sens
authored andcommitted
Optinally print OM created lines
Signed-off-by: Arthur Silva Sens <[email protected]>
1 parent fa4f164 commit b51b530

File tree

5 files changed

+122
-16
lines changed

5 files changed

+122
-16
lines changed

examples/createdtimestamps/main.go

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
// Copyright 2022 The Prometheus Authors
2+
// Licensed under the Apache License, Version 2.0 (the "License");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
//
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
14+
// A simple example of how to exposed created timestamps in OpenMetrics format.
15+
16+
package main
17+
18+
import (
19+
"log"
20+
"net/http"
21+
"time"
22+
23+
"github.com/prometheus/client_golang/prometheus"
24+
"github.com/prometheus/client_golang/prometheus/promhttp"
25+
)
26+
27+
func main() {
28+
requestDurations := prometheus.NewHistogram(prometheus.HistogramOpts{
29+
Name: "http_request_duration_seconds",
30+
Help: "A histogram of the HTTP request durations in seconds.",
31+
Buckets: prometheus.ExponentialBuckets(0.1, 1.5, 5),
32+
})
33+
34+
// Create non-global registry.
35+
registry := prometheus.NewRegistry()
36+
registry.MustRegister(
37+
requestDurations,
38+
)
39+
40+
go func() {
41+
for {
42+
// Record fictional latency.
43+
now := time.Now()
44+
requestDurations.Observe(time.Since(now).Seconds())
45+
time.Sleep(600 * time.Millisecond)
46+
}
47+
}()
48+
49+
// Expose /metrics HTTP endpoint using the created custom registry.
50+
http.Handle(
51+
"/metrics", promhttp.HandlerFor(
52+
registry,
53+
promhttp.HandlerOpts{
54+
OpenMetricsOptions: promhttp.OpenMetricsOptions{
55+
Enable: true,
56+
EnableCreatedTimestamps: true,
57+
},
58+
}),
59+
)
60+
// To test: curl -H 'Accept: application/openmetrics-text' localhost:8080/metrics
61+
log.Fatalln(http.ListenAndServe(":8080", nil))
62+
}

examples/exemplars/main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ func main() {
6161
"/metrics", promhttp.HandlerFor(
6262
registry,
6363
promhttp.HandlerOpts{
64-
EnableOpenMetrics: true,
64+
OpenMetricsOptions: promhttp.OpenMetricsOptions{
65+
Enable: true,
66+
},
6567
}),
6668
)
6769
// To test: curl -H 'Accept: application/openmetrics-text' localhost:8080/metrics

examples/gocollector/main.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ func main() {
5454
http.Handle("/metrics", promhttp.HandlerFor(
5555
reg,
5656
promhttp.HandlerOpts{
57-
// Opt into OpenMetrics to support exemplars.
58-
EnableOpenMetrics: true,
57+
OpenMetricsOptions: promhttp.OpenMetricsOptions{
58+
// Opt into OpenMetrics to support exemplars.
59+
Enable: true,
60+
},
5961
},
6062
))
6163
fmt.Println("Hello world from new Go Collector!")

examples/random/main.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,10 @@ func main() {
134134
http.Handle("/metrics", promhttp.HandlerFor(
135135
reg,
136136
promhttp.HandlerOpts{
137-
// Opt into OpenMetrics to support exemplars.
138-
EnableOpenMetrics: true,
137+
OpenMetricsOptions: promhttp.OpenMetricsOptions{
138+
// Opt into OpenMetrics to support exemplars.
139+
Enable: true,
140+
},
139141
// Pass custom registry
140142
Registry: reg,
141143
},

prometheus/promhttp/http.go

Lines changed: 49 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ func HandlerForTransactional(reg prometheus.TransactionalGatherer, opts HandlerO
185185
}
186186

187187
var contentType expfmt.Format
188-
if opts.EnableOpenMetrics {
188+
if opts.EnableOpenMetrics || opts.OpenMetricsOptions.Enable {
189189
contentType = expfmt.NegotiateIncludingOpenMetrics(req.Header)
190190
} else {
191191
contentType = expfmt.Negotiate(req.Header)
@@ -207,7 +207,13 @@ func HandlerForTransactional(reg prometheus.TransactionalGatherer, opts HandlerO
207207
if encodingHeader != string(Identity) {
208208
rsp.Header().Set(contentEncodingHeader, encodingHeader)
209209
}
210-
enc := expfmt.NewEncoder(w, contentType)
210+
211+
var enc expfmt.Encoder
212+
if opts.OpenMetricsOptions.EnableCreatedTimestamps {
213+
enc = expfmt.NewEncoder(w, contentType, expfmt.WithCreatedLines())
214+
} else {
215+
enc = expfmt.NewEncoder(w, contentType)
216+
}
211217

212218
// handleError handles the error according to opts.ErrorHandling
213219
// and returns true if we have to abort after the handling.
@@ -398,16 +404,11 @@ type HandlerOpts struct {
398404
// away). Until the implementation is improved, it is recommended to
399405
// implement a separate timeout in potentially slow Collectors.
400406
Timeout time.Duration
401-
// If true, the experimental OpenMetrics encoding is added to the
402-
// possible options during content negotiation. Note that Prometheus
403-
// 2.5.0+ will negotiate OpenMetrics as first priority. OpenMetrics is
404-
// the only way to transmit exemplars. However, the move to OpenMetrics
405-
// is not completely transparent. Most notably, the values of "quantile"
406-
// labels of Summaries and "le" labels of Histograms are formatted with
407-
// a trailing ".0" if they would otherwise look like integer numbers
408-
// (which changes the identity of the resulting series on the Prometheus
409-
// server).
407+
// Deprecated: Use OpenMetricsOptions.Enable instead.
410408
EnableOpenMetrics bool
409+
// OpenMetricsOptions holds settings for the experimental OpenMetrics encoding.
410+
// It can be used to enable OpenMetrics encoding and for setting extra options.
411+
OpenMetricsOptions OpenMetricsOptions
411412
// ProcessStartTime allows setting process start timevalue that will be exposed
412413
// with "Process-Start-Time-Unix" response header along with the metrics
413414
// payload. This allow callers to have efficient transformations to cumulative
@@ -418,6 +419,43 @@ type HandlerOpts struct {
418419
ProcessStartTime time.Time
419420
}
420421

422+
type OpenMetricsOptions struct {
423+
// Enable specifies if the experimental OpenMetrics encoding is added to the
424+
// possible options during content negotiation.
425+
//
426+
// Note that Prometheus 2.5.0+ might negotiate OpenMetrics Text format
427+
// as first priority unless user uses custom scrape protocol prioritization or
428+
// histograms feature is enabled (then Prometheus proto format is prioritized,
429+
// which client_golang supports).
430+
//
431+
// Keep in mind that the move to OpenMetrics is not completely transparent. Most notably,
432+
// the values of "quantile" labels of Summaries and "le" labels of Histograms are
433+
// formatted with a trailing ".0" if they would otherwise look like integer numbers
434+
// (which changes the identity of the resulting series on the Prometheus
435+
// server).
436+
//
437+
// See other options in OpenMetricsOptions to learn how to enable some special
438+
// features e.g. potentially dangerous created timestamp series.
439+
Enable bool
440+
// EnableCreatedTimestamps specifies if this handler should add, extra, synthetic
441+
// Created Timestamps for counters, histograms and summaries, which for the current
442+
// version of OpenMetrics are defined as extra series with the same name and "_created"
443+
// suffix. See also the OpenMetrics specification for more details
444+
// https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#counter-1
445+
//
446+
// Created timestamps are used to improve the accuracy of reset detection,
447+
// but the way it's designed in OpenMetrics 1.0 it also dramatically increases cardinality
448+
// if the scraper does not handle those metrics correctly (converting to created timestamp
449+
// instead of leaving those series as-is). New OpenMetrics versions might improve
450+
// this situation.
451+
//
452+
// Prometheus introduced the feature flag 'created-timestamp-zero-ingestion'
453+
// in version 2.50.0, but only for the Prometheus protobuf format. Starting in
454+
// future Prometheus version, the feature flag will be extended to the OpenMetrics
455+
// text format, thus safe to be enabled to improve accuracy of counters in Prometheus.
456+
EnableCreatedTimestamps bool
457+
}
458+
421459
// httpError removes any content-encoding header and then calls http.Error with
422460
// the provided error and http.StatusInternalServerError. Error contents is
423461
// supposed to be uncompressed plain text. Same as with a plain http.Error, this

0 commit comments

Comments
 (0)