A TCP proxy using Consul for service discovery.
This uses [List Nodes for Service] API for collecting candidate servers.
A precompiled binary for Linux environment is available in the [releases] page.
```console $ curl -L https://github.com/sile/cotoxy/releases/download/0.1.0/cotoxy-0.1.0.linux -o cotoxy $ chmod +x cotoxy $ ./cotoxy -h cotoxy 0.1.0 A TCP proxy using Consul for service discovery
USAGE:
cotoxy [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
--bind-addr _agent
is specified, the
node of the consul agent being queried will be used for the sort.
--node-meta key:value
. Service nodes will
be filtered with the specified key/value pairs.
--service-port
ARGS:
If you have already installed [Cargo][cargo], you can install cotoxy
easily in the following command:
console
$ cargo install cotoxy
```console /// Run the consul agent in the background. $ docker run -d --rm -p 8500:8500 consul
/// Start cotoxy
which proxies "consul" service.
$ cotoxy consul --service-port 8500
Feb 07 13:23:13.028 INFO Proxy server started, service: consul, proxy: 0.0.0.0:17382
/// Call consul API via the proxy. $ curl -s http://localhost:17382/v1/catalog/service/consul [ { "ID": "2db3224e-e9cb-fab4-edd7-6e98a2842f16", "Node": "e10993d941f1", "Address": "127.0.0.1", "Datacenter": "dc1", "TaggedAddresses": { "lan": "127.0.0.1", "wan": "127.0.0.1" }, "NodeMeta": { "consul-network-segment": "" }, "ServiceID": "consul", "ServiceName": "consul", "ServiceTags": [], "ServiceAddress": "", "ServicePort": 8300, "ServiceEnableTagOverride": false, "CreateIndex": 5, "ModifyIndex": 5 } ] ```