Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

output/cloudv2: Compact histogram #3169

Merged
merged 8 commits into from
Jul 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hdr_test: Test more edge cases
  • Loading branch information
codebien committed Jul 6, 2023
commit 6f7548dd1ca5d49843799a3ec7d76a86d7b8300e
3 changes: 3 additions & 0 deletions output/cloud/expv2/hdr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func TestValueBacket(t *testing.T) {
{in: -1029, exp: 0},
{in: -12, exp: 0},
{in: -0.82673, exp: 0},
{in: 0, exp: 0},
{in: 0.12, exp: 1},
{in: 1.91, exp: 2},
{in: 10, exp: 10},
{in: 12, exp: 12},
{in: 12.5, exp: 13},
Expand Down