You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/12/04 21:09:50 UTC

[19/22] couch commit: updated refs/heads/2491-refactor-couch-httpd-auth to 3e8286d

Add missing metrics


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/cb52507c
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/cb52507c
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/cb52507c

Branch: refs/heads/2491-refactor-couch-httpd-auth
Commit: cb52507c1ced478e6900cae529584461c3d4910b
Parents: be6ddf2
Author: Robert Newson <rn...@apache.org>
Authored: Mon Nov 3 18:04:57 2014 +0000
Committer: Robert Newson <rn...@apache.org>
Committed: Mon Nov 3 18:05:12 2014 +0000

----------------------------------------------------------------------
 priv/stats_descriptions.cfg | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/cb52507c/priv/stats_descriptions.cfg
----------------------------------------------------------------------
diff --git a/priv/stats_descriptions.cfg b/priv/stats_descriptions.cfg
index 729fca1..2dd77bc 100644
--- a/priv/stats_descriptions.cfg
+++ b/priv/stats_descriptions.cfg
@@ -86,6 +86,10 @@
     {type, counter},
     {desc, <<"number of HTTP HEAD requests">>}
 ]}.
+{[couchdb, httpd_request_methods, 'OPTIONS'], [
+    {type, counter},
+    {desc, <<"number of HTTP OPTIONS requests">>}
+]}.
 {[couchdb, httpd_request_methods, 'POST'], [
     {type, counter},
     {desc, <<"number of HTTP POST requests">>}
@@ -106,6 +110,10 @@
     {type, counter},
     {desc, <<"number of HTTP 202 Accepted responses">>}
 ]}.
+{[couchdb, httpd_status_codes, 204], [
+    {type, counter},
+    {desc, <<"number of HTTP 204 No Content responses">>}
+]}.
 {[couchdb, httpd_status_codes, 301], [
     {type, counter},
     {desc, <<"number of HTTP 301 Moved Permanently responses">>}