Package com.wavefront.agent.data
Interface EntityProperties.GlobalProperties
-
- Enclosing interface:
- EntityProperties
public static interface EntityProperties.GlobalProperties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description short
getHistogramStorageAccuracy()
Get histogram storage accuracy, as specified by the back-end.double
getRetryBackoffBaseSeconds()
Get base in seconds for retry thread exponential backoff.Double
getTraceSamplingRate()
Get the sampling rate for tracing spans.void
setHistogramStorageAccuracy(short histogramStorageAccuracy)
Sets histogram storage accuracy.void
setRetryBackoffBaseSeconds(Double retryBackoffBaseSeconds)
Sets base in seconds for retry thread exponential backoff.void
setTraceSamplingRate(Double traceSamplingRate)
Sets the sampling rate for tracing spans.
-
-
-
Method Detail
-
getRetryBackoffBaseSeconds
double getRetryBackoffBaseSeconds()
Get base in seconds for retry thread exponential backoff.- Returns:
- exponential backoff base value
-
setRetryBackoffBaseSeconds
void setRetryBackoffBaseSeconds(@Nullable Double retryBackoffBaseSeconds)
Sets base in seconds for retry thread exponential backoff.- Parameters:
retryBackoffBaseSeconds
- new value for exponential backoff base value. if null is provided, reverts to originally configured value.
-
getHistogramStorageAccuracy
short getHistogramStorageAccuracy()
Get histogram storage accuracy, as specified by the back-end.- Returns:
- histogram storage accuracy
-
setHistogramStorageAccuracy
void setHistogramStorageAccuracy(short histogramStorageAccuracy)
Sets histogram storage accuracy.- Parameters:
histogramStorageAccuracy
- storage accuracy
-
getTraceSamplingRate
Double getTraceSamplingRate()
Get the sampling rate for tracing spans.- Returns:
- sampling rate for tracing spans.
-
setTraceSamplingRate
void setTraceSamplingRate(Double traceSamplingRate)
Sets the sampling rate for tracing spans.- Parameters:
traceSamplingRate
- sampling rate for tracing spans
-
-