()
| 114 | } |
| 115 | |
| 116 | getHeartbeatMeta() { |
| 117 | const pendingTasks = this.store.countPending({ direction: 'inbound' }); |
| 118 | return { |
| 119 | task_subscription: this.subscribed, |
| 120 | task_metrics: { |
| 121 | pending: pendingTasks, |
| 122 | claimed: this._stats.tasks_claimed, |
| 123 | completed: this._stats.tasks_completed, |
| 124 | failed: this._stats.tasks_failed, |
| 125 | avg_completion_ms: this._stats.avg_completion_ms, |
| 126 | }, |
| 127 | }; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | module.exports = { TaskMonitor }; |
no test coverage detected