mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
Rename TorRoundtripTime to TorRoundTripTime
This commit is contained in:
parent
d4db4d882b
commit
2762d74c8f
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue