Skip to content

Commit 7b3b244

Browse files
committedSep 11, 2022
asyncpg: Use only the first word from query as a span name
1 parent b00701d commit 7b3b244

File tree

2 files changed

+3
-0
lines changed
  • instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg

2 files changed

+3
-0
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
([#1208](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1208))
1616
- `opentelemetry-instrumentation-aiohttp-client` Fix producing additional spans with each newly created ClientSession
1717
- ([#1246](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1246))
18+
- `opentelemetry-instrumentation-asyncpg` Fix high cardinality in the span name
19+
- ([#1170](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1324))
1820

1921
## [1.12.0-0.33b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0-0.33b0) - 2022-08-08
2022

‎instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ async def _do_execute(self, func, instance, args, kwargs):
133133
exception = None
134134
params = getattr(instance, "_params", {})
135135
name = args[0] if args[0] else params.get("database", "postgresql")
136+
name = name.split()[0]
136137

137138
with self._tracer.start_as_current_span(
138139
name, kind=SpanKind.CLIENT

0 commit comments

Comments
 (0)