In the far future, you can run lnd-manageJ in the background and constantly gather information from your lnd node. This information is condensed and analyzed so that
- you can see your node's and each peer's/channel's forwarding activity
- you can understand each channel's/peer's forwarding characteristics (is it a sink? a source? bidirectional?)
- you can tweak the forwarding fees based on previous and forecasted routing activity
In short, lnd-manageJ helps you understand and manage the inner workings of your lnd node.
This service requests transaction details from public APIs (Bitaps and Blockcypher). As such, information about the channels associated with your node are leaked, possibly revealing your IP address and enabling anti-privacy analyses.
Depending on the size of your node, you might run into limits imposed by these API providers. The downloads will be retried automatically as long as the service runs, but the returned information may be incomplete or delayed until the necessary downloads are completed.
Do not run the service if any of this is an issue to you!
Once the service is running, it offers several REST endpoints that can be accessed with, for example, curl
.
All endpoints are served at the base URL http://localhost:8081/
.
As an example, to get a list of all open channels, you can run:
curl -s http://localhost:8081/api/status/open-channels
As the JSON output isn't exactly nice to read, you might want to install jq
and run:
curl -s http://localhost:8081/api/status/open-channels | jq
The service itself only provides metrics and error logs as its output.
Status: /api/status/
followed by...
synced-to-chain
:true
orfalse
as returned by lnd (getinfo
)- This can be used as a quick health check, as most of the information is rather useless if
lnd
is not working as expected. - Note that
false
is also returned if lnd is unreachable.
- This can be used as a quick health check, as most of the information is rather useless if
block-height
: the current block height as returned by lnd (getinfo
)open-channels
: the channel IDs of all open channelsopen-channels/pubkeys
: the pubkeys of all peers with at least one open channelall-channels
: the channel IDs of all channels (open, closed, waiting close, ...)- "pending open channels" are not included, as these do not have an ID, yet!
all-channels/pubkeys
: the pubkeys of all peers with at least one channel as defined aboveknown-channels
: the number of known channels in the whole network
Channel specific: /api/channel/{ID}/
(where {ID}
is the channel ID) followed by...
- (nothing): basic channel information (open height, remote pubkey, capacity, status, ...)
- For closed private channels the
private
field is only set totrue
if this information could be collected before the channel was closed (it is only available while the channel is still open)
- For closed private channels the
balance
: the channel balance (for local/remote each: balance, available, reserve)policies
: local and remote fee rate, base fee, inbound fee rate, inbound base fee, and enabled booleanclose-details
(only for closed channels): close initiator, close height, force boolean, breach booleanfee-report
: milli-satoshis earned by forwarding payments leaving out through the channel (earnedMilliSat
) or coming in from the channel (sourcedMilliSat
)flow-report
: amounts flowing through the channel, broken down into different categoriesflow-report/last-days/{DAYS}
: as above, but limited to the last{DAYS}
daysopen-costs
: the on-chain costs you paid to open the channel (in satoshis)close-costs
: the on-chain costs you paid to close the channel (in satoshis)sweep-costs
: the on-chain costs you paid to sweep funds after a force-close (this may be negative) (in satoshis)rating
: rating (see rating.md)rebalance-source-costs
: the fees you paid to rebalance the channel, taking funds out of it (in milli-satoshis)rebalance-source-amount
: the amount of funds you took out of the channel as part of rebalancing (in milli-satoshis)rebalance-target-costs
: the fees you paid to rebalance the channel, putting funds into it (in milli-satoshis)rebalance-target-amount
: the amount of funds you put into the channel as part of rebalancing (in milli-satoshis)rebalance-support-as-source-amount
: the amount of funds you took out of the channel as part of rebalancing another channel (in milli-satoshis)rebalance-support-as-target-amount
: the amount of funds you put into the channel as part of rebalancing another channel (in milli-satoshis)warnings
: shows the following warnings, if applicable- "Channel balance ranged from
X
% toY
% in the past 14 days" (ifX
< 10 andY
> 90)
- "Channel balance ranged from
details
: all of the aboveself-payments-from-channel
: a list of all self-payments taking funds out of the channel (including payment details and a summary)self-payments-to-channel
: a list of all self-payments putting funds into the channel (including payment details and a summary)
Note: the channel ID can be supplied in any of the following formats:
123456:123:1
(lnd specific compact format)123456x123x1
(compact format)135741307526774785
(short ID format)1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef:1
(channel point)
Node specific: /api/node/{PUBKEY}/
(where {PUBKEY}
is the node pubkey) followed by...
alias
: the node's alias (plain string, not JSON)open-channels
: channel IDs for all channels currently open with the peerall-channels
: channel IDs for all channels (open, closed, waiting close, ...) with the peer- "pending open channels" are not included, as these do not have an ID, yet!
balance
: the aggregated channel balances (see channel endpoint)fee-report
: the aggregated fee report (see channel endpoint)fee-report/last-days/{DAYS}
: as above, but limited to the last{DAYS}
daysflow-report
: the aggregated flow report (see channel endpoint)flow-report/last-days/{DAYS}
: as above, but limited to the last{DAYS}
dayson-chain-costs
: aggregated on-chain costs (see channel endpointsopen-costs
,close-costs
,sweep-costs
)rating
: rating (see rating.md)rebalance-source-costs
: aggregated costs (see channel endpoint)rebalance-source-amount
: aggregated amount (see channel endpoint)rebalance-target-costs
: aggregated costs (see channel endpoint)rebalance-target-amount
: aggregated amount (see channel endpoint)rebalance-support-as-source-amount
: aggregated amount (see channel endpoint)rebalance-support-as-target-amount
: aggregated amount (see channel endpoint)self-payments-from-peer
: aggregated list (see channel endpointself-payments-from-channel
)self-payments-to-peer
: aggregated list (see channel endpointself-payments-to-channel
)warnings
: shows the following warnings, if applicable- "No flow in the past
X
days" (ifX
>= 30) - "Node has been online
X
% in the past 7 days" (ifX
< 80) - "Node changed between online and offline
X
times in the past 7 days" (ifX
> 50) - "Rating of
X
is below threshold ofY
" (ifX < Y
withY
defaulting to1,000
)
- "No flow in the past
details
: all of the above
Warnings:
/api/warnings
: show all warnings for all peers and channels
Payments:
See PickhardtPayments.md.
Legacy:
/legacy/open-channels/pretty
: a readable list (not JSON!) of all open channels showing channel ID, pubkey, capacity and alias.
As the name implies, this endpoint will be removed sooner rather than later.
Some settings, especially for node/channel warnings, can be configured.
Please have a look at example-lnd-manageJ.conf
for further information.
The configuration file is read every few seconds, so that you can change settings without restarting lnd-manageJ.
Most information is cached to improve performance, which is why you might see outdated information. Some information like node aliases does not need to be up-to-date and, as such, is cached for several minutes. On the other hand, channel balance information is only cached for less than a second.
This project has not been tested in many environments. Depending on your setup, it might be very slow and/or consume many resources. Please share your insights by raising a GitHub issue!
As most information is cached, performance improves the more you use the endpoints. However, sometimes (for example directly after starting the service) many pieces of information need to be gathered from different sources, which may take several seconds. For example, transaction details for all (including closed) channels need to be downloaded once (see below), which will delay any endpoint requesting information about a/all channel(s).
Yes! You can start a demo with ./ui-demo.sh
and browse to http://localhost:8081 (press CTRL+C to stop the demo).
Once lnd-manageJ is running, you can access the full (non-demo) UI at the same address: http://localhost:8081
The service is intended to run 24/7 to collect statistics about your node. You may restart both the service and lnd at any time.
Install Java 21 and run ./start-h2.sh
.
Install PostgreSQL (Debian: apt install postgresql
) and create a database named lndmanagej
and a user bitcoin
.
You can tweak these settings in application/src/main/resources/application.properties
.
Configure the database so that the user bitcoin
can access lndmanagej
without a password at jdbc:postgresql://localhost:5432/lndmanagej
(pg_hba.conf
: host lndmanagej bitcoin 127.0.0.1/32 trust
).
Install Java 21 and run ./start.sh
.
This project is not related to bitromortac's Python based lndmanage.
Sure! Please test the software, review the code, create feature requests, report bugs, ...