Skip to content

Commit

Permalink
v1.1.0: Added programTime and garbageTime fields
Browse files Browse the repository at this point in the history
  • Loading branch information
nicjansma committed May 21, 2018
1 parent de75110 commit 2792a3d
Show file tree
Hide file tree
Showing 13 changed files with 4,431 additions and 4,227 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpuprofile-filter

v1.0.0
v1.1.0

[via Nic Jansma http://nicj.net](http://nicj.net)

Expand Down Expand Up @@ -99,9 +99,11 @@ Filters a `.cpuprofile` against the given config
duration: 1000, // duration (microseconds)
sampleCount: 10, // number of samples
timePerSample: 100, // time per sample (microseconds)
cpuTime: 1000, // CPU time of the entire profile (microseconds)
cpuTime: 1000, // CPU time of the entire profile (including Program and Garbage time) (microseconds)
cpuTimeFiltered: 500, // CPU time of the filtered functions (microseconds)
idleTime: 0 // Idle time (microseconds)
programTime: 0 // Program (Chrome native) time (microseconds)
garbageTime: 0 // Garbage Collector time (microseconds)
}
```

Expand All @@ -118,3 +120,4 @@ Or via ``gulp``:
## Version History

* v1.0.0 - 2017-09-13: Initial version
* v1.1.0 - 2018-05-20: Added `programTime` and `garbageTime` fields
Loading

0 comments on commit 2792a3d

Please sign in to comment.