Fix Javadoc

pull/3143/head
Stephane Nicoll 10 years ago
parent 13ecd24cf3
commit 9b5e5f7bf8

@ -67,7 +67,7 @@ public abstract class AbstractJmxCacheStatisticsProvider<C extends Cache> implem
* {@code null} if none is found.
* @param cache the cache to handle
* @return the object name of the cache statistics MBean
* @throws MalformedObjectNameException
* @throws MalformedObjectNameException if the {@link ObjectName} for that cache is invalid
*/
protected abstract ObjectName getObjectName(C cache)
throws MalformedObjectNameException;

@ -27,11 +27,9 @@ import org.springframework.util.StringUtils;
/**
* A metric reader that aggregates values from a source reader, normally one that has been
* collecting data from many sources in the same form (like a scaled-out application). The
* source has metrics with names in the form <code>*.*.counter.**</code> and
* <code>*.*.[anything].**</code> (the length of the prefix is controlled by the
* {@link #setTruncateKeyLength(int) truncateKeyLength} property, and defaults to 2,
* meaning 2 period separated fields), and the result has metric names in the form
* <code>aggregate.count.**</code> and <code>aggregate.[anything].**</code>. Counters are
* source has metrics with names in the form {@code *.*.counter.**} and
* {@code *.*.[anything].**}, and the result has metric names in the form
* {@code aggregate.count.**} and {@code aggregate.[anything].**}. Counters are
* summed and anything else (i.e. gauges) are aggregated by choosing the most recent
* value.
*

@ -40,7 +40,7 @@ import org.springframework.web.client.RestTemplate;
* {@link #setBufferSize(int) bufferSize} property, and only flushed automatically when
* the buffer size is reached. Users should either manually {@link #flush()} after writing
* a batch of data if that makes sense, or consider adding a {@link Scheduled
* <code>@Scheduled</code>} task to flush periodically.
* Scheduled} task to flush periodically.
*
* @author Dave Syer
* @since 1.3.0

Loading…
Cancel
Save