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] [exporter/splunkhec] Simplify the batching process #21969

Merged
merged 1 commit into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 1 addition & 6 deletions exporter/splunkhecexporter/buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ type bufferState struct {
maxEventLength uint
writer io.Writer
buf *bytes.Buffer
resource int // index in ResourceLogs/ResourceMetrics/ResourceSpans list
library int // index in ScopeLogs/ScopeMetrics/ScopeSpans list
record int // index in Logs/Metrics/Spans list
rawLength int
}

Expand Down Expand Up @@ -190,9 +187,7 @@ type bufferStatePool struct {

// get returns a bufferState from the pool.
func (p bufferStatePool) get() *bufferState {
bf := p.pool.Get().(*bufferState)
bf.reset()
return bf
return p.pool.Get().(*bufferState)
}

// put returns a bufferState to the pool.
Expand Down
Loading