Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
fix - aws database logs list help
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Strappazzon C committed Nov 5, 2023
1 parent 9fdc6ea commit 22ed94d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aws/database/logs/list/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ func NewCommand() *cobra.Command {
Short: "List all logs about database.",
Example: `
# List logs of specific database instance:
zenit aws database logs test-rds
zenit aws database logs list test-rds
# List slow query logs of specific database instance:
zenit aws database logs test-rds --filter=slowquery
zenit aws database logs list test-rds --filter=slowquery
# Sort list slow query logs of specific database instance:
zenit aws database logs test-rds --filter=slowquery --sort`,
zenit aws database logs list test-rds --filter=slowquery --sort`,
Run: func(cmd *cobra.Command, args []string) {
if len(args) == 0 || len(args) > 1 {
cmd.Help()
Expand Down

0 comments on commit 22ed94d

Please sign in to comment.