Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for configureTracing (0.35 sec)

  1. pilot/pkg/networking/core/tracing_test.go

    			gotReqIDExtCtx := configureTracingFromTelemetry(tc.inSpec, tc.opts.push, tc.opts.proxy, hcm, 0)
    			if diff := cmp.Diff(tc.want, hcm.Tracing, protocmp.Transform()); diff != "" {
    				t.Fatalf("configureTracing returned unexpected diff (-want +got):\n%s", diff)
    			}
    			assert.Equal(t, tc.want, hcm.Tracing)
    			assert.Equal(t, tc.wantReqIDExtCtx, gotReqIDExtCtx)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    	}
    
    	accessLogBuilder.setHTTPAccessLog(lb.push, lb.node, connectionManager, httpOpts.class, httpOpts.policySvc)
    
    	reqIDExtensionCtx := configureTracing(lb.push, lb.node, connectionManager, httpOpts.class, httpOpts.policySvc)
    
    	filters := []*hcm.HttpFilter{}
    	if !httpOpts.isWaypoint {
    		wasm := lb.push.WasmPluginsByListenerInfo(lb.node, model.WasmPluginListenerInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing.go

    )
    
    // this is used for testing. it should not be changed in regular code.
    var clusterLookupFn = model.LookupCluster
    
    type typedConfigGenFn func() (*anypb.Any, error)
    
    func configureTracing(
    	push *model.PushContext,
    	proxy *model.Proxy,
    	httpConnMgr *hcm.HttpConnectionManager,
    	class networking.ListenerClass,
    	svc *model.Service,
    ) *requestidextension.UUIDRequestIDExtensionContext {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top