Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EnvoyMetricsServiceTCPKeepalive (0.44 sec)

  1. pkg/bootstrap/option/instances_test.go

    			testName: "envoy metrics keepalive nil",
    			key:      "envoy_metrics_service_tcp_keepalive",
    			option:   option.EnvoyMetricsServiceTCPKeepalive(nil),
    			expected: nil,
    		},
    		{
    			testName: "envoy metrics keepalive",
    			key:      "envoy_metrics_service_tcp_keepalive",
    			option: option.EnvoyMetricsServiceTCPKeepalive(&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/config.go

    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address),
    			option.EnvoyMetricsServiceTLS(config.EnvoyMetricsService.TlsSettings, metadata),
    			option.EnvoyMetricsServiceTCPKeepalive(config.EnvoyMetricsService.TcpKeepalive))
    	} else if config.EnvoyMetricsServiceAddress != "" { // nolint: staticcheck
    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address))
    	}
    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