fix: otel_to_cloud flag help text points at Cloud Run instead of Agent Engine

Co-authored-by: Kacper Jawoszek <jawoszek@google.com>
PiperOrigin-RevId: 866122815
This commit is contained in:
Kacper Jawoszek
2026-02-05 14:49:02 -08:00
committed by Copybara-Service
parent 93a085ad87
commit d9e8e9cf32
+8 -2
View File
@@ -1494,14 +1494,20 @@ def cli_api_server(
is_flag=True,
show_default=True,
default=False,
help="Optional. Whether to enable Cloud Trace for cloud run.",
help=(
"Optional. Whether to enable Cloud Trace export for Cloud Run"
" deployments."
),
)
@click.option(
"--otel_to_cloud",
is_flag=True,
show_default=True,
default=False,
help="Optional. Whether to enable OpenTelemetry for Agent Engine.",
help=(
"Optional. Whether to enable OpenTelemetry export to GCP for Cloud Run"
" deployments."
),
)
@click.option(
"--with_ui",