mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-10 19:31:55 +00:00
83 lines
2.9 KiB
Text
83 lines
2.9 KiB
Text
NAME
|
|
gcloud run services logs read - read logs for a Cloud Run service
|
|
|
|
SYNOPSIS
|
|
gcloud run services logs read SERVICE [--freshness=FRESHNESS; default="1d"]
|
|
[--log-filter=LOG_FILTER] [--order=ORDER; default="desc"]
|
|
[--region=REGION] [--limit=LIMIT] [GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
gcloud run services logs read reads log entries. Log entries matching
|
|
--log-filter are returned according to the specified --order. If the log
|
|
entries come from multiple logs, then entries from different logs might be
|
|
intermingled in the results.
|
|
|
|
EXAMPLES
|
|
To read log entries from for a Cloud Run Service, run:
|
|
|
|
$ gcloud run services logs read my-service
|
|
|
|
To read log entries with severity ERROR or higher, run:
|
|
|
|
$ gcloud run services logs read my-service \
|
|
--log-filter="severity>=ERROR"
|
|
|
|
To read log entries written in a specific time window, run:
|
|
|
|
$ gcloud run services logs read my-service \
|
|
--log-filter='timestamp<="2015-05-31T23:59:59Z" AND
|
|
timestamp>="2015-05-31T00:00:00Z"'
|
|
|
|
To read up to 10 log entries in your service payloads that include the word
|
|
SearchText and format the output in JSON format, run:
|
|
|
|
$ gcloud run services logs read my-service \
|
|
--log-filter="textPayload:SearchText" --limit=10 --format=json
|
|
|
|
Detailed information about filters can be found at:
|
|
https://cloud.google.com/logging/docs/view/advanced_filters
|
|
|
|
POSITIONAL ARGUMENTS
|
|
SERVICE
|
|
Name for a Cloud Run service.
|
|
|
|
FLAGS
|
|
--freshness=FRESHNESS; default="1d"
|
|
Return entries that are not older than this value. Works only with DESC
|
|
ordering and filters without a timestamp. See $ gcloud topic datetimes
|
|
for information on duration formats.
|
|
|
|
--log-filter=LOG_FILTER
|
|
Filter expression that specifies the log entries to return. Detailed
|
|
information about filters can be found at:
|
|
https://cloud.google.com/logging/docs/view/logging-query-language
|
|
|
|
--order=ORDER; default="desc"
|
|
Ordering of returned log entries based on timestamp field. ORDER must
|
|
be one of: desc, asc.
|
|
|
|
--region=REGION
|
|
Region in which the resource can be found. Alternatively, set the
|
|
property [run/region].
|
|
|
|
LIST COMMAND FLAGS
|
|
--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.
|
|
|
|
GCLOUD WIDE FLAGS
|
|
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.
|
|
|
|
NOTES
|
|
These variants are also available:
|
|
|
|
$ gcloud alpha run services logs read
|
|
|
|
$ gcloud beta run services logs read
|
|
|