You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SignalR/server/Core/src/Internal/DefaultHubDispatcher.cs
+31-24Lines changed: 31 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -848,33 +848,40 @@ public override IReadOnlyList<Type> GetParameterTypes(string methodName)
848
848
IEnumerable<KeyValuePair<string,object?>>tags=
849
849
[
850
850
new("rpc.method",methodName),
851
-
new("rpc.system","signalr"),
852
-
new("rpc.service",_fullHubName),
853
-
// See https://github.com/dotnet/aspnetcore/blob/027c60168383421750f01e427e4f749d0684bc02/src/Servers/Kestrel/Core/src/Internal/Infrastructure/KestrelMetrics.cs#L308
854
-
// And https://github.com/dotnet/aspnetcore/issues/43786
855
-
//new("server.address", ...),
856
-
];
851
+
new("rpc.system","signalr"),
852
+
new("rpc.service",_fullHubName),
853
+
// See https://github.com/dotnet/aspnetcore/blob/027c60168383421750f01e427e4f749d0684bc02/src/Servers/Kestrel/Core/src/Internal/Infrastructure/KestrelMetrics.cs#L308
854
+
// And https://github.com/dotnet/aspnetcore/issues/43786
855
+
//new("server.address", ...),
856
+
];
857
857
IEnumerable<ActivityLink>?links=(linkedActivityis not null)?[newActivityLink(linkedActivity.Context)]:null;
0 commit comments