about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-24 13:35:32 -0700
committerEric Wong <normalperson@yhbt.net>2011-03-24 13:35:32 -0700
commitcb90a12dec7b1c55ebae5a83bafa15f415b576da (patch)
tree089c8cb0eebfa82b330f9ddf7555e7f1221b448f
parentee08d063e47636e9b1100d4fe9cdb7b4bc080f69 (diff)
downloadraindrops-cb90a12dec7b1c55ebae5a83bafa15f415b576da.tar.gz
I copied and pasted off the Raindrops::LastDataRecv
documentation.  While the headers and mathematical meanings are
identical, they measure different things (but for the same
purpose)

Noticed-by: Troex Nevelin
-rw-r--r--lib/raindrops/watcher.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/raindrops/watcher.rb b/lib/raindrops/watcher.rb
index ada921a..6ecd3ed 100644
--- a/lib/raindrops/watcher.rb
+++ b/lib/raindrops/watcher.rb
@@ -72,19 +72,19 @@ require "aggregate"
 # - active_min - do not stream a line until this active count is reached
 # - queued_min - do not stream a line until this queued count is reached
 #
-# == Response headers (mostly the same as Raindrops::LastDataRecv)
+# == Response headers (mostly the same names as Raindrops::LastDataRecv)
 #
-# - X-Count   - number of requests received
+# - X-Count   - number of samples polled
 # - X-Last-Reset - date since the last reset
 #
 # The following headers are only present if X-Count is greater than one.
 #
-# - X-Min     - lowest last_data_recv time recorded (in milliseconds)
-# - X-Max     - highest last_data_recv time recorded (in milliseconds)
-# - X-Mean    - mean last_data_recv time recorded (rounded, in milliseconds)
-# - X-Std-Dev - standard deviation of last_data_recv times
-# - X-Outliers-Low - number of low outliers (hopefully many!)
-# - X-Outliers-High - number of high outliers (hopefully zero!)
+# - X-Min     - lowest number of connections recorded
+# - X-Max     - highest number of connections recorded
+# - X-Mean    - mean number of connections recorded
+# - X-Std-Dev - standard deviation of connection count
+# - X-Outliers-Low - number of low outliers (hopefully many for queued)
+# - X-Outliers-High - number of high outliers (hopefully zero for queued)
 #
 # = Demo Server
 #