Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 520377B0C for ; Thu, 3 Nov 2011 05:41:55 +0000 (UTC) Received: (qmail 29703 invoked by uid 500); 3 Nov 2011 05:41:52 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 29661 invoked by uid 500); 3 Nov 2011 05:41:51 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Delivered-To: moderator for user@couchdb.apache.org Received: (qmail 11335 invoked by uid 99); 3 Nov 2011 02:12:05 -0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of chris.publicbox@gmail.com designates 209.85.161.180 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=Wdj9GgD+1LFp2ruOM0IwfAriMh5kivLxb5qZrb0ovMQ=; b=fXiKvJdPbBppmx0/C5/h5YJIaOv5tCbjvCYTU1X9LIDrcT414CtadqnbYTVK382uIO TE4+jypeuyW99zYom2KwvYqS3gpB4LiwSmYDJHj6McQaMvihcnkvWVMu0kgAjX69jiMn bHY0I5mR4g2wRnMTyvntQN7LdP7Wr+HAlICOY= Message-ID: <4EB1F856.7030601@gmail.com> Date: Wed, 02 Nov 2011 22:11:34 -0400 From: Chris Wilhite User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: user@couchdb.apache.org Subject: Replication Monitoring Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello, I'm looking for a way to monitor a running replication. Here is my scenario: A database must be replicated to a client, but I would like to provide some visual feedback since the database is large. The replication must be continuous. I have successfully registered new documents arriving with the _changes feed, also, I am able to see the that the replication is running by polling the _tasks list (however the replication state does not change, I assume this is because it is continuous). Using the _changes feed is ok, but I would like to be able to provide a way for the user to see how many documents are remaining, MB's to be transferred etc. Is there a place where this data is reported?