-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update bucket default bounds (#3222)
* update bucket default bounds to match the specification * add changelog entry * test custom boundaries with valid histogram Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
- Loading branch information
Showing
6 changed files
with
42 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# HELP baz a very nice histogram | ||
# TYPE baz histogram | ||
baz_bucket{A="B",C="D",le="0"} 0 | ||
baz_bucket{A="B",C="D",le="5"} 0 | ||
baz_bucket{A="B",C="D",le="10"} 1 | ||
baz_bucket{A="B",C="D",le="25"} 1 | ||
baz_bucket{A="B",C="D",le="50"} 0 | ||
baz_bucket{A="B",C="D",le="75"} 0 | ||
baz_bucket{A="B",C="D",le="100"} 0 | ||
baz_bucket{A="B",C="D",le="250"} 2 | ||
baz_bucket{A="B",C="D",le="500"} 0 | ||
baz_bucket{A="B",C="D",le="1000"} 0 | ||
baz_bucket{A="B",C="D",le="+Inf"} 4 | ||
baz_sum{A="B",C="D"} 236 | ||
baz_count{A="B",C="D"} 4 | ||
# HELP histogram_baz a very nice histogram | ||
# TYPE histogram_baz histogram | ||
histogram_baz_bucket{A="B",C="D",le="0"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="5"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="10"} 1 | ||
histogram_baz_bucket{A="B",C="D",le="25"} 1 | ||
histogram_baz_bucket{A="B",C="D",le="50"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="75"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="100"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="250"} 2 | ||
histogram_baz_bucket{A="B",C="D",le="500"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="1000"} 0 | ||
histogram_baz_bucket{A="B",C="D",le="+Inf"} 4 | ||
histogram_baz_sum{A="B",C="D"} 236 | ||
histogram_baz_count{A="B",C="D"} 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters