aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/development/monitoring.md
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc/development/monitoring.md')
-rw-r--r--support/doc/development/monitoring.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/doc/development/monitoring.md b/support/doc/development/monitoring.md
index 9dcc2d563..93fd1403e 100644
--- a/support/doc/development/monitoring.md
+++ b/support/doc/development/monitoring.md
@@ -5,7 +5,7 @@
5To open a report of client build: 5To open a report of client build:
6 6
7``` 7```
8$ npm run build -- --analyze-bundle && npm run client-report 8npm run build -- --analyze-bundle && npm run client-report
9``` 9```
10 10
11## API benchmark 11## API benchmark
@@ -13,11 +13,11 @@ $ npm run build -- --analyze-bundle && npm run client-report
13To benchmark the REST API and save result in `benchmark.json`: 13To benchmark the REST API and save result in `benchmark.json`:
14 14
15``` 15```
16$ node dist/scripts/benchmark.js -o benchmark.json 16node dist/scripts/benchmark.js -o benchmark.json
17``` 17```
18 18
19You can also grep on a specific test: 19You can also grep on a specific test:
20 20
21``` 21```
22$ node dist/scripts/benchmark.js --grep homepage 22node dist/scripts/benchmark.js --grep homepage
23``` 23```