|
| 1 | +// Code generated by mdatagen. DO NOT EDIT. |
| 2 | + |
| 3 | +package {{ .Package }} |
| 4 | + |
| 5 | +import ( |
| 6 | + "go.opentelemetry.io/collector/component" |
| 7 | + "go.opentelemetry.io/collector/pdata/pcommon" |
| 8 | + "go.opentelemetry.io/collector/pdata/plog" |
| 9 | + {{- if or isReceiver isScraper }} |
| 10 | + "go.opentelemetry.io/collector/{{ .Status.Class }}" |
| 11 | + {{- end }} |
| 12 | + {{- if .SemConvVersion }} |
| 13 | + conventions "go.opentelemetry.io/collector/semconv/v{{ .SemConvVersion }}" |
| 14 | + {{- end }} |
| 15 | +) |
| 16 | + |
| 17 | +// LogsBuilder provides an interface for scrapers to report logs while taking care of all the transformations |
| 18 | +// required to produce log representation defined in metadata and user config. |
| 19 | +type LogsBuilder struct { |
| 20 | + logsBuffer plog.Logs |
| 21 | + logRecordsBuffer plog.LogRecordSlice |
| 22 | + buildInfo component.BuildInfo // contains version information. |
| 23 | +} |
| 24 | + |
| 25 | +// LogBuilderOption applies changes to default logs builder. |
| 26 | +type LogBuilderOption interface { |
| 27 | + apply(*LogsBuilder) |
| 28 | +} |
| 29 | + |
| 30 | +{{- if isReceiver }} |
| 31 | +func NewLogsBuilder(settings {{ .Status.Class }}.Settings) *LogsBuilder { |
| 32 | + lb := &LogsBuilder{ |
| 33 | + logsBuffer: plog.NewLogs(), |
| 34 | + logRecordsBuffer: plog.NewLogRecordSlice(), |
| 35 | + buildInfo: settings.BuildInfo, |
| 36 | + } |
| 37 | + |
| 38 | + return lb |
| 39 | +} |
| 40 | +{{- end }} |
| 41 | + |
| 42 | +{{- if .ResourceAttributes }} |
| 43 | +// NewResourceBuilder returns a new resource builder that should be used to build a resource associated with for the emitted logs. |
| 44 | +func (lb *LogsBuilder) NewResourceBuilder() *ResourceBuilder { |
| 45 | + return NewResourceBuilder(ResourceAttributesConfig{}) |
| 46 | +} |
| 47 | +{{- end }} |
| 48 | + |
| 49 | +// ResourceLogsOption applies changes to provided resource logs. |
| 50 | +type ResourceLogsOption interface { |
| 51 | + apply(plog.ResourceLogs) |
| 52 | +} |
| 53 | + |
| 54 | +type resourceLogsOptionFunc func(plog.ResourceLogs) |
| 55 | + |
| 56 | +func (rlof resourceLogsOptionFunc) apply(rl plog.ResourceLogs) { |
| 57 | + rlof(rl) |
| 58 | +} |
| 59 | + |
| 60 | +// WithLogsResource sets the provided resource on the emitted ResourceLogs. |
| 61 | +// It's recommended to use ResourceBuilder to create the resource. |
| 62 | +func WithLogsResource(res pcommon.Resource) ResourceLogsOption { |
| 63 | + return resourceLogsOptionFunc(func(rl plog.ResourceLogs) { |
| 64 | + res.CopyTo(rl.Resource()) |
| 65 | + }) |
| 66 | +} |
| 67 | + |
| 68 | +// AppendLogRecord adds a log record to the logs builder. |
| 69 | +func (lb *LogsBuilder) AppendLogRecord(lr plog.LogRecord) { |
| 70 | + lr.MoveTo(lb.logRecordsBuffer.AppendEmpty()) |
| 71 | +} |
| 72 | + |
| 73 | +// EmitForResource saves all the generated logs under a new resource and updates the internal state to be ready for |
| 74 | +// recording another set of log records as part of another resource. This function can be helpful when one scraper |
| 75 | +// needs to emit logs from several resources. Otherwise calling this function is not required, |
| 76 | +// just `Emit` function can be called instead. |
| 77 | +// Resource attributes should be provided as ResourceLogsOption arguments. |
| 78 | +func (lb *LogsBuilder) EmitForResource(options ...ResourceLogsOption) { |
| 79 | + rl := lb.logsBuffer.ResourceLogs().AppendEmpty() |
| 80 | + {{- if .SemConvVersion }} |
| 81 | + rl.SetSchemaUrl(conventions.SchemaURL) |
| 82 | + {{- end }} |
| 83 | + ils := rl.ScopeLogs().AppendEmpty() |
| 84 | + ils.Scope().SetName(ScopeName) |
| 85 | + ils.Scope().SetVersion(lb.buildInfo.Version) |
| 86 | + |
| 87 | + for _, op := range options { |
| 88 | + op.apply(rl) |
| 89 | + } |
| 90 | + |
| 91 | + if lb.logRecordsBuffer.Len() > 0 { |
| 92 | + lb.logRecordsBuffer.MoveAndAppendTo(ils.LogRecords()) |
| 93 | + lb.logRecordsBuffer = plog.NewLogRecordSlice() |
| 94 | + } |
| 95 | +} |
| 96 | + |
| 97 | +// Emit returns all the logs accumulated by the logs builder and updates the internal state to be ready for |
| 98 | +// recording another set of logs. This function will be responsible for applying all the transformations required to |
| 99 | +// produce logs representation defined in metadata and user config. |
| 100 | +func (lb *LogsBuilder) Emit(options ...ResourceLogsOption) plog.Logs { |
| 101 | + lb.EmitForResource(options...) |
| 102 | + logs := lb.logsBuffer |
| 103 | + lb.logsBuffer = plog.NewLogs() |
| 104 | + return logs |
| 105 | +} |
0 commit comments