Skip to content

Instantly share code, notes, and snippets.

@fermion
Forked from anonymous/ReportsController
Created October 10, 2012 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fermion/3867454 to your computer and use it in GitHub Desktop.
Save fermion/3867454 to your computer and use it in GitHub Desktop.
reports_controller.rb
class ReportsController < ApplicationController
def index
# get all daily feeds
@feeds = Feed.where(:feed_type => 'daily')
@late_daily_feeds = []
@feeds.each do |d|
daily_state = FeedStatus.where({:feed_id => d.id, :target_date => Date.today.to_s}).exists? ? "green" : "red"
daily_time = FeedStatus.where({:feed_id => d.id}).order("updated_at").last
@late_daily_feeds << {:feed_name => d.feed_name, :state => daily_state, :received => daily_time }
end
#@feed_statuses = FeedStatus.includes(:feed).where(:feeds => {:feed_type => 'daily'})
#@live_feeds = AhProfileError.connection.select_all("select *, (UNIX_TIMESTAMP() - tsecs) as 'seconds ago' from error_log where tsecs > unix_timestamp() - (60*120) and subcomponent like '%ah_%'")
#@live_feeds = AhProfileError.connection.select_all("select (unix_timestamp() - max(updated_timestamp)) / 60 as 'minutes_ago' from ah_lynx_arrivals")
@live_feeds = Feed.where(:feed_type =>'pull')
@late_feeds = []
@live_feeds.each do |l|
feed_state = AhProfileError.connection.select_all("select (unix_timestamp() - max(updated_timestamp)) / 60 as 'minutes_ago' from #{l.feed_name}")
if feed_state[0]["minutes_ago"] > 30
@late_feeds << {:feed_name => l.feed_name, :minutes_ago => feed_state[0]["minutes_ago"]}
end
@intraday_feeds = Feed.where(:feed_type => 'intraday')
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment