Skip to content

Commit

Permalink
loadtest: add all fields to sample conf file
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeTsagk committed Sep 4, 2024
1 parent f3a2ef0 commit 227877e
Showing 1 changed file with 43 additions and 6 deletions.
49 changes: 43 additions & 6 deletions itest/loadtest/loadtest-sample.conf
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

0 comments on commit 227877e

Please sign in to comment.