Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* The {@link MetricsRetrievalService} is used as a headless, autonomous service
* which encapsulates:
* <ul>
* <li>An {@link ExecutorService} for fullfilling remote metric URL requests
* <li>An {@link ExecutorService} for fulfilling remote metric URL requests
* <li>A cache for JMX metrics
* <li>A cache for REST metrics
* </ul>
Expand Down Expand Up @@ -270,7 +270,7 @@ protected void doStop() {
* {@link #getCachedRESTMetric(String)}, depending on the type of metric
* requested.
* <p/>
* Callers need not worry about invoking this mulitple times for the same URL
* Callers need not worry about invoking this multiple times for the same URL
* endpoint. A single endpoint will only be enqueued once regardless of how
* many times this method is called until it has been fully retrieved and
* parsed. If the last endpoint request was too recent, then this method will
Expand Down Expand Up @@ -349,7 +349,7 @@ public JMXMetricHolder getCachedJMXMetric(String jmxUrl) {
* Gets a cached REST metric in the form of a {@link Map}. If there is no
* metric data cached for the given URL, then {@code null} is returned.
* <p/>
* The onky way this cache is populated is by requesting the data to be loaded
* The only way this cache is populated is by requesting the data to be loaded
* asynchronously via
* {@link #submitRequest(MetricSourceType, StreamProvider, String)} with the
* {@link MetricSourceType#REST} type.
Expand All @@ -363,7 +363,7 @@ public Map<String, String> getCachedRESTMetric(String restUrl) {
}

/**
* Encapsulates the common logic for all metric {@link Runnable} instnaces.
* Encapsulates the common logic for all metric {@link Runnable} instances.
*/
private static abstract class MetricRunnable implements Runnable {

Expand Down