Skip to content

Commit

Permalink
FIX: automatic import of grafana dashboards (#426)
Browse files Browse the repository at this point in the history
* UPDATE: grafana dashboard for nimbus

* FIX: automatic import of grafana dashboards
  • Loading branch information
gbayasgalan authored Jun 22, 2022
1 parent fceb239 commit 0f932a8
Show file tree
Hide file tree
Showing 9 changed files with 3,690 additions and 3,993 deletions.

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
- --http
- --http-address=0.0.0.0
- --metrics
- --metrics-port=5054
- --metrics-address=0.0.0.0
- --disable-upnp
- --validator-monitor-auto
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@
scrape_configs:
- job_name: 'stereum-{{ beacon_service }}'
metrics_path: /metrics
static_configs:
- targets: ['stereum-{{ beacon_service }}:5054']
- targets: ['stereum-{{ beacon_service }}:8008']
- job_name: 'stereum-{{ prometheus_node_exporter_service }}'
static_configs:
- targets: ['stereum-{{ prometheus_node_exporter_service }}:9100']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
register: grafana_ini
- debug:
msg: "{{ grafana_ini }}"
- stat: path=/opt/app/services/52134fcc-9744-11ec-b5ca-572497326b43/grafana/provisioning/dashboards/multiple-source.json
- stat: path=/opt/app/services/52134fcc-9744-11ec-b5ca-572497326b43/grafana/provisioning/dashboards/beacon_nodes_Grafana_dashboard.json
register: grafana_dashboard
- debug:
msg: "{{ grafana_dashboard }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
scrape_configs:
- job_name: 'stereum-{{ beacon_service }}'
static_configs:
- targets: ['stereum-{{ beacon_service }}:5054']
- targets: ['stereum-{{ beacon_service }}:8080']
- job_name: 'stereum-{{ prometheus_node_exporter_service }}'
static_configs:
- targets: ['stereum-{{ prometheus_node_exporter_service }}:9100']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
--grpc-gateway-host=0.0.0.0
--p2p-max-peers=100
--http-web3provider=http://10.10.0.3:8545
--monitoring-port=8080
--monitoring-host=0.0.0.0
user: "2000"
volumes:
- "/opt/app/services/{{ beacon_service }}/prysm/beacon:/opt/app/beacon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@
scrape_configs:
- job_name: 'stereum-{{ beacon_service }}'
scrape_timeout: 10s
metrics_path: /metrics
scheme: http
static_configs:
- targets: ['stereum-{{ beacon_service }}:5054']
- targets: ['stereum-{{ beacon_service }}:8008']
- job_name: 'stereum-{{ prometheus_node_exporter_service }}'
static_configs:
- targets: ['stereum-{{ prometheus_node_exporter_service }}:9100']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
- --metrics-port=8008
- --metrics-interface=0.0.0.0
- --metrics-host-allowlist="*"
- --metrics-publish-interval=10
- --data-path=/opt/app/data
- --data-storage-mode=archive
- --rest-api-port=5051
Expand Down

0 comments on commit 0f932a8

Please sign in to comment.