-
-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
even more xml docs, nullability change in OT, parameter rename in Per…
…sistence (#1699)
- Loading branch information
1 parent
9017e6e
commit e15c9f4
Showing
11 changed files
with
241 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,40 @@ | ||
namespace Proto.OpenTelemetry; | ||
using System.Diagnostics; | ||
|
||
namespace Proto.OpenTelemetry; | ||
|
||
/// <summary> | ||
/// Proto.actor specific tags on the <see cref="Activity"/> | ||
/// </summary> | ||
public static class ProtoTags | ||
{ | ||
/// <summary> | ||
/// Activity source name for Proto.Actor created activities | ||
/// </summary> | ||
public const string ActivitySourceName = "Proto.Actor"; | ||
|
||
/// <summary> | ||
/// GetType().Name on the message | ||
/// GetType().Name on the message | ||
/// </summary> | ||
public const string MessageType = "proto.messagetype"; | ||
|
||
/// <summary> | ||
/// Message destination | ||
/// Message destination PID string representation | ||
/// </summary> | ||
public const string TargetPID = "proto.targetpid"; | ||
|
||
/// <summary> | ||
/// Message origin | ||
/// Message sender PID string representation | ||
/// </summary> | ||
public const string SenderPID = "proto.senderpid"; | ||
|
||
/// <summary> | ||
/// Current actor PID, when applicable (equals TargetPID when this is a receive activity, or SenderId when this is a | ||
/// sending activity) | ||
/// Current actor PID string representation, when applicable (equals TargetPID when this is a receive activity, or SenderId when this is a | ||
/// sending activity) | ||
/// </summary> | ||
public const string ActorPID = "proto.actorpid"; | ||
|
||
/// <summary> | ||
/// Type of the current actor, when applicable | ||
/// Type of the current actor, when applicable | ||
/// </summary> | ||
public const string ActorType = "proto.actortype"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.