Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LightstepAddress (0.12 sec)

  1. 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)
  2. 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