Skip to content

Commit

Permalink
feat(cmd/delete): usage flags
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Fontana <[email protected]>
  • Loading branch information
fntlnz committed Nov 22, 2018
1 parent 79625b3 commit fe26a23
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/kubectl-trace/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ import (

var deleteCmd = &cobra.Command{
Use: "delete TRACEID",
Short: "",
Long: "",
Run: delete,
Short: "Delete a trace execution from your system",
Long: `Delete all the running pods that are collecting your trace data using bpftrace for a given TRACEID
`,
Run: delete,
}

func delete(cmd *cobra.Command, args []string) {
Expand Down

0 comments on commit fe26a23

Please sign in to comment.