import { Command } from 'commander'; import { createClient } from '../../client/client.js'; import { step } from '../../utils/step.js'; import { Context } from '../../context/context.js'; import { Config } from '../../config/config.js'; const list = new Command('list'); const toInt = (value?: string) => { if (!value) { return undefined; } return parseInt(value, 10); }; list .alias('ls') .description('List logs') .option('-r, --run-id ', 'Run ID') .option('-l, --load-id ', 'Load ID') .option('--severities ', 'Severities') .option('-o, --offset ', 'Offset') .option('-a, --limit ', 'Limit', '1000') .option('-s, --sort ', 'Sort', 'desc') .action(async () => { const { runId, loadId, severities, offset, limit, order } = list.opts(); const config = new Config(); const context = new Context(config.context); const client = await step('Connecting to server', async () => { return createClient(context); }); const logs = await step('Getting logs', async () => { return await client.logs.find.query({ runId, loadId, severities, offset: toInt(offset), limit: toInt(limit), order, }); }); console.table(logs); }); export { list };