@@ -131,18 +131,25 @@ of a user request but even in our simple example, time could be lost compiling
131
131
regular expressions, generating random salts, generating unique hashes from user
132
132
passwords, or inside the Express framework itself.
133
133
134
- Since we ran our application using the --prof option, a tick file was generated
134
+ Since we ran our application using the ` --prof ` option, a tick file was generated
135
135
in the same directory as your local run of the application. It should have the
136
- form ` isolate-0xnnnnnnnnnnnn-v8.log ` (where ` n ` is a digit). In order to make
137
- sense of this file, we need to use the tick processor included in the Node.js
136
+ form ` isolate-0xnnnnnnnnnnnn-v8.log ` (where ` n ` is a digit).
137
+
138
+ In order to make sense of this file, we need to use the tick processor included
139
+ in the Node.js
138
140
source at ` <nodejs_dir>/tools/v8-prof/tick-processor.js ` . It is important that
139
141
the version of the tick-processor comes from the source for the version of node
140
- used to generate the isolate file. (This will no longer be a concern when the
141
- tick processor is [ installed by default] [ ] .) The raw tick output can be
142
+ used to generate the isolate file. The raw tick output can be
142
143
processed using this tool by running:
143
144
144
145
```
145
- node <path_to_nodejs_src>/tools/v8-prof/tick-processor.js isolate-0x101804c00-v8.log >processed.txt
146
+ node <path_to_nodejs_src>/tools/v8-prof/tick-processor.js isolate-0xnnnnnnnnnnnn-v8.log > processed.txt
147
+ ```
148
+
149
+ Starting in Node.js 5.2.2, the tick processor is bundled with the Node.js binary and can be run using the ` --prof-process ` flag:
150
+
151
+ ```
152
+ node --prof-process isolate-0xnnnnnnnnnnnn-v8.log > processed.txt
146
153
```
147
154
148
155
Opening processed.txt in your favorite text editor will give you a few different
@@ -174,7 +181,7 @@ taking the most CPU time and see:
174
181
```
175
182
176
183
We see that the top 3 entries account for 72.1% of CPU time taken by the
177
- program.From this output, we immediately see that at least 51.8% of CPU time is
184
+ program. From this output, we immediately see that at least 51.8% of CPU time is
178
185
taken up by a function called PBKDF2 which corresponds to our hash generation
179
186
from a user's password. However, it may not be immediately obvious how the lower
180
187
two entries factor into our application (or if it is we will pretend otherwise
@@ -282,5 +289,4 @@ example, you've seen how the V8 tick processor can help you gain a better
282
289
understanding of the performance of your Node.js applications.
283
290
284
291
[ profiler inside V8 ] : https://developers.google.com/v8/profiler_example
285
- [ installed by default ] : https://github.com/nodejs/node/pull/3032
286
292
[ benefits of asynchronous programming ] : https://nodesource.com/blog/why-asynchronous
0 commit comments