Spaces:
Sleeping
Sleeping
File size: 16,792 Bytes
de4eb9c | 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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | # TRACE v1 Spec β OpenEnv Incident Response Environment
**Status:** Build-ready production v1
**Owner:** Rajarshi Datta
**Timeline:** 7 days
**Target:** Meta Γ PyTorch Γ Hugging Face OpenEnv Hackathon
This spec incorporates critical feedback on the v2.0 PRD. It is **narrowed, execution-ready, and removes all ambiguities.**
---
## Executive Summary
TRACE is a **deterministic, partial-observability RL environment** for **incident response in production infrastructure**. An AI agent interacts with realistic infrastructure incidents by observing systems, running diagnostic actions, and executing remediation. The environment is:
- **OpenEnv-compliant** (pyproject.toml, server/app.py, openenv.yaml)
- **Deterministic** (3 hand-crafted scenarios)
- **Partially observable** (ground truth hidden behind `inspect_*` actions)
- **Action-structured** (action_type + target + value)
- **Outcome-graded** (no diagnosis_accuracy; only resolution success + efficiency)
**Verdict:** This v1 is buildable, complies with validator, and remains challenging.
---
## 1. Problem Statement
Production engineers spend significant time on:
1. **Triage** β filtering false positives from real alerts
2. **Inspection** β digging through logs and metrics
3. **Diagnosis** β identifying root cause
4. **Remediation** β executing fixes (scale, restart, rollback)
5. **Validation** β confirming recovery
Current RL benchmarks do **not** simulate this workflow. TRACE fills that gap.
---
## 2. Design Principles (v1)
### P1 β Partial Observability (FIX #1)
**Previous problem:** Observations exposed `db_status`, `worker_health`, `recent_logs`, `alerts` directly. This leaked too much ground truth.
**Fix:** Observation shows only:
- Generic telemetry (CPU, memory, latency, error_rate, queue_depth)
- Alert names (no context)
- Service status enums (healthy, degraded, down)
Ground truth details (logs, detailed metrics, alert context) are hidden behind inspection actions.
### P2 β Deterministic Scenarios
Exactly 3 hand-crafted incident types, all **reproducible**:
| Scenario | Root Cause | Typical Fix |
|-----------------|-------------------------|--------------------------|
| easy_cpu_spike | Worker overload | scale_workers |
| medium_cascade | Queue deadlock cascades | restart_service |
| hard_mixed | DB + release regression | restart_database + wait |
### P3 β Action Structure (FIX #2)
**Previous problem:** Actions had no target or magnitude (`restart_service`, `scale_workers` with no arity).
**Fix:** All actions use **triple format:**
```python
(action_type, target, value)
```
Examples:
- `("restart_service", "api_workers", None)`
- `("scale_workers", "api_workers", 5)`
- `("inspect_logs", "database", None)`
### P4 β Reward: Cumulative + Normalized (FIX #3)
**Previous problem:** Rewards clamped to [0,1] per step, causing penalties to collapse to 0.
**Fix:**
- Collect all step rewards (no per-step clamping)
- Normalize **only at episode end**
- Ensures agent learns long-horizon causality
### P5 β Discovery Action for Diagnosis (FIX #4)
**Previous problem:** Grader includes `diagnosis_accuracy`, but action space has no way to state a diagnosis.
**Fix:** Remove `diagnosis_accuracy` from final grade. Grade only:
- **Resolution success** (binary: incident resolved or not)
- **Efficiency** (steps vs max_steps)
Agent learns diagnosis implicitly through remediation actions.
---
## 3. Environment Architecture
```
ββββββββββββββββββββββββββββββββ
β inference.py β
β (LLM Agent Loop) β
ββββββββββββ¬ββββββββββββββββββββ
β HTTP
ββββββββ΄βββββββ
βΌ βΌ
POST /step GET /state
POST /reset GET /health
β β²
ββββββββ¬βββββββ
βΌ
βββββββββββββββ
β TraceEnv β
β (gym-like) β
ββββββββ¬βββββββ
β
ββββββββ΄βββββββ¬βββββββββββ¬ββββββββββ
βΌ βΌ βΌ βΌ
scenarios simulator rewards graders
```
---
## 4. Observation Space
```python
class Observation(BaseModel):
timestamp: str # ISO8601
# Metrics (always visible)
cpu_usage_pct: float # [0, 100]
memory_usage_pct: float
error_rate_pct: float
api_latency_ms: float
queue_depth: int
# Service status (always visible, generic)
services: dict[str, str] # e.g., {"api_workers": "healthy"}
# Alerts (names only, no context)
active_alerts: list[str] # e.g., ["alert_001", "alert_002"]
# Inspection results (populated by inspect_* actions)
last_inspection: Optional[dict] # {"type": "logs", "target": "api_workers", "data": "..."}
```
**Key:** Root cause is hidden until agent calls `inspect_logs`, `inspect_metrics`, `inspect_alert`.
---
## 5. Action Space
```python
class Action(BaseModel):
action_type: str
target: Optional[str] # service/metric/alert_id
value: Optional[float] # scaling factor, count, etc.
```
**Valid actions:**
| Action | Target | Value | Effect |
|--------|--------|-------|--------|
| `inspect_logs` | service_name | None | Returns log snippet (reveals cause) |
| `inspect_metrics` | metric_name | None | Returns metric timeseries |
| `inspect_alert` | alert_id | None | Returns alert details |
| `restart_service` | service_name | None | Resets service state |
| `scale_workers` | service_name | worker_count | Scales horizontally |
| `restart_database` | None | None | Resets DB state |
| `rollback_release` | None | None | Undoes recent deployment |
| `clear_queue` | None | None | Clears backlog |
| `declare_healthy` | None | None | Declare incident resolved (terminal) |
| `declare_unfixable` | None | None | Give up (terminal) |
---
## 6. Scenario Design
### Scenario 1: `easy_cpu_spike`
**Difficulty:** Beginner (2β4 steps)
**Trigger:** Sudden traffic spike floods API workers.
**Observable symptoms:**
- `cpu_usage_pct` β 85%
- `api_latency_ms` β 500ms
- `error_rate_pct` β 5%
- `active_alerts` β ["alert_cpu_high"]
- `services.api_workers` β "degraded"
**Hidden root cause:** Workload surge, solvable by horizontal scaling
**Optimal trajectory:**
```
1. Observe metrics (CPU high is visible)
2. inspect_logs("api_workers") β reveals "traffic spike, need more workers"
3. scale_workers("api_workers", 5) β CPU β 60%, incident recovers
4. declare_healthy() β DONE
```
**Reward:** Inspection (+1), Remediation (+5), Declare (+10) = success
---
### Scenario 2: `medium_cascade`
**Difficulty:** Intermediate (3β6 steps)
**Trigger:** Queue service memory leak + cascading worker failures.
**Observable symptoms (evolve over steps):**
- Step 1: `queue_depth` rising slowly
- Step 3: `queue_depth` > 500, `error_rate_pct` rising
- Step 5: `services.queue_service` β "degraded", worker timeouts begin
- Step 7: Multiple services β "degraded"
**Hidden root cause:** Queue memory leak; fixable by restart
**Optimal trajectory:**
```
1. Observe metrics (queue_depth unusual)
2. inspect_metrics("queue_depth") β "backlog critical"
3. inspect_logs("queue_service") β "memory usage high, leak suspected"
4. restart_service("queue_service") β queue resets, backlog clears
5. declare_healthy()
```
**Reward:** 2Γ Inspection (+2), Remediation (+5), Declare (+10) = strong success
---
### Scenario 3: `hard_mixed`
**Difficulty:** Advanced (4β8 steps)
**Trigger:** Recent release + DB connection pool exhaustion + cascading errors.
**Observable symptoms:**
- `error_rate_pct` spiking (5% β 20%)
- `api_latency_ms` very high (100 β 2000ms)
- Multiple alerts: `["alert_high_error_rate", "alert_db_slow", "alert_pool_exhaustion"]`
- `services.database` β "degraded"
- False lead: CPU is high (symptom, not cause)
**Hidden root cause:** DB pool exhausted (release added inefficient queries + not enough connections)
**Optimal trajectory:**
```
1. Observe metrics (error spike, latency spike)
2. inspect_alert("alert_pool_exhaustion") β "DB connection pool at 100%"
3. inspect_logs("database") β "recent release queries inefficient"
4. inspect_metrics("db_connections") β confirms pool exhaustion
5. restart_database() β pool resets, errors drop
6. [optional] rollback_release() if still degraded β teaches causality
7. declare_healthy()
```
**Reward:** 3+ Inspections (+3), Remediation (+8), Declare (+10) = strong success
---
## 7. Reward Structure (FIXED)
### Step-wise Rewards (Accumulated, No Per-Step Clamping)
```python
reward = 0
# Inspection
if action == inspect_logs and target is relevant:
reward += 1.0
if action == inspect_metrics and target is relevant:
reward += 1.0
if action == inspect_alert:
reward += 0.5
# Remediation
if action solves active problem:
reward += 5.0
# Penalties
if action is duplicate_recent:
reward -= 0.5
if action worsens incident:
reward -= 2.0
if action is irrelevant:
reward -= 0.1
# Terminal
if declare_healthy() and incident_resolved:
reward += 10.0
if declare_healthy() and NOT incident_resolved:
reward -= 5.0
```
**All rewards summed across episode. No clamping until end.**
### Final Score (Outcome-Based)
```python
# Normalize accumulated reward
episode_reward = sum(step_rewards) / max_possible_reward
final_reward = min(max(episode_reward, 0), 1.0)
# Grading (NO diagnosis_accuracy)
score = (
0.6 * (1.0 if incident_resolved else 0.0) # binary success
+ 0.4 * (1.0 - steps_taken / max_steps) # efficiency
)
```
**Example:**
- Easy task: max_steps=5, agent solves in 3 β score = 0.6Γ1.0 + 0.4Γ(1 - 3/5) = 0.76
- Hard task: max_steps=8, agent solves in 8 β score = 0.6Γ1.0 + 0.4Γ(1 - 8/8) = 0.60
---
## 8. State Transition Logic
### Deterministic Stepping
Each episode uses a **scenario_clock** that progresses deterministically. Same seed β same trajectory.
```python
def transition(state, action) -> (next_state, reward, done):
# Advance time
state.timestamp = increment_time(state.seed)
# Apply scenario progression (if no action taken)
if action not relevant:
state = apply_scenario_step(state) # e.g., queue_depth grows
# If remediation action, apply fix
if action == restart_service:
state.services[target] = "healthy"
state = reset_related_metrics()
# Check terminal
if incident_resolved_enough():
done = True
return state, reward, done
```
**Property:** `transition(state, a, seed=42)` is deterministic.
---
## 9. API Routes
### POST /reset
Request:
```json
{
"task_id": "easy_cpu_spike" | "medium_cascade" | "hard_mixed",
"seed": 42
}
```
Response:
```json
{
"observation": {...},
"info": {
"task_id": "easy_cpu_spike",
"episode_id": "uuid",
"max_steps": 5,
"root_cause": "traffic_spike"
}
}
```
### POST /step
Request:
```json
{
"action": {
"action_type": "scale_workers",
"target": "api_workers",
"value": 5
}
}
```
Response:
```json
{
"observation": {...},
"reward": 5.0,
"done": false,
"info": {
"step": 1,
"episode_reward": 5.0,
"message": "Workers scaled to 5"
}
}
```
### GET /state
Response:
```json
{
"observation": {...},
"episode_reward": 5.0,
"steps": 1,
"done": false
}
```
### GET /health
Response:
```json
{
"status": "healthy",
"version": "0.1.0"
}
```
---
## 10. Project Structure
```text
TRACE/
βββ pyproject.toml # OpenEnv spec
βββ uv.lock # Dependencies locked
βββ README.md
βββ openenv.yaml # Environment metadata
βββ Dockerfile
βββ requirements.txt
βββ .env.example
β
βββ trace/ # Core module
β βββ __init__.py
β βββ env.py # TraceEnv class
β βββ models.py # Pydantic schemas
β βββ scenarios.py # Scenario generators
β βββ simulator.py # State transitions
β βββ rewards.py # Reward engine
β βββ graders.py # Grading logic
β βββ utils.py # Helpers
β
βββ server/ # FastAPI app
β βββ __init__.py
β βββ app.py # Routes + server
β
βββ inference.py # Agent policy loop
β
βββ tests/
β βββ __init__.py
β βββ test_env.py
β βββ test_api.py
β βββ test_rewards.py
β βββ test_graders.py
β βββ test_scenarios.py
β
βββ scripts/
βββ run_benchmark.py # Local evaluation
```
---
## 11. Testing
### Unit Tests
1. **test_scenarios.py:** Seed determinism β verify same seed produces same trajectory
2. **test_rewards.py:** Cumulative rewards (no per-step clamping)
3. **test_graders.py:** Final score calculation
4. **test_env.py:** State transitions
### API Tests
1. POST /reset returns valid Observation
2. POST /step accepts valid Action, returns next state
3. GET /health returns 200 OK
4. Invalid action β 400 Bad Request
### Validation
```bash
openenv validate
./validate-submission.sh
```
---
## 12. Docker & Deployment
```dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -e .
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]
```
**HF Spaces:** Push to `meta-trace` repo, enable auto-deploy.
---
## 13. Inference Pipeline
**File:** `inference.py`
```python
import os
from openai import OpenAI
client = OpenAI(
base_url=os.getenv("API_BASE_URL", "http://localhost:7860"),
api_key=os.getenv("HF_TOKEN")
)
print("[START]")
# Agent loop
response = client.post("/reset", json={"task_id": "easy_cpu_spike", "seed": 0})
state = response.json()["observation"]
done = False
for step in range(MAX_STEPS):
# LLM decides next action
action = agent_policy(state)
response = client.post("/step", json={"action": action})
state = response.json()["observation"]
reward = response.json()["reward"]
done = response.json()["done"]
if done:
break
print("[END]")
```
**Emit exactly:**
- `[START]` before first step
- `[END]` after completion
---
## 14. Risk Register
| Risk | Mitigation |
|------|-----------|
| Validator fails on structure | Continuous `openenv validate` during dev |
| Scenarios become random | Seed-based RNG, determinism tests |
| Reward instability | No per-step clamp, cumulative only |
| Observability too opaque | 3 simple scenarios + dense inspection rewards |
| Diagnosis is ungraded | Removed from final score; implicit in remediation |
---
## 15. Success Criteria (v1 Complete)
β
`pyproject.toml` + `uv.lock` present
β
`openenv validate` passes
β
3 deterministic scenarios reproducible by seed
β
API: /reset, /step, /state, /health working
β
Rewards cumulative-normalized, no per-step clamp
β
Observations hide ground truth (partial observability)
β
Actions all use (type, target, value) format
β
Grader: 0.6Γsuccess + 0.4Γefficiency (no diagnosis_accuracy)
β
`inference.py` runs, emits `[START]` and `[END]`
β
Docker builds and serves
β
All tests pass
---
## 16. Execution Plan (7 Days)
| Day | Milestone |
|-----|-----------|
| 1β2 | Models + scenarios + simulator (determinism verified) |
| 3 | Rewards (cumulative logic) + graders |
| 4 | FastAPI server + Docker + `openenv validate` |
| 5 | `inference.py` + logging + tests |
| 6 | Deploy to HF Spaces |
| 7 | Polish + final validation |
---
**Status:** This spec is **build-ready**. Execute continuously against validator. No further design changes.
|