-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
t6monitor.js
67 lines (62 loc) · 2.14 KB
/
t6monitor.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
const {InfluxDB, Point} = require('@influxdata/influxdb-client')
const responseTime = require('response-time')
// create Influx Write API to report application monitoring data
const writeAPI = new InfluxDB({url: INFLUX_URL, token: INFLUX_TOKEN}).getWriteApi(INFLUX_ORG, INFLUX_BUCKET, 'ns', {
defaultTags: {
service: 'iot_center',
host: require('os').hostname(),
},
})
// write node resource/cpu/memory usage
function writeProcessUsage() {
function createPoint(measurement, usage) {
const point = new Point(measurement)
for (const key of Object.keys(usage)) {
point.floatField(key, usage[key])
}
return point
}
// https://nodejs.org/api/process.html#process_process_memoryusage
writeAPI.writePoint(createPoint('node_memory_usage', process.memoryUsage()))
// https://nodejs.org/api/process.html#process_process_cpuusage_previousvalue
writeAPI.writePoint(createPoint('node_cpu_usage', process.cpuUsage()))
// https://nodejs.org/api/process.html#process_process_resourceusage
// available since node v12.6
if (process.resourceUsage) {
writeAPI.writePoint(
createPoint('node_resource_usage', process.resourceUsage())
)
}
}
// write process usage now and then every 10 seconds
writeProcessUsage()
const nodeUsageTimer = setInterval(writeProcessUsage, 10000).unref()
// on shutdown
// - clear reporting of node usage
// - flush unwritten points and cancel retries
async function onShutdown() {
clearInterval(nodeUsageTimer)
try {
await writeAPI.close()
} catch (error) {
console.error('ERROR: Application monitoring', error)
}
// eslint-disable-next-line no-process-exit
process.exit(0)
}
process.on('SIGINT', onShutdown)
process.on('SIGTERM', onShutdown)
// export a monitoring function for express.js response time monitoring
module.exports = function (app) {
app.use(
responseTime((req, res, time) => {
// write response time to InfluxDB
const point = new Point('express_http_server')
.tag('uri', req.path)
.tag('method', req.method)
.tag('status', String(res.statusCode))
.floatField('response_time', time)
writeAPI.writePoint(point)
})
)
}