Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LightstepAddress (0.15 sec)

  1. pkg/bootstrap/option/instances_test.go

    		},
    
    		{
    			testName: "lightstep address empty",
    			key:      "lightstep",
    			option:   option.LightstepAddress(""),
    			expected: nil,
    		},
    		{
    			testName: "lightstep address ipv4",
    			key:      "lightstep",
    			option:   option.LightstepAddress("127.0.0.1:80"),
    			expected: "{\"address\": \"127.0.0.1\", \"port_value\": 80}",
    		},
    		{
    			testName: "lightstep address ipv6",
    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

    func OutlierLogPath(value string) Instance {
    	return newOptionOrSkipIfZero("outlier_log_path", value)
    }
    
    func ApplicationLogJSON(value bool) Instance {
    	return newOption("log_json", value)
    }
    
    func LightstepAddress(value string) Instance {
    	return newOptionOrSkipIfZero("lightstep", value).withConvert(addressConverter(value))
    }
    
    func LightstepToken(value string) Instance {
    	return newOption("lightstepToken", value)
    }
    
    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/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - --discoveryAddress
            - "{{ annotation .ObjectMeta `sidecar.istio.io/discoveryAddress` .ProxyConfig.DiscoveryAddress }}"
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            - --lightstepAddress
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAddress }}"
            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --discoveryAddress
            - "{{ annotation .ObjectMeta `sidecar.istio.io/discoveryAddress` .ProxyConfig.DiscoveryAddress }}"
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            - --lightstepAddress
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAddress }}"
            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
    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

            - --discoveryAddress
            - "{{ annotation .ObjectMeta `sidecar.istio.io/discoveryAddress` .ProxyConfig.DiscoveryAddress }}"
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            - --lightstepAddress
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAddress }}"
            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
    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-absolute-override.yaml

            - --discoveryAddress
            - "{{ annotation .ObjectMeta `sidecar.istio.io/discoveryAddress` .ProxyConfig.DiscoveryAddress }}"
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            - --lightstepAddress
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAddress }}"
            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    			err := os.WriteFile(lightstepAccessTokenPath, []byte(tracer.Lightstep.AccessToken), 0o666)
    			if err != nil {
    				return nil, err
    			}
    			opts = append(opts, option.LightstepAddress(tracer.Lightstep.Address),
    				option.LightstepToken(lightstepAccessTokenPath))
    		case *meshAPI.Tracing_Datadog_:
    			opts = append(opts, option.DataDogAddress(tracer.Datadog.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