You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
httpEndpoint=flag.String("http_endpoint", "localhost:6962", "Endpoint for HTTP (host:port).")
52
-
metricsEndpoint=flag.String("metrics_endpoint", "", "Endpoint for serving metrics; if left empty, metrics will be visible on --http_endpoint.")
53
51
httpDeadline=flag.Duration("http_deadline", time.Second*10, "Deadline for HTTP requests.")
54
52
maskInternalErrors=flag.Bool("mask_internal_errors", false, "Don't return error strings with Internal Server Error HTTP responses.")
55
53
origin=flag.String("origin", "", "Origin of the log, for checkpoints and the monitoring prefix.")
@@ -63,6 +61,7 @@ var (
63
61
rejectExtensions=flag.String("reject_extension", "", "A list of X.509 extension OIDs, in dotted string form (e.g. '2.3.4.5') which, if present, should cause submissions to be rejected.")
64
62
signerPublicKeySecretName=flag.String("signer_public_key_secret_name", "", "Public key secret name for checkpoints and SCTs signer. Format: projects/{projectId}/secrets/{secretName}/versions/{secretVersion}.")
65
63
signerPrivateKeySecretName=flag.String("signer_private_key_secret_name", "", "Private key secret name for checkpoints and SCTs signer. Format: projects/{projectId}/secrets/{secretName}/versions/{secretVersion}.")
64
+
traceFraction=flag.Float64("trace_fraction", 0, "Fraction of open-telemetry span traces to sample")
0 commit comments