forked from miekg/caddy-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
130 lines (106 loc) · 3.52 KB
/
handler.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package metrics
import (
"net"
"net/http"
"strconv"
"strings"
"time"
"github.com/admpub/caddy/caddyhttp/httpserver"
)
func (m *Metrics) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
next := m.next
hostname := m.hostname
if hostname == "" {
originalHostname, err := host(r)
if err != nil {
hostname = "-"
} else {
hostname = originalHostname
}
}
start := time.Now()
// Record response to get status code and size of the reply.
rw := httpserver.NewResponseRecorder(w)
// Get time to first write.
tw := &timedResponseWriter{ResponseWriter: rw}
status, err := next.ServeHTTP(tw, r)
// If nothing was explicitly written, consider the request written to
// now that it has completed.
tw.didWrite()
// Transparently capture the status code so as to not side effect other plugins
stat := status
if err != nil && status == 0 {
// Some middlewares set the status to 0, but return an non nil error: map these to status 500
stat = 500
} else if status == 0 {
// 'proxy' returns a status code of 0, but the actual status is available on rw.
// Note that if 'proxy' encounters an error, it returns the appropriate status code (such as 502)
// from ServeHTTP and is captured above with 'stat := status'.
stat = rw.Status()
}
fam := "1"
if isIPv6(r.RemoteAddr) {
fam = "2"
}
proto := strconv.Itoa(r.ProtoMajor)
proto = proto + "." + strconv.Itoa(r.ProtoMinor)
statusStr := strconv.Itoa(stat)
replacer := httpserver.NewReplacer(r, rw, "")
extraLabelValues := make([]string, len(m.extraLabels))
for index, label := range m.extraLabels {
extraLabelValues[index] = replacer.Replace(label.value)
}
path := r.URL.Path
requestCount.WithLabelValues(append([]string{hostname, fam, proto, path}, extraLabelValues...)...).Inc()
requestDuration.WithLabelValues(append([]string{hostname, fam, proto, path}, extraLabelValues...)...).Observe(time.Since(start).Seconds())
responseSize.WithLabelValues(append([]string{hostname, fam, proto, path, statusStr}, extraLabelValues...)...).Observe(float64(rw.Size()))
responseStatus.WithLabelValues(append([]string{hostname, fam, proto, path, statusStr}, extraLabelValues...)...).Inc()
responseLatency.WithLabelValues(append([]string{hostname, fam, proto, path, statusStr}, extraLabelValues...)...).Observe(tw.firstWrite.Sub(start).Seconds())
return status, err
}
func host(r *http.Request) (string, error) {
host, _, err := net.SplitHostPort(r.Host)
if err != nil {
if !strings.Contains(r.Host, ":") {
return strings.ToLower(r.Host), nil
}
return "", err
}
return strings.ToLower(host), nil
}
func isIPv6(addr string) bool {
if host, _, err := net.SplitHostPort(addr); err == nil {
// Strip away the port.
addr = host
}
ip := net.ParseIP(addr)
return ip != nil && ip.To4() == nil
}
// A timedResponseWriter tracks the time when the first response write
// happened.
type timedResponseWriter struct {
firstWrite time.Time
http.ResponseWriter
}
func (w *timedResponseWriter) didWrite() {
if w.firstWrite.IsZero() {
w.firstWrite = time.Now()
}
}
func (w *timedResponseWriter) Write(data []byte) (int, error) {
w.didWrite()
return w.ResponseWriter.Write(data)
}
func (w *timedResponseWriter) WriteHeader(statuscode int) {
// We consider this a write as it's valid to respond to a request by
// just setting a status code and returning.
w.didWrite()
w.ResponseWriter.WriteHeader(statuscode)
}
func (w *timedResponseWriter) Flush() {
flushableResponseWriter, ok := w.ResponseWriter.(http.Flusher)
if !ok {
return
}
flushableResponseWriter.Flush()
}