-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add monitoring(grafana, prometheus, ethbalance) for localnet te…
…sting (#1498) * add monitoring and blockscout for localnet testing * remove blockscout from this PR, update readme with grafana access instructions * add eth tss automation * update changelog.md * delete static addresses.txt file * update github changelog check workflow * update github changelog check workflow * add github head repo full name * switch to using pull request base and head for changelog diff * fix typo * update ethbalance image to be start of zetachain-exporter * change labeler workflow to run on pull_request_target instead of pull_request --------- Co-authored-by: Peter Lee <[email protected]> Co-authored-by: morde08 <[email protected]> Co-authored-by: Charlie <[email protected]> Co-authored-by: Lucas Bertrand <[email protected]>
- Loading branch information
1 parent
89475e5
commit 0fe3dc5
Showing
18 changed files
with
3,136 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
pull_request: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
version: '3' | ||
|
||
services: | ||
grafana: | ||
image: grafana/grafana:latest | ||
container_name: grafana | ||
hostname: grafana | ||
volumes: | ||
- ./grafana/datasource.yaml:/etc/grafana/provisioning/datasources/datasource.yaml | ||
- ./grafana/dashboards/:/etc/grafana/provisioning/dashboards | ||
ports: | ||
- "3000:3000" | ||
networks: | ||
mynetwork: | ||
ipv4_address: 172.20.0.30 | ||
|
||
prometheus: | ||
image: prom/prometheus:latest | ||
container_name: prometheus | ||
hostname: prometheus | ||
volumes: | ||
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml | ||
ports: | ||
- "9090:9090" | ||
networks: | ||
mynetwork: | ||
ipv4_address: 172.20.0.31 | ||
|
||
zetachain-exporter: | ||
image: zetachain/zetachain-exporter:latest | ||
container_name: zetachain-exporter | ||
hostname: zetachain-exporter | ||
volumes: | ||
- ./grafana/addresses.txt:/app/addresses.txt | ||
ports: | ||
- "9015:9015" | ||
networks: | ||
mynetwork: | ||
ipv4_address: 172.20.0.32 | ||
environment: | ||
- GETH=http://eth:8545 | ||
|
||
networks: | ||
mynetwork: | ||
ipam: | ||
config: | ||
- subnet: 172.20.0.0/24 |
Oops, something went wrong.