This repository was archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.go
81 lines (64 loc) · 1.97 KB
/
handlers.go
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
package metrics
import (
"strconv"
"github.com/prometheus/client_golang/prometheus/promhttp"
webserver "github.com/randlabs/go-webserver"
"github.com/randlabs/go-webserver/request"
)
// -----------------------------------------------------------------------------
const (
strContentTypeTextPlain = "text/plain"
strContentTypeApplicationJSON = "application/json"
)
// -----------------------------------------------------------------------------
func (mws *Controller) getHealthHandler() webserver.HandlerFunc {
return func(req *request.RequestContext) error {
// Get current health status from callback
status := mws.healthCallback()
// Send output
if isJSON(status) {
req.SetResponseHeader("Content-Type", strContentTypeApplicationJSON)
} else {
req.SetResponseHeader("Content-Type", strContentTypeTextPlain)
}
if !req.IsHead() {
_, _ = req.WriteString(status)
} else {
req.SetResponseHeader("Content-Length", strconv.FormatUint(uint64(int64(len(status))), 10))
}
req.Success()
// Done
return nil
}
}
func (mws *Controller) getMetricsHandler() webserver.HandlerFunc {
return webserver.HandlerFromHttpHandler(promhttp.HandlerFor(
mws.registry,
promhttp.HandlerOpts{
EnableOpenMetrics: true,
MaxRequestsInFlight: 5,
},
))
}
// -----------------------------------------------------------------------------
func isJSON(s string) bool {
// An official (?) method but a plain text is also considered a valid JSON
// var js interface{}
// return json.Unmarshal([]byte(s), &js) == nil
// Our quick approach
startIdx := 0
endIdx := len(s)
// Skip blanks at the beginning and the end
for startIdx < endIdx && isBlank(s[startIdx]) {
startIdx += 1
}
for endIdx > startIdx && isBlank(s[endIdx-1]) {
endIdx -= 1
}
return startIdx < endIdx &&
((s[startIdx] == '{' && s[endIdx-1] == '}') ||
(s[startIdx] == '[' && s[endIdx-1] == ']'))
}
func isBlank(ch byte) bool {
return ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n'
}