ihji commented on a change in pull request #13491:
URL: https://github.com/apache/beam/pull/13491#discussion_r556847572



##########
File path: sdks/java/core/src/main/java/org/apache/beam/sdk/metrics/Metrics.java
##########
@@ -96,6 +97,21 @@ public static Gauge gauge(Class<?> namespace, String name) {
     return new DelegatingGauge(MetricName.named(namespace, name));
   }
 
+  public static class Internal {
+    public static Counter counter(String namespace, String name, boolean 
processWideContainer) {
+      return new DelegatingCounter(MetricName.named(namespace, name), 
processWideContainer);
+    }
+
+    public static Histogram histogram(
+        String namespace,

Review comment:
       Done. Moved into `LabeledMetrics`.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to