diff --git a/benchmarks/transports/README.md b/benchmarks/transports/README.md index 9976e5d6..97833429 100644 --- a/benchmarks/transports/README.md +++ b/benchmarks/transports/README.md @@ -23,13 +23,27 @@ To run: [14:51:28] tsc [started] [14:51:33] tsc [completed] + Implementation, 105 MB, 210 MB, 315 MB, 419 MB, 524 MB, 629 MB, 734 MB, 839 MB, 944 MB, 1.05 GB + TCP (node.js -> node.js) filecoin defaults, 775, 1763, 2104, 3254, 3881, 4384, 5904, 5161, 6382, 6856 + WebSockets (node.js -> node.js) filecoin defaults, 1068, 1642, 2092, 2812, 4117, 4423, 6117, 7820, 7182, 7816 //... results here ``` +3. Graph the CSV data with your favourite graphing tool ## Debugging -To get debug output, run with `DEBUG=test*`, e.g.: +To get debug output, run with the `DEBUG` env var set to `test*` to see all output, `recipient*` to just see the recipient's log, `sender=*` to see the sender's log, etc. + +Eg. ```console $ DEBUG=test* npm start ``` + +or + +```console +$ DEBUG=test*,sender* npm start +``` + +..etc