diff options
author | Jan Lehnardt <jan@apache.org> | 2009-03-02 19:26:45 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2009-03-02 19:26:45 +0000 |
commit | f5ebfabcf1807f5164a2094524e7769d2390dc0b (patch) | |
tree | e1f1e7a486be30722c1b84b32bf2b355d713e74e /src/couchdb | |
parent | 10ce467d7acb8f7b0cfa90c0989e7931010f455a (diff) |
fix capitalisation for MochiWeb in stats description
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@749419 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r-- | src/couchdb/couch_stats_aggregator.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_stats_aggregator.erl b/src/couchdb/couch_stats_aggregator.erl index 5497884a..063f4791 100644 --- a/src/couchdb/couch_stats_aggregator.erl +++ b/src/couchdb/couch_stats_aggregator.erl @@ -303,7 +303,7 @@ init_descriptions() -> ets:insert(?MODULE, {{couchdb, database_reads}, <<"number of times a document was read from a database">>}), ets:insert(?MODULE, {{couchdb, open_databases}, <<"number of open databases">>}), ets:insert(?MODULE, {{couchdb, os_files_open}, <<"number of file descriptors CouchDB has open">>}), - ets:insert(?MODULE, {{couchdb, request_time}, <<"length of a request inside CouchDB without Mochiweb">>}), + ets:insert(?MODULE, {{couchdb, request_time}, <<"length of a request inside CouchDB without MochiWeb">>}), ets:insert(?MODULE, {{httpd, bulk_requests}, <<"number of bulk requests">>}), ets:insert(?MODULE, {{httpd, requests}, <<"number of HTTP requests">>}), |