aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIan Sturdy <sturdy@google.com>2018-03-19 11:24:20 -0700
committerGitHub <noreply@github.com>2018-03-19 11:24:20 -0700
commit7d9562e77745bf49b03ec07bbb315bba856f16c3 (patch)
tree697c04b2f5f73fdd76e36b7ac41f78275d47e7d6 /examples
parent1e524dca48c9a9de6bd4e4058138391ff23bea2e (diff)
downloadopencensus-java-7d9562e77745bf49b03ec07bbb315bba856f16c3.tar.gz
Fix comment about bucket boundaries in the helloworld example. (#1070)
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/java/io/opencensus/examples/helloworld/QuickStart.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/src/main/java/io/opencensus/examples/helloworld/QuickStart.java b/examples/src/main/java/io/opencensus/examples/helloworld/QuickStart.java
index 5907b6b2..285ae81b 100644
--- a/examples/src/main/java/io/opencensus/examples/helloworld/QuickStart.java
+++ b/examples/src/main/java/io/opencensus/examples/helloworld/QuickStart.java
@@ -62,8 +62,8 @@ public final class QuickStart {
private static final long MiB = 1 << 20;
// Create view to see the processed video size distribution broken down by frontend.
- // The view has bucket boundaries (0, 256, 65536) that will group measure values into
- // histogram buckets.
+ // The view has bucket boundaries (0, 16 * MiB, 65536 * MiB) that will group measure
+ // values into histogram buckets.
private static final View.Name VIDEO_SIZE_VIEW_NAME = View.Name.create("my.org/views/video_size");
private static final View VIDEO_SIZE_VIEW =
View.create(