Skip to content

Commit 96673bc

Browse files
committedNov 11, 2024··
Added HTTP method to span metadata
1 parent f2f96ce commit 96673bc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/app.ts

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import {
2929
isLogLevel,
3030
withContext,
3131
} from '@logtape/logtape';
32+
import { SEMANTIC_ATTRIBUTE_HTTP_REQUEST_METHOD } from '@sentry/core';
3233
import * as Sentry from '@sentry/node';
3334
import { Hono, type Context as HonoContext, type Next } from 'hono';
3435
import { cors } from 'hono/cors';
@@ -361,8 +362,11 @@ app.use(async (ctx, next) => {
361362
{
362363
op: 'http.server',
363364
name: `${ctx.req.method} ${ctx.req.path}`,
365+
364366
attributes: {
365367
...extra,
368+
[SEMANTIC_ATTRIBUTE_HTTP_REQUEST_METHOD]:
369+
ctx.req.method,
366370
'service.name': 'activitypub',
367371
},
368372
},

0 commit comments

Comments
 (0)
Please sign in to comment.