diff -r b554eb79ec7b -r 02a05da0bedc extra/soundsoftware/get-statistics.rb
--- a/extra/soundsoftware/get-statistics.rb
+++ b/extra/soundsoftware/get-statistics.rb
@@ -6,7 +6,12 @@
 # ./script/rails runner -e production extra/soundsoftware/get-statistics.rb
 #
 
-projectStats =  {:all => Project.active.all.count, :private => Project.active.find(:all, :conditions => {:is_public => false}).count}
+projectStats =  {
+        :all => Project.active.all.count,
+        :private => Project.active.find(:all, :conditions => {:is_public => false}).count,
+        :top_level => Project.active.find(:all, :conditions => {:parent_id => nil}).count,
+        :top_level_and_private => Project.active.find(:all, :conditions => {:is_public => false, :parent_id => nil}).count
+      }
 
 userStats = {:all => User.active.all.count}
 
