@syskoio/collector
v0.3.3
Published
Standalone span collector and dashboard for Sysko Observe
Downloads
545
Readme
@syskoio/collector
Standalone span collector for Sysko Observe. Aggregates spans from multiple services into a single dashboard — useful for microservice architectures.
Usage
Docker (recommended)
docker run -p 9999:9999 syskoio/collectorCLI
npx @syskoio/collector
# or
npm install -g @syskoio/collector
sysko-collectorHow it works
The collector runs an HTTP server that accepts spans via POST /v1/spans and serves the Sysko dashboard at http://localhost:9999. Each service sends its spans to the collector instead of (or in addition to) serving its own dashboard.
Configure each service to export spans:
await init({
serviceName: "orders-api",
export: { url: "http://collector:9999" },
});