Skip to content

Commit ee964bd

Browse files
committed
Replace kingpin with stdlib flags
1 parent c96b7c6 commit ee964bd

File tree

5 files changed

+31
-30
lines changed

5 files changed

+31
-30
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ local: ## Start a local emq container for development
4141
@docker run --rm -d --name emqx -h emqx -p 18083:18083 -p 8080:8080 emqx/emqx:latest
4242

4343
run: build local ## Run the exporter locally using a local container
44-
./bin/emq_exporter -n emqx@$(IP) -f testdata/authfull.json --emq.api-version v4 --log.level debug
44+
./bin/emq_exporter --emq.node emqx@$(IP) --emq.creds-file testdata/authfull.json --emq.api-version v4 --log.level debug
4545

4646
help: ## Print this message and exit
4747
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%-20s %s\n", $$1, $$2}'

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Help on flags:
2727

2828
### EMQ URI
2929

30-
Specify EMQ's node uri and api port using the `--emq.uri` flag (short `-u`). For example,
30+
Specify EMQ's node uri and api port using the `--emq.uri` flag. For example,
3131

3232
```bash
3333
./emq_exporter --emq.uri "http://localhost:8080"
@@ -36,7 +36,7 @@ Specify EMQ's node uri and api port using the `--emq.uri` flag (short `-u`). For
3636
Or to scrape a remote host:
3737

3838
```bash
39-
./emq_exporter -u "https://emq.example.com:8080"
39+
./emq_exporter -emq.uri "https://emq.example.com:8080"
4040
```
4141

4242
### Passing Credentials
@@ -60,10 +60,10 @@ The file should be json formatted and contain the following fields:
6060
}
6161
```
6262

63-
When staring `emq_exporter`, point it to the credentials file using `--emq.creds-file` flag (short `-f`):
63+
When staring `emq_exporter`, point it to the credentials file using `--emq.creds-file` flag:
6464

6565
```bash
66-
./emq_exporter -u http://localhost:8080 -f /etc/emq_exporter/auth.json
66+
./emq_exporter --emq.uri http://localhost:8080 --emq.creds-file /etc/emq_exporter/auth.json
6767
```
6868

6969
The default path for credentials file is `$(CWD)/auth.json`. Note that `env vars` take precedence over using a file.
@@ -73,16 +73,16 @@ The default path for credentials file is `$(CWD)/auth.json`. Note that `env vars
7373
EMQ add a `v3` api version in `EMQX`. To specify the api version, use the `emq.api-version` flag:
7474

7575
```bash
76-
./emq_exporter -u http://localhost:8080 --emq.api-version v3
76+
./emq_exporter --emq.uri http://localhost:8080 --emq.api-version v3
7777
```
7878

79-
The `emq_exporter` supports both `v2` and `v3` API versions seamlessly (mutually exclusive, pick either on start up), default is `v2`.
79+
The `emq_exporter` supports `v2`, `v3` and `v4` API versions seamlessly (mutually exclusive, pick either on start up), default is `v3`.
8080

8181
### Authentication
8282

83-
The authentication method changed a bit in version `v3` of `emqx`. If you're pulling the metrics through the dashboard port (default `18083`), you can use regular username and password. However, if you're using the API port (default `8080`), you'll need to set up application credentials:
83+
The authentication method changed a bit in version `v3` of `emqx`. If you're pulling the metrics through the dashboard port (default `18083`), you can use regular username and password. However, if you're using the API port (default `8080`), you'll need to set up application credentials:
8484
1. From the emq dashboard side bar -> applications
85-
2. Select `New App` from the top
85+
2. Select `New App` from the top
8686
3. Fill in the popup window with the relevant details and confirm
8787
4. View the app details and use `AppID` as `username` and `AppSecret` as `password` (as `creds-file` entries or `env vars`, see above)
8888

@@ -115,7 +115,7 @@ Alternatively, One can also supply the credentials using `env vars`, replace the
115115

116116
### Kubernetes
117117

118-
EMQ exporter was designed to run as a sidecar in the same pod as EMQ itself.
118+
EMQ exporter was designed to run as a sidecar in the same pod as EMQ itself.
119119
See the examples folder for a `kubernetes` manifest that can serve as reference for implementation.
120120

121121
## Contributing

emq_exporter.go

+20-18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package main
22

33
import (
4+
"flag"
45
"fmt"
56
"net/http"
67
"strings"
@@ -10,7 +11,6 @@ import (
1011
"github.com/prometheus/client_golang/prometheus"
1112
"github.com/prometheus/client_golang/prometheus/promhttp"
1213
"github.com/prometheus/common/log"
13-
kingpin "gopkg.in/alecthomas/kingpin.v2"
1414
)
1515

1616
const (
@@ -163,22 +163,19 @@ func (e *Exporter) add(fqName, help string, value float64) {
163163
}
164164

165165
func main() {
166-
var (
167-
listenAddress = kingpin.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9540").String()
168-
metricsPath = kingpin.Flag("web.telemetry-path", "Path under which to expose metrics.").Default("/metrics").String()
169-
emqURI = kingpin.Flag("emq.uri", "HTTP API address of the EMQ node.").Default("http://127.0.0.1:18083").Short('u').String()
170-
emqCreds = kingpin.Flag("emq.creds-file", "Path to json file containing emq credentials").Default("./auth.json").Short('f').String()
171-
emqNodeName = kingpin.Flag("emq.node", "Node name of the emq node to scrape.").Default("[email protected]").Short('n').String()
172-
emqAPIVersion = kingpin.Flag("emq.api-version", "The API version used by EMQ. Valid values: [v2, v3, v4]").Default("v3").Enum("v2", "v3", "v4")
173-
)
174166

175-
log.AddFlags(kingpin.CommandLine)
176-
kingpin.Version(fmt.Sprintf("Version %s (git-%s)", GitTag, GitCommit))
177-
kingpin.CommandLine.HelpFlag.Short('h')
167+
emqAPIVersion := flag.String("emq.api-version", "v3", "The API version used by EMQ. Valid values: [v2, v3, v4]")
168+
emqCreds := flag.String("emq.creds-file", "./auth.json", "Path to json file containing emq credentials")
169+
emqNodeName := flag.String("emq.node", "[email protected]", "Node name of the emq node to scrape")
170+
emqURI := flag.String("emq.uri", "http://127.0.0.1:18083", "HTTP API address of the EMQ node")
171+
logLevel := flag.String("log.level", "info", "log level")
172+
webListenAddress := flag.String("web.listen-address", ":9540", "Address to listen on for web interface and telemetry")
173+
webMetricsPath := flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics")
178174

179-
kingpin.Parse()
175+
flag.Parse()
180176

181177
log.Infoln("Loading authentication credentials")
178+
log.Debugf("log level: %s", *logLevel)
182179

183180
username, password, err := findCreds(*emqCreds)
184181
if err != nil {
@@ -188,8 +185,12 @@ func main() {
188185
log.Infoln("Starting emq_exporter")
189186
log.Infof("Version %s (git-%s)", GitTag, GitCommit)
190187

191-
if *emqAPIVersion == "v2" {
188+
switch *emqAPIVersion {
189+
case "v2":
192190
log.Warnln("v2 api version is deprecated and will be removed in future versions")
191+
case "v3", "v4":
192+
default:
193+
log.Fatalf("unsupported api version: %s", *emqAPIVersion)
193194
}
194195

195196
c := client.NewClient(*emqURI, *emqNodeName, *emqAPIVersion, username, password)
@@ -198,17 +199,18 @@ func main() {
198199

199200
prometheus.MustRegister(exporter)
200201

201-
log.Infoln("Listening on", *listenAddress)
202-
http.Handle(*metricsPath, promhttp.Handler())
202+
log.Infoln("Listening on", *webListenAddress)
203+
204+
http.Handle(*webMetricsPath, promhttp.Handler())
203205
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
204206
w.Write([]byte(`<html>
205207
<head><title>EMQ Exporter</title></head>
206208
<body>
207209
<h1>EMQ Exporter</h1>
208-
<p><a href='` + *metricsPath + `'>Metrics</a></p>
210+
<p><a href='` + *webMetricsPath + `'>Metrics</a></p>
209211
</body>
210212
</html>`))
211213
})
212214

213-
log.Fatal(http.ListenAndServe(*listenAddress, nil))
215+
log.Fatal(http.ListenAndServe(*webListenAddress, nil))
214216
}

examples/manifests/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
serviceAccountName: emqx
2929
containers:
3030
- name: exporter
31-
image: "nuvo/emq_exporter:v0.3.1"
31+
image: "nuvo/emq_exporter:v0.5.0"
3232
env:
3333
- name: EMQ_USERNAME
3434
value: "admin"

go.mod

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ require (
1414
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
1515
golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f // indirect
1616
golang.org/x/text v0.3.2 // indirect
17-
gopkg.in/alecthomas/kingpin.v2 v2.2.6
1817
gopkg.in/yaml.v2 v2.2.8 // indirect
1918
)
2019

0 commit comments

Comments
 (0)