X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/500e6e687f2d8e87d0797fbd9373d84c7b24d628..d34bc8cb52749eb039edbe5b86ed47b5c7fa143d:/script/statistics?ds=inline
diff --git a/script/statistics b/script/statistics
index 50363dc32..47c18312d 100755
--- a/script/statistics
+++ b/script/statistics
@@ -54,9 +54,7 @@ begin
month_count = Trace.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 28 DAY")
- puts "
GPX Files | Day | #{day_count} |
"
- puts "GPX Files | Week | #{week_count} |
"
- puts "GPX Files | Month | #{month_count} |
"
+ puts "GPX Files | #{day_count} | #{week_count} | #{month_count} |
"
day_count = OldNode.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 1 DAY")
@@ -65,9 +63,7 @@ begin
month_count = OldNode.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 28 DAY")
- puts "Nodes | Day | #{day_count} |
"
- puts "Nodes | Week | #{week_count} |
"
- puts "Nodes | Month | #{month_count} |
"
+ puts "Nodes | #{day_count} | #{week_count} | #{month_count} |
"
puts ""