Created
June 27, 2019 20:42
-
-
Save lmolkova/b122090986714780b091da0e3d65e80f to your computer and use it in GitHub Desktop.
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
namespace AI | |
[Description("Link details.")] | |
struct Link | |
{ | |
[Description("A unique identifier for a span within a trace, assigned when the span is created.")] | |
[MaxStringLength("256")] | |
10: required string id; | |
[Description("A unique identifier for a trace. All spans from the same trace share the same traceId.")] | |
[MaxStringLength("64")] | |
20: required string traceId; | |
[Description("Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using CLIENT and SERVER to identify queueing latency associated with the span.")] | |
[MaxKeyLength("256")] | |
[MaxValueLength("256")] | |
30: map<string, string> traceState; | |
} | |
[Description("List of links.")] | |
??: vector<Link> links; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment