Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StatPrefix (0.29 sec)

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

    	statPrefix := fcc.clusterName
    	// If stat name is configured, build the stat prefix from configured pattern.
    	if len(lb.push.Mesh.InboundClusterStatName) != 0 {
    		statPrefix = telemetry.BuildInboundStatPrefix(lb.push.Mesh.InboundClusterStatName, fcc.telemetryMetadata, "", uint32(fcc.port.Port), fcc.port.Name)
    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:       statPrefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    		},
    		suppressEnvoyDebugHeaders: ph.SuppressDebugHeaders,
    		protocol:                  cc.port.Protocol,
    		class:                     istionetworking.ListenerClassSidecarInbound,
    		statPrefix:                cc.StatPrefix(),
    		isWaypoint:                true,
    		policySvc:                 svc,
    	}
    	// See https://github.com/grpc/grpc-web/tree/master/net/grpc/gateway/examples/helloworld#configure-the-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	f := fc.Filters[0]
    	expectedStatPrefix := util.PassthroughCluster
    	cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    	statPrefix := cfg.Fields["stat_prefix"].GetStringValue()
    	if statPrefix != expectedStatPrefix {
    		t.Fatalf("expected listener to contain stat_prefix %s, found %s", expectedStatPrefix, statPrefix)
    	}
    }
    
    func verifyOutboundTCPListenerHostname(t *testing.T, l *listener.Listener, hostname host.Name) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top