英文:
InstrumentationScope in opentelemetry
问题
在这里,定义了ScopeSpans。注释说:
// 由InstrumentationScope生成的Spans的集合。
它还具有一个名为'InstrumentationScope'的属性。
那么注释和这个属性之间是否有联系呢?
英文:
Here, ScopeSpans is defined. Comment says:
> // A collection of Spans produced by an InstrumentationScope.
It also has a attribute 'InstrumentationScope'.
So is there a connection between comment and this attribute?
答案1
得分: 1
是的,该评论描述了对象的设计:对象中的所有跨度都由相同的检测范围生成 - 这由scope
字段描述。
英文:
Yes, the comment describes the design of the object: All spans in the object are produced by the same instrumentation scope - which is the described by the scope
field.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论