Skip to main content
The service map shows service-to-service calls and call health through request rate, error rate, and latency (the RED metrics). MoleSignal builds the map automatically from existing traces, so normal tracing requires no extra instrumentation.
Service map and APM use the same trace input but different projections. Service map pairs cross-service parent and child spans to build topology. APM builds bounded service, transaction, dependency, error, and version aggregates.

How the map is built

As trace spans arrive, MoleSignal pairs each span with the parent span. Spans from different services form a call edge — parent service → child service — and the edge takes the child (callee) span’s duration and error status. Same-service parent/child spans are internal and aren’t drawn as edges. Edges are accumulated into one-minute buckets per service pair and flushed to storage in the background, so the map reflects recent traffic within roughly half a minute.

In-memory vs storage mode

By default (intake mode) pairing happens in-memory on the node that accepts the spans — low latency. In a multi-node deployment, spans for one call that land on different nodes can’t be paired in memory, so the map may undercount those edges. The map never invents an edge. To get a complete map across nodes, switch Settings → General → Service map data source to storage mode. A single node then periodically rebuilds the graph from stored traces — seeing every span regardless of the intake node — at the cost of a 1–2 minute delay. The setting is stored in the database and takes effect at runtime; no restart needed.

Required trace data

The map needs traces with:
  • a service.name resource attribute on every span (OTLP exporters set this attribute), and
  • parent/child span relationships that cross service boundaries — i.e. a client span in one service whose child server span runs in another.
Standard OpenTelemetry instrumentation produces both. Point the tracer at any trace intake endpoint, and MoleSignal populates the map automatically.

Topology

The topology endpoint aggregates a time window into nodes (services) and edges (calls):

Raw service graph

For the underlying minute-by-minute edge snapshots — useful for charting a single dependency over time — query the service graph directly:
from and to are microseconds since the Unix epoch. The optional service filter returns edges where the selected service appears on either side of the call. Each row carries request_count, error_count, and p50_us / p95_us / p99_us for one service pair in one minute.

In the UI

  • The Services page lists every service with request rate, error rate, and p95, ordered by traffic.
  • Open a service to see upstream callers and downstream dependencies.
  • The topology view draws the live graph — edge thickness follows traffic, and color follows the error rate.
From any service or edge, pivot straight into the underlying traces and logs through cross-signal correlation.

Topology & service-graph API

Query the topology and raw service-graph endpoints over HTTP.

Application performance monitoring

Analyze service RED metrics, transactions, dependencies, errors, and deployments.
Last modified on August 9, 2026