Skip to content

Commit 1c07bee

Browse files
committed
add .
1 parent c1f7988 commit 1c07bee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sinks/util/buffer/metrics/normalize.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub enum NormalizerError {
2828
#[configurable(metadata(docs::advanced))]
2929
#[derive(Clone, Copy, Debug, Default)]
3030
pub struct NormalizerConfig<D: NormalizerSettings + Clone> {
31-
/// The maximum size in bytes of the events in the metrics normalizer cache, excluding cache overhead
31+
/// The maximum size in bytes of the events in the metrics normalizer cache, excluding cache overhead.
3232
#[serde(default = "default_max_bytes::<D>")]
3333
#[configurable(metadata(docs::type_unit = "bytes"))]
3434
pub max_bytes: Option<usize>,
@@ -38,7 +38,7 @@ pub struct NormalizerConfig<D: NormalizerSettings + Clone> {
3838
#[configurable(metadata(docs::type_unit = "events"))]
3939
pub max_events: Option<usize>,
4040

41-
/// The maximum age of a metric not being updated before it is evicted from the metrics normalizer cache
41+
/// The maximum age of a metric not being updated before it is evicted from the metrics normalizer cache.
4242
#[serde(default = "default_time_to_live::<D>")]
4343
#[configurable(metadata(docs::type_unit = "seconds"))]
4444
#[configurable(metadata(docs::human_name = "Time To Live"))]

website/cue/reference/components/transforms/generated/incremental_to_absolute.cue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ generated: components: transforms: incremental_to_absolute: configuration: cache
1111
required: false
1212
type: object: options: {
1313
max_bytes: {
14-
description: "The maximum size in bytes of the events in the metrics normalizer cache, excluding cache overhead"
14+
description: "The maximum size in bytes of the events in the metrics normalizer cache, excluding cache overhead."
1515
required: false
1616
type: uint: unit: "bytes"
1717
}
@@ -21,7 +21,7 @@ generated: components: transforms: incremental_to_absolute: configuration: cache
2121
type: uint: unit: "events"
2222
}
2323
time_to_live: {
24-
description: "The maximum age of a metric not being updated before it is evicted from the metrics normalizer cache"
24+
description: "The maximum age of a metric not being updated before it is evicted from the metrics normalizer cache."
2525
required: false
2626
type: uint: {
2727
default: 300

0 commit comments

Comments
 (0)