futuregrid / cloud-metrics

Project to create usage statistics from IaaS such as OpenStack, Eucalyptus, and Nimbus
2 stars 3 forks source link

[Meeting notes] 3/28 - cmd3: a new alternative shell #113

Open lee212 opened 11 years ago

lee212 commented 11 years ago

We agreed to move our development to cmd3 tool from cmd2. Cloud Metrics will provide cmd3 plugins to work with cmd3.

In this meeting, we defined certain activities to implement:

 $ cm

       FutureGrid - Cloud Mesh Shell
 ------------------------------------------------------
 ...
 cm> _

Example 2. script file

 $ cat scriptfile.txt
 ### Example of cmd3 command script
 load metric
 ...
 analyze -Y 2013 -m runtime
 chart -t line -o report.html
 ...

 $ cm -f scriptfile.txt
 ... metric plugin loaded ...
 ...
 Analyzing runtime metrics for 2013...
 ...
 line chart saved on report.html

Example 3. unix shell command along with parameters

 $ cm metric -Y 2013 -m runtime -o report.html
 ... metric plugin loaded ...
  Analyzing runtime metrics for 2013...
 ...
 line chart saved on report.html