Package | Description |
---|---|
com.netflix.hystrix |
Core functionality of Hystrix including the HystrixCommand and HystrixCollapser to be extended from.
|
com.netflix.hystrix.strategy.metrics |
Strategy definition for publishing metrics and default implementation.
|
Modifier and Type | Method and Description |
---|---|
static HystrixCommandMetrics |
HystrixCommandMetrics.getInstance(HystrixCommandKey key)
Get the
HystrixCommandMetrics instance for a given HystrixCommandKey or null if one does not exist. |
static HystrixCommandMetrics |
HystrixCommandMetrics.getInstance(HystrixCommandKey key,
HystrixCommandGroupKey commandGroup,
HystrixCommandProperties properties)
Get or create the
HystrixCommandMetrics instance for a given HystrixCommandKey . |
static HystrixCommandMetrics |
HystrixCommandMetrics.getInstance(HystrixCommandKey key,
HystrixCommandGroupKey commandGroup,
HystrixThreadPoolKey threadPoolKey,
HystrixCommandProperties properties)
Get or create the
HystrixCommandMetrics instance for a given HystrixCommandKey . |
HystrixCommandMetrics |
HystrixInvokableInfo.getMetrics() |
Modifier and Type | Method and Description |
---|---|
static Collection<HystrixCommandMetrics> |
HystrixCommandMetrics.getInstances()
All registered instances of
HystrixCommandMetrics |
Modifier and Type | Method and Description |
---|---|
static HystrixCircuitBreaker |
HystrixCircuitBreaker.Factory.getInstance(HystrixCommandKey key,
HystrixCommandGroupKey group,
HystrixCommandProperties properties,
HystrixCommandMetrics metrics)
Get the
HystrixCircuitBreaker instance for a given HystrixCommandKey . |
Constructor and Description |
---|
HystrixCircuitBreaker.HystrixCircuitBreakerImpl(HystrixCommandKey key,
HystrixCommandGroupKey commandGroup,
HystrixCommandProperties properties,
HystrixCommandMetrics metrics) |
Modifier and Type | Method and Description |
---|---|
static HystrixMetricsPublisherCommand |
HystrixMetricsPublisherFactory.createOrRetrievePublisherForCommand(HystrixCommandKey commandKey,
HystrixCommandGroupKey commandOwner,
HystrixCommandMetrics metrics,
HystrixCircuitBreaker circuitBreaker,
HystrixCommandProperties properties)
Get an instance of
HystrixMetricsPublisherCommand with the given factory HystrixMetricsPublisher implementation for each HystrixCommand instance. |
HystrixMetricsPublisherCommand |
HystrixMetricsPublisher.getMetricsPublisherForCommand(HystrixCommandKey commandKey,
HystrixCommandGroupKey commandGroupKey,
HystrixCommandMetrics metrics,
HystrixCircuitBreaker circuitBreaker,
HystrixCommandProperties properties)
Construct an implementation of
HystrixMetricsPublisherCommand for HystrixCommand instances having key HystrixCommandKey . |
Constructor and Description |
---|
HystrixMetricsPublisherCommandDefault(HystrixCommandKey commandKey,
HystrixCommandGroupKey commandGroupKey,
HystrixCommandMetrics metrics,
HystrixCircuitBreaker circuitBreaker,
HystrixCommandProperties properties) |
Copyright © 2015. All Rights Reserved.