Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetAppNamespace (0.2 sec)

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

    	appNsInst      namespace.Instance
    )
    
    const (
    	TraceHeader = "x-client-trace-id"
    )
    
    func GetIstioInstance() *istio.Instance {
    	return &ist
    }
    
    // GetAppNamespace gets echo app namespace instance.
    func GetAppNamespace() namespace.Instance {
    	return appNsInst
    }
    
    func GetIngressInstance() ingress.Instance {
    	return ingInst
    }
    
    func GetZipkinInstance() zipkin.Instance {
    	return zipkinInst
    }
    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. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    func TestServerTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    			for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
    				t.NewSubTest(cluster.StableName()).Run(func(t framework.TestContext) {
    					retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    func TestClientTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    			for _, cluster := range t.Clusters().ByNetwork()[t.Clusters().Default().NetworkName()] {
    				cluster := cluster
    				t.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    			customAttribute: "provider=otel-grpc-with-res-detectors",
    			cfgFile:         otelTracingResDetectorsCfg,
    		},
    	}
    
    	framework.NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    
    			for _, tc := range testcases {
    				ctx.NewSubTest(tc.name).
    					Run(func(ctx framework.TestContext) {
    						// apply Telemetry resource with OTel provider
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top