Rename TorRoundtripTime to TorRoundTripTime

This commit is contained in:
Manfred Karrer 2018-12-29 13:44:57 +01:00
parent d4db4d882b
commit 2762d74c8f
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
2 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@
package bisq.monitor;
import bisq.monitor.metric.TorHiddenServiceStartupTime;
import bisq.monitor.metric.TorRoundtripTime;
import bisq.monitor.metric.TorRoundTripTime;
import bisq.monitor.metric.TorStartupTime;
import bisq.monitor.reporter.GraphiteReporter;
@ -74,7 +74,7 @@ public class Monitor {
// - add available metrics with their reporters
metrics.add(new TorStartupTime(graphiteReporter));
metrics.add(new TorRoundtripTime(graphiteReporter));
metrics.add(new TorRoundTripTime(graphiteReporter));
metrics.add(new TorHiddenServiceStartupTime(graphiteReporter));
// prepare configuration reload

View file

@ -38,16 +38,16 @@ import java.util.LongSummaryStatistics;
import java.util.Map;
/**
* A Metric to measure the round-trip time to the Bisq seednodes via plain tor.
* A Metric to measure the round-trip time to the Bisq seed nodes via plain tor.
*
* @author Florian Reimair
*/
public class TorRoundtripTime extends Metric {
public class TorRoundTripTime extends Metric {
private static final String SAMPLE_SIZE = "run.sampleSize";
private static final String HOSTS = "run.hosts";
public TorRoundtripTime(Reporter reporter) {
public TorRoundTripTime(Reporter reporter) {
super(reporter);
}