2015-08-26 01:10:13 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Joyent Inc. All rights reserved.
|
|
|
|
*
|
2015-08-26 01:15:02 +03:00
|
|
|
* `triton instance-audit ...`
|
2015-08-26 01:10:13 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
var format = require('util').format;
|
|
|
|
var tabula = require('tabula');
|
|
|
|
|
|
|
|
var errors = require('./errors');
|
|
|
|
|
|
|
|
|
2015-08-26 01:15:02 +03:00
|
|
|
function do_instance_audit(subcmd, opts, args, callback) {
|
2015-08-26 01:10:13 +03:00
|
|
|
var self = this;
|
|
|
|
if (opts.help) {
|
|
|
|
this.do_help('help', {}, [subcmd], callback);
|
|
|
|
return;
|
|
|
|
} else if (args.length > 1) {
|
|
|
|
//XXX Support multiple machines.
|
|
|
|
return callback(new Error('too many args: ' + args));
|
|
|
|
}
|
|
|
|
|
|
|
|
var id = args[0];
|
|
|
|
this.sdc.machineAudit({machine: id}, function (err, audit, dc) {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
for (var i = 0; i < audit.length; i++) {
|
|
|
|
audit[i].dc = dc;
|
|
|
|
}
|
|
|
|
if (opts.json) {
|
|
|
|
p(JSON.stringify(audit, null, 4));
|
|
|
|
} else {
|
|
|
|
return callback(new error.InternalError("tabular output for audit NYI")); // XXX
|
|
|
|
//common.tabulate(audit, {
|
|
|
|
// columns: 'dc,id,name,state,created',
|
|
|
|
// sort: 'created',
|
|
|
|
// validFields: 'dc,id,name,type,state,image,package,memory,'
|
|
|
|
// + 'disk,created,updated,compute_node,primaryIp'
|
|
|
|
//});
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
};
|
2015-08-26 01:15:02 +03:00
|
|
|
do_instance_audit.options = [
|
2015-08-26 01:10:13 +03:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON output.'
|
|
|
|
}
|
|
|
|
];
|
2015-08-26 01:15:02 +03:00
|
|
|
do_instance_audit.help = (
|
2015-08-26 01:10:13 +03:00
|
|
|
'List instance actions.\n'
|
|
|
|
+ '\n'
|
|
|
|
+ 'Usage:\n'
|
2015-08-26 01:15:02 +03:00
|
|
|
+ ' {{name}} instance-audit <machine>\n'
|
2015-08-26 01:10:13 +03:00
|
|
|
+ '\n'
|
|
|
|
+ '{{options}}'
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-08-26 01:15:02 +03:00
|
|
|
module.exports = do_instance_audit;
|