gcloud beta dataflow logs list - retrieve the job logs for a specific job
gcloud beta dataflow logs list JOB_ID [--after=AFTER] [--before=BEFORE] [--importance=IMPORTANCE; default="warning"] [--region=REGION_ID] [--filter=EXPRESSION] [--limit=LIMIT] [GCLOUD_WIDE_FLAG ...]
(BETA) Retrieves the job logs from a specified job using the Dataflow Messages API with at least the specified importance level. Can also be used to display logs between a given time period using the --before and --after flags. These logs are produced by the service and are distinct from worker logs. Worker logs can be found in Cloud Logging.
Retrieve only error logs:
$ gcloud beta dataflow logs list --importance=error
Retrieve all logs after some date:
$ gcloud beta dataflow logs list --after="2016-08-12 00:00:00"
Retrieve logs from this year:
$ gcloud beta dataflow logs list --after=2018-01-01
Retrieve logs more than a week old:
$ gcloud beta dataflow logs list --before=-P1W
- JOB_ID
The job ID to operate on.
- --after=AFTER
Only display messages logged after the given time. See $ gcloud topic datetimes for information on time formats. For example, 2018-01-01 is the first day of the year, and -P2W is 2 weeks ago.
- --before=BEFORE
Only display messages logged before the given time. See $ gcloud topic datetimes for information on time formats.
- --importance=IMPORTANCE; default="warning"
Minimum importance a message must have to be displayed. IMPORTANCE must be one of: debug, detailed, warning, error.
- --region=REGION_ID
The region ID of the job's regional endpoint. Defaults to 'us-central1'.
- --filter=EXPRESSION
Apply a Boolean filter EXPRESSION to each resource item to be listed. If the expression evaluates True, then that item is listed. For more details and examples of filter expressions, run $ gcloud topic filters. This flag interacts with other flags that are applied in this order: --flatten, --sort-by, --filter, --limit.
- --limit=LIMIT
Maximum number of resources to list. The default is unlimited. This flag interacts with other flags that are applied in this order: --flatten, --sort-by, --filter, --limit.
These flags are available to all commands: --access-token-file, --account, --billing-project, --configuration, --flags-file, --flatten, --format, --help, --impersonate-service-account, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
This command is currently in beta and might change without notice. This variant is also available:
$ gcloud alpha dataflow logs list