Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore][testbed]: add options for retry/storage for filelog #36781

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions testbed/datasenders/stanza.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import (
)

type FileLogWriter struct {
file *os.File
file *os.File
retry string
storage string
}

// Ensure FileLogWriter implements LogDataSender.
Expand All @@ -41,6 +43,16 @@ func NewFileLogWriter() *FileLogWriter {
return f
}

func (f *FileLogWriter) WithRetry(retry string) *FileLogWriter {
f.retry = retry
return f
}

func (f *FileLogWriter) WithStorage(storage string) *FileLogWriter {
f.storage = storage
return f
}

func (f *FileLogWriter) Capabilities() consumer.Capabilities {
return consumer.Capabilities{MutatesData: false}
}
Expand Down Expand Up @@ -120,7 +132,9 @@ func (f *FileLogWriter) GenConfigYAMLStr() string {
layout: '%%Y-%%m-%%d'
severity:
parse_from: attributes.sev
`, f.file.Name())
%s
%s
`, f.file.Name(), f.retry, f.storage)
ChrsMark marked this conversation as resolved.
Show resolved Hide resolved
}

func (f *FileLogWriter) ProtocolName() string {
Expand Down
Loading