This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch wu-sheng-patch-1 in repository https://gitbox.apache.org/repos/asf/skywalking-data-collect-protocol.git
commit e3e8d8624ea09051312631de8611c7627eef0bdf Author: 吴晟 Wu Sheng <[email protected]> AuthorDate: Wed Dec 28 17:33:51 2022 +0800 Update Tracing.proto --- language-agent/Tracing.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/language-agent/Tracing.proto b/language-agent/Tracing.proto index 2e362b8..a5318c9 100644 --- a/language-agent/Tracing.proto +++ b/language-agent/Tracing.proto @@ -47,9 +47,10 @@ service TraceSegmentReportService { // The segment is a collection of spans. It includes all collected spans in a simple one request context, such as a HTTP request process. // -// We recommend the agent/SDK report all tracked data of one request once for all, such as, -// typically, such as in Java, one segment represent all tracked operations(spans) of one request context in the same thread. -// At the same time, in some language there is not a clear concept like golang, it could represent all tracked operations of one request context. +// We recommend the agent/SDK report all tracked data of one request once for all. +// Typically, such as in Java, one segment represent all tracked operations(spans) of one request context in the same thread. +// At the same time, in some language there is not a clear `thread` concept like golang. +// Then, it could represent all tracked operations of one request context cross threads/goroutines. message SegmentObject { // A string id represents the whole trace. string traceId = 1; @@ -282,4 +283,4 @@ message SpanAttachedEvent { SKYWALKING = 0; ZIPKIN = 1; } -} \ No newline at end of file +}
