mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
9031c35114
Sentry nodes are deprecated. Thus there is no need for `.maintain/sentry-node` to spin up a sentry node test environment. Instead this commit rewrites the setup to contain two full-connected validators and one light client. With the steps below one can now spin up a local test network with two validators, one light-client, Prometheus and Grafana. - cargo build --release - sudo docker-compose -f .maintain/local-docker-test-network/docker-compose.yml up
16 lines
327 B
YAML
16 lines
327 B
YAML
global:
|
|
scrape_interval: 15s
|
|
|
|
scrape_configs:
|
|
- job_name: 'substrate-nodes'
|
|
static_configs:
|
|
- targets: ['validator-a:9615']
|
|
labels:
|
|
network: dev
|
|
- targets: ['validator-b:9615']
|
|
labels:
|
|
network: dev
|
|
- targets: ['light-c:9615']
|
|
labels:
|
|
network: dev
|