File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ range of time.`,
21
21
Example : `# Logs from all VMs over the past 15 minutes
22
22
actuated-cli logs --owner=OWNER --age=15m HOST
23
23
24
- # All logs from a specific VM using its hostname as the --id
24
+ # Get the logs from a specific VM using its hostname as the --id
25
25
actuated-cli logs --owner=OWNER --id=ID HOST
26
26
` ,
27
27
}
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ func makeMetering() *cobra.Command {
18
18
19
19
Example : `# Get the metering snapshot from a specific VM using its hostname as the --id
20
20
actuated-cli metering --owner=OWNER --id=ID HOST
21
+
22
+ # Pipe to vmmeter for pretty-printing
23
+
24
+ actuated-cli metering --owner=OWNER --id=ID HOST | vmmeter
21
25
` ,
22
26
}
23
27
Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ https://github.com/self-actuated/actuated-cli
56
56
root .AddCommand (MakeVersion ())
57
57
58
58
root .AddCommand (makeController ())
59
+
60
+ root .AddCommand (makeMetering ())
59
61
}
60
62
61
63
func Execute () error {
You can’t perform that action at this time.
0 commit comments