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.`,
2121 Example : `# Logs from all VMs over the past 15 minutes
2222actuated-cli logs --owner=OWNER --age=15m HOST
2323
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
2525actuated-cli logs --owner=OWNER --id=ID HOST
2626` ,
2727 }
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ func makeMetering() *cobra.Command {
1818
1919 Example : `# Get the metering snapshot from a specific VM using its hostname as the --id
2020actuated-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
2125` ,
2226 }
2327
Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ https://github.com/self-actuated/actuated-cli
5656 root .AddCommand (MakeVersion ())
5757
5858 root .AddCommand (makeController ())
59+
60+ root .AddCommand (makeMetering ())
5961}
6062
6163func Execute () error {
You can’t perform that action at this time.
0 commit comments