This repository has been archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add trace attributes and parser (trace_id, span_id and trace_flags)
- Loading branch information
1 parent
0356f77
commit 2401f6d
Showing
8 changed files
with
483 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package trace | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/open-telemetry/opentelemetry-log-collection/entry" | ||
"github.com/open-telemetry/opentelemetry-log-collection/operator" | ||
"github.com/open-telemetry/opentelemetry-log-collection/operator/helper" | ||
) | ||
|
||
func init() { | ||
operator.Register("trace_parser", func() operator.Builder { return NewTraceParserConfig("") }) | ||
} | ||
|
||
// NewTraceParserConfig creates a new trace parser config with default values | ||
func NewTraceParserConfig(operatorID string) *TraceParserConfig { | ||
return &TraceParserConfig{ | ||
TransformerConfig: helper.NewTransformerConfig(operatorID, "trace_parser"), | ||
TraceParser: helper.NewTraceParser(), | ||
} | ||
} | ||
|
||
// SeverityParserConfig is the configuration of a severity parser operator. | ||
type TraceParserConfig struct { | ||
helper.TransformerConfig `mapstructure:",squash" yaml:",inline"` | ||
helper.TraceParser `mapstructure:",omitempty,squash" yaml:",omitempty,inline"` | ||
} | ||
|
||
// Build will build a time parser operator. | ||
func (c TraceParserConfig) Build(context operator.BuildContext) ([]operator.Operator, error) { | ||
transformerOperator, err := c.TransformerConfig.Build(context) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if err := c.TraceParser.Validate(context); err != nil { | ||
return nil, err | ||
} | ||
|
||
traceOperator := &TraceParserOperator{ | ||
TransformerOperator: transformerOperator, | ||
TraceParser: c.TraceParser, | ||
} | ||
|
||
return []operator.Operator{traceOperator}, nil | ||
} | ||
|
||
// SeverityParserOperator is an operator that parses time from a field to an entry. | ||
type TraceParserOperator struct { | ||
helper.TransformerOperator | ||
helper.TraceParser | ||
} | ||
|
||
// Process will parse time from an entry. | ||
func (p *TraceParserOperator) Process(ctx context.Context, entry *entry.Entry) error { | ||
return p.ProcessWith(ctx, entry, p.Parse) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package trace | ||
|
||
import ( | ||
"encoding/hex" | ||
"testing" | ||
|
||
"github.com/open-telemetry/opentelemetry-log-collection/entry" | ||
"github.com/open-telemetry/opentelemetry-log-collection/testutil" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestDefaultParser(t *testing.T) { | ||
traceParserConfig := NewTraceParserConfig("") | ||
_, err := traceParserConfig.Build(testutil.NewBuildContext(t)) | ||
require.NoError(t, err) | ||
} | ||
|
||
func TestTraceParserParse(t *testing.T) { | ||
cases := []struct { | ||
name string | ||
inputRecord map[string]interface{} | ||
expectedRecord map[string]interface{} | ||
expectErr bool | ||
traceId string | ||
spanId string | ||
traceFlags string | ||
}{ | ||
{ | ||
"AllFields", | ||
map[string]interface{}{ | ||
"trace_id": "480140f3d770a5ae32f0a22b6a812cff", | ||
"span_id": "92c3792d54ba94f3", | ||
"trace_flags": "01", | ||
}, | ||
map[string]interface{}{}, | ||
false, | ||
"480140f3d770a5ae32f0a22b6a812cff", | ||
"92c3792d54ba94f3", | ||
"01", | ||
}, | ||
{ | ||
"WrongFields", | ||
map[string]interface{}{ | ||
"traceId": "480140f3d770a5ae32f0a22b6a812cff", | ||
"traceFlags": "01", | ||
"spanId": "92c3792d54ba94f3", | ||
}, | ||
map[string]interface{}{ | ||
"traceId": "480140f3d770a5ae32f0a22b6a812cff", | ||
"spanId": "92c3792d54ba94f3", | ||
"traceFlags": "01", | ||
}, | ||
false, | ||
"", | ||
"", | ||
"", | ||
}, | ||
{ | ||
"OnlyTraceId", | ||
map[string]interface{}{ | ||
"trace_id": "480140f3d770a5ae32f0a22b6a812cff", | ||
}, | ||
map[string]interface{}{}, | ||
false, | ||
"480140f3d770a5ae32f0a22b6a812cff", | ||
"", | ||
"", | ||
}, | ||
{ | ||
"WrongTraceIdFormat", | ||
map[string]interface{}{ | ||
"trace_id": "foo_bar", | ||
"span_id": "92c3792d54ba94f3", | ||
"trace_flags": "01", | ||
}, | ||
map[string]interface{}{}, | ||
true, | ||
"", | ||
"92c3792d54ba94f3", | ||
"01", | ||
}, | ||
{ | ||
"WrongTraceFlagFormat", | ||
map[string]interface{}{ | ||
"trace_id": "480140f3d770a5ae32f0a22b6a812cff", | ||
"span_id": "92c3792d54ba94f3", | ||
"trace_flags": "foo_bar", | ||
}, | ||
map[string]interface{}{}, | ||
true, | ||
"480140f3d770a5ae32f0a22b6a812cff", | ||
"92c3792d54ba94f3", | ||
"", | ||
}, | ||
{ | ||
"AllFields", | ||
map[string]interface{}{ | ||
"trace_id": "480140f3d770a5ae32f0a22b6a812cff", | ||
"span_id": "92c3792d54ba94f3", | ||
"trace_flags": "01", | ||
}, | ||
map[string]interface{}{}, | ||
false, | ||
"480140f3d770a5ae32f0a22b6a812cff", | ||
"92c3792d54ba94f3", | ||
"01", | ||
}, | ||
} | ||
|
||
for _, tc := range cases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
traceParserConfig := NewTraceParserConfig("") | ||
_, _ = traceParserConfig.Build(testutil.NewBuildContext(t)) | ||
e := entry.New() | ||
e.Record = tc.inputRecord | ||
err := traceParserConfig.Parse(e) | ||
if tc.expectErr { | ||
require.Error(t, err) | ||
} else { | ||
require.NoError(t, err) | ||
} | ||
require.Equal(t, tc.expectedRecord, e.Record) | ||
traceId, _ := hex.DecodeString(tc.traceId) | ||
if len(tc.traceId) == 0 { | ||
traceId = nil | ||
} | ||
spanId, _ := hex.DecodeString(tc.spanId) | ||
if len(tc.spanId) == 0 { | ||
spanId = nil | ||
} | ||
traceFlags, _ := hex.DecodeString(tc.traceFlags) | ||
if len(tc.traceFlags) == 0 { | ||
traceFlags = nil | ||
} | ||
require.Equal(t, traceId, e.TraceId) | ||
require.Equal(t, spanId, e.SpanId) | ||
require.Equal(t, traceFlags, e.TraceFlags) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.