10 lines
395 B
Bash
Executable File
10 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
|