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

Draft: add converter to update batch processor #5387

Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
receivers:
sapm:
include_metadata: true

processors:
batch:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
receivers:
sapm:
include_metadata: false

processors:
batch:
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
receivers:
sapm:


processors:
batch:
send_batch_size: 10000
timeout: 10s

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
receivers:
sapm:
include_metadata: true

processors:
batch:
metadata_keys:
- X-SF-Token

Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// Copyright The OpenTelemetry Authors
asreehari-splunk marked this conversation as resolved.
Show resolved Hide resolved
//
// 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 configconverter

import (
"context"
"fmt"

"go.opentelemetry.io/collector/confmap"
)

func UpdateBatchProcOnTokenPassthrough(_ context.Context, in *confmap.Conf) error {
if in == nil {
return nil
}

out := map[string]any{}

// Check for sapm receiver with include_metadata set to true
if in.IsSet("receivers::sapm::include_metadata") {
if accessTokenPassthrough, ok := in.Get("receivers::sapm::include_metadata").(bool); ok && accessTokenPassthrough {
// Add metadata_keys to batch processor
switch batchProcessor := in.Get("processors::batch").(type) {
case nil:
out["processors::batch"] = map[string]any{
"metadata_keys": []interface{}{"X-SF-Token"},
}
case map[string]interface{}:
batchProcessor["metadata_keys"] = []any{"X-SF-Token"}
out["processors::batch"] = batchProcessor
default:
return fmt.Errorf("unexpected type for processors::batch: %T", batchProcessor)
}
}
}

// Merge the modified configuration back into the original Conf
modifiedConf := confmap.NewFromStringMap(out)
return in.Merge(modifiedConf)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
// Copyright The OpenTelemetry Authors
asreehari-splunk marked this conversation as resolved.
Show resolved Hide resolved
//
// 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 configconverter

import (
"context"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/collector/confmap/confmaptest"
)

func TestUpdateBatchProcOnIncludeMetadata(t *testing.T) {
cfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/agent_config_w_include_metadata.yaml")
require.NotNil(t, cfgMap)
require.NoError(t, err)

expectedCfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/expected_agent_config_w_include_metadata.yaml")
require.NoError(t, err)
require.NotNil(t, cfgMap)

err = UpdateBatchProcOnTokenPassthrough(context.Background(), cfgMap)
require.NoError(t, err)

assert.Equal(t, expectedCfgMap, cfgMap)
}

func TestNoIncludeMetadata(t *testing.T) {
cfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/agent_config_wo_include_metadata.yaml")
require.NotNil(t, cfgMap)
require.NoError(t, err)

expectedCfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/agent_config_wo_include_metadata.yaml")
require.NoError(t, err)
require.NotNil(t, cfgMap)

err = UpdateBatchProcOnTokenPassthrough(context.Background(), cfgMap)
require.NoError(t, err)

assert.Equal(t, expectedCfgMap, cfgMap)
}

func TestIncludeMetadataDisabled(t *testing.T) {
cfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/agent_config_w_include_metadata_disabled.yaml")
require.NotNil(t, cfgMap)
require.NoError(t, err)

expectedCfgMap, err := confmaptest.LoadConf("testdata/include_metadata_on_sapm_token_passthrough/agent_config_w_include_metadata_disabled.yaml")
require.NoError(t, err)
require.NotNil(t, cfgMap)

err = UpdateBatchProcOnTokenPassthrough(context.Background(), cfgMap)
require.NoError(t, err)

assert.Equal(t, expectedCfgMap, cfgMap)
}
1 change: 1 addition & 0 deletions internal/settings/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ func (s *Settings) ConfMapConverterFactories() []confmap.ConverterFactory {
if !s.noConvertConfig {
confMapConverterFactories = append(
confMapConverterFactories,
configconverter.ConverterFactoryFromFunc(configconverter.UpdateBatchProcOnTokenPassthrough),
configconverter.ConverterFactoryFromFunc(configconverter.NormalizeGcp),
configconverter.ConverterFactoryFromFunc(configconverter.DisableKubeletUtilizationMetrics),
configconverter.ConverterFactoryFromFunc(configconverter.DisableExcessiveInternalMetrics),
Expand Down
2 changes: 1 addition & 1 deletion internal/settings/settings_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func TestNewSettingsConvertConfig(t *testing.T) {
require.Equal(t, []string(nil), settings.discoveryProperties)

require.Equal(t, []string{configPath, anotherConfigPath}, settings.ResolverURIs())
require.Equal(t, 6, len(settings.ConfMapConverterFactories()))
require.Equal(t, 7, len(settings.ConfMapConverterFactories()))
require.Equal(t, []string{"--feature-gates", "foo", "--feature-gates", "-bar"}, settings.ColCoreArgs())
}

Expand Down
Loading