2019-12-16 23:41:20 +00:00
|
|
|
# Introduction
|
|
|
|
`wakunode` is a cli application that allows you to run a
|
2020-04-21 12:42:27 +00:00
|
|
|
[Waku](https://specs.vac.dev/waku/waku.html) enabled node.
|
2019-12-16 23:41:20 +00:00
|
|
|
|
2020-04-21 12:42:27 +00:00
|
|
|
The Waku specification is still in draft and thus this implementation will
|
|
|
|
change accordingly.
|
2019-12-16 23:41:20 +00:00
|
|
|
|
|
|
|
Additionally the original Whisper (EIP-627) protocol can also be enabled as can
|
|
|
|
an experimental Whisper - Waku bridging option.
|
|
|
|
|
|
|
|
# How to Build & Run
|
2020-04-02 14:57:35 +00:00
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
* GNU Make, Bash and the usual POSIX utilities. Git 2.9.4 or newer.
|
|
|
|
* PCRE
|
|
|
|
|
|
|
|
More information on the installation of these can be found [here](https://github.com/status-im/nimbus#prerequisites).
|
|
|
|
|
|
|
|
## Build & Run
|
2019-12-16 23:41:20 +00:00
|
|
|
|
|
|
|
```bash
|
2020-04-21 12:42:27 +00:00
|
|
|
# The first `make` invocation will update all Git submodules.
|
|
|
|
# You'll run `make update` after each `git pull`, in the future, to keep those submodules up to date.
|
2019-12-16 23:41:20 +00:00
|
|
|
make wakunode
|
2020-04-21 12:42:27 +00:00
|
|
|
|
|
|
|
# See available command line options
|
2019-12-16 23:41:20 +00:00
|
|
|
./build/wakunode --help
|
2020-04-21 12:42:27 +00:00
|
|
|
|
|
|
|
# Connect the client directly with the Status test fleet
|
|
|
|
./build/wakunode --log-level:debug --discovery:off --fleet:test --log-metrics
|
2019-12-16 23:41:20 +00:00
|
|
|
```
|
|
|
|
|
2019-12-18 15:44:13 +00:00
|
|
|
# Using Metrics
|
|
|
|
|
|
|
|
Metrics are available for valid envelopes and dropped envelopes.
|
|
|
|
|
|
|
|
To compile in an HTTP endpoint for accessing the metrics we need to provide the
|
|
|
|
`insecure` flag:
|
|
|
|
```bash
|
|
|
|
make NIMFLAGS="-d:insecure" wakunode
|
|
|
|
./build/wakunode --metrics-server
|
|
|
|
```
|
|
|
|
|
2019-12-19 04:53:37 +00:00
|
|
|
Ensure your Prometheus config `prometheus.yml` contains the targets you care about, e.g.:
|
|
|
|
|
|
|
|
```
|
|
|
|
scrape_configs:
|
|
|
|
- job_name: "waku"
|
|
|
|
static_configs:
|
|
|
|
- targets: ['localhost:8008', 'localhost:8009', 'localhost:8010']
|
|
|
|
```
|
|
|
|
|
2019-12-18 15:44:13 +00:00
|
|
|
For visualisation, similar steps can be used as is written down for Nimbus
|
|
|
|
[here](https://github.com/status-im/nimbus#metric-visualisation).
|
|
|
|
|
|
|
|
There is a similar example dashboard that includes visualisation of the
|
|
|
|
envelopes available at `waku/examples/waku-grafana-dashboard.json`.
|
2020-01-16 13:30:53 +00:00
|
|
|
|
|
|
|
# Testing Waku Protocol
|
|
|
|
One can set up several nodes, get them connected and then instruct them via the
|
|
|
|
JSON-RPC interface. This can be done via e.g. web3.js, nim-web3 (needs to be
|
|
|
|
updated) or simply curl your way out.
|
|
|
|
|
|
|
|
The JSON-RPC interface is currently the same as the one of Whisper. The only
|
|
|
|
difference is the addition of broadcasting the topics interest when a filter
|
|
|
|
with a certain set of topics is subcribed.
|
|
|
|
|
|
|
|
Example of a quick simulation using this approach:
|
|
|
|
```bash
|
|
|
|
# Build wakunode + quicksim
|
|
|
|
make NIMFLAGS="-d:insecure" wakusim
|
|
|
|
|
2020-01-17 20:49:27 +00:00
|
|
|
# Start the simulation nodes, this currently requires multitail to be installed
|
|
|
|
./build/start_network --topology:FullMesh --amount:6 --test-node-peers:2
|
|
|
|
# In another shell run
|
2020-01-16 13:30:53 +00:00
|
|
|
./build/quicksim
|
|
|
|
```
|
|
|
|
|
2020-01-17 20:49:27 +00:00
|
|
|
The `start_network` tool will also provide a `prometheus.yml` with targets
|
2020-01-16 13:30:53 +00:00
|
|
|
set to all simulation nodes that are started. This way you can easily start
|
|
|
|
prometheus with this config, e.g.:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd waku/metrics/prometheus
|
|
|
|
prometheus
|
|
|
|
```
|
|
|
|
|
|
|
|
A Grafana dashboard containing the example dashboard for each simulation node
|
|
|
|
is also generated and can be imported in case you have Grafana running.
|
2020-01-17 20:49:27 +00:00
|
|
|
This dashboard can be found at `./waku/metrics/waku-sim-all-nodes-grafana-dashboard.json`
|
2020-02-14 05:33:36 +00:00
|
|
|
|
|
|
|
# Spec support
|
|
|
|
|
2020-04-21 12:42:27 +00:00
|
|
|
*This section last updated April 21, 2020*
|
2020-02-14 05:33:36 +00:00
|
|
|
|
2020-04-21 12:42:27 +00:00
|
|
|
This client of Waku is spec compliant with [Waku spec v1.0](https://specs.vac.dev/waku/waku.html).
|
2020-02-14 05:33:36 +00:00
|
|
|
|
|
|
|
It doesn't yet implement the following recommended features:
|
|
|
|
- No support for rate limiting
|
|
|
|
- No support for DNS discovery to find Waku nodes
|
|
|
|
- It doesn't disconnect a peer if it receives a message before a Status message
|
2020-02-14 10:36:37 +00:00
|
|
|
- No support for negotiation with peer supporting multiple versions via Devp2p capabilities in `Hello` packet
|
2020-02-14 05:33:36 +00:00
|
|
|
|
|
|
|
Additionally it makes the following choices:
|
|
|
|
- It doesn't send message confirmations
|
2020-02-14 10:36:37 +00:00
|
|
|
- It has partial support for accounting:
|
|
|
|
- Accounting of total resource usage and total circulated envelopes is done through metrics But no accounting is done for individual peers.
|