Author: chetanm
Date: Wed Jan 6 11:03:23 2016
New Revision: 1723282
URL: http://svn.apache.org/viewvc?rev=1723282&view=rev
Log:
SLING-4080 - API to capture/measure application-level metrics
Fix the javadoc to refer to Sling Metric instance. Thanks Bertrand!
Modified:
sling/whiteboard/chetanm/metrics/src/main/java/org/apache/sling/metrics/MetricsService.java
Modified:
sling/whiteboard/chetanm/metrics/src/main/java/org/apache/sling/metrics/MetricsService.java
URL:
http://svn.apache.org/viewvc/sling/whiteboard/chetanm/metrics/src/main/java/org/apache/sling/metrics/MetricsService.java?rev=1723282&r1=1723281&r2=1723282&view=diff
==============================================================================
---
sling/whiteboard/chetanm/metrics/src/main/java/org/apache/sling/metrics/MetricsService.java
(original)
+++
sling/whiteboard/chetanm/metrics/src/main/java/org/apache/sling/metrics/MetricsService.java
Wed Jan 6 11:03:23 2016
@@ -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);
}