diff options
Diffstat (limited to 'support/doc/development/monitoring.md')
-rw-r--r-- | support/doc/development/monitoring.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/doc/development/monitoring.md b/support/doc/development/monitoring.md index 93fd1403e..023be9e92 100644 --- a/support/doc/development/monitoring.md +++ b/support/doc/development/monitoring.md | |||
@@ -13,11 +13,11 @@ npm run build -- --analyze-bundle && npm run client-report | |||
13 | To benchmark the REST API and save result in `benchmark.json`: | 13 | To benchmark the REST API and save result in `benchmark.json`: |
14 | 14 | ||
15 | ``` | 15 | ``` |
16 | node dist/scripts/benchmark.js -o benchmark.json | 16 | npm run benchmark-server -- -o benchmark.json |
17 | ``` | 17 | ``` |
18 | 18 | ||
19 | You can also grep on a specific test: | 19 | You can also grep on a specific test: |
20 | 20 | ||
21 | ``` | 21 | ``` |
22 | node dist/scripts/benchmark.js --grep homepage | 22 | npm run benchmark-server -- --grep homepage |
23 | ``` | 23 | ``` |