Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lightstepToken (0.14 sec)

  1. pkg/bootstrap/option/instances.go

    }
    
    func LightstepAddress(value string) Instance {
    	return newOptionOrSkipIfZero("lightstep", value).withConvert(addressConverter(value))
    }
    
    func LightstepToken(value string) Instance {
    	return newOption("lightstepToken", value)
    }
    
    func OpenCensusAgentAddress(value string) Instance {
    	return newOptionOrSkipIfZero("openCensusAgent", value)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    			key:         "lightstep",
    			option:      option.LightstepAddress("127.0.0.1"),
    			expectError: true,
    		},
    		{
    			testName: "lightstep token",
    			key:      "lightstepToken",
    			option:   option.LightstepToken("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "openCensusAgent address",
    			key:      "openCensusAgent",
    			option:   option.OpenCensusAgentAddress("fake-ocagent"),
    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. tools/packaging/common/envoy_bootstrap.json

          "name": "envoy.tracers.lightstep",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.LightstepConfig",
            "collector_cluster": "lightstep",
            "access_token_file": "{{ .lightstepToken}}"
          }
        }
      }
      {{- else if .datadog }}
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.datadog",
          "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    			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))
    		case *meshAPI.Tracing_Stackdriver_:
    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