UNPKG

pinpoint-node-agent

Version:

Pinpoint APM agent for Node.js — distributed tracing, error analysis, and URI statistics

23 lines (18 loc) 371 B
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ 'use strict' class TraceRootSpanRecorder { constructor(traceRoot) { this.traceRoot = traceRoot } canSampled() { return true } isRoot() { return this.traceRoot.getTraceId().isRoot() } } module.exports = TraceRootSpanRecorder