donor-services/queue-monitor-api
最新稳定版本:v1.0.0
Composer 安装命令:
composer require donor-services/queue-monitor-api
包简介
RESTful API endpoints for Queue Monitor Core
README 文档
README
RESTful API endpoints for Laravel Queue Monitor - Core.
Installation
composer require donor-services/queue-monitor-api
Note: This package requires donor-services/queue-monitor-core to be installed first.
API Endpoints
GET /api/queue-monitor/- List all jobsGET /api/queue-monitor/{id}- Get specific jobGET /api/queue-monitor/stats- Get statisticsGET /api/queue-monitor/failed- Get failed jobsGET /api/queue-monitor/running- Get running jobsGET /api/queue-monitor/queues- Get jobs by queue
Usage
All endpoints support filtering and pagination:
GET /api/queue-monitor/?status=running GET /api/queue-monitor/?queue=default GET /api/queue-monitor/?per_page=10
Response Format
{
"data": [
{
"id": 1,
"job_id": "abc123",
"name": "ProcessVideoJob",
"queue": "default",
"status": "running",
"progress": 50,
"started_at": "2024-01-01 12:00:00",
"finished_at": null
}
]
}
License
MIT
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-10-28