-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.go
68 lines (58 loc) · 2.63 KB
/
main.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
package main
import (
"flag"
"io/ioutil"
"log"
"net/http"
"os"
"strings"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/hikhvar/ts3exporter/pkg/collector"
"github.com/hikhvar/ts3exporter/pkg/serverquery"
)
func main() {
remote := flag.String("remote", "localhost:10011", "remote address of server query port")
listen := flag.String("listen", ":9189", "listen address of the exporter")
user := flag.String("user", "serveradmin", "the serverquery user of the ts3exporter")
passwordFile := flag.String("passwordfile", "/etc/ts3exporter/password", "file containing the password. Must have 0600 permission. The file is not read if the environment variable SERVERQUERY_PASSWORD is set.")
enableChannelMetrics := flag.Bool("enablechannelmetrics", false, "Enables the channel collector.")
ignoreFloodLimits := flag.Bool("ignorefloodlimits", false, "Disable the server query flood limiter. Use this only if your exporter is whitelisted in the query_ip_whitelist.txt file.")
flag.Parse()
c, err := serverquery.NewClient(*remote, *user, mustReadPassword(*passwordFile), *ignoreFloodLimits)
if err != nil {
log.Fatalf("failed to init client %v\n", err)
}
internalMetrics := collector.NewExporterMetrics()
seq := collector.SequentialCollector{collector.NewServerInfo(c, internalMetrics)}
if *enableChannelMetrics {
cInfo := collector.NewChannel(c, internalMetrics)
seq = append(seq, cInfo)
}
prometheus.MustRegister(append(seq, collector.NewClient(c)))
// The Handler function provides a default handler to expose metrics
// via an HTTP server. "/metrics" is the usual endpoint for that.
http.Handle("/metrics", promhttp.Handler())
log.Fatal(http.ListenAndServe(*listen, nil))
}
// mustReadPassword reads the password from the password file or the environment. The password file is only
// used if the SERVERQUERY_PASSWORD environment variable is not set.
// If the file read fails, this function terminates the process.
func mustReadPassword(passwordFile string) string {
if pw, found := os.LookupEnv("SERVERQUERY_PASSWORD"); found {
return pw
}
fInfo, err := os.Stat(passwordFile)
if err != nil {
log.Fatalf("failed to get fileinfo of password file: %v\n", err)
}
if !(fInfo.Mode() == 0600 || fInfo.Mode() == 0400) {
log.Fatalf("password file permissions are to open. Have: %s, want at most: %o\n", fInfo.Mode().String(), 0600)
}
data, err := ioutil.ReadFile(passwordFile)
if err != nil {
log.Fatalf("failed to read password file: %v\n", err)
}
// Trim possible line breaks that can be automatically added by e.g. vim
return strings.Trim(string(data), "\r\n")
}