2016-10-12 08:44:29 +02:00

48 lines
1.0 KiB
JavaScript

'use strict';
class Logs {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
logs: {
usage: 'Output the logs of a deployed function',
lifecycleEvents: [
'logs',
],
options: {
function: {
usage: 'The function name',
required: true,
shortcut: 'f',
},
stage: {
usage: 'Stage of the service',
shortcut: 's',
},
region: {
usage: 'Region of the service',
shortcut: 'r',
},
tail: {
usage: 'Tail the log output',
shortcut: 't',
},
startTime: {
usage: 'Logs before this time will not be displayed',
},
filter: {
usage: 'A filter pattern',
},
interval: {
usage: 'Tail polling interval in milliseconds. Default: `1000`',
shortcut: 'i',
},
},
},
};
}
}
module.exports = Logs;