Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Remove leading 0 in histogram buckets in example (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
songy23 authored Sep 6, 2019
1 parent 2fdcf7b commit 6ee7f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/stats/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func main() {
Name: "my.org/views/video_size_cum",
Description: "processed video size over time",
Measure: videoSize,
Aggregation: view.Distribution(0, 1<<16, 1<<32),
Aggregation: view.Distribution(1<<16, 1<<32),
}); err != nil {
log.Fatalf("Cannot subscribe to the view: %v", err)
}
Expand Down

0 comments on commit 6ee7f96

Please sign in to comment.