
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
This ActiverRecord plugin allows you to easily define and pull statistics for AR models. This plugin was built with reporting in mind.
gem install statistics
OR script/plugin install git://github.com/acatighera/statistics.git
class Account < ActiveRecord::Base
define_statistic :user_count, :count => :all
define_statistic :average_age, :average => :all, :column_name => 'age'
define_statistic 'subscriber count', :count => :all, :conditions => "subscription_opt_in = 1"
end
class Donations < ActiveRecord::Base
define_statistic :total_donations, :sum => :all, :column_name => "amount"
end
#####for all stats
Account.statistics # returns { :user_count => 120, :average_age => 28, 'subscriber count' => 74 }
#####for a single stat
Account.get_stat(:user_count) # returns 120
Note: I found filtering to be an important part of reporting (ie. filtering by date). All filters are optional so even if you define them you don’t have to use them when pulling data. Using the filter_all_stats_on
method and :joins
options you can make things filterable by the same things which I found to be extremely useful.
class Account < ActiveRecord::Base
define_statistic :user_count, :count => :all, :filter_on => { :state => 'state = ?', :created_after => 'DATE(created_at) > ?'}
define_statistic :subscriber_count, :count => :all, :conditions => "subscription_opt_in = true"
filter_all_stats_on(:account_type, "account_type = ?")
end
Account.statistics(:account_type => 'non-admin')
Account.get_stat(:user_count, :account_type => 'non-admin', :created_after => ‘2009-01-01’, :state => 'NY')
# NOTE: filters are optional (ie. no filters will be applied if none are passed in)
Account.get_stat(:user_count)
This is a new feature that uses Rails.cache
. You can cache certain statistics for a specified amount of time (see below). By default caching is disabled if you do not pass in the :cache_for
option. It is also important to note that caching is scoped by filters, there is no way around this since different filters produce different values.
class Account < ActiveRecord::Base
define_statistic :user_count, :count => :all, :cache_for => 30.minutes, :filter_on { :state => 'state = ?' }
end
Account.statistics(:state => 'NY') # This call generates a SQL query
Account.statistics(:state => 'NY') # This call and subsequent calls for the next 30 minutes will use the cached value
Account.statistics(:state => 'PA') # This call generates a SQL query because the user count for NY and PA could be different (and probably is)
Note: If you want Rails.cache to work properly, you need to use mem_cache_store in your rails enviroment file (ie. config.cache_store = :mem_cache_store
in your enviroment.rb file).
All ActiveRecord classes now respond to statistics
and get_stat
methods
all_stats = []
[ Account, Post, Comment ].each do |ar|
all_stats << ar.statistics
end
You can define calculated metrics in order to perform mathematical calculations on one or more defined statistics.
class Account < ActiveRecord::Base
has_many :donations
define_statistic :user_count, :count => :all
define_statistic :total_donations, :sum => :all, :column_name => 'donations.amount', :joins => :donations
define_calculated_statistic :average_donation_per_user do
defined_stats(:total_donations) / defined_stats(:user_count)
end
filter_all_stats_on(:account_type, "account_type = ?")
filter_all_stats_on(:state, "state = ?")
filter_all_stats_on(:created_after, "DATE(created_at) > ?")
end
Pulling stats for calculated metrics is the same as for regular statistics. They also work with filters like regular statistics!
Account.get_stat(:average_donation_per_user, :account_type => 'non-admin', :state => 'NY')
Account.get_stat(:average_donation_per_user, :created_after => '2009-01-01')
You can reuse the code you have written to do reporting.
class Account < ActiveRecord::Base
has_many :posts
named_scope :not_admins, :conditions => “account_type = ‘non-admin’”
named_scope :accounts_with_posts, :joins => :posts
define_statistic :active_users_count, :count => [:not_admins, :accounts_with_posts]
end
The :conditions
and :joins
options are all particularly useful
class Account < ActiveRecord::Base
has_many :posts
define_statistic :active_users_count, :count => :all, :joins => :posts, :conditions => "account_type = 'non-admin'"
end
FAQs
Unknown package
We found that statistics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.