Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lightstepAccessTokenFile (0.16 sec)

  1. pkg/bootstrap/config.go

    		option.EnvoyExtraStatTags(extraStatTags),
    		option.EnvoyHistogramBuckets(buckets),
    		option.EnvoyStatsCompression(compression),
    	}
    }
    
    func lightstepAccessTokenFile(config string) string {
    	return path.Join(config, lightstepAccessTokenBase)
    }
    
    func getNodeMetadataOptions(node *model.Node, policy string) []option.Instance {
    	// Add locality options.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/instance_test.go

    				t.Logf("difference: %s", diff)
    				t.Fatalf("\n got: %s\nwant: %s", prettyPrint(read), prettyPrint(jgolden))
    			}
    
    			// Check if the LightStep access token file exists
    			_, err = os.Stat(lightstepAccessTokenFile(path.Dir(fn)))
    			if c.expectLightstepAccessToken {
    				if os.IsNotExist(err) {
    					t.Error("expected to find a LightStep access token file but none found")
    				} else if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top