Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChildSpans (0.08 sec)

  1. tests/integration/telemetry/tracing/tracing.go

    		t.Logf("got span %+v, want span %+v", got, want)
    		return false
    	}
    	if len(got.ChildSpans) < len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe trace has not be fully reported",
    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	} else if len(got.ChildSpans) > len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe destination rule has not became effective",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/zipkin/kube.go

    			for c := range spans {
    				if spans[c].ParentSpanID == spans[p].SpanID {
    					spans[p].ChildSpans = append(spans[p].ChildSpans, &spans[c])
    				}
    			}
    			// make order of child spans deterministic
    			sort.Slice(spans[p].ChildSpans, func(i, j int) bool {
    				return spans[p].ChildSpans[i].Name < spans[p].ChildSpans[j].Name
    			})
    		}
    		ret = append(ret, Trace{Spans: spans})
    	}
    	if len(ret) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top