[TT-16342] revert: undo incorrect OTel scenario update (PR #8041)#8047
[TT-16342] revert: undo incorrect OTel scenario update (PR #8041)#8047buger merged 1 commit intorelease-5.12from
Conversation
Reverts the OTel test scenario changes from PR #8041. The release-5.12 branch uses otelhttp v0.49.0 which emits OLD semantic convention attribute names (http.method, http.status_code, etc.). The scenarios were incorrectly updated to expect NEW names (http.request.method, http.response.status_code, etc.) which the gateway does not emit. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
🚨 Jira Linter FailedCommit: The Jira linter failed to validate your PR. Please check the error details below: 🔍 Click to view error detailsNext Steps
This comment will be automatically deleted once the linter passes. |
|
This pull request reverts PR #8041, which incorrectly updated OpenTelemetry (OTel) test scenarios with attribute names that are not compatible with the The Files Changed Analysis
Architecture & Impact Assessment
Scope Discovery & Context Expansion
Metadata
Powered by Visor from Probelabs Last updated: 2026-04-16T15:57:38.898Z | Triggered by: pr_opened | Commit: e5bc04f 💡 TIP: You can chat with Visor using |
|
API Changes no api changes detected |
✅ Security Check PassedNo security issues found – changes LGTM. ✅ Security Check PassedNo security issues found – changes LGTM. \n\n \n\n✅ Performance Check PassedNo performance issues found – changes LGTM. Powered by Visor from Probelabs Last updated: 2026-04-16T15:57:16.721Z | Triggered by: pr_opened | Commit: e5bc04f 💡 TIP: You can chat with Visor using |
|
Closing: Go 1.25 updated the OTel HTTP instrumentation library on release-5.12.1, so scenarios need the NEW-style attribute names (e.g. |
Summary
Reverts PR #8041 which incorrectly updated OTel test scenarios to use NEW attribute names on release-5.12.
release-5.12 uses otelhttp v0.49.0 (pinned via go.mod replace), which emits OLD names:
http.method(nothttp.request.method)http.status_code(nothttp.response.status_code)http.user_agent(notuser_agent.original)http.wrote_bytes(nothttp.response.body.size)The scenario update was only correct for master (otelhttp v0.65.0).
🤖 Generated with Claude Code