Architecture

Four specialized planes working together to deliver reliability at scale.

ARCHITECTURE OVERVIEW

Telemetry Plane

  • - Metrics ingestion
  • - Tracing
  • - Health signals

Control Plane

  • - Routing policies
  • - Rollout configs
  • - Audit history

Data Plane

  • - RPC traffic
  • - Endpoint routing
  • - Backpressure handling

AI Plane

  • - Incident summaries
  • - Root cause hints
  • - Runbook generation

Telemetry Plane

Collects, aggregates, and analyzes metrics, traces, and logs from all system components.

Data Collection

Lightweight agents deployed alongside RPC nodes emit structured telemetry including latency histograms, error counts, and resource utilization metrics.

Real-time Aggregation

Time-series database stores metrics with millisecond precision. Streaming aggregation provides instant visibility into system health.

Anomaly Detection

Statistical models and threshold-based alerts identify degradation early. Automatic incident creation with full context.

Control Plane

Manages configuration, policies, and orchestration. The source of truth for how your infrastructure should behave.

Policy Management

Define routing policies, health check parameters, and failover rules through declarative configuration with version control and audit trails.

Configuration Distribution

Changes propagate to Data Plane components in seconds. Safe rollout controls prevent cascading failures.

Audit & Compliance

Every configuration change is logged with attribution and timestamp. Full history with diff viewing and rollback capabilities.

Data Plane

Handles request routing, load balancing, and failover. Optimizes traffic flow based on real-time conditions.

Endpoint Scoring

Continuously evaluates endpoints based on latency, error rate, and policy constraints. Weighted scoring determines optimal routing targets.

Load Balancing

Multiple algorithms supported: weighted round-robin, least connections, latency-based. Automatic adjustment under load.

Automatic Failover

Instant traffic shifting when endpoints degrade. Circuit breaker patterns prevent cascade failures. Gradual recovery when health returns.

AI Plane

Claude-powered intelligence for diagnostics, incident response, and operational insights.

Incident Analysis

Correlates symptoms across telemetry streams to identify root causes. Compares with historical incidents to surface patterns and suggest fixes.

Runbook Generation

Automatically creates detailed remediation steps for recurring issues. Operators can refine and approve runbooks for future automation.

Operational Summaries

Daily and weekly summaries of system health, incidents resolved, configuration changes, and capacity trends. Executive-friendly reporting.

Policy Engine Examples

Declarative policies that control routing behavior

Latency-based Routing
target_p99: 200ms
failover_threshold: 500ms
evaluation_window: 30s
action: shift_traffic
Error Rate Threshold
max_error_rate: 1.0%
grace_period: 10s
recovery_threshold: 0.1%
action: circuit_break
Cost-aware Failover
primary_tier: standard
fallback_tier: premium
max_premium_ratio: 20%
revert_delay: 5m
Geographic Preference
preferred_region: us-west
max_cross_region: 10%
latency_penalty: +50ms
maintain_affinity: true

Data Flow

Telemetry flows from your infrastructure through the planes in a coordinated cycle:

RPC Nodes
Telemetry Plane
Control Plane
Data Plane

AI Plane operates alongside, analyzing telemetry and assisting with incidents