Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ZipkinAddress (0.14 sec)

  1. pkg/bootstrap/option/instances_test.go

    			key:      "zipkin",
    			option:   option.ZipkinAddress(""),
    			expected: nil,
    		},
    		{
    			testName: "zipkin address ipv4",
    			key:      "zipkin",
    			option:   option.ZipkinAddress("127.0.0.1:80"),
    			expected: "{\"address\": \"127.0.0.1\", \"port_value\": 80}",
    		},
    		{
    			testName: "zipkin address ipv6",
    			key:      "zipkin",
    			option:   option.ZipkinAddress("[2001:db8::100]: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)
  2. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # diagnostic information from Envoy. See
      # https://lyft.github.io/envoy/docs/operations/admin.html
      # for more details
      proxyAdminPort: 15000
      #
      # Zipkin trace collector
      zipkinAddress: ""
      #
      # Statsd metrics collector converts statsd metrics into Prometheus metrics.
      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    	return newOption("stackdriverMaxEvents", value)
    }
    
    func PilotGRPCAddress(value string) Instance {
    	return newOptionOrSkipIfZero("pilot_grpc_address", value).withConvert(addressConverter(value))
    }
    
    func ZipkinAddress(value string) Instance {
    	return newOptionOrSkipIfZero("zipkin", value).withConvert(addressConverter(value))
    }
    
    func DataDogAddress(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)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/config.go

    	// Add tracing options.
    	if config.Tracing != nil {
    		isH2 := false
    		switch tracer := config.Tracing.Tracer.(type) {
    		case *meshAPI.Tracing_Zipkin_:
    			opts = append(opts, option.ZipkinAddress(tracer.Zipkin.Address))
    		case *meshAPI.Tracing_Lightstep_:
    			isH2 = true
    			// Write the token file.
    			lightstepAccessTokenPath := lightstepAccessTokenFile(config.ConfigPath)
    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