-
Notifications
You must be signed in to change notification settings - Fork 1
/
prom.go
110 lines (91 loc) · 2.86 KB
/
prom.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
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
package prometheus
import (
"net/http"
"strconv"
"time"
"github.com/go-chi/chi"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
type responseWriter struct {
http.ResponseWriter
statusCode int
}
func NewResponseWriter(w http.ResponseWriter) *responseWriter {
return &responseWriter{w, 0}
}
func (rw *responseWriter) WriteHeader(code int) {
rw.statusCode = code
rw.ResponseWriter.WriteHeader(code)
}
var totalRequests = promauto.NewCounterVec(
prometheus.CounterOpts{
Name: "http_requests_total",
Help: "Total number of HTTP requests.",
},
[]string{"path"},
)
var responseStatus = promauto.NewCounterVec(
prometheus.CounterOpts{
Name: "response_status",
Help: "Status of HTTP response",
},
[]string{"status"},
)
var httpDuration = promauto.NewHistogramVec(
prometheus.HistogramOpts{
Name: "http_response_time_seconds",
Help: "Duration of HTTP requests.",
},
[]string{"path"},
)
var IdentityCreationCounter = promauto.NewCounter(
prometheus.CounterOpts{
Name: "identity_creation_success",
Help: "Number of identities which have been successfully created, registered and stored.",
})
var IdentityCreationDuration = promauto.NewHistogram(
prometheus.HistogramOpts{
Name: "identity_creation_duration",
Help: "Duration of the identity being created, registered and stored.",
})
var SignatureCreationCounter = promauto.NewCounter(
prometheus.CounterOpts{
Name: "signature_creation_success",
Help: "Number of successfully created signatures",
})
var SignatureCreationDuration = promauto.NewHistogram(
prometheus.HistogramOpts{
Name: "signature_creation_duration",
Help: "Duration of the creation of a signed object",
})
var UpstreamResponseDuration = promauto.NewHistogram(prometheus.HistogramOpts{
Name: "upstream_response_duration",
Help: "Duration of HTTP responses from upstream server.",
})
var AuthCheckDuration = promauto.NewHistogram(
prometheus.HistogramOpts{
Name: "auth_check_duration",
Help: "Duration of the auth token being checked for validity.",
})
var AuthCheckWithWaitDuration = promauto.NewHistogram(
prometheus.HistogramOpts{
Name: "auth_check_with_wait_duration",
Help: "Duration of the auth token being checked for validity including waiting time for semaphore.",
})
func PromMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
rw := NewResponseWriter(w)
startTimer := time.Now()
next.ServeHTTP(rw, r)
path := chi.RouteContext(r.Context()).RoutePattern()
statusCode := rw.statusCode
httpDuration.WithLabelValues(path).Observe(time.Since(startTimer).Seconds())
totalRequests.WithLabelValues(path).Inc()
responseStatus.WithLabelValues(strconv.Itoa(statusCode)).Inc()
})
}
func Handler() http.Handler {
return promhttp.Handler()
}