|
|
|
@ -318,6 +318,21 @@ public class WavefrontProperties {
|
|
|
|
|
*/
|
|
|
|
|
private String globalPrefix;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether to report histogram distributions aggregated into minute intervals.
|
|
|
|
|
*/
|
|
|
|
|
private boolean reportMinuteDistribution = true;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether to report histogram distributions aggregated into hour intervals.
|
|
|
|
|
*/
|
|
|
|
|
private boolean reportHourDistribution;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether to report histogram distributions aggregated into day intervals.
|
|
|
|
|
*/
|
|
|
|
|
private boolean reportDayDistribution;
|
|
|
|
|
|
|
|
|
|
public String getGlobalPrefix() {
|
|
|
|
|
return this.globalPrefix;
|
|
|
|
|
}
|
|
|
|
@ -342,6 +357,30 @@ public class WavefrontProperties {
|
|
|
|
|
throw new UnsupportedOperationException("Use Sender.setBatchSize(int) instead");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isReportMinuteDistribution() {
|
|
|
|
|
return this.reportMinuteDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setReportMinuteDistribution(boolean reportMinuteDistribution) {
|
|
|
|
|
this.reportMinuteDistribution = reportMinuteDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isReportHourDistribution() {
|
|
|
|
|
return this.reportHourDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setReportHourDistribution(boolean reportHourDistribution) {
|
|
|
|
|
this.reportHourDistribution = reportHourDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isReportDayDistribution() {
|
|
|
|
|
return this.reportDayDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setReportDayDistribution(boolean reportDayDistribution) {
|
|
|
|
|
this.reportDayDistribution = reportDayDistribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|