mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
773319d550
Add Server CE development environment GitOrigin-RevId: c91d9eb58b1dbc3be24646e77033cd3242e707f0
9 lines
394 B
Bash
Executable file
9 lines
394 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
|