SkyAPM / SkyAPM-nodejs

The NodeJS server side agent for Apache SkyWalking
Apache License 2.0
128 stars 86 forks source link

nodejs 探针发送的数据中parentSegmentId使用的是trace_id 而不是上一个节点发送的数据的segmentId #84

Open zou79189747 opened 5 years ago

zou79189747 commented 5 years ago

问题:https://github.com/apache/skywalking/issues/3094 例外我想找nodejs agent的默认配置列表,像java agent一样 https://github.com/apache/skywalking/blob/v6.1.0/docs/en/setup/service-agent/java-agent/README.md 官方文档很多链接都是404,不知道去哪里找这个列表

zou79189747 commented 5 years ago

1 1

lixiv commented 4 years ago

traceid is int64 type in protobuf, max number in nodejs is 2^53-1. nodejs should convert int64 to string when serializing trace data to report to oap. Have you solved this problem? @zou79189747