Nabarun
a322d6eed4
Some checks failed
Lint Checks / Run linter (push) Successful in 1m5s
Publish / Build and publish (push) Successful in 2m27s
Webapp Test / Run webapp test suite (push) Successful in 7m1s
Smoke Test / Run basic test suite (push) Successful in 7m30s
Deploy Test / Run deploy test suite (push) Successful in 9m23s
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Successful in 24m12s
Fixturenet-Eth-Plugeth-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 51m33s
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Successful in 6m56s
Fixturenet-Eth-Plugeth-Arm-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 1h40m25s
Database Test / Run database hosting test on kind/k8s (push) Successful in 9m3s
Container Registry Test / Run contaier registry hosting test on kind/k8s (push) Successful in 4m4s
External Stack Test / Run external stack test suite (push) Successful in 4m31s
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: #832 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
80 lines
2.1 KiB
YAML
80 lines
2.1 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus:v2.49.1
|
|
restart: always
|
|
volumes:
|
|
- ../config/monitoring/prometheus:/etc/prometheus
|
|
- prometheus_data:/prometheus
|
|
ports:
|
|
- "9090"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "localhost", "9090"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 3s
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
blackbox:
|
|
image: prom/blackbox-exporter:latest
|
|
restart: always
|
|
volumes:
|
|
- ../config/monitoring/blackbox.yml:/etc/blackbox_exporter/config.yml
|
|
ports:
|
|
- '9115'
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
ethereum-chain-head-exporter:
|
|
image: cerc/watcher-ts:local
|
|
restart: always
|
|
working_dir: /app/packages/cli
|
|
environment:
|
|
ETH_RPC_ENDPOINT: ${CERC_ETH_RPC_ENDPOINT:-https://mainnet.infura.io/v3}
|
|
ETH_RPC_API_KEY: ${CERC_INFURA_KEY}
|
|
command: ["sh", "-c", "yarn export-metrics:chain-heads"]
|
|
ports:
|
|
- '5000'
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
filecoin-chain-head-exporter:
|
|
image: cerc/watcher-ts:local
|
|
restart: always
|
|
working_dir: /app/packages/cli
|
|
environment:
|
|
ETH_RPC_ENDPOINT: ${CERC_FIL_RPC_ENDPOINT:-https://api.node.glif.io/rpc/v1}
|
|
command: ["sh", "-c", "yarn export-metrics:chain-heads"]
|
|
ports:
|
|
- '5000'
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
graph-node-upstream-head-exporter:
|
|
image: cerc/watcher-ts:local
|
|
restart: always
|
|
working_dir: /app/packages/cli
|
|
environment:
|
|
ETH_RPC_ENDPOINT: ${GRAPH_NODE_RPC_ENDPOINT}
|
|
command: ["sh", "-c", "yarn export-metrics:chain-heads"]
|
|
ports:
|
|
- '5000'
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
postgres-exporter:
|
|
image: quay.io/prometheuscommunity/postgres-exporter
|
|
restart: always
|
|
volumes:
|
|
- ../config/monitoring/postgres-exporter.yml:/postgres_exporter.yml
|
|
ports:
|
|
- '9187'
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
volumes:
|
|
prometheus_data:
|