From ab3f846772e6e5114b19a79bcc91dccf9b012151 Mon Sep 17 00:00:00 2001 From: Alejandro Alcalde Date: Wed, 27 Jun 2018 18:17:54 +0200 Subject: [PATCH] [hotfix] Fixed typo in docs --- docs/monitoring/metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md index 7fe5e7af57468..7d9b735505c43 100644 --- a/docs/monitoring/metrics.md +++ b/docs/monitoring/metrics.md @@ -426,7 +426,7 @@ class MyMapper extends RichMapFunction[Long,Long] { Every metric is assigned an identifier and a set of key-value pairs under which the metric will be reported. -THe identifier is based on 3 components: the user-defined name when registering the metric, an optional user-defined scope and a system-provided scope. +The identifier is based on 3 components: the user-defined name when registering the metric, an optional user-defined scope and a system-provided scope. For example, if `A.B` is the system scope, `C.D` the user scope and `E` the name, then the identifier for the metric will be `A.B.C.D.E`. You can configure which delimiter to use for the identifier (default: `.`) by setting the `metrics.scope.delimiter` key in `conf/flink-conf.yaml`.