diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-04-08 17:59:51 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-04-08 17:59:51 +0200 |
commit | 3cf92acb65f76fd5a922a6fbba4ef936cb01b2c3 (patch) | |
tree | cab8da7430ea1fb1fe5647940d65dbeaaf9e0a98 /docs | |
parent | f6013b2b6a26a23c6d06c1ee6748bc4515e83903 (diff) | |
parent | 755bc194dcea3481fa41b5884a98a5aa086fe09e (diff) | |
download | bugzilla-3cf92acb65f76fd5a922a6fbba4ef936cb01b2c3.tar.gz bugzilla-3cf92acb65f76fd5a922a6fbba4ef936cb01b2c3.tar.xz |
Merge remote-tracking branch 'bmo/master' into unstable
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/rst/api/core/v1/bugzilla.rst | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/en/rst/api/core/v1/bugzilla.rst b/docs/en/rst/api/core/v1/bugzilla.rst index 2dd40e0cb..e43472c30 100644 --- a/docs/en/rst/api/core/v1/bugzilla.rst +++ b/docs/en/rst/api/core/v1/bugzilla.rst @@ -300,3 +300,32 @@ name type description =============== ====== ==================================================== last_audit_time string The maximum of the at_time from the audit_log. =============== ====== ==================================================== + +Job Queue Status +---------------- + +Reports the status of the job queue. + +**Request** + +.. code-block:: text + + GET /rest/jobqueue_status + +This method requires an authenticated user. + +**Response** + +.. code-block:: js + + { + "total": 12, + "errors": 0 + } + +=============== ======= ==================================================== +name type description +=============== ======= ==================================================== +total integer The total number of jobs in the job queue. +errors integer The number of errors produced by jobs in the queue. +=============== ======= ====================================================
\ No newline at end of file |