This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.commons.metrics-0.0.2 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-metrics.git
commit 6168de604a312d078c089ede6dc746d0dd1c070a Author: Chetan Mehrotra <[email protected]> AuthorDate: Wed Jan 6 11:03:23 2016 +0000 SLING-4080 - API to capture/measure application-level metrics Fix the javadoc to refer to Sling Metric instance. Thanks Bertrand! git-svn-id: https://svn.apache.org/repos/asf/sling/whiteboard/chetanm/metrics@1723282 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/sling/metrics/MetricsService.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/sling/metrics/MetricsService.java b/src/main/java/org/apache/sling/metrics/MetricsService.java index ab8a3b1..8c51d4b 100644 --- a/src/main/java/org/apache/sling/metrics/MetricsService.java +++ b/src/main/java/org/apache/sling/metrics/MetricsService.java @@ -46,34 +46,34 @@ public interface MetricsService { }; /** - * Creates a new {@link com.codahale.metrics.Timer} and registers it under the given name. + * Creates a new {@link Timer} and registers it under the given name. * * @param name the name of the metric - * @return a new {@link com.codahale.metrics.Timer} + * @return a new {@link Timer} */ Timer timer(String name); /** - * Creates a new {@link com.codahale.metrics.Histogram} and registers it under the given name. + * Creates a new {@link Histogram} and registers it under the given name. * * @param name the name of the metric - * @return a new {@link com.codahale.metrics.Histogram} + * @return a new {@link Histogram} */ Histogram histogram(String name); /** - * Creates a new {@link com.codahale.metrics.Counter} and registers it under the given name. + * Creates a new {@link Counter} and registers it under the given name. * * @param name the name of the metric - * @return a new {@link com.codahale.metrics.Counter} + * @return a new {@link Counter} */ Counter counter(String name); /** - * Creates a new {@link com.codahale.metrics.Meter} and registers it under the given name. + * Creates a new {@link Meter} and registers it under the given name. * * @param name the name of the metric - * @return a new {@link com.codahale.metrics.Meter} + * @return a new {@link Meter} */ Meter meter(String name); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
