Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
This commit is contained in:
Bartlomiej Plotka
2026-03-10 15:55:40 +00:00
committed by GitHub
parent 6ab5d8f9be
commit f7c60bf97e
2 changed files with 4 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ var _ sender.Sender = internalPrometheus{}
// TestRemoteWriteSender runs remote write sender compliance tests defined in
// https://github.com/prometheus/compliance/tree/main/remotewrite/sender against
// both agent and sever modes.
// both agent and server modes.
func TestRemoteWriteSender(t *testing.T) {
t.Run("mode=server", func(t *testing.T) {
t.Parallel()

View File

@@ -95,7 +95,9 @@ type Options struct {
// EnableSTStorage determines whether agent DB should write a Start Timestamp (ST)
// per sample to WAL.
// Represents 'st-storage' feature flag.
// Controlled by the `--enable-feature=st-storage` CLI flag; when enabled, ST is
// persisted to the WAL for samples that include a non-zero start timestamp in
// supported record types.
EnableSTStorage bool
}