infrastructure.jobs.monitor¶
src.infrastructure.jobs.monitor
¶
Background jobs monitor for querying job queue status.
This module provides JobsMonitor, which connects to the dashtam-jobs Redis instance to query queue length, job status, and health. It enables the API to monitor the background jobs service without code dependencies.
Architecture: - Uses redis.asyncio for async Redis operations - Follows fail-open pattern for resilience - Returns Result types for error handling - No dependency on dashtam-jobs code (shared config via environment)
Classes¶
JobsHealthStatus
dataclass
¶
Health status of the background jobs service.
Attributes:
| Name | Type | Description |
|---|---|---|
healthy |
bool
|
Whether the jobs Redis is reachable. |
queue_length |
int
|
Number of jobs waiting in the queue. |
redis_connected |
bool
|
Whether Redis connection is active. |
error |
str | None
|
Error message if unhealthy. |
Source code in src/infrastructure/jobs/monitor.py
JobsMonitor
¶
Monitor for background jobs service.
Connects to the jobs Redis instance to query queue status and health. This class does not depend on dashtam-jobs code - it only queries Redis directly using the same queue name configured in dashtam-jobs.
Attributes:
| Name | Type | Description |
|---|---|---|
_redis |
Async Redis client instance. |
|
_queue_name |
Name of the jobs queue in Redis. |
Source code in src/infrastructure/jobs/monitor.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
Functions¶
__init__
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
redis_client
|
Redis
|
Async Redis client instance. |
required |
queue_name
|
str
|
Name of the jobs queue (must match dashtam-jobs config). |
'dashtam:jobs'
|
Source code in src/infrastructure/jobs/monitor.py
check_health
async
¶
Check health of the background jobs service.
Verifies Redis connectivity and returns queue status.
Returns:
| Type | Description |
|---|---|
Result[JobsHealthStatus, InfrastructureError]
|
Result with JobsHealthStatus on success, or InfrastructureError. |
Source code in src/infrastructure/jobs/monitor.py
get_queue_length
async
¶
Get the number of jobs waiting in the queue.
Returns:
| Type | Description |
|---|---|
Result[int, InfrastructureError]
|
Result with queue length on success, or InfrastructureError. |
Source code in src/infrastructure/jobs/monitor.py
get_job_result
async
¶
Get the result of a completed job by task ID.
TaskIQ stores results with keys like 'taskiq:result:{task_id}'.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_id
|
str
|
The unique identifier of the task. |
required |
Returns:
| Type | Description |
|---|---|
Result[dict[str, Any] | None, InfrastructureError]
|
Result with job result dict if found, None if not found, |
Result[dict[str, Any] | None, InfrastructureError]
|
or InfrastructureError. |