a-dubaj / networks

This repository stores Tendermint configuration for public Vega networks

Home Page:https://vega.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vega Protocol: Networks

This repository contains the Genesis and the Vegawallet configuration files for public Vega networks: the Alpha Mainnet and the Testnet. Below you will find instructions explaining how to create and operate a Vega network.

Contents

The Vega Software

To create, run and fully use a Vega Network you will need:

  • Vega binary (latest) which contains:
    • Core - starts a validator or non-validator node, responsible for consensus. It contains CometBFT,
    • Data Node - starts a node that is not a validator, but aggregates all information about the network state and history and exposes it through API,
      • note: to run a data-node you need to also start a non-validator core,
    • Vegawallet CLI - to interact with a network,
    • Block Explorer - a service that exposes detailed information about blocks,
  • Vegavisor binary (latest) - the recommended way of running a vega node
  • Vegawallet browser extension for Firefox and Chrome (information and installation information)
  • Ethereum Smart Contracts (more)
  • To setup a validator node or a data-node from scratch

More information can be found at https://docs.vega.xyz:

Other Information:

Public Vega Networks

The Alpha Mainnet

The Testnet

Other Vega Networks

The Mainnet Mirror

Fairground

Monitoring

The guidance below should help monitor a single node as well as a network.

  • general - you can use any tool to monitor CPU, load, memory, swap, disk usage, disk I/O, networking I/O etc.
  • validator node or core node
    • Prometheus - in [Metrics] section of core's config.toml you can configure and enable metrics for Prometheus,
      • important: please don't expose this endpoint to the Internet on production. Instead, use a local scraper like grafana-agent,
    • Statistics - /statistics of [API.REST] exposes core data about the node, e.g. transactions per block, blocks per second, trades etc.
      • you can use vegaTime (time of the latest block processed by the node's core) and currentTime (clock time) to quickly tell if the node is healthy and up to date,
    • CometBFT - available via RPC over HTTP using port 26657,
  • data-node
    • every data-node needs a running core service, so please configure core node monitoring from the previous point,
    • Prometheus - in [Metrics] section of data-node's config.toml you can configure and enable metrics for Prometheus,
      • important: please don't expose this endpoint to the Internet on production. Instead, use a local scraper like grafana-agent,
      • note: this is a different endpoint than core
    • Statistics - /statistics of [Gateway] exposes core data about the node, e.g. transactions per block, blocks per second, trades etc.
      • important: this is information from the core process, not data-node,
      • response contains x-block-* headers.
    • x-block-* response headers - every response contains x-block-height and x-block-timestamp headers that can be used for monitoring,
      • you can compare x-block-timestamp with the wall clock to quickly tell if the node is healthy and up to date,
    • PostgreSQL - use any tool to monitor the PostgreSQL db, e.g. postgres_exporter,
      • TimescaleDB - you want to also monitor metrics of TimescaleDB extension,
  • network
    • technical - blocks, validators, event stream, etc.
      • core's Prometheus - it contains CometBFT metrics,
      • CometBFT - scrape data from CometBFT RPC over HTTP
      • data-node's Prometheus - general stats about events streamed from the core,
    • financial - markets, trades, deposits, etc.
      • core's Prometheus metrics - general stats,
      • data-nodes's Prometheus metrics - general stats,
      • data-nodes PostgreSQL - for precise data, the best option is to connect your monitoring tool directly to the database,
        • TimescaleDB - data-node uses TimescaleDB extension to PostgreSQL, which makes it a time-series database, which is perfect for monitoring and analytics tools like Grafana,
        • please don't scrape data-node data and push it to Prometheus or a similar tool, because you will lose precision
      • vega-monitoring - not-stable! early developer phase, a tool that adds more data into the data-node's database, more details here

Example setup:

  • Grafana server to visualise,
  • Prometheus to store metrics,
  • Data-node's TimescaleDB for precise financial metrics,
  • Grafana-agent to scrape Prometheus endpoints from localhost, and cpu/disk/etc, and postgres_exporter, and send evrything to the Prometheus server.

About

This repository stores Tendermint configuration for public Vega networks

https://vega.xyz


Languages

Language:JavaScript 63.7%Language:Shell 36.3%