Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enableEnvoyAccessLogService (0.29 sec)

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

    	if len(cfgs) == 0 {
    		// No Telemetry API configured, fall back to legacy mesh config setting
    		if mesh.AccessLogFile != "" {
    			tcp.AccessLog = append(tcp.AccessLog, b.buildFileAccessLog(mesh))
    		}
    
    		if mesh.EnableEnvoyAccessLogService {
    			// Setting it to TCP as the low level one.
    			tcp.AccessLog = append(tcp.AccessLog, b.tcpGrpcAccessLog)
    		}
    		return
    	}
    
    	if al := buildAccessLogFromTelemetry(cfgs, false); len(al) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.proxy.concurrency" "meshConfig.defaultConfig.concurrency"
        "global.proxy.envoyAccessLogService" "meshConfig.defaultConfig.envoyAccessLogService"
        "global.proxy.envoyAccessLogService.enabled" "meshConfig.enableEnvoyAccessLogService"
        "global.proxy.envoyMetricsService" "meshConfig.defaultConfig.envoyMetricsService"
        "global.proxy.protocolDetectionTimeout" "meshConfig.protocolDetectionTimeout"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    	return &meshconfig.MeshConfig{
    		EnableTracing:               true,
    		AccessLogFile:               "",
    		AccessLogEncoding:           meshconfig.MeshConfig_TEXT,
    		AccessLogFormat:             "",
    		EnableEnvoyAccessLogService: false,
    		ProtocolDetectionTimeout:    durationpb.New(0),
    		IngressService:              "istio-ingressgateway",
    		IngressControllerMode:       meshconfig.MeshConfig_STRICT,
    		IngressClass:                "istio",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.proxy.envoyAccessLogService", "meshConfig.defaultConfig.envoyAccessLogService", nil},
    		{"Values.global.proxy.envoyAccessLogService.enabled", "meshConfig.enableEnvoyAccessLogService", nil},
    		{"Values.global.proxy.envoyMetricsService", "meshConfig.defaultConfig.envoyMetricsService", nil},
    		{"Values.global.proxy.protocolDetectionTimeout", "meshConfig.protocolDetectionTimeout", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top