Increase cpu metric reporting interval from 1s to 10s
This commit is contained in:
parent
cdf77bb824
commit
e2fc9d51de
|
@ -27,7 +27,7 @@ const MS_PER_H: u64 = MS_PER_M * 60;
|
|||
const SAMPLE_INTERVAL_UDP_MS: u64 = 2 * MS_PER_S;
|
||||
const SAMPLE_INTERVAL_OS_NETWORK_LIMITS_MS: u64 = MS_PER_H;
|
||||
const SAMPLE_INTERVAL_MEM_MS: u64 = MS_PER_S;
|
||||
const SAMPLE_INTERVAL_CPU_MS: u64 = MS_PER_S;
|
||||
const SAMPLE_INTERVAL_CPU_MS: u64 = 10 * MS_PER_S;
|
||||
const SAMPLE_INTERVAL_DISK_MS: u64 = MS_PER_S;
|
||||
const SLEEP_INTERVAL: Duration = Duration::from_millis(500);
|
||||
|
||||
|
|
Loading…
Reference in New Issue