Merge 1.1.x with minor conflict
This commit is contained in:
commit
e913b35227
|
|
@ -22,6 +22,7 @@ import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.InitializingBean;
|
||||||
import org.springframework.boot.actuate.metrics.Metric;
|
import org.springframework.boot.actuate.metrics.Metric;
|
||||||
import org.springframework.boot.actuate.metrics.repository.MetricRepository;
|
import org.springframework.boot.actuate.metrics.repository.MetricRepository;
|
||||||
import org.springframework.boot.actuate.metrics.writer.Delta;
|
import org.springframework.boot.actuate.metrics.writer.Delta;
|
||||||
|
|
@ -40,13 +41,19 @@ import org.springframework.util.Assert;
|
||||||
*
|
*
|
||||||
* @author Dave Syer
|
* @author Dave Syer
|
||||||
*/
|
*/
|
||||||
public class RedisMetricRepository implements MetricRepository {
|
public class RedisMetricRepository implements MetricRepository, InitializingBean {
|
||||||
|
|
||||||
private static final String DEFAULT_METRICS_PREFIX = "spring.metrics";
|
private static final String DEFAULT_METRICS_PREFIX = "spring.metrics";
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
private String prefix = DEFAULT_METRICS_PREFIX + ".";
|
private String prefix = DEFAULT_METRICS_PREFIX + ".";
|
||||||
|
=======
|
||||||
|
private static final String DEFAULT_KEY = "keys." + DEFAULT_METRICS_PREFIX;
|
||||||
|
|
||||||
private String key = "keys." + DEFAULT_METRICS_PREFIX;
|
private String prefix = DEFAULT_METRICS_PREFIX;
|
||||||
|
>>>>>>> 1.1.x
|
||||||
|
|
||||||
|
private String key = DEFAULT_KEY;
|
||||||
|
|
||||||
private BoundZSetOperations<String, String> zSetOperations;
|
private BoundZSetOperations<String, String> zSetOperations;
|
||||||
|
|
||||||
|
|
@ -57,7 +64,19 @@ public class RedisMetricRepository implements MetricRepository {
|
||||||
this.redisOperations = RedisUtils.stringTemplate(redisConnectionFactory);
|
this.redisOperations = RedisUtils.stringTemplate(redisConnectionFactory);
|
||||||
this.zSetOperations = this.redisOperations.boundZSetOps(this.key);
|
this.zSetOperations = this.redisOperations.boundZSetOps(this.key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void afterPropertiesSet() {
|
||||||
|
if (!DEFAULT_METRICS_PREFIX.equals(this.prefix)) {
|
||||||
|
if (DEFAULT_KEY.equals(this.key)) {
|
||||||
|
this.key = "keys." + this.prefix;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!DEFAULT_KEY.equals(this.key)) {
|
||||||
|
this.zSetOperations = this.redisOperations.boundZSetOps(this.key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The prefix for all metrics keys.
|
* The prefix for all metrics keys.
|
||||||
* @param prefix the prefix to set for all metrics keys
|
* @param prefix the prefix to set for all metrics keys
|
||||||
|
|
@ -78,7 +97,6 @@ public class RedisMetricRepository implements MetricRepository {
|
||||||
*/
|
*/
|
||||||
public void setKey(String key) {
|
public void setKey(String key) {
|
||||||
this.key = key;
|
this.key = key;
|
||||||
this.zSetOperations = this.redisOperations.boundZSetOps(this.key);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@ public class RedisMetricRepositoryTests {
|
||||||
this.repository = new RedisMetricRepository(this.redis.getResource());
|
this.repository = new RedisMetricRepository(this.redis.getResource());
|
||||||
this.prefix = "spring.test." + System.currentTimeMillis();
|
this.prefix = "spring.test." + System.currentTimeMillis();
|
||||||
this.repository.setPrefix(this.prefix);
|
this.repository.setPrefix(this.prefix);
|
||||||
|
this.repository.afterPropertiesSet();
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue