Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

42
gcloud-logging-logs-list Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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://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`