012 remove signoz

This commit is contained in:
Раис Юсупалиев
2026-03-08 22:59:11 +03:00
parent 81e484d7d1
commit f799f2ba03
29 changed files with 118 additions and 1323 deletions
+2 -9
View File
@@ -4,7 +4,6 @@
- `app`: FastAPI service (`uvicorn app.main:app`) built from root `Dockerfile`
- `redis`: price cache backend
- `signoz`: observability backend (UI + OTLP receiver)
## Environment wiring
@@ -12,20 +11,14 @@
- `G2S_CONFIG_FILE=/app/config.yaml`
- `G2S_REPOSITORY__REDIS_DSN=redis://redis:6379/0`
- `G2S_OBSERVABILITY__OTLP_ENDPOINT=http://signoz:4317`
- `PYTHONUNBUFFERED=1`
### `signoz` service
- `G2S_ALERTS__TELEGRAM_BOT_TOKEN` (optional for Telegram alerts)
- `G2S_ALERTS__TELEGRAM_CHAT_ID` (optional for Telegram alerts)
## Startup instructions
1. Validate compose syntax:
- `docker compose config`
2. Start dependencies:
- `docker compose up -d redis signoz`
- `docker compose up -d redis`
3. Verify running containers:
- `docker compose ps`
4. Start application:
@@ -37,6 +30,6 @@
```bash
docker compose config
docker compose up -d redis signoz
docker compose up -d redis
docker compose ps
```