You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/09/02 18:54:49 UTC

chttpd commit: updated refs/heads/master to 6fa9b2d

Repository: couchdb-chttpd
Updated Branches:
  refs/heads/master 9b387534d -> 6fa9b2d94


Add remaining status code stats


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

Branch: refs/heads/master
Commit: 6fa9b2d94b75d0433b343c6e60f669fcfc9a4f34
Parents: 9b38753
Author: Robert Newson <rn...@apache.org>
Authored: Tue Sep 2 17:53:53 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Sep 2 17:54:43 2014 +0100

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


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/6fa9b2d9/priv/stats_descriptions.cfg
----------------------------------------------------------------------
diff --git a/priv/stats_descriptions.cfg b/priv/stats_descriptions.cfg
index 5f8ff57..7ffaa95 100644
--- a/priv/stats_descriptions.cfg
+++ b/priv/stats_descriptions.cfg
@@ -122,6 +122,22 @@
     {type, counter},
     {desc, <<"number of HTTP 412 Precondition Failed responses">>}
 ]}.
+{[chttpd, status_codes, 413], [
+    {type, counter},
+    {desc, <<"number of HTTP 413 Request Entity Too Long responses">>}
+]}.
+{[chttpd, status_codes, 414], [
+    {type, counter},
+    {desc, <<"number of HTTP 414 Request URI Too Long responses">>}
+]}.
+{[chttpd, status_codes, 415], [
+    {type, counter},
+    {desc, <<"number of HTTP 415 Unsupported Media Type responses">>}
+]}.
+{[chttpd, status_codes, 416], [
+    {type, counter},
+    {desc, <<"number of HTTP 416 Requested Range Not Satisfiable responses">>}
+]}.
 {[chttpd, status_codes, 500], [
     {type, counter},
     {desc, <<"number of HTTP 500 Internal Server Error responses">>}