Skip to Content
Upblit
AboutOpen SourceCommunityDeveloperContactPricing
Star on GitHub—Sign in
CTRL K
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)

On This Page

  • Trace Structure
  • Span Fields
  • Span Method Prefixes
  • Viewing Traces in the Dashboard
  • Filtering
  • Trace Retention
ObservabilityDistributed Traces

Distributed Traces

A trace represents the full journey of a single request through your system. Upblit automatically builds traces from spans emitted by your SDK-instrumented applications.

Trace Structure

Trace (traceId: "550e8400-...") ├── Root Span (parentSpanId: null) │ requestMethod: "controller:POST" │ requestURL: "/api/checkout" │ responseStatus: 200 │ durationMs: 145 │ ├── Service Span (parentSpanId: rootSpanId) │ requestMethod: "service:validateCart" │ durationMs: 12 │ └── External Span (parentSpanId: serviceSpanId) requestMethod: "external:stripe" durationMs: 89

Span Fields

FieldTypeDescription
traceIdUUID stringShared across all spans in one request
spanIdUUID stringUnique per span
parentSpanIdUUID string or nullLinks to parent span; null for root
requestMethodstringtype:name format
requestURLstringHTTP path or empty for internal spans
responseStatusnumberHTTP status code
durationMsnumberWall-clock duration in milliseconds
timestampISO8601When the span was recorded

Span Method Prefixes

PrefixCreated ByExample
controller:Middleware (automatic)controller:POST
service:sdk.service(name, fn)service:getUserById
external:sdk.call(name, fn)external:stripe

Viewing Traces in the Dashboard

Go to your project’s Observability page and click the Traces tab. Each row represents one trace. Click a row to expand it and see all spans.

Filtering

Use the Application dropdown to filter traces by a specific application within the project.

Trace Retention

Traces are stored in MongoDB. There is currently no TTL (time-to-live) configured — all traces are retained indefinitely. A 90-day retention policy is planned.

Last updated on May 27, 2026
Telemetry FlowSDK Overview
Upblit

A student-built observability workbench for logs, traces, metrics, API keys, and AI-assisted incident notes.

OAuthAPI scopesTrace contextRetention notes

Product

  • Architecture
  • Dashboard preview
  • AI docs
  • Security
  • Pricing

Developers

  • Developer docs
  • API reference
  • Changelog
  • GitHub
  • Status

Company

  • Support
  • Contact
  • Docs
  • Dashboard
  • Sign in

Legal

  • Privacy Policy
  • Terms
  • Cookie Policy
  • Acceptable Use
  • Data Retention
  • Data Processing

Copyright 2026 Upblit. All rights reserved.

Built for telemetry review, API operations, and incident response.