Skip to content

Commit

Permalink
Fix fieldalignment
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonip committed Oct 18, 2023
1 parent 0c94e23 commit b0d5af3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion input/otlp/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ import (

// ConsumeLogsResult contains the number of rejected log records and error message for partial success response.
type ConsumeLogsResult struct {
RejectedLogRecords int64
ErrorMessage string
RejectedLogRecords int64
}

// ConsumeLogs calls ConsumeLogsWithResult but ignores the result.
Expand Down
2 changes: 1 addition & 1 deletion input/otlp/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ import (

// ConsumeMetricsResult contains the number of rejected data points and error message for partial success response.
type ConsumeMetricsResult struct {
RejectedDataPoints int64
ErrorMessage string
RejectedDataPoints int64
}

// ConsumeMetrics calls ConsumeMetricsWithResult but ignores the result.
Expand Down
2 changes: 1 addition & 1 deletion input/otlp/traces.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ const (

// ConsumeTracesResult contains the number of rejected spans and error message for partial success response.
type ConsumeTracesResult struct {
RejectedSpans int64
ErrorMessage string
RejectedSpans int64
}

// ConsumeTraces calls ConsumeTracesWithResult but ignores the result.
Expand Down

0 comments on commit b0d5af3

Please sign in to comment.