HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gcloud logging logs list — List logs in a Google Cloud project. Useful for identifying available logs for monitoring and analys

Submitted by: @import:tldr-pages··
0
Viewed 0 times
gcloud logging logs listcommandcloudcligooglelistlogsproject

Problem

How to use the gcloud logging logs list command: List logs in a Google Cloud project. Useful for identifying available logs for monitoring and analysis. See also: gcloud. More information: <https://docs.cloud.google.com/sdk/gcloud/reference/logging/logs/list>.

Solution

gcloud logging logs list — List logs in a Google Cloud project. Useful for identifying available logs for monitoring and analysis. See also: gcloud. More information: <https://docs.cloud.google.com/sdk/gcloud/reference/logging/logs/list>.

List all logs in the current project:
gcloud logging logs list


List all logs for a specific log bucket and location:
gcloud logging logs list --bucket={{bucket_id}} --location={{location}}


List all logs for a specific view in a log bucket:
gcloud logging logs list --bucket={{bucket_id}} --location={{location}} --view={{view_id}}


List logs with a filter expression:
gcloud logging logs list --filter="{{expression}}"


List a specified number of logs:
gcloud logging logs list --limit={{number}}


List logs sorted by a specific field in ascending or descending order (~ for descending):
gcloud logging logs list --sort-by="{{field_name}}"


List logs sorted by multiple fields:
gcloud logging logs list --sort-by="{{field1}},~{{field2}}"


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

Code Snippets

List all logs in the current project

gcloud logging logs list

List all logs for a specific log bucket and location

gcloud logging logs list --bucket={{bucket_id}} --location={{location}}

List all logs for a specific view in a log bucket

gcloud logging logs list --bucket={{bucket_id}} --location={{location}} --view={{view_id}}

List logs with a filter expression

gcloud logging logs list --filter="{{expression}}"

List a specified number of logs

gcloud logging logs list --limit={{number}}

Context

tldr-pages: common/gcloud logging logs list

Revisions (0)

No revisions yet.