diff --git a/Directory.Packages.props b/Directory.Packages.props
index a6cb912b8f..2441fa2a52 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -17,12 +17,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
@@ -56,12 +56,12 @@
-
-
+
+
-
+
-
+
diff --git a/src/Proto.Actor/Context/ActorContext.cs b/src/Proto.Actor/Context/ActorContext.cs
index 295dab4a45..0ac638e382 100644
--- a/src/Proto.Actor/Context/ActorContext.cs
+++ b/src/Proto.Actor/Context/ActorContext.cs
@@ -52,8 +52,9 @@ private ActorContext(ActorSystem system, Props props, PID? parent, PID self, IMa
Self = self;
Actor = IncarnateActor();
- using var publishActivity = ActorSystem.ActivitySource.StartActivity($"Spawn {self} {Actor.GetType().Name}");
+ using var publishActivity = ActorSystem.ActivitySource.StartActivity($"Spawn {Actor.GetType().Name}");
publishActivity?.AddTag(ProtoTags.ActorType, Actor.GetType().Name);
+ publishActivity?.AddTag(ProtoTags.ActorPID, self);
publishActivity?.AddTag(ProtoTags.ActionType, "Spawn");
if (System.Metrics.Enabled)