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

aiokafka instrumentation #3368

Open
elghali opened this issue Mar 17, 2025 · 3 comments
Open

aiokafka instrumentation #3368

elghali opened this issue Mar 17, 2025 · 3 comments
Labels
bug Something isn't working

Comments

@elghali
Copy link

elghali commented Mar 17, 2025

Describe your environment

OS: windows + docker
Python version: (e.g., Python 3.11)
Package version: opentelemetry-instrumentation-aiokafka~=0.52b0
aiokafka~=0.12.0

What happened?

Exception:
AIOKafkaProducer.send() got multiple values for argument 'headers'

Steps to Reproduce

Using opentelemetry-instrumentation-aiokafka~=0.52b0,
from opentelemetry.instrumentation.aiokafka import AIOKafkaInstrumentor

Instrument kafka

AIOKafkaInstrumentor().instrument()

and
await producer.send_and_wait(RESULTS_TOPIC, key=correlation_id, value=result_event.encode('utf-8'),)

Expected Result

Send event

Actual Result

Exception:
AIOKafkaProducer.send() got multiple values for argument 'headers'

Additional context

No response

Would you like to implement a fix?

None

@elghali elghali added the bug Something isn't working label Mar 17, 2025
@fcfangcc
Copy link

fcfangcc commented Mar 18, 2025

#3332 I am trying to fix this bug and waiting for merge. Perhaps someone can improve the PR

@elghali headers=[] can skip this bug

await producer.send_and_wait(RESULTS_TOPIC, key=correlation_id, value=result_event.encode('utf-8'),headers=[])

@elghali
Copy link
Author

elghali commented Mar 18, 2025

@fcfangcc thank you for the tip, however does this affect the traces collecting?

@fcfangcc
Copy link

@fcfangcc thank you for the tip, however does this affect the traces collecting?

It won't affect the traces collecting. This usage is just to avoid triggering a logical bug in the instrumentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants