Increase cpu metric reporting interval from 1s to 10s

This commit is contained in:
Jason Davis 2022-10-05 11:48:03 -05:00 committed by Jason
parent cdf77bb824
commit e2fc9d51de
1 changed files with 1 additions and 1 deletions

View File

@ -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);