com.netflix.hystrix.contrib.yammermetricspublisher.HystrixYammerMetricsPublisherCommand Maven / Gradle / Ivy
/**
* Copyright 2015 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.hystrix.contrib.yammermetricspublisher;
import com.netflix.hystrix.HystrixCircuitBreaker;
import com.netflix.hystrix.HystrixCommandGroupKey;
import com.netflix.hystrix.HystrixCommandKey;
import com.netflix.hystrix.HystrixCommandMetrics;
import com.netflix.hystrix.HystrixCommandProperties;
import com.netflix.hystrix.HystrixEventType;
import com.netflix.hystrix.strategy.metrics.HystrixMetricsPublisherCommand;
import com.netflix.hystrix.util.HystrixRollingNumberEvent;
import com.yammer.metrics.core.Gauge;
import com.yammer.metrics.core.MetricName;
import com.yammer.metrics.core.MetricsRegistry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import rx.functions.Func0;
/**
* Implementation of {@link HystrixMetricsPublisherCommand} using Yammer Metrics (https://github.com/codahale/metrics)
*
* An implementation note. If there's a version mismatch between hystrix-core and hystrix-yammer-metrics-publisher,
* the code below may reference a HystrixRollingNumberEvent that does not exist in hystrix-core. If this happens,
* a j.l.NoSuchFieldError occurs. Since this data is not being generated by hystrix-core, it's safe to count it as 0
* and we should log an error to get users to update their dependency set.
*/
public class HystrixYammerMetricsPublisherCommand implements HystrixMetricsPublisherCommand {
private final HystrixCommandKey key;
private final HystrixCommandGroupKey commandGroupKey;
private final HystrixCommandMetrics metrics;
private final HystrixCircuitBreaker circuitBreaker;
private final HystrixCommandProperties properties;
private final MetricsRegistry metricsRegistry;
private final String metricGroup;
private final String metricType;
static final Logger logger = LoggerFactory.getLogger(HystrixYammerMetricsPublisherCommand.class);
public HystrixYammerMetricsPublisherCommand(HystrixCommandKey commandKey, HystrixCommandGroupKey commandGroupKey, HystrixCommandMetrics metrics, HystrixCircuitBreaker circuitBreaker, HystrixCommandProperties properties, MetricsRegistry metricsRegistry) {
this.key = commandKey;
this.commandGroupKey = commandGroupKey;
this.metrics = metrics;
this.circuitBreaker = circuitBreaker;
this.properties = properties;
this.metricsRegistry = metricsRegistry;
this.metricGroup = "HystrixCommand";
this.metricType = key.name();
}
@Override
public void initialize() {
metricsRegistry.newGauge(createMetricName("isCircuitBreakerOpen"), new Gauge() {
@Override
public Boolean value() {
return circuitBreaker.isOpen();
}
});
// allow monitor to know exactly at what point in time these stats are for so they can be plotted accurately
metricsRegistry.newGauge(createMetricName("currentTime"), new Gauge() {
@Override
public Long value() {
return System.currentTimeMillis();
}
});
// cumulative counts
safelyCreateCumulativeGauge("countBadRequests", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.BAD_REQUEST;
}
});
safelyCreateCumulativeGauge("countCollapsedRequests", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.COLLAPSED;
}
});
safelyCreateCumulativeGauge("countEmit", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.EMIT;
}
});
safelyCreateCumulativeGauge("countExceptionsThrown", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.EXCEPTION_THROWN;
}
});
safelyCreateCumulativeGauge("countFailure", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FAILURE;
}
});
safelyCreateCumulativeGauge("countFallbackEmit", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_EMIT;
}
});
safelyCreateCumulativeGauge("countFallbackFailure", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_FAILURE;
}
});
safelyCreateCumulativeGauge("countFallbackMissing", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_MISSING;
}
});
safelyCreateCumulativeGauge("countFallbackRejection", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_REJECTION;
}
});
safelyCreateCumulativeGauge("countFallbackSuccess", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_SUCCESS;
}
});
safelyCreateCumulativeGauge("countResponsesFromCache", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.RESPONSE_FROM_CACHE;
}
});
safelyCreateCumulativeGauge("countSemaphoreRejected", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SEMAPHORE_REJECTED;
}
});
safelyCreateCumulativeGauge("countShortCircuited", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SHORT_CIRCUITED;
}
});
safelyCreateCumulativeGauge("countSuccess", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SUCCESS;
}
});
safelyCreateCumulativeGauge("countThreadPoolRejected", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.THREAD_POOL_REJECTED;
}
});
safelyCreateCumulativeGauge("countTimeout", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.TIMEOUT;
}
});
// rolling counts
safelyCreateRollingGauge("rollingCountBadRequests", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.BAD_REQUEST;
}
});
safelyCreateRollingGauge("rollingCountCollapsedRequests", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.COLLAPSED;
}
});
safelyCreateRollingGauge("rollingCountExceptionsThrown", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.EXCEPTION_THROWN;
}
});
safelyCreateRollingGauge("rollingCountFailure", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FAILURE;
}
});
safelyCreateRollingGauge("rollingCountFallbackFailure", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_FAILURE;
}
});
safelyCreateRollingGauge("rollingCountFallbackMissing", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_MISSING;
}
});
safelyCreateRollingGauge("rollingCountFallbackRejection", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_REJECTION;
}
});
safelyCreateRollingGauge("rollingCountFallbackSuccess", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.FALLBACK_SUCCESS;
}
});
safelyCreateRollingGauge("rollingCountResponsesFromCache", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.RESPONSE_FROM_CACHE;
}
});
safelyCreateRollingGauge("rollingCountSemaphoreRejected", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SEMAPHORE_REJECTED;
}
});
safelyCreateRollingGauge("rollingCountShortCircuited", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SHORT_CIRCUITED;
}
});
safelyCreateRollingGauge("rollingCountSuccess", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.SUCCESS;
}
});
safelyCreateRollingGauge("rollingCountThreadPoolRejected", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.THREAD_POOL_REJECTED;
}
});
safelyCreateRollingGauge("rollingCountTimeout", new Func0() {
@Override
public HystrixEventType call() {
return HystrixEventType.TIMEOUT;
}
});
// the number of executionSemaphorePermits in use right now
createCurrentValueGauge("executionSemaphorePermitsInUse", currentConcurrentExecutionCountThunk);
// error percentage derived from current metrics
createCurrentValueGauge("errorPercentage", errorPercentageThunk);
// latency metrics
createExecutionLatencyMeanGauge("latencyExecute_mean");
createExecutionLatencyPercentileGauge("latencyExecute_percentile_5", 5);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_25", 25);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_50", 50);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_75", 75);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_90", 90);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_99", 99);
createExecutionLatencyPercentileGauge("latencyExecute_percentile_995", 99.5);
createTotalLatencyMeanGauge("latencyTotal_mean");
createTotalLatencyPercentileGauge("latencyTotal_percentile_5", 5);
createTotalLatencyPercentileGauge("latencyTotal_percentile_25", 25);
createTotalLatencyPercentileGauge("latencyTotal_percentile_50", 50);
createTotalLatencyPercentileGauge("latencyTotal_percentile_75", 75);
createTotalLatencyPercentileGauge("latencyTotal_percentile_90", 90);
createTotalLatencyPercentileGauge("latencyTotal_percentile_99", 99);
createTotalLatencyPercentileGauge("latencyTotal_percentile_995", 99.5);
// group
metricsRegistry.newGauge(createMetricName("commandGroup"), new Gauge() {
@Override
public String value() {
return commandGroupKey != null ? commandGroupKey.name() : null;
}
});
// properties (so the values can be inspected and monitored)
metricsRegistry.newGauge(createMetricName("propertyValue_rollingStatisticalWindowInMilliseconds"), new Gauge() {
@Override
public Number value() {
return properties.metricsRollingStatisticalWindowInMilliseconds().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_circuitBreakerRequestVolumeThreshold"), new Gauge() {
@Override
public Number value() {
return properties.circuitBreakerRequestVolumeThreshold().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_circuitBreakerSleepWindowInMilliseconds"), new Gauge() {
@Override
public Number value() {
return properties.circuitBreakerSleepWindowInMilliseconds().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_circuitBreakerErrorThresholdPercentage"), new Gauge() {
@Override
public Number value() {
return properties.circuitBreakerErrorThresholdPercentage().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_circuitBreakerForceOpen"), new Gauge() {
@Override
public Boolean value() {
return properties.circuitBreakerForceOpen().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_circuitBreakerForceClosed"), new Gauge() {
@Override
public Boolean value() {
return properties.circuitBreakerForceClosed().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_executionTimeoutInMilliseconds"), new Gauge() {
@Override
public Number value() {
return properties.executionTimeoutInMilliseconds().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_executionIsolationThreadTimeoutInMilliseconds"), new Gauge() {
@Override
public Number value() {
return properties.executionTimeoutInMilliseconds().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_executionIsolationStrategy"), new Gauge() {
@Override
public String value() {
return properties.executionIsolationStrategy().get().name();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_metricsRollingPercentileEnabled"), new Gauge() {
@Override
public Boolean value() {
return properties.metricsRollingPercentileEnabled().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_requestCacheEnabled"), new Gauge() {
@Override
public Boolean value() {
return properties.requestCacheEnabled().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_requestLogEnabled"), new Gauge() {
@Override
public Boolean value() {
return properties.requestLogEnabled().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_executionIsolationSemaphoreMaxConcurrentRequests"), new Gauge() {
@Override
public Number value() {
return properties.executionIsolationSemaphoreMaxConcurrentRequests().get();
}
});
metricsRegistry.newGauge(createMetricName("propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests"), new Gauge() {
@Override
public Number value() {
return properties.fallbackIsolationSemaphoreMaxConcurrentRequests().get();
}
});
}
protected MetricName createMetricName(String name) {
return new MetricName(metricGroup, metricType, name);
}
@Deprecated
protected void createCumulativeCountForEvent(String name, final HystrixRollingNumberEvent event) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
return metrics.getCumulativeCount(event);
}
});
}
protected void createCumulativeGauge(final String name, final HystrixEventType eventType) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
return metrics.getCumulativeCount(HystrixRollingNumberEvent.from(eventType));
}
});
}
protected void safelyCreateCumulativeGauge(final String name, final Func0 eventThunk) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
try {
HystrixRollingNumberEvent eventType = HystrixRollingNumberEvent.from(eventThunk.call());
return metrics.getCumulativeCount(eventType);
} catch (NoSuchFieldError error) {
logger.error("While publishing Yammer metrics, error looking up eventType for : {}. Please check that all Hystrix versions are the same!", name);
return 0L;
}
}
});
}
@Deprecated
protected void createRollingGauge(String name, final HystrixRollingNumberEvent event) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
return metrics.getRollingCount(event);
}
});
}
protected void createRollingGauge(final String name, final HystrixEventType eventType) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
return metrics.getRollingCount(HystrixRollingNumberEvent.from(eventType));
}
});
}
protected void safelyCreateRollingGauge(final String name, final Func0 eventThunk) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Long value() {
try {
HystrixRollingNumberEvent eventType = HystrixRollingNumberEvent.from(eventThunk.call());
return metrics.getRollingCount(eventType);
} catch (NoSuchFieldError error) {
logger.error("While publishing Yammer metrics, error looking up eventType for : {}. Please check that all Hystrix versions are the same!", name);
return 0L;
}
}
});
}
protected void createExecutionLatencyMeanGauge(final String name) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Integer value() {
return metrics.getExecutionTimeMean();
}
});
}
protected void createExecutionLatencyPercentileGauge(final String name, final double percentile) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Integer value() {
return metrics.getExecutionTimePercentile(percentile);
}
});
}
protected void createTotalLatencyMeanGauge(final String name) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Integer value() {
return metrics.getTotalTimeMean();
}
});
}
protected void createTotalLatencyPercentileGauge(final String name, final double percentile) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Integer value() {
return metrics.getTotalTimePercentile(percentile);
}
});
}
protected final Func0 currentConcurrentExecutionCountThunk = new Func0() {
@Override
public Integer call() {
return metrics.getCurrentConcurrentExecutionCount();
}
};
protected final Func0 rollingMaxConcurrentExecutionCountThunk = new Func0() {
@Override
public Long call() {
return metrics.getRollingMaxConcurrentExecutions();
}
};
protected final Func0 errorPercentageThunk = new Func0() {
@Override
public Integer call() {
return metrics.getHealthCounts().getErrorPercentage();
}
};
protected void createCurrentValueGauge(final String name, final Func0 metricToEvaluate) {
metricsRegistry.newGauge(createMetricName(name), new Gauge() {
@Override
public Integer value() {
return metricToEvaluate.call();
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy