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.void
setHistogramStorageAccuracy(short histogramStorageAccuracy)
Sets histogram storage accuracy.void
setRetryBackoffBaseSeconds(Double retryBackoffBaseSeconds)
Sets base in seconds for retry thread exponential backoff.
-
-
-
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
-
-