-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lorenz Herzberger <[email protected]>
- Loading branch information
1 parent
47356b1
commit fd4448a
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# rddl-prometheus-exporter | ||
This service is responsible for providing vital network metrics for prometheus. | ||
|
||
## Execution | ||
The service can be executed via the following go command without having it previously built: | ||
``` | ||
go run cmd/rddl-prometheus-exporter/main.go | ||
``` | ||
|
||
## Configuration | ||
The service needs to be configured via the ```./app.toml``` file or environment variables. The defaults are: | ||
``` | ||
rpc-host = 'localhost:18884' // elementsd rpc host | ||
rpc-pass = 'password' // elementsd rpc password | ||
rpc-user = 'user' // elementsd rpc user | ||
service-bind = 'localhost' | ||
service-port = 8080 | ||
wallets = 'wallet1,wallet2' // liquid wallets | ||
``` |