2019-02-20 23:03:41 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-02-19 17:10:45 +00:00
|
|
|
"context"
|
2019-02-20 23:03:41 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/alecthomas/kingpin"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2020-02-21 11:11:58 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2019-02-20 23:03:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var (
|
2020-06-21 06:24:36 +00:00
|
|
|
ctx = context.Background()
|
2020-06-20 23:07:59 +00:00
|
|
|
app = kingpin.New("postfix_exporter", "Prometheus metrics exporter for postfix")
|
|
|
|
listenAddress = app.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9154").String()
|
|
|
|
metricsPath = app.Flag("web.telemetry-path", "Path under which to expose metrics.").Default("/metrics").String()
|
|
|
|
postfixShowqPath = app.Flag("postfix.showq_path", "Path at which Postfix places its showq socket.").Default("/var/spool/postfix/public/showq").String()
|
|
|
|
logUnsupportedLines = app.Flag("log.unsupported", "Log all unsupported lines.").Bool()
|
2019-02-20 23:03:41 +00:00
|
|
|
)
|
|
|
|
|
2020-06-20 23:07:59 +00:00
|
|
|
InitLogSourceFactories(app)
|
2019-02-20 23:03:41 +00:00
|
|
|
kingpin.MustParse(app.Parse(os.Args[1:]))
|
|
|
|
|
2020-06-21 06:24:36 +00:00
|
|
|
logSrc, err := NewLogSourceFromFactories(ctx)
|
2020-06-20 23:07:59 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error opening log source: %s", err)
|
2019-02-20 23:03:41 +00:00
|
|
|
}
|
2020-06-20 23:07:59 +00:00
|
|
|
defer logSrc.Close()
|
2019-02-20 23:03:41 +00:00
|
|
|
|
|
|
|
exporter, err := NewPostfixExporter(
|
|
|
|
*postfixShowqPath,
|
2020-06-20 23:07:59 +00:00
|
|
|
logSrc,
|
2020-02-19 17:10:45 +00:00
|
|
|
*logUnsupportedLines,
|
2019-02-20 23:03:41 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to create PostfixExporter: %s", err)
|
|
|
|
}
|
|
|
|
prometheus.MustRegister(exporter)
|
|
|
|
|
2020-02-19 17:10:45 +00:00
|
|
|
http.Handle(*metricsPath, promhttp.Handler())
|
2019-02-20 23:03:41 +00:00
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, err = w.Write([]byte(`
|
|
|
|
<html>
|
|
|
|
<head><title>Postfix Exporter</title></head>
|
|
|
|
<body>
|
|
|
|
<h1>Postfix Exporter</h1>
|
|
|
|
<p><a href='` + *metricsPath + `'>Metrics</a></p>
|
|
|
|
</body>
|
|
|
|
</html>`))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
})
|
2020-06-21 06:24:36 +00:00
|
|
|
ctx, cancelFunc := context.WithCancel(ctx)
|
2020-02-19 17:10:45 +00:00
|
|
|
defer cancelFunc()
|
|
|
|
go exporter.StartMetricCollection(ctx)
|
2019-02-20 23:03:41 +00:00
|
|
|
log.Print("Listening on ", *listenAddress)
|
|
|
|
log.Fatal(http.ListenAndServe(*listenAddress, nil))
|
|
|
|
}
|