in ffwd-reporter/src/main/java/com/spotify/metrics/ffwd/FastForwardReporter.java [95:109]
private FastForwardReporter(
SemanticMetricRegistry registry, MetricId prefix, TimeUnit unit, long duration,
FastForward client, Set<Percentile> histogramPercentiles, TagExtractor tagExtractor,
ScheduledExecutorService executorService,
boolean executorOwner) {
this.registry = registry;
this.prefix = prefix;
this.unit = unit;
this.duration = duration;
this.client = client;
this.histogramPercentiles = new HashSet<>(histogramPercentiles);
this.tagExtractor = tagExtractor;
this.executorService = executorService;
this.executorOwner = executorOwner;
}