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
//Try to parse value from string to float64, return error on failure
236
-
funcparseString(sstring) (float64, error) {
237
-
v, err:=strconv.ParseFloat(s, 64)
238
-
239
-
iferr!=nil {
240
-
//try to convert to bytes
241
-
u, err:=bytefmt.ToBytes(s)
242
-
iferr!=nil {
243
-
log.Debugln("can't parse", s, err)
244
-
returnv, err
245
-
}
246
-
v=float64(u)
247
-
}
248
-
249
-
returnv, nil
250
-
}
251
-
252
233
funcmain() {
253
234
var (
254
235
listenAddress=kingpin.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9540").String()
255
236
metricsPath=kingpin.Flag("web.telemetry-path", "Path under which to expose metrics.").Default("/metrics").String()
256
-
emqURI=kingpin.Flag("emq.uri", "HTTP API address of the EMQ node.").Default("http://127.0.0.1:18083").String()
257
-
emqUsername=kingpin.Flag("emq.username", "EMQ username (or use $EMQ_USERNAME env var)").Default("admin").Envar("EMQ_USERNAME").String()
258
-
emqPassword=kingpin.Flag("emq.password", "EMQ password (or use $EMQ_PASSWORD env var)").Default("public").Envar("EMQ_PASSWORD").String()
259
-
emqNodeName=kingpin.Flag("emq.node", "Node name of the emq node to scrape.").Default("[email protected]").String()
237
+
emqURI=kingpin.Flag("emq.uri", "HTTP API address of the EMQ node.").Default("http://127.0.0.1:18083").Short('u').String()
238
+
emqCreds=kingpin.Flag("emq.creds-file", "Path to json file containing emq credentials").Default("./auth.json").Short('f').String()
239
+
emqNodeName=kingpin.Flag("emq.node", "Node name of the emq node to scrape.").Default("[email protected]").Short('n').String()
260
240
emqTimeout=kingpin.Flag("emq.timeout", "Timeout for trying to get stats from emq").Default("5s").Duration()
261
241
emqAPIVersion=kingpin.Flag("emq.api-version", "The API version used by EMQ. Valid values: [v2, v3]").Default("v2").Enum("v2", "v3")
0 commit comments