mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 16:37:00 +00:00
gcloud: Wed Feb 15 10:13:15 UTC 2023
This commit is contained in:
parent
02b395b082
commit
78fb6d9419
375 changed files with 5899 additions and 1603 deletions
|
|
@ -5,7 +5,13 @@ SYNOPSIS
|
|||
gcloud beta debug GROUP [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) The gcloud beta debug command group provides interaction with Cloud
|
||||
(BETA) (DEPRECATED) Commands for interacting with the Cloud Debugger.
|
||||
|
||||
Cloud Debugger is deprecated and will be shutdown May 31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
The gcloud beta debug command group provides interaction with Cloud
|
||||
Debugger, allowing you to list and manipulate debugging targets, snapshots
|
||||
and logpoints.
|
||||
|
||||
|
|
@ -54,16 +60,20 @@ GROUPS
|
|||
GROUP is one of the following:
|
||||
|
||||
logpoints
|
||||
(BETA) Commands for interacting with Cloud Debugger logpoints.
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger
|
||||
logpoints.
|
||||
|
||||
snapshots
|
||||
(BETA) Commands for interacting with Cloud Debugger snapshots.
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger
|
||||
snapshots.
|
||||
|
||||
source
|
||||
(BETA) Commands to manage source information for Cloud Debugger.
|
||||
(BETA) (DEPRECATED) Commands to manage source information for Cloud
|
||||
Debugger.
|
||||
|
||||
targets
|
||||
(BETA) Commands for interacting with Cloud Debugger debug targets.
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger debug
|
||||
targets.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
|
|
|
|||
|
|
@ -9,8 +9,13 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug logpoints create is used to add a debug logpoint
|
||||
to a debug target (debuggee). Logpoints add logging to your running service
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug logpoints create is used to add a debug logpoint to a
|
||||
debug target (debuggee). Logpoints add logging to your running service
|
||||
without changing your code or restarting your application. When you create
|
||||
a logpoint, the message you specify will be added to your logs whenever any
|
||||
instance of your service executes the specified line of code.
|
||||
|
|
|
|||
|
|
@ -8,10 +8,15 @@ SYNOPSIS
|
|||
[--target=(ID|DESCRIPTION_REGEXP)] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug logpoints delete is used to delete logpoints from
|
||||
a Cloud Debugger debug target (debuggee). It will ask for confirmation
|
||||
before deleting any logpoints. To suppress confirmation, use the global
|
||||
--quiet option.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug logpoints delete is used to delete logpoints from a Cloud
|
||||
Debugger debug target (debuggee). It will ask for confirmation before
|
||||
deleting any logpoints. To suppress confirmation, use the global --quiet
|
||||
option.
|
||||
|
||||
EXAMPLES
|
||||
To delete all active debug logpoints created by the current user of the
|
||||
|
|
|
|||
|
|
@ -7,7 +7,13 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Logpoints allow you to inject logging into running services without
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger logpoints.
|
||||
|
||||
Cloud Debugger is deprecated and will be shutdown May 31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
Logpoints allow you to inject logging into running services without
|
||||
restarting or interfering with the normal function of the service. Log
|
||||
output will be sent to the appropriate log for the target's environment. On
|
||||
App Engine, for example, output will go to the request log.
|
||||
|
|
@ -71,15 +77,16 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(BETA) Add debug logpoints to a Cloud Debugger debug target (debuggee).
|
||||
(BETA) (DEPRECATED) Add debug logpoints to a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
delete
|
||||
(BETA) Delete debug logpoints for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) Delete debug logpoints for a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
list
|
||||
(BETA) List the debug logpoints for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) List the debug logpoints for a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
|
|
|
|||
|
|
@ -10,10 +10,15 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug logpoints list is used to display the debug
|
||||
logpoints for a Cloud Debugger debug target (debuggee). By default all
|
||||
active logpoints are returned. To obtain older, expired logoints, specify
|
||||
the --include-inactive option.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug logpoints list is used to display the debug logpoints for
|
||||
a Cloud Debugger debug target (debuggee). By default all active logpoints
|
||||
are returned. To obtain older, expired logoints, specify the
|
||||
--include-inactive option.
|
||||
|
||||
EXAMPLES
|
||||
To list the active and recently completed debug logpoints of the debug
|
||||
|
|
|
|||
|
|
@ -8,10 +8,15 @@ SYNOPSIS
|
|||
[--wait=WAIT; default=10] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug snapshots create is used to create a debug
|
||||
snapshot on a Cloud Debugger debug target. Snapshots allow you to capture
|
||||
stack traces and local variables from your running service without
|
||||
interfering with normal operations.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug snapshots create is used to create a debug snapshot on a
|
||||
Cloud Debugger debug target. Snapshots allow you to capture stack traces
|
||||
and local variables from your running service without interfering with
|
||||
normal operations.
|
||||
|
||||
When any instance of the target executes the snapshot location, the
|
||||
optional condition expression is evaluated. If the result is true (or if
|
||||
|
|
|
|||
|
|
@ -8,10 +8,15 @@ SYNOPSIS
|
|||
[--target=(ID|DESCRIPTION_REGEXP)] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug snapshots delete is used to delete snapshots from
|
||||
a Cloud Debugger debug target (debuggee). It will ask for confirmation
|
||||
before deleting any snapshots. To suppress confirmation, use the global
|
||||
--quiet option.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug snapshots delete is used to delete snapshots from a Cloud
|
||||
Debugger debug target (debuggee). It will ask for confirmation before
|
||||
deleting any snapshots. To suppress confirmation, use the global --quiet
|
||||
option.
|
||||
|
||||
EXAMPLES
|
||||
To delete all active snapshots created by the current user of the debug
|
||||
|
|
|
|||
|
|
@ -7,7 +7,12 @@ SYNOPSIS
|
|||
[--target=(ID|DESCRIPTION_REGEXP)] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug snapshots describe is used to describe the debug
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug snapshots describe is used to describe the debug
|
||||
snapshots for a Cloud Debugger debug target (debuggee). If the snapshot has
|
||||
completed, the output will include details on the stack trace and local
|
||||
variables, stored in a compact form which is primarily intended to be
|
||||
|
|
|
|||
|
|
@ -7,9 +7,15 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Commands to interact with debug snapshots. Snapshots allow you to
|
||||
capture stack traces and local variables from running services without
|
||||
interfering with the normal function of the service.
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger snapshots.
|
||||
|
||||
Cloud Debugger is deprecated and will be shutdown May 31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
Commands to interact with debug snapshots. Snapshots allow you to capture
|
||||
stack traces and local variables from running services without interfering
|
||||
with the normal function of the service.
|
||||
|
||||
FLAGS
|
||||
--target=(ID|DESCRIPTION_REGEXP)
|
||||
|
|
@ -28,24 +34,24 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(BETA) Create debug snapshots for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) Create debug snapshots for a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
delete
|
||||
(BETA) Delete debug snapshots for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) Delete debug snapshots for a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
describe
|
||||
(BETA) Describe the debug snapshots for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) Describe the debug snapshots for a Cloud Debugger
|
||||
debug target (debuggee).
|
||||
|
||||
list
|
||||
(BETA) List the debug snapshots for a Cloud Debugger debug target
|
||||
(debuggee).
|
||||
(BETA) (DEPRECATED) List the debug snapshots for a Cloud Debugger debug
|
||||
target (debuggee).
|
||||
|
||||
wait
|
||||
(BETA) Wait for debug snapshots on a Cloud Debugger debug target
|
||||
(debuggee) to complete.
|
||||
(BETA) (DEPRECATED) Wait for debug snapshots on a Cloud Debugger debug
|
||||
target (debuggee) to complete.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
|
|
|
|||
|
|
@ -10,10 +10,15 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug snapshots list is used to display the debug
|
||||
snapshots for a Cloud Debugger debug target (debuggee). By default all
|
||||
active snapshots as well as any recently completed snapshots are returned.
|
||||
To obtain older completed snapshots specify the --include-inactive option.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug snapshots list is used to display the debug snapshots for
|
||||
a Cloud Debugger debug target (debuggee). By default all active snapshots
|
||||
as well as any recently completed snapshots are returned. To obtain older
|
||||
completed snapshots specify the --include-inactive option.
|
||||
|
||||
EXAMPLES
|
||||
To list the active and recently completed debug snapshots of the debug
|
||||
|
|
|
|||
|
|
@ -9,10 +9,15 @@ SYNOPSIS
|
|||
[--limit=LIMIT] [--sort-by=[FIELD,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug snapshots wait is used to wait for one or more
|
||||
snapshots on a Cloud Debugger debug target to complete. A snapshot is
|
||||
considered completed either if there was an error setting the snapshot or
|
||||
if the snapshot was hit on an instance of the debug target.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug snapshots wait is used to wait for one or more snapshots
|
||||
on a Cloud Debugger debug target to complete. A snapshot is considered
|
||||
completed either if there was an error setting the snapshot or if the
|
||||
snapshot was hit on an instance of the debug target.
|
||||
|
||||
EXAMPLES
|
||||
To wait for either of the snapshots with IDs of 'ID1' or 'ID2' of the debug
|
||||
|
|
|
|||
|
|
@ -9,7 +9,12 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This command generates a file named source-context.json containing
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
This command generates a file named source-context.json containing
|
||||
information on the source revision and remote repository associated with
|
||||
the given source directory.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,15 @@ SYNOPSIS
|
|||
gcloud beta debug source COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This set of commands allows you to provide Cloud Debugger with
|
||||
source code version information.
|
||||
(BETA) (DEPRECATED) Commands to manage source information for Cloud
|
||||
Debugger.
|
||||
|
||||
Cloud Debugger is deprecated and will be shutdown May 31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
This set of commands allows you to provide Cloud Debugger with source code
|
||||
version information.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
|
@ -18,7 +25,8 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
gen-repo-info-file
|
||||
(BETA) Generates repository information files for the Cloud Debugger.
|
||||
(BETA) (DEPRECATED) Generates repository information files for the
|
||||
Cloud Debugger.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
|
|
|
|||
|
|
@ -6,9 +6,16 @@ SYNOPSIS
|
|||
gcloud beta debug targets COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Commands to interact with debug targets. A debug target can be an
|
||||
App Engine module version or any other entity enabled for use with the
|
||||
cloud debugger.
|
||||
(BETA) (DEPRECATED) Commands for interacting with Cloud Debugger debug
|
||||
targets.
|
||||
|
||||
Cloud Debugger is deprecated and will be shutdown May 31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
Commands to interact with debug targets. A debug target can be an App
|
||||
Engine module version or any other entity enabled for use with the cloud
|
||||
debugger.
|
||||
|
||||
EXAMPLES
|
||||
To view all available debug targets, run:
|
||||
|
|
@ -24,8 +31,8 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
list
|
||||
(BETA) List the debug targets (debuggees) registered with the Cloud
|
||||
Debugger.
|
||||
(BETA) (DEPRECATED) List the debug targets (debuggees) registered with
|
||||
the Cloud Debugger.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
|
|
|
|||
|
|
@ -8,10 +8,15 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) gcloud beta debug targets list is used to display a list of the
|
||||
debug targets (debuggees) registered with the Cloud Debugger. By default
|
||||
only the active targets are shown, the --include-inactive can be provided
|
||||
to also include the targets that are no longer active.
|
||||
(BETA) (DEPRECATED) Cloud Debugger is deprecated and will be shutdown May
|
||||
31, 2023.
|
||||
|
||||
See: https://cloud.google.com/debugger/docs/deprecations
|
||||
|
||||
gcloud beta debug targets list is used to display a list of the debug
|
||||
targets (debuggees) registered with the Cloud Debugger. By default only the
|
||||
active targets are shown, the --include-inactive can be provided to also
|
||||
include the targets that are no longer active.
|
||||
|
||||
EXAMPLES
|
||||
To list the active debug targets (debuggees) registered with the Cloud
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue