donor-services/queue-monitor-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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 jobs
  • GET /api/queue-monitor/{id} - Get specific job
  • GET /api/queue-monitor/stats - Get statistics
  • GET /api/queue-monitor/failed - Get failed jobs
  • GET /api/queue-monitor/running - Get running jobs
  • GET /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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-10-28