X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0166abe88a2c082500f208d6f6be1343e6d0bedd..c8fd34b178f90af59e2f0867fbdc03585f338e76:/script/statistics diff --git a/script/statistics b/script/statistics index afd5dd7d2..4ceb92cfc 100755 --- a/script/statistics +++ b/script/statistics @@ -16,7 +16,7 @@ puts "

OpenStreetMap stats report run at #{start_time.to_s}

" begin ActiveRecord::Base.transaction do - user_count = User.count(:conditions => "active = 1") + user_count = User.count(:conditions => { :status => ["active", "confirmed", "suspended"] }) tracepoint_count = Tracepoint.count() node_count = Node.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true") @@ -102,3 +102,5 @@ end puts "

Report took #{(Time.new - start_time).to_s} seconds to run

" puts "" puts "" + +exit 0