Skip to content

Commit 3f80cd1

Browse files
author
Arthur Silva Sens
authored
Add example of NewConstMetricWithCreatedTimestamp (#1375)
Signed-off-by: Arthur Silva Sens <[email protected]>
1 parent e160b50 commit 3f80cd1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

prometheus/examples_test.go

+24
Original file line numberDiff line numberDiff line change
@@ -655,3 +655,27 @@ func ExampleNewMetricWithTimestamp() {
655655
// Output:
656656
// {"gauge":{"value":298.15},"timestampMs":"1257894000012"}
657657
}
658+
659+
func ExampleNewConstMetricWithCreatedTimestamp() {
660+
// Here we have a metric that is reported by an external system.
661+
// Besides providing the value, the external system also provides the
662+
// timestamp when the metric was created.
663+
desc := prometheus.NewDesc(
664+
"time_since_epoch_seconds",
665+
"Current epoch time in seconds.",
666+
nil, nil,
667+
)
668+
669+
timeSinceEpochReportedByExternalSystem := time.Date(2009, time.November, 10, 23, 0, 0, 12345678, time.UTC)
670+
epoch := time.Unix(0, 0).UTC()
671+
s := prometheus.MustNewConstMetricWithCreatedTimestamp(
672+
desc, prometheus.CounterValue, float64(timeSinceEpochReportedByExternalSystem.Unix()), epoch,
673+
)
674+
675+
metric := &dto.Metric{}
676+
s.Write(metric)
677+
fmt.Println(toNormalizedJSON(metric))
678+
679+
// Output:
680+
// {"counter":{"value":1257894000,"createdTimestamp":"1970-01-01T00:00:00Z"}}
681+
}

0 commit comments

Comments
 (0)