v2.4 · ships Tuesday

Trace every request across your distributed system

TraceForge gives you real-time distributed tracing with 12ms p50 latency and 99.99% uptime SLA. Instrument once, see everything.

Start free → View on GitHub →
~/your-app · main
$ npx traceforge init my-app
✓ Initializing TraceForge in my-app/
✓ Detected Node.js + Express
✓ SDK installed & configured
$ npm run dev
→ TraceForge dashboard at http://localhost:3000/traces
TRUSTED BY ENGINEERS AT
Vercel Supabase Linear Plain Railway
99.99%
Uptime SLA
12ms
p50 latency
4M
req / sec
50+
Regions
CAPABILITIES

Full visibility into every span

From edge to database, TraceForge captures every hop in your distributed system with sub-millisecond precision.

Distributed Tracing

Trace requests across microservices, queues, and databases with automatic context propagation.

Real-time Alerts

Get paged when latency spikes or error rates cross your threshold. Slack, PagerDuty, webhook.

Service Maps

Auto-discover your service topology and visualize dependencies in real time.

Latency Heatmaps

Spot slow endpoints instantly with per-span latency distributions and p99 breakdowns.

Custom Dashboards

Build Grafana-style dashboards with your own metrics, filters, and time ranges.

Team Collaboration

Share trace links, annotate spans, and comment on issues — all in one place.

ARCHITECTURE

Instrument once, trace everywhere

TraceForge uses OpenTelemetry under the hood. Install one SDK, and we automatically capture spans across HTTP, gRPC, queues, and databases.

// traceforge-sdk-example.ts
import { TraceForge } from "@traceforge/sdk";

const tf = new TraceForge({
  apiKey: process.env.TF_API_KEY,
  region: "eu-central-1",
  sampleRate: 1.0,
});

await tf.trace("checkout-flow", async (span) => {
  const user = await fetchUser(req.userId);
  span.setAttribute("user.id", user.id);
  const order = await createOrder(cart);
  span.setAttribute("order.id", order.id);
});

// → returns in <12ms p50
PRICING

Pay only for what you trace

Start free, scale predictably. No hidden fees, no surprise bills.

Hobby
$0/month
For personal projects and small teams getting started.
  • 10M spans / month
  • 7-day retention
  • 1 team member
Get started
Enterprise
Talk to us
For organizations with custom compliance and scale requirements.
  • Unlimited spans
  • 1-year retention
  • SSO & RBAC
  • Dedicated support & SLA
Book a call

See every trace. Ship faster.

Start free → Read the docs