Skip to content

Commit d3cb851

Browse files
committed
Merge pull request #455 from nodejs/content/fix-449
Update for #449
2 parents e0b8293 + 0aa49c3 commit d3cb851

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

locale/en/docs/guides/simple-profiling.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,25 @@ of a user request but even in our simple example, time could be lost compiling
131131
regular expressions, generating random salts, generating unique hashes from user
132132
passwords, or inside the Express framework itself.
133133

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
135135
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
138140
source at `<nodejs_dir>/tools/v8-prof/tick-processor.js`. It is important that
139141
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
142143
processed using this tool by running:
143144

144145
```
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
146153
```
147154

148155
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:
174181
```
175182

176183
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
178185
taken up by a function called PBKDF2 which corresponds to our hash generation
179186
from a user's password. However, it may not be immediately obvious how the lower
180187
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
282289
understanding of the performance of your Node.js applications.
283290

284291
[profiler inside V8]: https://developers.google.com/v8/profiler_example
285-
[installed by default]: https://github.com/nodejs/node/pull/3032
286292
[benefits of asynchronous programming]: https://nodesource.com/blog/why-asynchronous

0 commit comments

Comments
 (0)