We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Our ADOT Collector is receiving this log: { "resourceLogs": [ { "resource": { "attributes": [...] }, "scopeLogs": [ { "scope": { "name": "xxxxxxx" }, "logRecords": [ { "timeUnixNano": "xxx", "observedTimeUnixNano": "xxxx", "severityNumber": 9, "severityText": "Information", "body": { "stringValue": "GET / \r\n" }, "attributes": [...], "traceId": "xxxx", "spanId": "xxxx" } ] } ] } ] }
but in AWS Cloudwatch we are not able to see the field scope.name. We saw from the file exporter.go (https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/exporter/awscloudwatchlogsexporter/exporter.go) that is missing the logic to retrieve the field from line 143-146.
What did you expect to see? We would like to have this field in our cloudwatch logs.
What did you see instead? We cannot see this field in cloudwatch logs
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
I have the same problem
Sorry, something went wrong.
this feature will be released in version 38 - please refer to open-telemetry/opentelemetry-collector-contrib#29884
No branches or pull requests
Describe the bug
Our ADOT Collector is receiving this log:
{
"resourceLogs": [
{
"resource": {
"attributes": [...]
},
"scopeLogs": [
{
"scope": {
"name": "xxxxxxx"
},
"logRecords": [
{
"timeUnixNano": "xxx",
"observedTimeUnixNano": "xxxx",
"severityNumber": 9,
"severityText": "Information",
"body": {
"stringValue": "GET / \r\n"
},
"attributes": [...],
"traceId": "xxxx",
"spanId": "xxxx"
}
]
}
]
}
]
}
but in AWS Cloudwatch we are not able to see the field scope.name. We saw from the file exporter.go (https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/exporter/awscloudwatchlogsexporter/exporter.go) that is missing the logic to retrieve the field from line 143-146.
What did you expect to see?
We would like to have this field in our cloudwatch logs.
What did you see instead?
We cannot see this field in cloudwatch logs
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: