Skip to content

Commit 51f58a6

Browse files
committed
update comment
1 parent fc247e1 commit 51f58a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AspNetCore.SignalR.OpenTelemetry/Internal/HubActivitySource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal static class HubActivitySource
1212

1313
internal static Activity? StartInvocationActivity(string hubName, string methodName, string? address)
1414
{
15-
// https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/rpc/rpc-spans.md#span-name
15+
// https://github.com/open-telemetry/semantic-conventions/blob/v1.25.0/docs/rpc/rpc-spans.md#span-name
1616
var activity = ActivitySource.CreateActivity($"{hubName}/{methodName}", ActivityKind.Server);
1717

1818
// Activity.IsAllDataRequested is same as TelemetrySpan.IsRecording in OpenTelemetry API.
@@ -23,7 +23,7 @@ internal static class HubActivitySource
2323
return null;
2424
}
2525

26-
// https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/rpc/rpc-spans.md#common-attributes
26+
// https://github.com/open-telemetry/semantic-conventions/blob/v1.25.0/docs/rpc/rpc-spans.md#common-attributes
2727
activity.SetTag("rpc.system", "signalr");
2828
activity.SetTag("rpc.service", hubName);
2929
activity.SetTag("rpc.method", methodName);

0 commit comments

Comments
 (0)