All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Add Versioning section to README with version format table and cross-SDK alignment note (Python PEP 440 vs JS semver) - Add Versioning section to integration guide with install commands for stable and dev builds, pinning examples, and SDK format comparison - Update API reference header to reflect dev version format Refs #1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
221 lines
7.0 KiB
Markdown
221 lines
7.0 KiB
Markdown
# mosaicstack-telemetry
|
|
|
|
Python client SDK for [Mosaic Stack Telemetry](https://github.com/mosaicstack/telemetry). Report AI coding task-completion telemetry and query crowd-sourced predictions for token usage, cost, and quality outcomes.
|
|
|
|
**Targets:** Telemetry API **v1** | Event schema **1.0** | Python **3.10+**
|
|
|
|
## Installation
|
|
|
|
Install from the Mosaic Stack package registry:
|
|
|
|
```bash
|
|
pip install mosaicstack-telemetry --index-url https://git.mosaicstack.dev/api/packages/mosaic/pypi/simple/
|
|
```
|
|
|
|
Or with [uv](https://docs.astral.sh/uv/):
|
|
|
|
```bash
|
|
uv add mosaicstack-telemetry --index-url https://git.mosaicstack.dev/api/packages/mosaic/pypi/simple/
|
|
```
|
|
|
|
To avoid passing `--index-url` every time, add the registry to your project's `pyproject.toml`:
|
|
|
|
```toml
|
|
[[tool.uv.index]]
|
|
name = "mosaic"
|
|
url = "https://git.mosaicstack.dev/api/packages/mosaic/pypi/simple/"
|
|
```
|
|
|
|
Or to `pip.conf` / `~/.config/pip/pip.conf`:
|
|
|
|
```ini
|
|
[global]
|
|
extra-index-url = https://git.mosaicstack.dev/api/packages/mosaic/pypi/simple/
|
|
```
|
|
|
|
Runtime dependencies: `httpx` and `pydantic`.
|
|
|
|
## Quick Start
|
|
|
|
### 1. Configure
|
|
|
|
Set environment variables (or pass values to the constructor):
|
|
|
|
```bash
|
|
export MOSAIC_TELEMETRY_SERVER_URL=https://tel-api.mosaicstack.dev
|
|
export MOSAIC_TELEMETRY_API_KEY=your-64-char-hex-api-key
|
|
export MOSAIC_TELEMETRY_INSTANCE_ID=a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
|
|
```
|
|
|
|
### 2. Track Events
|
|
|
|
```python
|
|
from mosaicstack_telemetry import (
|
|
TelemetryClient,
|
|
TelemetryConfig,
|
|
EventBuilder,
|
|
TaskType,
|
|
Provider,
|
|
Harness,
|
|
Complexity,
|
|
Outcome,
|
|
QualityGate,
|
|
)
|
|
|
|
config = TelemetryConfig() # Reads from MOSAIC_TELEMETRY_* env vars
|
|
|
|
with TelemetryClient(config) as client:
|
|
event = (
|
|
EventBuilder(instance_id=config.instance_id)
|
|
.task_type(TaskType.IMPLEMENTATION)
|
|
.model("claude-sonnet-4-5-20250929")
|
|
.provider(Provider.ANTHROPIC)
|
|
.harness_type(Harness.CLAUDE_CODE)
|
|
.complexity_level(Complexity.MEDIUM)
|
|
.outcome_value(Outcome.SUCCESS)
|
|
.duration_ms(45000)
|
|
.tokens(estimated_in=105000, estimated_out=45000, actual_in=112340, actual_out=38760)
|
|
.cost(estimated=630000, actual=919200) # Microdollars (1 USD = 1,000,000)
|
|
.quality(passed=True, gates_run=[QualityGate.BUILD, QualityGate.LINT, QualityGate.TEST])
|
|
.context(compactions=2, rotations=0, utilization=0.72)
|
|
.language("typescript")
|
|
.build()
|
|
)
|
|
|
|
client.track(event) # Non-blocking, thread-safe, never throws
|
|
```
|
|
|
|
`track()` queues the event in memory. A background thread flushes batches to the server every 5 minutes (configurable). The context manager ensures all events are flushed on exit.
|
|
|
|
## Async Usage
|
|
|
|
For asyncio applications (FastAPI, aiohttp, etc.):
|
|
|
|
```python
|
|
async with TelemetryClient(config) as client:
|
|
client.track(event) # track() is always synchronous
|
|
```
|
|
|
|
Or manually:
|
|
|
|
```python
|
|
client = TelemetryClient(config)
|
|
await client.start_async()
|
|
client.track(event)
|
|
await client.stop_async()
|
|
```
|
|
|
|
## FastAPI Integration
|
|
|
|
```python
|
|
from contextlib import asynccontextmanager
|
|
from fastapi import FastAPI
|
|
from mosaicstack_telemetry import TelemetryClient, TelemetryConfig
|
|
|
|
config = TelemetryConfig() # From env vars
|
|
telemetry = TelemetryClient(config)
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(app: FastAPI):
|
|
await telemetry.start_async()
|
|
yield
|
|
await telemetry.stop_async()
|
|
|
|
app = FastAPI(lifespan=lifespan)
|
|
|
|
@app.post("/tasks/complete")
|
|
async def complete_task():
|
|
# ... build event from request data ...
|
|
telemetry.track(event)
|
|
return {"status": "tracked"}
|
|
```
|
|
|
|
See the [Integration Guide](docs/integration-guide.md) for the full FastAPI example.
|
|
|
|
## Querying Predictions
|
|
|
|
Fetch crowd-sourced predictions for token usage, cost, and quality:
|
|
|
|
```python
|
|
from mosaicstack_telemetry import PredictionQuery, TaskType, Provider, Complexity
|
|
|
|
query = PredictionQuery(
|
|
task_type=TaskType.IMPLEMENTATION,
|
|
model="claude-sonnet-4-5-20250929",
|
|
provider=Provider.ANTHROPIC,
|
|
complexity=Complexity.MEDIUM,
|
|
)
|
|
|
|
# Sync
|
|
client.refresh_predictions_sync([query])
|
|
# Async
|
|
await client.refresh_predictions([query])
|
|
|
|
# Read from cache
|
|
prediction = client.get_prediction(query)
|
|
if prediction and prediction.prediction:
|
|
print(f"Median input tokens: {prediction.prediction.input_tokens.median}")
|
|
print(f"Median cost: ${prediction.prediction.cost_usd_micros['median'] / 1_000_000:.4f}")
|
|
print(f"Quality gate pass rate: {prediction.prediction.quality.gate_pass_rate:.0%}")
|
|
```
|
|
|
|
## Configuration Reference
|
|
|
|
| Parameter | Default | Env Var | Description |
|
|
|-----------|---------|---------|-------------|
|
|
| `server_url` | (required) | `MOSAIC_TELEMETRY_SERVER_URL` | Telemetry API base URL |
|
|
| `api_key` | (required) | `MOSAIC_TELEMETRY_API_KEY` | 64-character hex API key |
|
|
| `instance_id` | (required) | `MOSAIC_TELEMETRY_INSTANCE_ID` | UUID identifying this instance |
|
|
| `enabled` | `True` | `MOSAIC_TELEMETRY_ENABLED` | Enable/disable telemetry |
|
|
| `submit_interval_seconds` | `300.0` | -- | Background flush interval (seconds) |
|
|
| `max_queue_size` | `1000` | -- | Max events in memory queue |
|
|
| `batch_size` | `100` | -- | Events per batch (server max: 100) |
|
|
| `request_timeout_seconds` | `10.0` | -- | HTTP request timeout |
|
|
| `prediction_cache_ttl_seconds` | `21600.0` | -- | Prediction cache TTL (6 hours) |
|
|
| `dry_run` | `False` | -- | Log batches but don't send to server |
|
|
| `max_retries` | `3` | -- | Retries on transient failures |
|
|
|
|
Constructor values take priority over environment variables.
|
|
|
|
## Error Handling
|
|
|
|
- `track()` **never throws** and **never blocks**. Errors are logged, not raised.
|
|
- When the queue is full, the oldest events are evicted.
|
|
- Failed submissions are retried with exponential backoff (honors `Retry-After` on 429).
|
|
- All logging uses the `mosaicstack_telemetry` logger.
|
|
|
|
## Dry-Run Mode
|
|
|
|
Test your integration without sending data:
|
|
|
|
```python
|
|
config = TelemetryConfig(
|
|
server_url="https://tel-api.mosaicstack.dev",
|
|
api_key="a" * 64,
|
|
instance_id="12345678-1234-1234-1234-123456789abc",
|
|
dry_run=True, # Logs batches but doesn't send
|
|
)
|
|
```
|
|
|
|
## Versioning
|
|
|
|
This SDK publishes two types of versions to the Mosaic Stack PyPI registry:
|
|
|
|
| Channel | Version Format | Example | Branch | Install |
|
|
|---------|---------------|---------|--------|---------|
|
|
| **Stable** | `X.Y.Z` | `0.1.0` | `main` / tags | `pip install mosaicstack-telemetry` |
|
|
| **Dev** | `X.Y.Z.devYYYYMMDDHHMMSS` | `0.1.0.dev20260215045901` | `develop` | `pip install mosaicstack-telemetry --pre` |
|
|
|
|
Dev versions use a UTC timestamp suffix (PEP 440 format). This aligns with the JS client SDK which uses the equivalent semver format `X.Y.Z-dev.YYYYMMDDHHmmss`.
|
|
|
|
By default, `pip install` resolves only stable releases. Pass `--pre` to include dev versions.
|
|
|
|
## Documentation
|
|
|
|
- **[Integration Guide](docs/integration-guide.md)** -- Installation, configuration, FastAPI and generic Python examples, async vs sync patterns, prediction queries, error handling
|
|
- **[API Reference](docs/api-reference.md)** -- All exported classes, methods, types, and enums
|
|
|
|
## License
|
|
|
|
MPL-2.0
|