Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VerifyEchoTraces (0.19 sec)

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

    							fmt.Sprintf("server.%s.svc.cluster.local:80/*", appNsInst.Name()), "")
    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(t, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    					}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    				})
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    							fmt.Sprintf("server.%s.svc.cluster.local:80/*", appNsInst.Name()), "")
    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    					}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    				})
    
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/tracing.go

    	addrs, _ := ingInst.HTTPAddresses()
    	zipkinInst, err = zipkin.New(ctx, zipkin.Config{Cluster: ctx.Clusters().Default(), IngressAddr: addrs[0]})
    	if err != nil {
    		return
    	}
    	return nil
    }
    
    func VerifyEchoTraces(t framework.TestContext, namespace, clName string, traces []zipkin.Trace) bool {
    	t.Helper()
    	wtr := WantTraceRoot(namespace, clName)
    	for _, trace := range traces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top