Fix top-level examples in push.go.

As mentioned in the func doc for New(): "However, do not include the “/metrics/jobs/…” part."

Signed-off-by: eduarrrd <eduarrrd@users.noreply.github.com>
This commit is contained in:
eduarrrd 2023-06-17 22:23:28 +02:00 committed by GitHub
parent c3fa5a74f1
commit 86e4b57547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@
// by using its methods, finally calling Add or Push, like this: // by using its methods, finally calling Add or Push, like this:
// //
// // Easy case: // // Easy case:
// push.New("http://example.org/metrics", "my_job").Gatherer(myRegistry).Push() // push.New("http://example.org/", "my_job").Gatherer(myRegistry).Push()
// //
// // Complex case: // // Complex case:
// push.New("http://example.org/metrics", "my_job"). // push.New("http://example.org/", "my_job").
// Collector(myCollector1). // Collector(myCollector1).
// Collector(myCollector2). // Collector(myCollector2).
// Grouping("zone", "xy"). // Grouping("zone", "xy").