1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
```bash
cargo build --release
```
The binary is self-contained — it embeds database migrations and runs them on startup.
```ini
[Unit]
Description=xtrace AI Observability Service
After=postgresql.service
[Service]
Type=simple
Environment=DATABASE_URL=postgresql://user:pass@localhost:5432/xtrace
Environment=API_BEARER_TOKEN=your-secret-token
Environment=BIND_ADDR=0.0.0.0:8742
ExecStart=/usr/local/bin/xtrace
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
```
```bash
curl http://127.0.0.1:8742/healthz
```
Use this endpoint for load balancer health checks. It does not require authentication.
```nginx
upstream xtrace {
}
server {
}
```
- ---
::: warning
Data retention is not yet automated. Plan manual cleanup or cron jobs:
:::
```sql
-- Delete metrics older than 30 days
DELETE FROM metrics WHERE timestamp < NOW() - INTERVAL '30 days';
-- Delete traces older than 90 days
DELETE FROM observations WHERE created_at < NOW() - INTERVAL '90 days';
DELETE FROM traces WHERE created_at < NOW() - INTERVAL '90 days';
```