perf(http): add route to span name
This commit is contained in:
parent
f96a636780
commit
2a0cf298f4
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@tachybase/opentelemetry-instrumentation-http",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@tachybase/opentelemetry-instrumentation-http",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@opentelemetry/core": "1.25.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tachybase/opentelemetry-instrumentation-http",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "OpenTelemetry instrumentation for `node:http` and `node:https` http client and server modules for TachyBase",
|
||||
"author": "TachyBase Team",
|
||||
"homepage": "https://git.daoyoucloud.com/TomyJan/opentelemetry-auto-instrumentations/plugins/node/opentelemetry-instrumentation-http",
|
||||
|
@ -774,7 +774,12 @@ export class HttpInstrumentation extends InstrumentationBase<HttpInstrumentation
|
||||
* propagate context without recording it.
|
||||
*/
|
||||
// 修改 name 加上具体的 route
|
||||
name = `${name} ${options.attributes?.[SEMATTRS_HTTP_ROUTE] ?? ''}`;
|
||||
name = `${name} ${options.attributes?.[SEMATTRS_HTTP_ROUTE] ?? options.attributes?.['http.target'] ?? ''}`;
|
||||
// 删除 url 中的 query
|
||||
const queryIndex = name.indexOf('?');
|
||||
if (queryIndex !== -1) {
|
||||
name = name.slice(0, queryIndex);
|
||||
}
|
||||
const requireParent =
|
||||
options.kind === SpanKind.CLIENT
|
||||
? this.getConfig().requireParentforOutgoingSpans
|
||||
|
Loading…
Reference in New Issue
Block a user