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

testbed not working with transform processor in config #33193

Open
swamisriman opened this issue May 22, 2024 · 13 comments · May be fixed by #34949
Open

testbed not working with transform processor in config #33193

swamisriman opened this issue May 22, 2024 · 13 comments · May be fixed by #34949
Labels
bug Something isn't working help wanted Extra attention is needed needs triage New item requiring triage testbed

Comments

@swamisriman
Copy link

swamisriman commented May 22, 2024

Component(s)

testbed

What happened?

Description

When we use a test configuration with transform processor, the test case is failing.

Steps to Reproduce

Create a test with transform processor.
Say, in tests/resource_processor_test.go/TestMetricResourceProcessor(...) we add a new transform processor.
Now it looks like this

processors := map[string]string{
				"resource":  test.resourceProcessorConfig,
				"transform": "\n  transform:\n",
			}

Run the test

Expected Result

Test should pass.
Because, the transform processor doesn't do anything (it's empty).

Actual Result

Test case failing with the following error

2024/05/22 23:48:51 Time out waiting for LoadGenerator isn't ready
    test_case.go:289: Time out waiting for LoadGenerator isn't ready
    resource_processor_test.go:153: 
                Error Trace:    /Users/<username>/Downloads/otelcol_test_temp/opentelemetry-collector-contrib/testbed/tests/resource_processor_test.go:153
                Error:          Received unexpected error:
                                rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:60360: connect: connection refused"
                Test:           TestMetricResourceProcessor/set_attribute_on_empty_resource
2024/05/22 23:48:51 Gracefully terminating Agent pid=4557, sending SIGTEM...

Collector version

v0.100.0

Environment information

Environment

OS: Mac OS Sonoma Version 14.5 (23F79)
Compiler(if manually compiled): go version go1.22.3 darwin/arm64

PS: I'm not sure what if manually compiled means.
I ran the test with the command TESTS_DIR=tests make e2e-test

OpenTelemetry Collector configuration

(taken from configStr here)

receivers:
  otlp:
    protocols:
      grpc:
        endpoint: "127.0.0.1:60989"
exporters:
  otlp:
    endpoint: "127.0.0.1:60990"
    
    
    tls:
      insecure: true
    compression: "none"
processors:
  
  transform:


  resource:
    attributes:
    - key: label-key
      value: new-label-value
      action: update
    - key: resource-type
      from_attribute: opencensus.resourcetype
      action: upsert
    - key: opencensus.resourcetype
      action: delete



extensions:
  pprof:
    save_to_file: /Users/<username>/Downloads/otelcol_test_temp/opentelemetry-collector-contrib/testbed/tests/results/TestMetricResourceProcessor/update_and_rename_existing_attributes/cpu.prof
  

service:
  extensions: [pprof, ]
  pipelines:
    metrics:
      receivers: [otlp]
      processors: [transform,resource]
      exporters: [otlp]

Log output

(testbed/tests/results/TestMetricResourceProcessor/set_attribute_on_empty_resource/agent.log)

Error: failed to get config: cannot unmarshal the configuration: 1 error(s) decoding:

* error decoding 'processors': unknown type: "transform" for id: "transform" (valid values: [attributes resource batch memory_limiter])
2024/05/23 20:40:13 collector server run finished with error: failed to get config: cannot unmarshal the configuration: 1 error(s) decoding:

* error decoding 'processors': unknown type: "transform" for id: "transform" (valid values: [attributes resource batch memory_limiter])

Additional context

We use a collector config with a series of different processors that do different operations on incoming data.
I am trying to have inputs and expected outputs and test the config if it's doing what is expected.

Can the testbed be used to test the configs with only these processors [attributes resource batch memory_limiter]?
Can't we test other processors?
If not, what is the recommended way to test a pipeline with a series of processors?

@swamisriman swamisriman added bug Something isn't working needs triage New item requiring triage labels May 22, 2024
Copy link
Contributor

Pinging code owners:

  • testbed: @open-telemetry/collector-approvers

See Adding Labels via Comments if you do not have permissions to add labels yourself.

@swamisriman swamisriman changed the title testbed not working with multiple processors in config testbed not working with transform processor in config May 23, 2024
@swamisriman
Copy link
Author

/label help-wanted

@github-actions github-actions bot added the help wanted Extra attention is needed label May 23, 2024
@rogercoll
Copy link
Contributor

@swamisriman I would say that this error is expected as the "transform" processor is not included within the generated collector used in the testbed tests. List of included processors: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/cmd/oteltestbedcol/builder-config.yaml#L28

@swamisriman
Copy link
Author

swamisriman commented May 25, 2024

@rogercoll
Is there any way we can test other processors too?
Or is it possible to include these processors in the list you shared?

Update:
When I added factory for the other processors, it seems to work: e41ef2b

Thanks @rogercoll !

@rogercoll
Copy link
Contributor

Is there any way we can test other processors too?
Or is it possible to include these processors in the list you shared?

Yes, you could add them in the testbed collector factory and add a specific test file for those processors. For example, like the resource attributes one: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/testbed/tests/resource_processor_test.go

I would suggest opening an issue first for each processor you want to add, explaining the reasoning behind and what the test is going to assert.

@swamisriman
Copy link
Author

swamisriman commented May 28, 2024

@rogercoll
When I added factory for the other processors like this, it seems to work: e41ef2b

what the test is going to assert

I believe each end-user will have their own assertions.
But what I mean is that we should enable users to test any processor (and hence add factories of all processors to components.go)

So that, users can just test their own config using any processor and write a custom test case similar to resource_processor_test.go

@swamisriman
Copy link
Author

Hi @rogercoll
Are you testbed maintainer?
If yes, what's your opinion on enabling this? I can raise a PR if interested.

@rogercoll
Copy link
Contributor

Are you testbed maintainer?
If yes, what's your opinion on enabling this? I can raise a PR if interested.

No, I am not a maintainer, but feel free to raise a PR. I would not add all the components to the testbed binary, instead, I would just add the ones that are actually being tested in testbed.

@swamisriman
Copy link
Author

@rogercoll
Curious, what is the intended usage of testbed?
Is that supposed to be used by end-users? or only by the component builders(receivers, processors and exporters) to make sure that they are working?

Copy link
Contributor

This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping @open-telemetry/collector-contrib-triagers. If this issue is still relevant, please ping the code owners or leave a comment explaining why it is still relevant. Otherwise, please close it.

Pinging code owners:

  • testbed: @open-telemetry/collector-approvers

See Adding Labels via Comments if you do not have permissions to add labels yourself.

@swamisriman
Copy link
Author

-Stale
-help-wanted

@swamisriman
Copy link
Author

This issue is still relevant because,
we should enable users to test any processor (and hence add factories of all processors to components.go)

So that, users can just test their own config using any processor and write a custom test case similar to resource_processor_test.go

@github-actions github-actions bot removed the Stale label Aug 28, 2024
@swamisriman
Copy link
Author

-help wanted

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed needs triage New item requiring triage testbed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants