Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/bootstrap/option/instances_test.go

    			key:      "envoy_accesslog_service_tcp_keepalive",
    			option:   option.EnvoyAccessLogServiceTCPKeepalive(nil),
    			expected: nil,
    		},
    		{
    			testName: "envoy access log keepalive",
    			key:      "envoy_accesslog_service_tcp_keepalive",
    			option: option.EnvoyAccessLogServiceTCPKeepalive(&networkingAPI.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    				Time: durationpb.New(time.Second),
    			}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances.go

    	return newOptionOrSkipIfZero("envoy_accesslog_service_tls", value).
    		withConvert(transportSocketConverter(value, "envoy_accesslog_service", metadata, true))
    }
    
    func EnvoyAccessLogServiceTCPKeepalive(value *networkingAPI.ConnectionPoolSettings_TCPSettings_TcpKeepalive) Instance {
    	return newTCPKeepaliveOption("envoy_accesslog_service_tcp_keepalive", value)
    }
    
    func EnvoyExtraStatTags(value []string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    		opts = append(opts, option.EnvoyAccessLogServiceAddress(config.EnvoyAccessLogService.Address),
    			option.EnvoyAccessLogServiceTLS(config.EnvoyAccessLogService.TlsSettings, metadata),
    			option.EnvoyAccessLogServiceTCPKeepalive(config.EnvoyAccessLogService.TcpKeepalive))
    	}
    
    	return opts, nil
    }
    
    func getInt64ValueOrDefault(src *wrapperspb.Int64Value, defaultVal int64) int64 {
    	val := defaultVal
    	if src != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top