-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathindex.js
62 lines (47 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
const http = require('http')
const url = require('url');
const client = require('prom-client')
const register = new client.Registry()
register.setDefaultLabels({
app: 'example-nodejs-app'
})
client.collectDefaultMetrics({ register })
const httpRequestDurationMicroseconds = new client.Histogram({
name: 'http_request_duration_seconds',
help: 'Duration of HTTP requests in seconds',
labelNames: ['method', 'route', 'code'],
buckets: [0.1, 0.3, 0.5, 0.7, 1, 3, 5, 7, 10] // 0.1 to 10 seconds
})
register.registerMetric(httpRequestDurationMicroseconds)
const createOrderHandler = async (req, res) => {
// return an error 1% of the time
if ((Math.floor(Math.random() * 100)) === 0) {
throw new Error('Internal Error')
}
// delay for 3-6 seconds
const delaySeconds = Math.floor(Math.random() * (6 - 3)) + 3
await new Promise(res => setTimeout(res, delaySeconds * 1000))
res.end('Order created successfully');
}
const server = http.createServer(async (req, res) => {
const end = httpRequestDurationMicroseconds.startTimer();
const route = url.parse(req.url).pathname;
try {
if (route === '/metrics') {
res.setHeader('Content-Type', register.contentType)
res.end(register.metrics())
}
if (route === '/order') {
await createOrderHandler(req, res)
}
} catch (error) {
res.writeHead(500).end()
}
if (!res.finished) {
res.writeHead(404).end() // Default 404 handler
}
end({ route, code: res.statusCode, method: req.method })
})
server.listen(8080, () => {
console.log('Server is running on http://localhost:8080, metrics are exposed on http://localhost:8080/metrics')
})