-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
52 lines (39 loc) · 1.03 KB
/
index.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
'use strict'
const loopbench = require('./loopbench')
const summary = require('@telemetry-js/metric').summary
const EventEmitter = require('events').EventEmitter
module.exports = function plugin () {
return new EventLoopLagCollector()
}
class EventLoopLagCollector extends EventEmitter {
constructor () {
super()
this._stopCheck = null
this._metricOptions = { unit: 'milliseconds' }
this._reset()
}
_reset () {
this._summary = summary('telemetry.nodejs.event_loop.lag.ms', this._metricOptions)
}
start (callback) {
this._reset()
// Note that `_summary` is a dynamic property of `this`, so don't use `bind()`
this._stopCheck = loopbench({}, (value) => {
this._summary.record(value)
})
process.nextTick(callback)
}
stop (callback) {
this._reset()
this._stopCheck()
process.nextTick(callback)
}
ping (callback) {
const metric = this._summary
metric.touch()
this._reset()
this.emit('metric', metric)
// No need to dezalgo ping()
callback()
}
}