You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The governator is an external service intended to be run in conjunction with the [lnd](https://github.com/lightningnetwork/lnd) implementation of the [Lightning Network](https://lightning.network). It queries LND for information about its existing channels and provides channel close recommendations if channels are under-performing.
5
+
Faraday is an external service intended to be run in conjunction with the [lnd](https://github.com/lightningnetwork/lnd) implementation of the [Lightning Network](https://lightning.network). It queries LND for information about its existing channels and provides channel close recommendations if channels are under-performing.
6
6
7
7
## Installation
8
-
A [Makefile](https://github.com/lightninglabs/governator/blob/master/Makefile) is provided. To install governator and al its dependencies, run:
8
+
A [Makefile](https://github.com/lightninglabs/faraday/blob/master/Makefile) is provided. To install faraday and all its dependencies, run:
9
9
10
10
```
11
-
go get -d github.com/lightninglabs/governator
12
-
cd $GOPATH/src/github.com/lightninglabs/governator
11
+
go get -d github.com/lightninglabs/faraday
12
+
cd $GOPATH/src/github.com/lightninglabs/faraday
13
13
make && make install
14
14
```
15
15
@@ -21,28 +21,28 @@ make check
21
21
```
22
22
23
23
## Usage
24
-
Governator connects to a single instance of lnd. It requires access to a macaroon with read permissions and a valid TLS certificate. It will attempt to use the default lnd values if no command line flags are specified.
24
+
Faraday connects to a single instance of lnd. It requires access to a macaroon with read permissions and a valid TLS certificate. It will attempt to use the default lnd values if no command line flags are specified.
25
25
```
26
-
./governator \
26
+
./faraday \
27
27
--macaroondir={directory containing macaroon} \
28
28
--macaroonfile={macaroon with read permissions} \
29
29
--tlscertpath={path to lnd cert} \
30
30
--rpserver={host:port of lnd's rpserver}
31
31
```
32
32
33
-
By default, governator runs on mainnet. The `--testnet`, `--simnet` or `--regtest` flags can be used to run in test environments.
33
+
By default, faraday runs on mainnet. The `--testnet`, `--simnet` or `--regtest` flags can be used to run in test environments.
34
34
35
35
#### RPCServer
36
-
Governator serves requests over grpc by default on `localhost:8465`. This default can be overwritten:
36
+
Faraday serves requests over grpc by default on `localhost:8465`. This default can be overwritten:
37
37
```
38
38
--rpclisten={host:port to listen for requests}
39
39
```
40
40
41
41
#### Cli Tool
42
42
The RPC server can be conveniently accessed using a command line tool.
43
-
1. Run governator as detailed above
43
+
1. Run faraday as detailed above
44
44
```
45
-
./gvncli {command}
45
+
./frcli {command}
46
46
```
47
47
48
48
##### Commands
@@ -52,7 +52,7 @@ The RPC server can be conveniently accessed using a command line tool.
52
52
-`threshold`: close recommendations based on thresholds a variety of metrics.
53
53
54
54
#### Metrics currently tracked
55
-
The following metrics are tracked in governator and exposed via `insights` and used for `outliers` and `threshold` close recommendations.
55
+
The following metrics are tracked in faraday and exposed via `insights` and used for `outliers` and `threshold` close recommendations.
0 commit comments