Connect your VPC or on-prem directly to the edge over QUIC or a secure Geneve tunnel. One tunnel, both directions — ingress, plus egress when you want it. No holes to punch, no peering to configure, no static IPs to manage.
Built on the CNCF Gateway API open standard. A role-oriented config model for L4 and L7 routing. Declare routes as YAML and apply them through the API, CLI, or your existing GitOps pipeline. The same manifests run on your cluster, on the edge, or both.
# Send /v1/* on api.example.com to the api Backend. apiVersion: gateway.apoxy.dev/v1 kind: HTTPRoute metadata: name: api-route spec: parentRefs: - kind: Gateway name: default hostnames: - "api.example.com" rules: - matches: - path: type: PathPrefix value: /v1 backendRefs: - kind: Backend name: api-backend port: 8080
Deploy JavaScript, TypeScript, or WebAssembly.
Rewrite requests, call your origin, reshape
responses. Built on the
workerd
runtime — open source, standards-based, no lock-in.
// A/B route based on a cookie, stamp a trace header, // and rewrite the upstream host before forwarding. export default { async fetch(request, env, ctx) { const url = new URL(request.url); const bucket = request.headers.get("cookie")?.includes("exp=B") ? env.API_B : env.API_A; url.hostname = bucket; const upstream = new Request(url, request); upstream.headers.set("x-trace-id", crypto.randomUUID()); const response = await fetch(upstream); return new Response(response.body, response); } };
Stream to managed sinks, ship to any OTLP endpoint, or ask your agent in plain English via our MCP server.
Stream traces, logs, and metrics to Datadog, Grafana Cloud, or Axiom. Pre-built pipelines — no sidecars, no custom shippers.
Bring your own collector. Anything that speaks OTLP/HTTP or OTLP/gRPC is a valid destination. Drop in a custom OTel config when you need it.
Connect your AI assistant and ask about your traffic in plain English — latency, error rates, top paths, status codes. It queries your Envoy access logs for you. No dashboards to wire up by hand.
Connect a domain, paste a worker, route some traffic. No agents. No sidecars. No rewrites.