LinuxCommandLibrary

gcloud-logging-logs-list

List logs in a Google Cloud project.

TLDR

List all logs in the current project

$ gcloud logging logs list
copy


List all logs for a specific log bucket and location
$ gcloud logging logs list --bucket=[bucket_id] --location=[location]
copy


List all logs for a specific view in a log bucket
$ gcloud logging logs list --bucket=[bucket_id] --location=[location] --view=[view_id]
copy


List logs with a filter expression
$ gcloud logging logs list --filter="[expression]"
copy


List a specified number of logs
$ gcloud logging logs list --limit=[number]
copy


List logs sorted by a specific field in ascending or descending order (~ for descending)
$ gcloud logging logs list --sort-by="[field_name]"
copy


List logs sorted by multiple fields
$ gcloud logging logs list --sort-by="[field1],~[field2]"
copy


List logs with verbose output, showing additional details
$ gcloud logging logs list --verbosity=debug
copy

Copied to clipboard