Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for envoy_metrics_service_address (0.32 sec)

  1. tools/packaging/common/envoy_bootstrap.json

              "max_number_of_message_events": 200,
              "max_number_of_links": 200
            }
          }
        }
      }
      {{ end }}
      {{ if or .envoy_metrics_service_address .statsd }}
      ,
      "stats_sinks": [
        {{ if .envoy_metrics_service_address }}
        {
          "name": "envoy.stat_sinks.metrics_service",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.metrics.v3.MetricsServiceConfig",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    			expectError: true,
    		},
    		{
    			testName: "envoy metrics address empty",
    			key:      "envoy_metrics_service_address",
    			option:   option.EnvoyMetricsServiceAddress(""),
    			expected: nil,
    		},
    		{
    			testName: "envoy metrics address ipv4",
    			key:      "envoy_metrics_service_address",
    			option:   option.EnvoyMetricsServiceAddress("127.0.0.1:80"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    		withConvert(transportSocketConverter(value, "tracer", metadata, isH2))
    }
    
    func EnvoyMetricsServiceAddress(value string) Instance {
    	return newOptionOrSkipIfZero("envoy_metrics_service_address", value).withConvert(addressConverter(value))
    }
    
    func EnvoyMetricsServiceTLS(value *networkingAPI.ClientTLSSettings, metadata *model.BootstrapNodeMetadata) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top