dd-trace
Version:
Datadog APM tracing client for JavaScript
12 lines (8 loc) • 318 B
JavaScript
const OutboundPlugin = require('./outbound')
class ClientPlugin extends OutboundPlugin {
static get operation () { return 'request' }
static get kind () { return 'client' }
static get type () { return 'web' } // overridden by storage and other client type plugins
}
module.exports = ClientPlugin