mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-24 03:21:20 +00:00
add metric for active workers
This commit is contained in:
parent
7497c066ee
commit
c43f97e8e3
1 changed files with 3 additions and 1 deletions
|
@ -20,7 +20,9 @@ module.exports = DispatchManager =
|
|||
[list_name, doc_key] = result
|
||||
[project_id, doc_id] = Keys.splitProjectIdAndDocId(doc_key)
|
||||
# Dispatch this in the background
|
||||
Metrics.gauge "processingUpdates", "+1" # increments/decrements gauge with +/- sign
|
||||
UpdateManager.processOutstandingUpdatesWithLock project_id, doc_id, (error) ->
|
||||
Metrics.gauge "processingUpdates", "-1"
|
||||
logger.error err: error, project_id: project_id, doc_id: doc_id, "error processing update" if error?
|
||||
callback()
|
||||
|
||||
|
|
Loading…
Reference in a new issue