Skip to content

Commit fcd4c2e

Browse files
FlarnaBridgeAR
authored andcommitted
events: allow monitoring error events
Installing an error listener has a side effect that emitted errors are considered as handled. This is quite bad for monitoring/logging tools which tend to be interested in errors but don't want to cause side effects like swallow an exception. There are some workarounds in the wild like monkey patching emit or remit the error if monitoring tool detects that it is the only listener but this is error prone and risky. This PR allows to install a listener to monitor errors with the side effect to consume the error. To avoid conflicts with other events it exports a symbol on EventEmitter which owns this special meaning. Refs: open-telemetry/opentelemetry-js#225 PR-URL: #30932 Refs: open-telemetry/opentelemetry-js#225 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 20d009d commit fcd4c2e

File tree

3 files changed

+69
-2
lines changed

3 files changed

+69
-2
lines changed

doc/api/events.md

+25
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,18 @@ myEmitter.emit('error', new Error('whoops!'));
155155
// Prints: whoops! there was an error
156156
```
157157

158+
It is possible to monitor `'error'` events without consuming the emitted error
159+
by installing a listener using the symbol `errorMonitor`.
160+
161+
```js
162+
const myEmitter = new MyEmitter();
163+
myEmitter.on(EventEmitter.errorMonitor, (err) => {
164+
MyMonitoringTool.log(err);
165+
});
166+
myEmitter.emit('error', new Error('whoops!'));
167+
// Still throws and crashes Node.js
168+
```
169+
158170
## Capture Rejections of Promises
159171

160172
> Stability: 1 - captureRejections is experimental.
@@ -348,6 +360,19 @@ the event emitter instance, the event’s name and the number of attached
348360
listeners, respectively.
349361
Its `name` property is set to `'MaxListenersExceededWarning'`.
350362

363+
### EventEmitter.errorMonitor
364+
<!-- YAML
365+
added: REPLACEME
366+
-->
367+
368+
This symbol shall be used to install a listener for only monitoring `'error'`
369+
events. Listeners installed using this symbol are called before the regular
370+
`'error'` listeners are called.
371+
372+
Installing a listener using this symbol does not change the behavior once an
373+
`'error'` event is emitted, therefore the process will still crash if no
374+
regular `'error'` listener is installed.
375+
351376
### emitter.addListener(eventName, listener)
352377
<!-- YAML
353378
added: v0.1.26

lib/events.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ const {
5555
} = require('internal/util/inspect');
5656

5757
const kCapture = Symbol('kCapture');
58+
const kErrorMonitor = Symbol('events.errorMonitor');
5859

5960
function EventEmitter(opts) {
6061
EventEmitter.init.call(this, opts);
@@ -83,6 +84,13 @@ ObjectDefineProperty(EventEmitter, 'captureRejections', {
8384
enumerable: true
8485
});
8586

87+
ObjectDefineProperty(EventEmitter, 'errorMonitor', {
88+
value: kErrorMonitor,
89+
writable: false,
90+
configurable: true,
91+
enumerable: true
92+
});
93+
8694
// The default for captureRejections is false
8795
ObjectDefineProperty(EventEmitter.prototype, kCapture, {
8896
value: false,
@@ -256,9 +264,11 @@ EventEmitter.prototype.emit = function emit(type, ...args) {
256264
let doError = (type === 'error');
257265

258266
const events = this._events;
259-
if (events !== undefined)
267+
if (events !== undefined) {
268+
if (doError && events[kErrorMonitor] !== undefined)
269+
this.emit(kErrorMonitor, ...args);
260270
doError = (doError && events.error === undefined);
261-
else if (!doError)
271+
} else if (!doError)
262272
return false;
263273

264274
// If there is no 'error' event listener then throw.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
'use strict';
2+
const common = require('../common');
3+
const assert = require('assert');
4+
const EventEmitter = require('events');
5+
6+
const EE = new EventEmitter();
7+
const theErr = new Error('MyError');
8+
9+
EE.on(
10+
EventEmitter.errorMonitor,
11+
common.mustCall(function onErrorMonitor(e) {
12+
assert.strictEqual(e, theErr);
13+
}, 3)
14+
);
15+
16+
// Verify with no error listener
17+
common.expectsError(
18+
() => EE.emit('error', theErr), theErr
19+
);
20+
21+
// Verify with error listener
22+
EE.once('error', common.mustCall((e) => assert.strictEqual(e, theErr)));
23+
EE.emit('error', theErr);
24+
25+
26+
// Verify it works with once
27+
process.nextTick(() => EE.emit('error', theErr));
28+
assert.rejects(EventEmitter.once(EE, 'notTriggered'), theErr);
29+
30+
// Only error events trigger error monitor
31+
EE.on('aEvent', common.mustCall());
32+
EE.emit('aEvent');

0 commit comments

Comments
 (0)