bugfix - avoid double counting compiles
This commit is contained in:
@@ -41,7 +41,7 @@ module.exports = CompileManager =
|
|||||||
image: request.imageName
|
image: request.imageName
|
||||||
}, (error, output, stats) ->
|
}, (error, output, stats) ->
|
||||||
return callback(error) if error?
|
return callback(error) if error?
|
||||||
Metrics.inc("compiles")
|
Metrics.inc("compiles-succeeded")
|
||||||
for metric_key, metric_value of stats or {}
|
for metric_key, metric_value of stats or {}
|
||||||
Metrics.count(metric_key, metric_value)
|
Metrics.count(metric_key, metric_value)
|
||||||
loadavg = os.loadavg?()
|
loadavg = os.loadavg?()
|
||||||
|
|||||||
Reference in New Issue
Block a user