-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
loadtest: add all fields to sample conf file
- Loading branch information
1 parent
f3a2ef0
commit 227877e
Showing
1 changed file
with
43 additions
and
6 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 |
---|---|---|
@@ -1,19 +1,56 @@ | ||
# Network the nodes are connected to | ||
network=regtest | ||
|
||
# The name of the test case to run. Example "send" or "mint" | ||
test-case="mint" | ||
|
||
# Batch size for mint test | ||
mint-test-batch-size=5 | ||
|
||
# Number of send operations to perform for send test | ||
send-test-num-sends=5 | ||
|
||
# Number of assets to send in each send operation for send test | ||
send-test-num-assets=1 | ||
|
||
# Timeout for the entire test suite | ||
test-suite-timeout=120m | ||
|
||
# Timeout for each test | ||
test-timeout=10m | ||
|
||
[bitcoin] | ||
bitcoin.host="localhost" | ||
bitcoin.port=18443 | ||
bitcoin.user=lightning | ||
bitcoin.password=lightning | ||
|
||
|
||
[alice] | ||
alice.tapd.name=alice | ||
alice.tapd.host="localhost" | ||
alice.tapd.port=10029 | ||
alice.tapd.tlspath=path-to-alice/.tapd/tls.cert | ||
alice.tapd.macpath=path-to-alice/.tapd/data/regtest/admin.macaroon | ||
alice.tapd.port=XXX | ||
alice.tapd.tlspath=/path/to/tls.cert | ||
alice.tapd.macpath=/path/to/admin.macaroon | ||
alice.lnd.name=alice_lnd | ||
alice.lnd.host="localhost" | ||
alice.lnd.port=XXX | ||
alice.lnd.tlspath=/path/to/tls.cert | ||
alice.lnd.macpath=/path/to/admin.macaroon | ||
|
||
[bob] | ||
bob.tapd.name=bob | ||
bob.tapd.host="localhost" | ||
bob.tapd.port=10032 | ||
bob.tapd.tlspath=path-to-bob/.tapd/tls.cert | ||
bob.tapd.macpath=path-to-bob/.tapd/data/regtest/admin.macaroon | ||
bob.tapd.port=XXX | ||
bob.tapd.tlspath=/path/to/tls.cert | ||
bob.tapd.macpath=/path/to/admin.macaroon | ||
bob.lnd.name=bob_lnd | ||
bob.lnd.host="localhost" | ||
bob.lnd.port=XXX | ||
bob.lnd.tlspath=/path/to/tls.cert | ||
bob.lnd.macpath=/path/to/admin.macaroon | ||
|
||
[prometheus-gateway] | ||
prometheus-gateway.enabled=true | ||
prometheus-gateway.host=prometheus-gateway-host | ||
prometheus-gateway.port=9091 |