mz_metrics/
dyncfgs.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

//! Dyncfgs used by mz-metrics.

use std::time::Duration;

use mz_dyncfg::{Config, ConfigSet};

/// How frequently to refresh lgalloc stats.
pub(crate) const MZ_METRICS_LGALLOC_REFRESH_INTERVAL: Config<Duration> = Config::new(
    "mz_metrics_lgalloc_refresh_interval",
    Duration::from_secs(30),
    "How frequently to refresh lgalloc stats. A zero duration disables refreshing.",
);

/// How frequently to refresh lgalloc stats.
pub(crate) const MZ_METRICS_RUSAGE_REFRESH_INTERVAL: Config<Duration> = Config::new(
    "mz_metrics_rusage_refresh_interval",
    Duration::from_secs(30),
    "How frequently to refresh rusage stats. A zero duration disables refreshing.",
);

/// Adds the full set of all storage `Config`s.
pub fn all_dyncfgs(configs: ConfigSet) -> ConfigSet {
    configs
        .add(&MZ_METRICS_LGALLOC_REFRESH_INTERVAL)
        .add(&MZ_METRICS_RUSAGE_REFRESH_INTERVAL)
}