Skip to content

Commit

Permalink
change log length to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
busma13 committed Nov 1, 2023
1 parent 131ca88 commit ecf3cbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/scripts/src/helpers/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -798,19 +798,19 @@ export async function showESData(hostIP: string) {
}

export async function showTSMasterLogs() {
const subprocess = await execa.command('kubectl -n ts-dev1 logs -l app.kubernetes.io/component=master');
const subprocess = await execa.command('kubectl -n ts-dev1 logs --tail 1000 -l app.kubernetes.io/component=master');
signale.debug(subprocess.stdout);
logger.debug(subprocess.stdout);
}

export async function showTSExLogs() {
const subprocess = await execa.command('kubectl -n ts-dev1 logs -l app.kubernetes.io/component=execution_controller');
const subprocess = await execa.command('kubectl -n ts-dev1 logs --tail 1000 -l app.kubernetes.io/component=execution_controller');
signale.debug(subprocess.stdout);
logger.debug(subprocess.stdout);
}

export async function showTSWorkerLogs() {
const subprocess = await execa.command('kubectl -n ts-dev1 logs -l app.kubernetes.io/component=worker');
const subprocess = await execa.command('kubectl -n ts-dev1 logs --tail 1000 -l app.kubernetes.io/component=worker');
signale.debug(subprocess.stdout);
logger.debug(subprocess.stdout);
}
Expand Down

0 comments on commit ecf3cbe

Please sign in to comment.