You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`.
80
80
81
81
### Authentication
82
82
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:
84
84
1. From the emq dashboard side bar -> applications
85
-
2. Select `New App` from the top
85
+
2. Select `New App` from the top
86
86
3. Fill in the popup window with the relevant details and confirm
87
87
4. View the app details and use `AppID` as `username` and `AppSecret` as `password` (as `creds-file` entries or `env vars`, see above)
88
88
@@ -115,7 +115,7 @@ Alternatively, One can also supply the credentials using `env vars`, replace the
115
115
116
116
### Kubernetes
117
117
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.
119
119
See the examples folder for a `kubernetes` manifest that can serve as reference for implementation.
@@ -163,22 +163,19 @@ func (e *Exporter) add(fqName, help string, value float64) {
163
163
}
164
164
165
165
funcmain() {
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")
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")
0 commit comments