Update Advanced Configuration

Matthias Klein 2025-08-03 21:20:28 +00:00
parent fd0fccb3ec
commit bad03b4814

@ -63,8 +63,14 @@ https://hachyderm.io/tags/programming.rss
Monitor which feeds provide the best instance discovery: Monitor which feeds provide the best instance discovery:
```bash ```bash
# Check feed performance # Docker Compose Logs
grep "Successfully looked up" logs | \ docker-compose logs gts-holmirdas | \
grep "Successfully looked up" | \
cut -d'/' -f3 | sort | uniq -c | sort -nr
# Oder direkt Container Logs
docker logs gts-holmirdas 2>&1 | \
grep "Successfully looked up" | \
cut -d'/' -f3 | sort | uniq -c | sort -nr cut -d'/' -f3 | sort | uniq -c | sort -nr
``` ```