stream-log-stats
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -49,6 +49,6 @@ "use strict"; | ||
o.each(stats.resource, function(resource, key){ | ||
stats.topResources.push({ resource: key, requests: resource.requests, bytes: resource.bytes }); | ||
stats.topResources.push({ resource: key, requests: resource.requests, bytes: byteSize(resource.bytes, 2) }); | ||
}); | ||
o.each(stats.type, function(type, key){ | ||
stats.topTypes.push({ type: key, requests: type.requests, bytes: type.bytes }); | ||
stats.topTypes.push({ type: key, requests: type.requests, bytes: byteSize(type.bytes, 2) }); | ||
}); | ||
@@ -55,0 +55,0 @@ |
{ | ||
"name": "stream-log-stats", | ||
"author": "Lloyd Brookes <75pound@gmail.com>", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/75lb/stream-log-stats.git", |
Sorry, the diff of this file is not supported yet
6648