|
| 1 | +# Loki Kafka Development Setup |
| 2 | + |
| 3 | +This directory contains the development environment for testing Loki with Kafka integration. The setup provides supporting services (Kafka, Grafana, and a log generator) via docker-compose, while Loki itself needs to be run manually from source code for development purposes. |
| 4 | + |
| 5 | +## Quick Start |
| 6 | + |
| 7 | +1. Start the supporting services (Kafka, Grafana, Log Generator): |
| 8 | + ```bash |
| 9 | + docker-compose up -d |
| 10 | + ``` |
| 11 | + |
| 12 | +2. Run Loki manually with Kafka configuration: |
| 13 | + ```bash |
| 14 | + # From the root of the Loki repository |
| 15 | + go run ./cmd/loki/main.go --config.file=tools/dev/kafka/loki-local-config.debug.yaml --log.level=debug -target=all |
| 16 | + ``` |
| 17 | + |
| 18 | + Note: Loki is not included in docker-compose as it's intended to be run directly from source code for development. |
| 19 | + |
| 20 | +## Services |
| 21 | + |
| 22 | +### Kafka |
| 23 | +- Broker accessible at `localhost:9092` |
| 24 | +- Uses KRaft (no ZooKeeper required) |
| 25 | +- Single broker setup for development |
| 26 | +- Topic `loki` is used for log ingestion |
| 27 | + |
| 28 | +### Kafka UI |
| 29 | +- Web interface available at http://localhost:8080 |
| 30 | +- Monitor topics, messages, and consumer groups |
| 31 | +- No authentication required |
| 32 | + |
| 33 | +### Grafana |
| 34 | +- Available at http://localhost:3000 |
| 35 | +- Anonymous access enabled (Admin privileges) |
| 36 | +- Pre-configured with Loki data source |
| 37 | +- Features enabled: |
| 38 | + - Loki logs dataplane |
| 39 | + - Explore logs shard splitting |
| 40 | + - Loki explore app |
| 41 | + |
| 42 | +### Log Generator |
| 43 | +- Automatically sends sample logs to Loki |
| 44 | +- Useful for testing and development |
| 45 | +- Configured to push logs directly to Loki's HTTP endpoint |
| 46 | + |
| 47 | +## Configuration Files |
| 48 | + |
| 49 | +- `docker-compose.yaml`: Service definitions and configuration |
| 50 | +- `loki-local-config.debug.yaml`: Loki configuration with Kafka enabled |
| 51 | + - Kafka ingestion enabled |
| 52 | + - Local storage in `/tmp/loki` |
| 53 | + - Debug logging enabled |
| 54 | + |
| 55 | +## Debugging |
| 56 | + |
| 57 | +### VSCode Configuration |
| 58 | +Create `.vscode/launch.json` in the root directory: |
| 59 | +```json |
| 60 | +{ |
| 61 | + "version": "0.2.0", |
| 62 | + "configurations": [ |
| 63 | + { |
| 64 | + "name": "Launch Loki (Kafka)", |
| 65 | + "type": "go", |
| 66 | + "request": "launch", |
| 67 | + "mode": "auto", |
| 68 | + "program": "${workspaceFolder}/cmd/loki/main.go", |
| 69 | + "args": [ |
| 70 | + "--config.file=../../tools/dev/kafka/loki-local-config.debug.yaml", |
| 71 | + "--log.level=debug", |
| 72 | + "-target=all" |
| 73 | + ], |
| 74 | + "buildFlags": "-mod vendor" |
| 75 | + } |
| 76 | + ] |
| 77 | +} |
| 78 | +``` |
| 79 | + |
| 80 | +## Common Tasks |
| 81 | + |
| 82 | +### View Logs |
| 83 | +```bash |
| 84 | +# All services |
| 85 | +docker-compose logs -f |
| 86 | + |
| 87 | +# Specific service |
| 88 | +docker-compose logs -f kafka |
| 89 | +docker-compose logs -f grafana |
| 90 | +``` |
| 91 | + |
| 92 | +### Reset Environment |
| 93 | +```bash |
| 94 | +# Stop and remove containers |
| 95 | +docker-compose down |
| 96 | + |
| 97 | +# Remove local Loki data |
| 98 | +rm -rf /tmp/loki |
| 99 | + |
| 100 | +# Start fresh |
| 101 | +docker-compose up -d |
| 102 | +``` |
| 103 | + |
| 104 | +### Verify Setup |
| 105 | +1. Check Kafka UI (http://localhost:8080) for: |
| 106 | + - Broker health |
| 107 | + - Topic creation |
| 108 | + - Message flow |
| 109 | + |
| 110 | +2. Check Grafana (http://localhost:3000): |
| 111 | + - Navigate to Explore |
| 112 | + - Select Loki data source |
| 113 | + - Query logs using LogQL |
| 114 | + |
| 115 | +## Troubleshooting |
| 116 | + |
| 117 | +- **Loki fails to start**: Check if port 3100 is available |
| 118 | +- **No logs in Grafana**: |
| 119 | + - Verify Kafka topics are created |
| 120 | + - Check log generator is running |
| 121 | + - Verify Loki is receiving data through Kafka UI |
| 122 | +- **Kafka connection issues**: |
| 123 | + - Ensure broker is running (`docker-compose ps`) |
| 124 | + - Check broker logs (`docker-compose logs broker`) |
0 commit comments