diff options
| author | Mohamed Bassem <me@mbassem.com> | 2024-07-21 19:18:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-21 19:18:58 +0100 |
| commit | 9edd154440c18bcc4542560e229eb293f9e0c2d4 (patch) | |
| tree | 2423f82619d48656f8dc60870fab8b152eef4401 /apps/web/components/dashboard/admin | |
| parent | edbd98d7841388d1169a3a3b159367487bda431e (diff) | |
| download | karakeep-9edd154440c18bcc4542560e229eb293f9e0c2d4.tar.zst | |
refactor: Replace the usage of bullMQ with the hoarder sqlite-based queue (#309)
Diffstat (limited to 'apps/web/components/dashboard/admin')
| -rw-r--r-- | apps/web/components/dashboard/admin/ServerStats.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/components/dashboard/admin/ServerStats.tsx b/apps/web/components/dashboard/admin/ServerStats.tsx index 06e3421f..e95dc437 100644 --- a/apps/web/components/dashboard/admin/ServerStats.tsx +++ b/apps/web/components/dashboard/admin/ServerStats.tsx @@ -106,19 +106,19 @@ export default function ServerStats() { <TableBody> <TableRow> <TableCell className="lg:w-2/3">Crawling Jobs</TableCell> - <TableCell>{serverStats.crawlStats.queuedInRedis}</TableCell> + <TableCell>{serverStats.crawlStats.queued}</TableCell> <TableCell>{serverStats.crawlStats.pending}</TableCell> <TableCell>{serverStats.crawlStats.failed}</TableCell> </TableRow> <TableRow> <TableCell>Indexing Jobs</TableCell> - <TableCell>{serverStats.indexingStats.queuedInRedis}</TableCell> + <TableCell>{serverStats.indexingStats.queued}</TableCell> <TableCell>-</TableCell> <TableCell>-</TableCell> </TableRow> <TableRow> <TableCell>Inference Jobs</TableCell> - <TableCell>{serverStats.inferenceStats.queuedInRedis}</TableCell> + <TableCell>{serverStats.inferenceStats.queued}</TableCell> <TableCell>{serverStats.inferenceStats.pending}</TableCell> <TableCell>{serverStats.inferenceStats.failed}</TableCell> </TableRow> |
