1、emqx官方镜像启动 docker run -d --name emqx31 -p 1883:1883 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 registry.icp.com:5000/service/iot/emqx:v3.0.1 (官方镜像是:emqx/emqx:v3.1.0) 2、启动exporter https://github.com/nuvo/emq_exporter,我用的是他的镜像。 docker run ...
Dockerfile LICENSE Makefile README.md RELEASE.md go.mod go.sum main.go main_test.go Breadcrumbs emqx-exporter /examples /docker / prometheus-emqx4.yaml Latest commit logo306142054 docs: update comment of the Prometheus target config (emqx#48) 4ab9943· Jun 26, 2023 HistoryHistory File meta...
Docker ComposeRefer to the example to deploy a complete demo by docker compose.KubernetesRefer to the example to learn how to deploy emqx-exporter on the Kubernetes.ConfigurationSample config file like thismetrics: target: 127.0.0.1:18083 api_key: "some_api_key" api_secret: "some_api_secret"...
1、emqx官方镜像启动 docker run -d --name emqx31 -p 1883:1883 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 registry.icp.com:5000/service/iot/emqx:v3.0.1 (官方镜像是:emqx/emqx:v3.1.0) 2、启动exporter https://github.com/nuvo/emq_exporter,我用的是他的镜像。 docker run ...
@@ -35,20 +35,6 @@ Refer to the [example](examples/docker) to deploy a complete demo by docker. ### Docker-Compose ```yaml version: '3.8' services: emqx-exporter: image: emqx-exporter:latest container_name: emqx-exporter command: - '--emqx.nodes=${your_cluster_addr}:18083' - ...
Refer to the [example](examples/docker/prometheus-emqx4.yaml) to learn how to add scrape configs for EMQX 4. Refer to the [example](examples/docker/prometheus-emqx4.yaml) to learn how to add scrape configs for EMQX 4.4. ## Grafana Dashboard Import all [templates](./config/grafana-...
In most cases, it's easier to deploy prometheus by `Deployment` without operator if you are new for this, you can get the scrape config example from [here](../docker) ```shell cat << "EOF" | kubectl apply -f - apiVersion: monitoring.coreos.com/v1 0 comments on commit 29ddc16...
Dockerdocker run -d \ -p 8085:8085 \ emqx/emqx-exporter:latest \ --emqx.nodes="${your_cluster_addr}:18083" \ --emqx.auth-username=${apiKey} \ --emqx.auth-password=${secretKey}The arg emqx.nodes is a comma-separated list of host, the exporter will choose one to establish ...