mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0a470fb54f
* Avoid stray backslash in ggrep pattern * Add new services to README * Avoid building in bin/up * Add init script * Update README.md * Use cURL to wait for MongoDB * Add a note about COMPOSE_PARALLEL_LIMIT * Use the new callout syntax GitOrigin-RevId: 9aaec37e893a2da807fed2dc4b00fa52a433c390
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
|