Repository: flink
Updated Branches:
  refs/heads/release-1.2 54a02d9a4 -> 32a55a246


[FLINK-5965] [docs] Fix minor typo on DropWizard wrappers

This closes #3475.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/32a55a24
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/32a55a24
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/32a55a24

Branch: refs/heads/release-1.2
Commit: 32a55a24619a605c4cedeafd951ae2204a93a8e9
Parents: 54a02d9
Author: Chico Sokol <francisco.so...@applift.com>
Authored: Sat Mar 4 17:24:45 2017 +0100
Committer: Ufuk Celebi <u...@apache.org>
Committed: Mon Mar 6 10:10:38 2017 +0100

----------------------------------------------------------------------
 docs/monitoring/metrics.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/32a55a24/docs/monitoring/metrics.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md
index c3bf18e..34d6e5f 100644
--- a/docs/monitoring/metrics.md
+++ b/docs/monitoring/metrics.md
@@ -150,7 +150,7 @@ public class MyMapper extends RichMapFunction<Long, 
Integer> {
 
     this.histogram = getRuntimeContext()
       .getMetricGroup()
-      .histogram("myHistogram", new DropWizardHistogramWrapper(histogram));
+      .histogram("myHistogram", new DropwizardHistogramWrapper(histogram));
   }
 }
 {% endhighlight %}
@@ -199,7 +199,7 @@ public class MyMapper extends RichMapFunction<Long, 
Integer> {
 
     this.meter = getRuntimeContext()
       .getMetricGroup()
-      .meter("myMeter", new DropWizardMeterWrapper(meter));
+      .meter("myMeter", new DropwizardMeterWrapper(meter));
   }
 }
 {% endhighlight %}

Reply via email to