Deploying a Telemetry-Enabled Mesh Node
Deprecation Notice
Since 0x-Mesh will no longer be maintained we also deprecate our telemetry log ingest, that means our telemetry endpoint will return 200
for all requests and not store new logs. We return 200
to make sure your local fluentbit will not continously retry sending logs our way.
You can disable telemetry by removing the logging configuration from your docker-compose.yml
and spinning down the fluentbit
and esproxy
services.
Deploying a Telemetry-Enabled Mesh Node
0x Mesh is completely permissionless and the beta is open to anyone who wants to participate. You can optionally help improve 0x Mesh by enabling telemetry. Mesh automatically logs a lot of useful information including the number of orders processed and details about any errors and warnings that might occur. Sending this information to us is extraordinarily helpful, but completely optional. If you don't want to enable telemetry, you can follow the Deployment Guide instead.
This guide will walk you though setting up a telemetry-enabled Mesh node on the cloud hosting solution of your choice using Docker Machine. The instructions below will deploy a Mesh node on DigitalOcean, but can be easily modified to deploy on many other cloud providers.
Prerequisites
Docker Machine On Mac/Windows it is installed with Docker Desktop.
Docker Compose On Mac, it is installed with Docker Desktop.
Instructions
Setting up docker-compose.yml
Let's start by creating a new directory and adding a docker-compose.yml file with the following contents:
In most cases, the only change you need to make to the docker-compose.yml file is to set ETHEREUM_RPC_URL
to your own Ethereum JSON RPC endpoint. The GRAPHQL_SERVER_ADDR
above will allow any Docker containers running in the same Docker Compose file to access the Mesh GraphQL API via links. To use this feature, be sure to add the following line to any containers you wish to access the Mesh GraphQL API from:
You can then use the URL http://mesh:60557/graphql
or ws://mesh:60557/graphql
to access the GraphQL API.
Alternatively, if you want to open up your Mesh GraphQL API to the public internet, you can set GRAPHQL_SERVER_ADDR=0.0.0.0:60557
If you choose to go this route, we strongly recommend using a firewall or VPC to restrict who can access your GraphQL API.
Deploying with Docker Machine
We are now ready to deploy our instance. Before we can continue, you will need to set up an account with the cloud hosting provider of your choice, and retrieve your access token/key/secret. We will use them to create a new machine with name mesh-node
. Docker has great documentation on doing all of that for DigitalOcean and AWS. Instead of naming the machine docker-sandbox
as in those examples, let's name ours mesh-node
as shown below.
Make sure you replaced xxxxx
with your access token. This command will spin up a new instance on your cloud provider, pre-installed with Docker so that it's ready-to-use with the docker-machine
command. Once the command completes, let's make sure the machine exists:
You should see something like:
Now comes the Docker Machine magic. By running the following commands, we can ask Docker Machine to let us execute any Docker command in our local shell AS IF we were executing them directly on the mesh-node
machine:
Presto! We are now ready to spin up our telemetry-enabled Mesh node! We do this using the Docker Compose command up
:
Houston, we have lift-off! All the logs from the Mesh node are being piped to the Fluentbit instance that got deployed alongside Mesh. So if you want to inspect the logs, you need to do:
Instead of reading them from the 0xorg/mesh
container.
If you need to see the IP address of your Mesh node, use:
Finally, in order to prevent our log aggregation stack from getting overloaded, we whitelist the peers that are allowed to send us logs. Look for a field in the logs called myPeerID
:
Ping us in Discord and let us know your peer ID. You can DM alex_towle#0282
or ovrmrrw#0454
and we'll whitelist your node :)
I hope that was easy enough! If you ran into any issues, please ping us in the #mesh
channel on Discord. To learn more about connecting to your Mesh node's GraphQL API, check out the GraphQL API Documentation.
Last updated