mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 23:00:08 +02:00

Replace legacy `docker-compose` with `docker compose` GitOrigin-RevId: 1a876a5870be55dceecdff9cd1284235840e908f
9 lines
395 B
Bash
Executable file
9 lines
395 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
docker compose logs --follow --tail 10 --no-color "$@" \
|
|
| ggrep --line-buffered --invert-match "global.gc" \
|
|
| ggrep --line-buffered --invert-match "health.check" \
|
|
| ggrep --line-buffered --invert-match "slow event loop" \
|
|
| ggrep --line-buffered --invert-match "process.memoryUsage" \
|
|
| ggrep --line-buffered --only-matching "[{].*" \
|
|
| bunyan --output short
|