-
Notifications
You must be signed in to change notification settings - Fork 554
/
Copy pathinstrumentation.ts
180 lines (168 loc) · 5.06 KB
/
instrumentation.ts
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as api from '@opentelemetry/api';
import {
InstrumentationBase,
InstrumentationConfig,
InstrumentationNodeModuleDefinition,
isWrapped,
} from '@opentelemetry/instrumentation';
import type * as genericPool from 'generic-pool';
import { PACKAGE_NAME, PACKAGE_VERSION } from './version';
const MODULE_NAME = 'generic-pool';
export class GenericPoolInstrumentation extends InstrumentationBase {
// only used for v2 - v2.3)
private _isDisabled = false;
constructor(config: InstrumentationConfig = {}) {
super(PACKAGE_NAME, PACKAGE_VERSION, config);
}
init() {
return [
new InstrumentationNodeModuleDefinition(
MODULE_NAME,
['>=3.0.0 <4'],
moduleExports => {
const Pool: any = moduleExports.Pool;
if (isWrapped(Pool.prototype.acquire)) {
this._unwrap(Pool.prototype, 'acquire');
}
this._wrap(
Pool.prototype,
'acquire',
this._acquirePatcher.bind(this)
);
return moduleExports;
},
moduleExports => {
const Pool: any = moduleExports.Pool;
this._unwrap(Pool.prototype, 'acquire');
return moduleExports;
}
),
new InstrumentationNodeModuleDefinition(
MODULE_NAME,
['>=2.4.0 <3'],
moduleExports => {
const Pool: any = moduleExports.Pool;
if (isWrapped(Pool.prototype.acquire)) {
this._unwrap(Pool.prototype, 'acquire');
}
this._wrap(
Pool.prototype,
'acquire',
this._acquireWithCallbacksPatcher.bind(this)
);
return moduleExports;
},
moduleExports => {
const Pool: any = moduleExports.Pool;
this._unwrap(Pool.prototype, 'acquire');
return moduleExports;
}
),
new InstrumentationNodeModuleDefinition(
MODULE_NAME,
['>=2.0.0 <2.4'],
moduleExports => {
this._isDisabled = false;
if (isWrapped(moduleExports.Pool)) {
this._unwrap(moduleExports, 'Pool');
}
this._wrap(moduleExports, 'Pool', this._poolWrapper.bind(this));
return moduleExports;
},
moduleExports => {
// since the object is created on the fly every time, we need to use
// a boolean switch here to disable the instrumentation
this._isDisabled = true;
return moduleExports;
}
),
];
}
private _acquirePatcher(original: genericPool.Pool<unknown>['acquire']) {
const instrumentation = this;
return function wrapped_acquire(
this: genericPool.Pool<unknown>,
...args: any[]
) {
const parent = api.context.active();
const span = instrumentation.tracer.startSpan(
'generic-pool.aquire',
{},
parent
);
return api.context.with(api.trace.setSpan(parent, span), () => {
return original.call(this, ...args).then(
value => {
span.end();
return value;
},
err => {
span.recordException(err);
span.end();
throw err;
}
);
});
};
}
private _poolWrapper(original: any) {
const instrumentation = this;
return function wrapped_pool(this: any) {
const pool = original.apply(this, arguments);
instrumentation._wrap(
pool,
'acquire',
instrumentation._acquireWithCallbacksPatcher.bind(instrumentation)
);
return pool;
};
}
private _acquireWithCallbacksPatcher(original: any) {
const instrumentation = this;
return function wrapped_acquire(
this: genericPool.Pool<unknown>,
cb: Function,
priority: number
) {
// only used for v2 - v2.3
if (instrumentation._isDisabled) {
return original.call(this, cb, priority);
}
const parent = api.context.active();
const span = instrumentation.tracer.startSpan(
'generic-pool.aquire',
{},
parent
);
return api.context.with(api.trace.setSpan(parent, span), () => {
original.call(
this,
(err: unknown, client: unknown) => {
span.end();
// Not checking whether cb is a function because
// the original code doesn't do that either.
if (cb) {
return cb(err, client);
}
},
priority
);
});
};
}
}