-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
116 lines (105 loc) · 3.58 KB
/
server.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
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
// OpenShift sample Node application
var express = require('express'),
app = express(),
morgan = require('morgan'),
request = require('request');
Object.assign=require('object-assign')
app.engine('html', require('ejs').renderFile);
app.use(morgan('combined'))
app.use(express.json())
var port = process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || 8080,
ip = process.env.IP || process.env.OPENSHIFT_NODEJS_IP || '0.0.0.0'
app.get('/', function (req, res) {
// FIXME - Should show useful information...
res.send('Hello, World')
});
app.get('/healthz', function (req, res) {
// FIXME - Should check health somehow ...
res.send('Healthy')
});
app.get('/metrics', function (req, res) {
// FIXME - Should actually show metrics
res.send('# Not implemented')
});
app.post('/alert', function (req, res) {
if (!req.body) return res.sendStatus(400)
//console.log(JSON.stringify(req.body))
var bigPandaAlerts = []
for (alertNumber in req.body.alerts) {
var alertData = req.body.alerts[alertNumber]
if (process.env.DEBUG == 'true' ) {
console.log('DEBUG prometheus alert: ', JSON.stringify(alertData))
}
//console.log(JSON.stringify(alertData))
console.log(
"Reporting on " + alertData.labels.alertname +
" is " + alertData['status']
)
// Start building bigPandaAlert
var bigPandaAlert = {
"host": alertData.labels.job || alertData.labels.alertname,
"check": alertData.labels.alertname,
"cluster": alertData.labels.cluster,
"startsAt": alertData.startsAt,
"endsAt": alertData.endsAt,
"description": alertData.annotations.summary || alertData.annotations.description || alertData.annotations.message,
"message": alertData.annotations.description || alertData.annotations.message,
"details": alertData.generatorURL
}
if (alertData['status'] == 'firing') {
if (alertData['labels']['severity'] == 'critical') {
bigPandaAlert['status'] = 'critical'
} else {
bigPandaAlert['status'] = 'warning'
}
} else {
bigPandaAlert['status'] = 'ok'
}
if (process.env.DEBUG == 'true' ) {
console.log('DEBUG bigpanda alert: ', JSON.stringify(bigPandaAlert))
}
bigPandaAlerts.push(bigPandaAlert)
}
request.post({
"url": process.env.BIGPANDA_URL,
"headers": {
"Authorization": "Bearer " + process.env.BIGPANDA_TOKEN,
"Content-Type": "application/json"
},
"body": JSON.stringify({
"app_key": process.env.BIGPANDA_APP_KEY,
"alerts": bigPandaAlerts
}),
"proxy": process.env.https_proxy
}, (error, response, body) => {
if (error) {
console.log('error:', error)
} else if(response.statusCode == 200) {
if (process.env.DEBUG == 'true' ) {
console.log('DEBUG received 200 OK response from bigpanda')
}
} else if(response.statusCode == 201) {
if (process.env.DEBUG == 'true' ) {
console.log('DEBUG received 201 Created response from bigpanda')
}
} else if(response.statusCode == 204) {
if (process.env.DEBUG == 'true' ) {
console.log('DEBUG received 201 No Content (deduplicated) response from bigpanda')
}
} else {
console.log('send failed: ' + JSON.stringify({
"statusCode": response.statusCode,
"body": body
}))
}
})
res.send('"ok"')
});
// error handling
app.use(function(err, req, res, next){
console.error(err.stack);
res.status(500).send('Something bad happened!');
});
app.listen(port, ip);
console.log('Server running on http://%s:%s', ip, port);
module.exports = app;