Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use updated Nethermind dashboard #1463

Merged
merged 4 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/test-grafana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ jobs:
- name: Test node exporter
run: |
./.github/check-service.sh node-exporter
- name: Test blackbox exporter
run: |
./.github/check-service.sh blackbox-exporter
- name: Test json exporter
run: |
./.github/check-service.sh json-exporter
- name: Test cryptowat exporter
run: |
./.github/check-service.sh cryptowat-exporter
Expand Down
40 changes: 20 additions & 20 deletions grafana-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,26 +70,26 @@ services:
- /etc/localtime:/etc/localtime:ro
<<: *logging

blackbox-exporter:
restart: "unless-stopped"
image: prom/blackbox-exporter:master
volumes:
- ./prometheus/blackbox.yml:/config/blackbox.yml
- /etc/localtime:/etc/localtime:ro
<<: *logging
command:
- --config.file=/config/blackbox.yml
# blackbox-exporter:
# restart: "unless-stopped"
# image: prom/blackbox-exporter:master
# volumes:
# - ./prometheus/blackbox.yml:/config/blackbox.yml
# - /etc/localtime:/etc/localtime:ro
# <<: *logging
# command:
# - --config.file=/config/blackbox.yml

json-exporter:
restart: "unless-stopped"
image: prometheuscommunity/json-exporter:latest
volumes:
- ./prometheus/json.yml:/config/json.yml
- /etc/localtime:/etc/localtime:ro
<<: *logging
command:
- --config.file
- /config/json.yml
# json-exporter:
# restart: "unless-stopped"
# image: prometheuscommunity/json-exporter:latest
# volumes:
# - ./prometheus/json.yml:/config/json.yml
# - /etc/localtime:/etc/localtime:ro
# <<: *logging
# command:
# - --config.file
# - /config/json.yml

cryptowat-exporter:
restart: "unless-stopped"
Expand All @@ -98,7 +98,7 @@ services:
- /etc/localtime:/etc/localtime:ro
environment:
- CRYPTOWAT_EXCHANGES=kraken
- CRYPTOWAT_PAIRS=ethusd,ethchf
- CRYPTOWAT_PAIRS=etheur,ethusd,ethgbp,ethcad,ethchf,ethjpy,ethbtc
- CRYPTOWAT_CACHESECONDS=300
- TZ=Europe/Zurich
<<: *logging
Expand Down
40 changes: 20 additions & 20 deletions grafana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,26 +53,26 @@ services:
- /etc/localtime:/etc/localtime:ro
<<: *logging

blackbox-exporter:
restart: "unless-stopped"
image: prom/blackbox-exporter:master
volumes:
- ./prometheus/blackbox.yml:/config/blackbox.yml
- /etc/localtime:/etc/localtime:ro
<<: *logging
command:
- --config.file=/config/blackbox.yml
# blackbox-exporter:
# restart: "unless-stopped"
# image: prom/blackbox-exporter:master
# volumes:
# - ./prometheus/blackbox.yml:/config/blackbox.yml
# - /etc/localtime:/etc/localtime:ro
# <<: *logging
# command:
# - --config.file=/config/blackbox.yml

json-exporter:
restart: "unless-stopped"
image: prometheuscommunity/json-exporter:latest
volumes:
- ./prometheus/json.yml:/config/json.yml
- /etc/localtime:/etc/localtime:ro
<<: *logging
command:
- --config.file
- /config/json.yml
# json-exporter:
# restart: "unless-stopped"
# image: prometheuscommunity/json-exporter:latest
# volumes:
# - ./prometheus/json.yml:/config/json.yml
# - /etc/localtime:/etc/localtime:ro
# <<: *logging
# command:
# - --config.file
# - /config/json.yml

cryptowat-exporter:
restart: "unless-stopped"
Expand All @@ -81,7 +81,7 @@ services:
- /etc/localtime:/etc/localtime:ro
environment:
- CRYPTOWAT_EXCHANGES=kraken
- CRYPTOWAT_PAIRS=ethusd,ethchf
- CRYPTOWAT_PAIRS=etheur,ethusd,ethgbp,ethcad,ethchf,ethjpy,ethbtc
- CRYPTOWAT_CACHESECONDS=300
- TZ=Europe/Zurich
<<: *logging
Expand Down
1 change: 0 additions & 1 deletion grafana/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ RUN chown -R grafana:root /etc/grafana/
COPY --chown=grafana:root ./dashboard.yml /etc/grafana/provisioning/dashboards/
COPY --chown=grafana:root ./datasource.yml /etc/grafana/provisioning/datasources/
COPY --chown=grafana:root ./provision-dashboards.sh /usr/local/bin/
COPY --chown=grafana:root ./nethermind_dashboard.json /tmp/
# Belt and suspenders
RUN chmod -R 755 /usr/local/bin/*

Expand Down
Loading