summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_stats_aggregator.erl
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2009-03-03 11:33:14 +0000
committerJan Lehnardt <jan@apache.org>2009-03-03 11:33:14 +0000
commit745ec3bec56e8c66bf0e4c862b02f925052a339c (patch)
tree0b11bcb067ed6443465bdb20ccb9d9b9768edfa6 /src/couchdb/couch_stats_aggregator.erl
parentf5ebfabcf1807f5164a2094524e7769d2390dc0b (diff)
stats metrics renamed: os_open_files -> open_os_files, database_changes -> database_writes
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@749583 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_stats_aggregator.erl')
-rw-r--r--src/couchdb/couch_stats_aggregator.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_stats_aggregator.erl b/src/couchdb/couch_stats_aggregator.erl
index 063f4791..bc37ab96 100644
--- a/src/couchdb/couch_stats_aggregator.erl
+++ b/src/couchdb/couch_stats_aggregator.erl
@@ -299,10 +299,10 @@ init_descriptions() ->
% a trailing full-stop / period.
% please keep this in alphabetical order
- ets:insert(?MODULE, {{couchdb, database_changes}, <<"number of times a database was changed">>}),
+ ets:insert(?MODULE, {{couchdb, database_writes}, <<"number of times a database was changed">>}),
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, open_os_files}, <<"number of file descriptors CouchDB has open">>}),
ets:insert(?MODULE, {{couchdb, request_time}, <<"length of a request inside CouchDB without MochiWeb">>}),
ets:insert(?MODULE, {{httpd, bulk_requests}, <<"number of bulk requests">>}),