forked from edgard/iperf3_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iperf3_exporter.go
250 lines (217 loc) · 8.36 KB
/
iperf3_exporter.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// Copyright 2019 Edgard Castro
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os/exec"
"strconv"
"sync"
"time"
_ "net/http/pprof"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/log"
"github.com/prometheus/common/version"
"gopkg.in/alecthomas/kingpin.v2"
)
const (
namespace = "iperf3"
)
var (
listenAddress = kingpin.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9579").String()
metricsPath = kingpin.Flag("web.telemetry-path", "Path under which to expose metrics.").Default("/metrics").String()
timeout = kingpin.Flag("iperf3.timeout", "iperf3 run timeout.").Default("30s").Duration()
// Metrics about the iperf3 exporter itself.
iperfDuration = prometheus.NewSummary(prometheus.SummaryOpts{Name: prometheus.BuildFQName(namespace, "exporter", "duration_seconds"), Help: "Duration of collections by the iperf3 exporter."})
iperfErrors = prometheus.NewCounter(prometheus.CounterOpts{Name: prometheus.BuildFQName(namespace, "exporter", "errors_total"), Help: "Errors raised by the iperf3 exporter."})
)
// iperfResult collects the partial result from the iperf3 run
type iperfResult struct {
End struct {
SumSent struct {
Seconds float64 `json:"seconds"`
Bytes float64 `json:"bytes"`
} `json:"sum_sent"`
SumReceived struct {
Seconds float64 `json:"seconds"`
Bytes float64 `json:"bytes"`
} `json:"sum_received"`
} `json:"end"`
}
// Exporter collects iperf3 stats from the given address and exports them using
// the prometheus metrics package.
type Exporter struct {
target string
port int
period time.Duration
timeout time.Duration
mutex sync.RWMutex
success *prometheus.Desc
sentSeconds *prometheus.Desc
sentBytes *prometheus.Desc
receivedSeconds *prometheus.Desc
receivedBytes *prometheus.Desc
}
// NewExporter returns an initialized Exporter.
func NewExporter(target string, port int, period time.Duration, timeout time.Duration) *Exporter {
return &Exporter{
target: target,
port: port,
period: period,
timeout: timeout,
success: prometheus.NewDesc(prometheus.BuildFQName(namespace, "", "success"), "Was the last iperf3 probe successful.", nil, nil),
sentSeconds: prometheus.NewDesc(prometheus.BuildFQName(namespace, "", "sent_seconds"), "Total seconds spent sending packets.", nil, nil),
sentBytes: prometheus.NewDesc(prometheus.BuildFQName(namespace, "", "sent_bytes"), "Total sent bytes.", nil, nil),
receivedSeconds: prometheus.NewDesc(prometheus.BuildFQName(namespace, "", "received_seconds"), "Total seconds spent receiving packets.", nil, nil),
receivedBytes: prometheus.NewDesc(prometheus.BuildFQName(namespace, "", "received_bytes"), "Total received bytes.", nil, nil),
}
}
// Describe describes all the metrics exported by the iperf3 exporter. It
// implements prometheus.Collector.
func (e *Exporter) Describe(ch chan<- *prometheus.Desc) {
ch <- e.success
ch <- e.sentSeconds
ch <- e.sentBytes
ch <- e.receivedSeconds
ch <- e.receivedBytes
}
// Collect probes the configured iperf3 server and delivers them as Prometheus
// metrics. It implements prometheus.Collector.
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
e.mutex.Lock() // To protect metrics from concurrent collects.
defer e.mutex.Unlock()
ctx, cancel := context.WithTimeout(context.Background(), e.timeout)
defer cancel()
out, err := exec.CommandContext(ctx, iperfCmd, "-J", "-t", strconv.FormatFloat(e.period.Seconds(), 'f', 0, 64), "-c", e.target, "-p", strconv.Itoa(e.port)).Output()
if err != nil {
ch <- prometheus.MustNewConstMetric(e.success, prometheus.GaugeValue, 0)
iperfErrors.Inc()
log.Errorf("Failed to run iperf3: %s", err)
return
}
stats := iperfResult{}
if err := json.Unmarshal(out, &stats); err != nil {
ch <- prometheus.MustNewConstMetric(e.success, prometheus.GaugeValue, 0)
iperfErrors.Inc()
log.Errorf("Failed to parse iperf3 result: %s", err)
return
}
ch <- prometheus.MustNewConstMetric(e.success, prometheus.GaugeValue, 1)
ch <- prometheus.MustNewConstMetric(e.sentSeconds, prometheus.GaugeValue, stats.End.SumSent.Seconds)
ch <- prometheus.MustNewConstMetric(e.sentBytes, prometheus.GaugeValue, stats.End.SumSent.Bytes)
ch <- prometheus.MustNewConstMetric(e.receivedSeconds, prometheus.GaugeValue, stats.End.SumReceived.Seconds)
ch <- prometheus.MustNewConstMetric(e.receivedBytes, prometheus.GaugeValue, stats.End.SumReceived.Bytes)
}
func handler(w http.ResponseWriter, r *http.Request) {
target := r.URL.Query().Get("target")
if target == "" {
http.Error(w, "'target' parameter must be specified", http.StatusBadRequest)
iperfErrors.Inc()
return
}
var targetPort int
port := r.URL.Query().Get("port")
if port != "" {
var err error
targetPort, err = strconv.Atoi(port)
if err != nil {
http.Error(w, fmt.Sprintf("'port' parameter must be an integer: %s", err), http.StatusBadRequest)
iperfErrors.Inc()
return
}
}
if targetPort == 0 {
targetPort = 5201
}
var runPeriod time.Duration
period := r.URL.Query().Get("period")
if period != "" {
var err error
runPeriod, err = time.ParseDuration(period)
if err != nil {
http.Error(w, fmt.Sprintf("'period' parameter must be a duration: %s", err), http.StatusBadRequest)
iperfErrors.Inc()
return
}
}
if runPeriod.Seconds() == 0 {
runPeriod = time.Second * 5
}
// If a timeout is configured via the Prometheus header, add it to the request.
var timeoutSeconds float64
if v := r.Header.Get("X-Prometheus-Scrape-Timeout-Seconds"); v != "" {
var err error
timeoutSeconds, err = strconv.ParseFloat(v, 64)
if err != nil {
http.Error(w, fmt.Sprintf("Failed to parse timeout from Prometheus header: %s", err), http.StatusInternalServerError)
iperfErrors.Inc()
return
}
}
if timeoutSeconds == 0 {
if timeout.Seconds() > 0 {
timeoutSeconds = timeout.Seconds()
} else {
timeoutSeconds = 30
}
}
if timeoutSeconds > 30 {
timeoutSeconds = 30
}
runTimeout := time.Duration(timeoutSeconds * float64(time.Second))
start := time.Now()
registry := prometheus.NewRegistry()
exporter := NewExporter(target, targetPort, runPeriod, runTimeout)
registry.MustRegister(exporter)
// Delegate http serving to Prometheus client library, which will call collector.Collect.
h := promhttp.HandlerFor(registry, promhttp.HandlerOpts{})
h.ServeHTTP(w, r)
duration := time.Since(start).Seconds()
iperfDuration.Observe(duration)
}
func main() {
log.AddFlags(kingpin.CommandLine)
kingpin.Version(version.Print("iperf3_exporter"))
kingpin.HelpFlag.Short('h')
kingpin.Parse()
log.Info("Starting iperf3 exporter", version.Info())
log.Info("Build context", version.BuildContext())
prometheus.MustRegister(version.NewCollector("iperf3_exporter"))
prometheus.MustRegister(iperfDuration)
prometheus.MustRegister(iperfErrors)
http.Handle(*metricsPath, promhttp.Handler())
http.HandleFunc("/probe", handler)
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
_, err := w.Write([]byte(`<html>
<head><title>iPerf3 Exporter</title></head>
<body>
<h1>iPerf3 Exporter</h1>
<p><a href="/probe?target=prometheus.io">Probe prometheus.io</a></p>
<p><a href='` + *metricsPath + `'>Metrics</a></p>
</html>`))
if err != nil {
log.Warnf("Failed to write to HTTP client: %s", err)
}
})
srv := &http.Server{
Addr: *listenAddress,
ReadTimeout: 60 * time.Second,
WriteTimeout: 60 * time.Second,
}
log.Infof("Listening on %s", srv.Addr)
log.Fatal(srv.ListenAndServe())
}