-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
log.go
546 lines (498 loc) · 18.8 KB
/
log.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package ottllog // import "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottllog"
import (
"context"
"encoding/hex"
"errors"
"fmt"
"time"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/plog"
"go.uber.org/zap/zapcore"
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl"
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/internal"
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/internal/logging"
common "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/internal/ottlcommon"
)
const (
contextName = "Log"
)
var (
_ internal.ResourceContext = (*TransformContext)(nil)
_ internal.InstrumentationScopeContext = (*TransformContext)(nil)
_ zapcore.ObjectMarshaler = (*TransformContext)(nil)
)
type TransformContext struct {
logRecord plog.LogRecord
instrumentationScope pcommon.InstrumentationScope
resource pcommon.Resource
cache pcommon.Map
scopeLogs plog.ScopeLogs
resourceLogs plog.ResourceLogs
}
type logRecord plog.LogRecord
func (l logRecord) MarshalLogObject(encoder zapcore.ObjectEncoder) error {
lr := plog.LogRecord(l)
spanID := lr.SpanID()
traceID := lr.TraceID()
err := encoder.AddObject("attributes", logging.Map(lr.Attributes()))
encoder.AddString("body", lr.Body().AsString())
encoder.AddUint32("dropped_attribute_count", lr.DroppedAttributesCount())
encoder.AddUint32("flags", uint32(lr.Flags()))
encoder.AddUint64("observed_time_unix_nano", uint64(lr.ObservedTimestamp()))
encoder.AddInt32("severity_number", int32(lr.SeverityNumber()))
encoder.AddString("severity_text", lr.SeverityText())
encoder.AddString("span_id", hex.EncodeToString(spanID[:]))
encoder.AddUint64("time_unix_nano", uint64(lr.Timestamp()))
encoder.AddString("trace_id", hex.EncodeToString(traceID[:]))
return err
}
func (tCtx TransformContext) MarshalLogObject(encoder zapcore.ObjectEncoder) error {
err := encoder.AddObject("resource", logging.Resource(tCtx.resource))
err = errors.Join(err, encoder.AddObject("scope", logging.InstrumentationScope(tCtx.instrumentationScope)))
err = errors.Join(err, encoder.AddObject("log_record", logRecord(tCtx.logRecord)))
err = errors.Join(err, encoder.AddObject("cache", logging.Map(tCtx.cache)))
return err
}
type Option func(*ottl.Parser[TransformContext])
func NewTransformContext(logRecord plog.LogRecord, instrumentationScope pcommon.InstrumentationScope, resource pcommon.Resource, scopeLogs plog.ScopeLogs, resourceLogs plog.ResourceLogs) TransformContext {
return TransformContext{
logRecord: logRecord,
instrumentationScope: instrumentationScope,
resource: resource,
cache: pcommon.NewMap(),
scopeLogs: scopeLogs,
resourceLogs: resourceLogs,
}
}
func (tCtx TransformContext) GetLogRecord() plog.LogRecord {
return tCtx.logRecord
}
func (tCtx TransformContext) GetInstrumentationScope() pcommon.InstrumentationScope {
return tCtx.instrumentationScope
}
func (tCtx TransformContext) GetResource() pcommon.Resource {
return tCtx.resource
}
func (tCtx TransformContext) getCache() pcommon.Map {
return tCtx.cache
}
func (tCtx TransformContext) GetScopeSchemaURLItem() internal.SchemaURLItem {
return tCtx.scopeLogs
}
func (tCtx TransformContext) GetResourceSchemaURLItem() internal.SchemaURLItem {
return tCtx.resourceLogs
}
func NewParser(functions map[string]ottl.Factory[TransformContext], telemetrySettings component.TelemetrySettings, options ...Option) (ottl.Parser[TransformContext], error) {
pep := pathExpressionParser{telemetrySettings}
p, err := ottl.NewParser[TransformContext](
functions,
pep.parsePath,
telemetrySettings,
ottl.WithEnumParser[TransformContext](parseEnum),
)
if err != nil {
return ottl.Parser[TransformContext]{}, err
}
for _, opt := range options {
opt(&p)
}
return p, nil
}
type StatementSequenceOption func(*ottl.StatementSequence[TransformContext])
func WithStatementSequenceErrorMode(errorMode ottl.ErrorMode) StatementSequenceOption {
return func(s *ottl.StatementSequence[TransformContext]) {
ottl.WithStatementSequenceErrorMode[TransformContext](errorMode)(s)
}
}
func NewStatementSequence(statements []*ottl.Statement[TransformContext], telemetrySettings component.TelemetrySettings, options ...StatementSequenceOption) ottl.StatementSequence[TransformContext] {
s := ottl.NewStatementSequence(statements, telemetrySettings)
for _, op := range options {
op(&s)
}
return s
}
type ConditionSequenceOption func(*ottl.ConditionSequence[TransformContext])
func WithConditionSequenceErrorMode(errorMode ottl.ErrorMode) ConditionSequenceOption {
return func(c *ottl.ConditionSequence[TransformContext]) {
ottl.WithConditionSequenceErrorMode[TransformContext](errorMode)(c)
}
}
func NewConditionSequence(conditions []*ottl.Condition[TransformContext], telemetrySettings component.TelemetrySettings, options ...ConditionSequenceOption) ottl.ConditionSequence[TransformContext] {
c := ottl.NewConditionSequence(conditions, telemetrySettings)
for _, op := range options {
op(&c)
}
return c
}
var symbolTable = map[ottl.EnumSymbol]ottl.Enum{
"SEVERITY_NUMBER_UNSPECIFIED": ottl.Enum(plog.SeverityNumberUnspecified),
"SEVERITY_NUMBER_TRACE": ottl.Enum(plog.SeverityNumberTrace),
"SEVERITY_NUMBER_TRACE2": ottl.Enum(plog.SeverityNumberTrace2),
"SEVERITY_NUMBER_TRACE3": ottl.Enum(plog.SeverityNumberTrace3),
"SEVERITY_NUMBER_TRACE4": ottl.Enum(plog.SeverityNumberTrace4),
"SEVERITY_NUMBER_DEBUG": ottl.Enum(plog.SeverityNumberDebug),
"SEVERITY_NUMBER_DEBUG2": ottl.Enum(plog.SeverityNumberDebug2),
"SEVERITY_NUMBER_DEBUG3": ottl.Enum(plog.SeverityNumberDebug3),
"SEVERITY_NUMBER_DEBUG4": ottl.Enum(plog.SeverityNumberDebug4),
"SEVERITY_NUMBER_INFO": ottl.Enum(plog.SeverityNumberInfo),
"SEVERITY_NUMBER_INFO2": ottl.Enum(plog.SeverityNumberInfo2),
"SEVERITY_NUMBER_INFO3": ottl.Enum(plog.SeverityNumberInfo3),
"SEVERITY_NUMBER_INFO4": ottl.Enum(plog.SeverityNumberInfo4),
"SEVERITY_NUMBER_WARN": ottl.Enum(plog.SeverityNumberWarn),
"SEVERITY_NUMBER_WARN2": ottl.Enum(plog.SeverityNumberWarn2),
"SEVERITY_NUMBER_WARN3": ottl.Enum(plog.SeverityNumberWarn3),
"SEVERITY_NUMBER_WARN4": ottl.Enum(plog.SeverityNumberWarn4),
"SEVERITY_NUMBER_ERROR": ottl.Enum(plog.SeverityNumberError),
"SEVERITY_NUMBER_ERROR2": ottl.Enum(plog.SeverityNumberError2),
"SEVERITY_NUMBER_ERROR3": ottl.Enum(plog.SeverityNumberError3),
"SEVERITY_NUMBER_ERROR4": ottl.Enum(plog.SeverityNumberError4),
"SEVERITY_NUMBER_FATAL": ottl.Enum(plog.SeverityNumberFatal),
"SEVERITY_NUMBER_FATAL2": ottl.Enum(plog.SeverityNumberFatal2),
"SEVERITY_NUMBER_FATAL3": ottl.Enum(plog.SeverityNumberFatal3),
"SEVERITY_NUMBER_FATAL4": ottl.Enum(plog.SeverityNumberFatal4),
}
func parseEnum(val *ottl.EnumSymbol) (*ottl.Enum, error) {
if val != nil {
if enum, ok := symbolTable[*val]; ok {
return &enum, nil
}
return nil, fmt.Errorf("enum symbol, %s, not found", *val)
}
return nil, fmt.Errorf("enum symbol not provided")
}
type pathExpressionParser struct {
telemetrySettings component.TelemetrySettings
}
func (pep *pathExpressionParser) parsePath(path ottl.Path[TransformContext]) (ottl.GetSetter[TransformContext], error) {
if path == nil {
return nil, fmt.Errorf("path cannot be nil")
}
switch path.Name() {
case "cache":
if path.Keys() == nil {
return accessCache(), nil
}
return accessCacheKey(path.Keys()), nil
case "resource":
return internal.ResourcePathGetSetter[TransformContext](path.Next())
case "instrumentation_scope":
return internal.ScopePathGetSetter[TransformContext](path.Next())
case "time_unix_nano":
return accessTimeUnixNano(), nil
case "observed_time_unix_nano":
return accessObservedTimeUnixNano(), nil
case "time":
return accessTime(), nil
case "observed_time":
return accessObservedTime(), nil
case "severity_number":
return accessSeverityNumber(), nil
case "severity_text":
return accessSeverityText(), nil
case "body":
nextPath := path.Next()
if nextPath != nil {
if nextPath.Name() == "string" {
return accessStringBody(), nil
}
return nil, internal.FormatDefaultErrorMessage(nextPath.Name(), nextPath.String(), contextName, internal.LogRef)
}
if path.Keys() == nil {
return accessBody(), nil
}
return accessBodyKey(path.Keys()), nil
case "attributes":
if path.Keys() == nil {
return accessAttributes(), nil
}
return accessAttributesKey(path.Keys()), nil
case "dropped_attributes_count":
return accessDroppedAttributesCount(), nil
case "flags":
return accessFlags(), nil
case "trace_id":
nextPath := path.Next()
if nextPath != nil {
if nextPath.Name() == "string" {
return accessStringTraceID(), nil
}
return nil, internal.FormatDefaultErrorMessage(nextPath.Name(), nextPath.String(), contextName, internal.LogRef)
}
return accessTraceID(), nil
case "span_id":
nextPath := path.Next()
if nextPath != nil {
if nextPath.Name() == "string" {
return accessStringSpanID(), nil
}
return nil, internal.FormatDefaultErrorMessage(nextPath.Name(), path.String(), contextName, internal.LogRef)
}
return accessSpanID(), nil
default:
return nil, internal.FormatDefaultErrorMessage(path.Name(), path.String(), contextName, internal.LogRef)
}
}
func accessCache() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.getCache(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if m, ok := val.(pcommon.Map); ok {
m.CopyTo(tCtx.getCache())
}
return nil
},
}
}
func accessCacheKey(key []ottl.Key[TransformContext]) ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(ctx context.Context, tCtx TransformContext) (any, error) {
return internal.GetMapValue[TransformContext](ctx, tCtx, tCtx.getCache(), key)
},
Setter: func(ctx context.Context, tCtx TransformContext, val any) error {
return internal.SetMapValue[TransformContext](ctx, tCtx, tCtx.getCache(), key, val)
},
}
}
func accessTimeUnixNano() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().Timestamp().AsTime().UnixNano(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(int64); ok {
tCtx.GetLogRecord().SetTimestamp(pcommon.NewTimestampFromTime(time.Unix(0, i)))
}
return nil
},
}
}
func accessObservedTimeUnixNano() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().ObservedTimestamp().AsTime().UnixNano(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(int64); ok {
tCtx.GetLogRecord().SetObservedTimestamp(pcommon.NewTimestampFromTime(time.Unix(0, i)))
}
return nil
},
}
}
func accessTime() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().Timestamp().AsTime(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(time.Time); ok {
tCtx.GetLogRecord().SetTimestamp(pcommon.NewTimestampFromTime(i))
}
return nil
},
}
}
func accessObservedTime() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().ObservedTimestamp().AsTime(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(time.Time); ok {
tCtx.GetLogRecord().SetObservedTimestamp(pcommon.NewTimestampFromTime(i))
}
return nil
},
}
}
func accessSeverityNumber() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return int64(tCtx.GetLogRecord().SeverityNumber()), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(int64); ok {
tCtx.GetLogRecord().SetSeverityNumber(plog.SeverityNumber(i))
}
return nil
},
}
}
func accessSeverityText() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().SeverityText(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if s, ok := val.(string); ok {
tCtx.GetLogRecord().SetSeverityText(s)
}
return nil
},
}
}
func accessBody() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return common.GetValue(tCtx.GetLogRecord().Body()), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
return internal.SetValue(tCtx.GetLogRecord().Body(), val)
},
}
}
func accessBodyKey(key []ottl.Key[TransformContext]) ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(ctx context.Context, tCtx TransformContext) (any, error) {
body := tCtx.GetLogRecord().Body()
switch body.Type() {
case pcommon.ValueTypeMap:
return internal.GetMapValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Body().Map(), key)
case pcommon.ValueTypeSlice:
return internal.GetSliceValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Body().Slice(), key)
default:
return nil, fmt.Errorf("log bodies of type %s cannot be indexed", body.Type().String())
}
},
Setter: func(ctx context.Context, tCtx TransformContext, val any) error {
body := tCtx.GetLogRecord().Body()
switch body.Type() {
case pcommon.ValueTypeMap:
return internal.SetMapValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Body().Map(), key, val)
case pcommon.ValueTypeSlice:
return internal.SetSliceValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Body().Slice(), key, val)
default:
return fmt.Errorf("log bodies of type %s cannot be indexed", body.Type().String())
}
},
}
}
func accessStringBody() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().Body().AsString(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if str, ok := val.(string); ok {
tCtx.GetLogRecord().Body().SetStr(str)
}
return nil
},
}
}
func accessAttributes() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().Attributes(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if attrs, ok := val.(pcommon.Map); ok {
attrs.CopyTo(tCtx.GetLogRecord().Attributes())
}
return nil
},
}
}
func accessAttributesKey(key []ottl.Key[TransformContext]) ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(ctx context.Context, tCtx TransformContext) (any, error) {
return internal.GetMapValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Attributes(), key)
},
Setter: func(ctx context.Context, tCtx TransformContext, val any) error {
return internal.SetMapValue[TransformContext](ctx, tCtx, tCtx.GetLogRecord().Attributes(), key, val)
},
}
}
func accessDroppedAttributesCount() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return int64(tCtx.GetLogRecord().DroppedAttributesCount()), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(int64); ok {
tCtx.GetLogRecord().SetDroppedAttributesCount(uint32(i))
}
return nil
},
}
}
func accessFlags() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return int64(tCtx.GetLogRecord().Flags()), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if i, ok := val.(int64); ok {
tCtx.GetLogRecord().SetFlags(plog.LogRecordFlags(i))
}
return nil
},
}
}
func accessTraceID() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().TraceID(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if newTraceID, ok := val.(pcommon.TraceID); ok {
tCtx.GetLogRecord().SetTraceID(newTraceID)
}
return nil
},
}
}
func accessStringTraceID() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
id := tCtx.GetLogRecord().TraceID()
return hex.EncodeToString(id[:]), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if str, ok := val.(string); ok {
id, err := internal.ParseTraceID(str)
if err != nil {
return err
}
tCtx.GetLogRecord().SetTraceID(id)
}
return nil
},
}
}
func accessSpanID() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
return tCtx.GetLogRecord().SpanID(), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if newSpanID, ok := val.(pcommon.SpanID); ok {
tCtx.GetLogRecord().SetSpanID(newSpanID)
}
return nil
},
}
}
func accessStringSpanID() ottl.StandardGetSetter[TransformContext] {
return ottl.StandardGetSetter[TransformContext]{
Getter: func(_ context.Context, tCtx TransformContext) (any, error) {
id := tCtx.GetLogRecord().SpanID()
return hex.EncodeToString(id[:]), nil
},
Setter: func(_ context.Context, tCtx TransformContext, val any) error {
if str, ok := val.(string); ok {
id, err := internal.ParseSpanID(str)
if err != nil {
return err
}
tCtx.GetLogRecord().SetSpanID(id)
}
return nil
},
}
}