-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[kafkareceiver] add support for otlp_json which accepts json formated for Otel Collector kafka receiver #33627
Comments
Is this about the |
hey, thanks your response, yes it's about the receiver/kafka in the collector |
Pinging code owners for receiver/kafka: @pavolloffay @MovieStoreGuy. See Adding Labels via Comments if you do not have permissions to add labels yourself. |
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 Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
) **Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.-->The current features dont support otlp_json in receivers/kafkareceivers. Add support for otlp_json which accepts json formated for Otel Collector kafka receiver **Link to tracking Issue:** <Issue number if applicable> #33627 **Testing:** <Describe what testing was performed and which tests were added.> Added test files for the same. **Documentation:** <Describe the documentation added.> --------- Signed-off-by: joeyyy09 <[email protected]> Co-authored-by: Ziqi Zhao <[email protected]> Co-authored-by: Yuri Shkuro <[email protected]>
Implemented with #34840 closing |
…n-telemetry#34840) **Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.-->The current features dont support otlp_json in receivers/kafkareceivers. Add support for otlp_json which accepts json formated for Otel Collector kafka receiver **Link to tracking Issue:** <Issue number if applicable> open-telemetry#33627 **Testing:** <Describe what testing was performed and which tests were added.> Added test files for the same. **Documentation:** <Describe the documentation added.> --------- Signed-off-by: joeyyy09 <[email protected]> Co-authored-by: Ziqi Zhao <[email protected]> Co-authored-by: Yuri Shkuro <[email protected]>
Component(s)
receiver/kafka
Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
add support for otlp_json which accepts json formatted oltp data same as http/json in otel collector (Receiver)
const otelresourcespans = {
"resourceSpans": [
{
"resource": {
"attributes": [
{
key: 'service.name',
value: { stringValue: 'serviceName' }
}
]
},
"scopeSpans": [
{
"scope": {
"name": "my.library",
"version": "1.0.0",
"attributes": [
{
"key": "my.scope.attribute",
"value": {
"stringValue": "some scope attribute"
}
}
]
},
"spans": []
}
]
}
]
};
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: