diff options
| author | easy <g-easy@users.noreply.github.com> | 2018-03-15 17:26:26 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-15 17:26:26 +1100 |
| commit | e45afa14e204ef3800cf7c89ae91fc23e6ae49ef (patch) | |
| tree | 550ed3711b2142c39fc6261bc6e40e5f648614bd /README.md | |
| parent | b40fd021e3f3c2323c157f6a5cf3b5abdbca6bd8 (diff) | |
| download | platform_external_opencensus-java-e45afa14e204ef3800cf7c89ae91fc23e6ae49ef.tar.gz platform_external_opencensus-java-e45afa14e204ef3800cf7c89ae91fc23e6ae49ef.tar.bz2 platform_external_opencensus-java-e45afa14e204ef3800cf7c89ae91fc23e6ae49ef.zip | |
Change MBy to By units. (#1058)
This reflects the default gRPC views which use bytes as units.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,14 +89,14 @@ For the complete example, see public final class QuickStart { private static final Tagger tagger = Tags.getTagger(); private static final ViewManager viewManager = Stats.getViewManager(); - private static final StatsRecorder statsRecorder = Stats.getStatsRecorder(); + private static final StatsRecorder statsRecorder = Stats.getStatsRecorder(); // frontendKey allows us to break down the recorded data private static final TagKey FRONTEND_KEY = TagKey.create("my.org/keys/frontend"); // videoSize will measure the size of processed videos. private static final MeasureLong VIDEO_SIZE = MeasureLong.create( - "my.org/measure/video_size", "size of processed videos", "MBy"); + "my.org/measure/video_size", "size of processed videos", "By"); // 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 |
