dd-trace
Version:
Datadog APM tracing client for JavaScript
101 lines (79 loc) • 2.78 kB
JavaScript
'use strict'
const ServerPlugin = require('../../dd-trace/src/plugins/server')
const { storage } = require('../../datadog-core')
const web = require('../../dd-trace/src/plugins/util/web')
const { incomingHttpRequestStart, incomingHttpRequestEnd } = require('../../dd-trace/src/appsec/channels')
const { COMPONENT, SVC_SRC_KEY } = require('../../dd-trace/src/constants')
class HttpServerPlugin extends ServerPlugin {
static id = 'http'
static prefix = 'apm:http:server:request'
constructor (...args) {
super(...args)
this.addTraceSub('exit', message => this.exit(message))
}
start ({ req, res, abortController }) {
let store = storage('legacy').getStore()
const { name: schemaServiceName, source: schemaServiceSource } = this.serviceName()
const service = this.config.service || schemaServiceName
const serviceSource = (this.config.service && service !== this.tracer._service)
? 'opt.plugin'
: (service === this.tracer._service ? undefined : schemaServiceSource)
const span = web.startSpan(
this.tracer,
{
...this.config,
service,
},
req,
res,
this.operationName()
)
if (serviceSource !== undefined) {
span.setTag(SVC_SRC_KEY, serviceSource)
}
span.setTag(COMPONENT, this.constructor.id)
span._integrationName = this.constructor.id
const context = web.getContext(req)
if (context) {
context.parentStore = store
}
// Only AppSec needs the request scope to be active for any async work that
// may be scheduled after the synchronous `request` event returns (e.g.
// Fastify).
if (incomingHttpRequestStart.hasSubscribers) {
store = { ...store, req, res }
}
this.enter(span, store)
if (!context.instrumented) {
context.res.writeHead = web.wrapWriteHead(context)
context.instrumented = true
}
if (incomingHttpRequestStart.hasSubscribers) {
incomingHttpRequestStart.publish({ req, res, abortController }) // TODO: no need to make a new object here
}
}
error (error) {
web.addError(error)
}
finish ({ req }) {
const context = web.getContext(req)
if (!context || !context.res) return // Not created by a http.Server instance.
if (incomingHttpRequestEnd.hasSubscribers) {
incomingHttpRequestEnd.publish({ req, res: context.res })
}
web.finishAll(context)
}
exit ({ req }) {
const context = web.getContext(req)
const parentStore = context?.parentStore
const span = parentStore?.span
this.enter(span, parentStore)
if (context) {
context.parentStore = undefined
}
}
configure (config) {
return super.configure(web.normalizeConfig(config))
}
}
module.exports = HttpServerPlugin