forked from cerc-io/stack-orchestrator
Nabarun
a322d6eed4
Part of [Deploy v2 and updated v3 sushiswap subgraphs](https://www.notion.so/Deploy-v2-and-updated-v3-sushiswap-subgraphs-e331945fdeea487c890706fc22c6cc94) - Add param `GRAPH_ETHEREUM_BLOCK_INGESTOR_MAX_CONCURRENT_JSON_RPC_CALLS_FOR_TXN_RECEIPTS` in graph-node stack - <https://github.com/graphprotocol/graph-node/blob/v0.31.0/docs/environment-variables.md#json-rpc-configuration-for-evm-chains> - Add dashboard for subgraphs deployment in graph-node - Show subgraph names in dashboard - Add watcher dashboard panel for showing watcher release version and commit hash Reviewed-on: cerc-io/stack-orchestrator#832 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
32 lines
907 B
YAML
32 lines
907 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana:10.2.3
|
|
restart: always
|
|
environment:
|
|
GF_SERVER_ROOT_URL: ${GF_SERVER_ROOT_URL}
|
|
CERC_GRAFANA_ALERTS_SUBGRAPH_IDS: ${CERC_GRAFANA_ALERTS_SUBGRAPH_IDS}
|
|
volumes:
|
|
- ../config/monitoring/grafana/provisioning:/etc/grafana/provisioning
|
|
- ../config/monitoring/grafana/dashboards:/etc/grafana/dashboards
|
|
- ../config/monitoring/update-grafana-alerts-config.sh:/update-grafana-alerts-config.sh
|
|
- grafana_storage:/var/lib/grafana
|
|
user: root
|
|
entrypoint: ["bash", "-c"]
|
|
command: |
|
|
"/update-grafana-alerts-config.sh && /run.sh"
|
|
ports:
|
|
- "3000"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "localhost", "3000"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 3s
|
|
|
|
volumes:
|
|
grafana_storage:
|