You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/09/07 22:51:43 UTC

[Couchdb Wiki] Update of "HttpGetActiveTasks" by NuuttiKotivuori

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "HttpGetActiveTasks" page has been changed by NuuttiKotivuori.
http://wiki.apache.org/couchdb/HttpGetActiveTasks

--------------------------------------------------

New page:
= HTTP GET _uuids =

||'''Method'''||<-2>GET||
||'''Path'''||<-2>/_active_tasks||
||'''Query args'''||<-2>None||
||'''Request body'''||<-2>None||
||'''Response body'''||<-2>JSON array containing objects describing currently active tasks||

== Description ==

Returns a list of running tasks.

== Example ==
{{{
GET /_active_tasks HTTP/1.1
}}}{{{
HTTP/1.1 200 OK
Cache-Control: must-revalidate

[{"type":"Database Compaction","task":"exampledb","status":"Copied 5001 of 14832 changes (33%)","pid":"<0.14557.22>"}]
}}}