Skip to content

Commit ec528aa

Browse files
taloriclzf575
authored andcommitted
fix: non-processed span in trace
1 parent dd073f4 commit ec528aa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/app/application/l7_flow_tracing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3077,10 +3077,10 @@ def merge_service(services: List[ProcessSpanSet], traces: list,
30773077
# 只对这几种类型按 process 划分进程,否则直接聚合为同一个服务
30783078
if len(
30793079
service_to_subprocess.get(
3080-
(service.auto_service_id, service.app_service))
3081-
) > 1 and service.auto_instance_type in (const.AUTO_INSTANCE_CHOST,
3082-
const.AUTO_INSTANCE_POD_NODE,
3083-
const.AUTO_INSTANCE_POD):
3080+
(service.auto_service_id, service.app_service),
3081+
set())) > 1 and service.auto_instance_type in (
3082+
const.AUTO_INSTANCE_CHOST,
3083+
const.AUTO_INSTANCE_POD_NODE, const.AUTO_INSTANCE_POD):
30843084
service_uid = f'{service_uid}{process_id}-{process_kname}'
30853085
service_uname = f'{service_uname}:{process_kname}'
30863086

0 commit comments

Comments
 (0)