diff --git a/itest/loadtest/loadtest-sample.conf b/itest/loadtest/loadtest-sample.conf index 8b6024d55..3db7431f6 100644 --- a/itest/loadtest/loadtest-sample.conf +++ b/itest/loadtest/loadtest-sample.conf @@ -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 \ No newline at end of file +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