forked from elastic/apm-agent-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAsyncLocalStorageRunContextManager.js
73 lines (61 loc) · 2.11 KB
/
AsyncLocalStorageRunContextManager.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* Copyright Elasticsearch B.V. and other contributors where applicable.
* Licensed under the BSD 2-Clause License; you may not use this file except in
* compliance with the BSD 2-Clause License.
*/
'use strict';
const { AsyncLocalStorage } = require('async_hooks');
const { AbstractRunContextManager } = require('./AbstractRunContextManager');
/**
* A RunContextManager that uses core node `AsyncLocalStorage` as the mechanism
* for run-context tracking.
*
* (Adapted from https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-context-async-hooks/src/AsyncLocalStorageContextManager.ts)
*/
class AsyncLocalStorageRunContextManager extends AbstractRunContextManager {
constructor(log, runContextClass) {
super(log, runContextClass);
this._asyncLocalStorage = new AsyncLocalStorage();
}
// A string representation useful for debug logging. For example,
// AsyncLocalStorageRunContextManager( RC(Trans(685ead, manual), [Span(9dd31c, GET httpstat.us, ended)]) )
toString() {
return `${this.constructor.name}( ${this.active().toString()} )`;
}
enable() {
return this;
}
disable() {
this._asyncLocalStorage.disable();
return this;
}
// Reset state for re-use of this context manager by tests in the same process.
testReset() {
this.disable();
this.enable();
}
active() {
const store = this._asyncLocalStorage.getStore();
if (store == null) {
return this.root();
} else {
return store;
}
}
with(runContext, fn, thisArg, ...args) {
const cb = thisArg == null ? fn : fn.bind(thisArg);
return this._asyncLocalStorage.run(runContext, cb, ...args);
}
// This public method is needed to support the semantics of
// apm.startTransaction() and apm.startSpan() that impact the current run
// context.
//
// Otherwise, all run context changes are via `.with()` -- scoped to a
// function call -- or via the "before" async hook -- scoped to an async task.
supersedeRunContext(runContext) {
this._asyncLocalStorage.enterWith(runContext);
}
}
module.exports = {
AsyncLocalStorageRunContextManager,
};