@dnlup/doc
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.0.2](https://github.com/dnlup/doc/compare/v1.0.1...v1.0.2) (2020-03-31) | ||
### Bug Fixes | ||
* fix cpu percentage ([57d535f](https://github.com/dnlup/doc/commit/57d535f3d28e27383a0cb55d936856d346a8bfd3)) | ||
### 1.0.1 (2020-03-30) |
@@ -76,3 +76,3 @@ 'use strict' | ||
eventLoopDelay: Math.max(0, loopDelta), | ||
cpu: (100 * (raw.cpu.user + raw.cpu.system)) / elapsedNs, | ||
cpu: (100 * (raw.cpu.user + raw.cpu.system)) / (elapsedNs / 1e3), | ||
memory: process.memoryUsage(), | ||
@@ -79,0 +79,0 @@ raw |
{ | ||
"name": "@dnlup/doc", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Get usage and health data about your Node.js process", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7048