Skip to content

Commit 1a26f01

Browse files
authored
opentelemetry: Fix span names (#411)
1 parent 8cfc8cf commit 1a26f01

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/opentelemetry/src/attributes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const kdb = "db.kdb";
1+
const kurrentdb = "db.kurrentdb";
22
const db = "db";
33
const server = "server";
44
const streams = "streams";
@@ -14,8 +14,8 @@ export const KurrentAttributes = {
1414
STREAM_APPEND: `${streams}.append`,
1515
STREAM_SUBSCRIBE: `${streams}.subscribe`,
1616

17-
KURRENT_DB_STREAM: `${kdb}.stream`,
18-
KURRENT_DB_SUBSCRIPTION_ID: `${kdb}.subscription.id`,
19-
KURRENT_DB_EVENT_ID: `${kdb}.event.id`,
20-
KURRENT_DB_EVENT_TYPE: `${kdb}.event.type`,
17+
KURRENT_DB_STREAM: `${kurrentdb}.stream`,
18+
KURRENT_DB_SUBSCRIPTION_ID: `${kurrentdb}.subscription.id`,
19+
KURRENT_DB_EVENT_ID: `${kurrentdb}.event.id`,
20+
KURRENT_DB_EVENT_TYPE: `${kurrentdb}.event.type`,
2121
};

0 commit comments

Comments
 (0)