Skip to content

Commit 75f3a3d

Browse files
committed
remove node-exporter
1 parent bfe19ed commit 75f3a3d

File tree

4 files changed

+0
-21
lines changed

4 files changed

+0
-21
lines changed

demo/docker-compose.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -194,15 +194,6 @@ services:
194194
hydra_net:
195195
ipv4_address: 172.16.238.5
196196

197-
node-exporter:
198-
image: prom/node-exporter:latest
199-
container_name: node-exporter
200-
ports:
201-
- "9100:9100"
202-
networks:
203-
hydra_net:
204-
ipv4_address: 172.16.238.6
205-
206197
grafana:
207198
image: grafana/grafana:latest
208199
container_name: grafana

demo/prometheus/docker/prometheus.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ scrape_configs:
2828
static_configs:
2929
- targets: ['0.0.0.0:9090']
3030

31-
- job_name: 'node_exporter'
32-
static_configs:
33-
- targets: ['node-exporter:9100']
34-
3531
- job_name: 'hydra_nodes'
3632

3733
# metrics_path defaults to '/metrics'

demo/prometheus/nix/prometheus.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ scrape_configs:
2828
static_configs:
2929
- targets: ['0.0.0.0:9090']
3030

31-
- job_name: 'node_exporter'
32-
static_configs:
33-
- targets: ['localhost:9100']
34-
3531
- job_name: 'hydra_nodes'
3632

3733
# metrics_path defaults to '/metrics'

nix/hydra/demo.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,6 @@
211211
# Ensure test starts only after devnet has been prepared
212212
depends_on."prepare-devnet".condition = "process_completed";
213213
};
214-
node-exporter = {
215-
command = "${pkgs.prometheus-node-exporter}/bin/node_exporter --web.listen-address=:9100";
216-
};
217214
prometheus = {
218215
working_dir = "./demo";
219216
command = ''
@@ -223,7 +220,6 @@
223220
--web.listen-address=127.0.0.1:9090
224221
'';
225222
depends_on = {
226-
"node-exporter".condition = "process_started";
227223
"hydra-node-alice".condition = "process_started";
228224
"hydra-node-bob".condition = "process_started";
229225
"hydra-node-carol".condition = "process_started";

0 commit comments

Comments
 (0)