mirror of
https://github.com/sigp/gossipsub-testground.git
synced 2026-01-10 14:08:12 -05:00
* episub-sim
* network generation
* mainnet network generation
* no pretty print
* add small network for testing
* upgrade versions, make the thing compile
* checkpoint
* this is ridiculous
* make gen_topology reachable by testground
* add 16 instsances for testing
* add running command
* remove params
* pass new participants param
* update upstream reg
* update upstream reg
* put msg generation back in
* put publishing back in
* adding metrics
* record metrics on intervals
* add gossip max limit
* stop fghting testground. For now
* update README
* Revert "stop fghting testground. For now"
This reverts commit a976c5371b.
* use composition files to get the docker build context a layer up
* fix params and logs
* remove unused files
* cache workspace deps
* cache workspace deps _the right_ way
* updates
* some docs
* Update CI and remove root workspace
* Add duplicates, fix clippy, improve dash
* Reduce message sizes, some debugging
* Update dash and logs
* Add scripts folder
* Fix executor lockup
* fmt and clippy
* Add some docs
* Dot to mermaid
Co-authored-by: Diva M <divma@protonmail.com>
21 lines
786 B
YAML
21 lines
786 B
YAML
services:
|
|
grafana:
|
|
image: grafana/grafana:9.2.0
|
|
container_name: gossipsub-testground-grafana
|
|
ports:
|
|
- 13000:3000
|
|
volumes:
|
|
- ./grafana/grafana.ini:/etc/grafana/grafana.ini
|
|
- ./grafana/datasources.yml:/etc/grafana/provisioning/datasources/datasources.yml
|
|
- ./grafana/dashboards.yml:/etc/grafana/provisioning/dashboards/dashboards.yml
|
|
- ./censoring/dashboards:/var/lib/grafana/dashboards/censoring
|
|
- ./eth_consensus/dashboards:/var/lib/grafana/dashboards/eth_consensus
|
|
|
|
networks:
|
|
# Connect containers to `testground-control` to access Testground-supplied containers.
|
|
# https://docs.testground.ai/runner-library/local-docker/system-overview#testground-supplied-containers
|
|
default:
|
|
name: testground-control
|
|
external: true
|
|
|