未验证 提交 6bcb6e8c 编写于 作者: wu-sheng's avatar wu-sheng 提交者: GitHub

Fix a comment (#5684)

上级 7e6b19df
...@@ -22,14 +22,13 @@ import org.apache.skywalking.apm.network.language.agent.v3.SpanLayer; ...@@ -22,14 +22,13 @@ import org.apache.skywalking.apm.network.language.agent.v3.SpanLayer;
import org.apache.skywalking.oap.server.core.UnexpectedException; import org.apache.skywalking.oap.server.core.UnexpectedException;
/** /**
* Node type describe which kind of node of Service or Network address represents to. * Node type describe which kind of node of Service or Network address represents to. The node with {@link #Normal} and
* <p> * {@link #Browser} type would be treated as an observed node.
* The value comes from 'org.apache.skywalking.apm.network.language.agent.SpanLayer' at first place, but most likely it
* will extend and be used directly from different sources, such as Mesh.
*/ */
public enum NodeType { public enum NodeType {
/** /**
* <code>Unknown = 0;</code> * <code>Normal = 0;</code>
* This node type would be treated as an observed node.
*/ */
Normal(0), Normal(0),
/** /**
...@@ -54,6 +53,7 @@ public enum NodeType { ...@@ -54,6 +53,7 @@ public enum NodeType {
Cache(5), Cache(5),
/** /**
* <code>Browser = 6;</code> * <code>Browser = 6;</code>
* This node type would be treated as an observed node.
*/ */
Browser(6), Browser(6),
/** /**
...@@ -101,7 +101,7 @@ public enum NodeType { ...@@ -101,7 +101,7 @@ public enum NodeType {
} }
/** /**
* Right now, spanLayerValue is exact same as NodeType value. * @return the node type conjectured from the give span layer.
*/ */
public static NodeType fromSpanLayerValue(SpanLayer spanLayer) { public static NodeType fromSpanLayerValue(SpanLayer spanLayer) {
switch (spanLayer) { switch (spanLayer) {
...@@ -120,7 +120,7 @@ public enum NodeType { ...@@ -120,7 +120,7 @@ public enum NodeType {
case UNRECOGNIZED: case UNRECOGNIZED:
return Unrecognized; return Unrecognized;
default: default:
throw new UnexpectedException("Unknown NodeType value"); throw new UnexpectedException("Can't transfer to the NodeType. SpanLayer=" + spanLayer);
} }
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册