mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
6332d5040d
Also: - add pageviews - add problems and version sections
36 lines
746 B
Ruby
36 lines
746 B
Ruby
class AdminDashboardNextData
|
|
include StatsCacheable
|
|
|
|
REPORTS = ["page_view_total_reqs", "visits", "posts", "time_to_first_response", "likes", "flags" ]
|
|
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def self.fetch_stats
|
|
AdminDashboardNextData.new.as_json
|
|
end
|
|
|
|
def self.stats_cache_key
|
|
'dash-next-stats'
|
|
end
|
|
|
|
def as_json(_options = nil)
|
|
@json ||= {
|
|
reports: AdminDashboardNextData.reports(REPORTS),
|
|
last_backup_taken_at: last_backup_taken_at,
|
|
updated_at: Time.zone.now.as_json
|
|
}
|
|
end
|
|
|
|
def last_backup_taken_at
|
|
if last_backup = Backup.all.last
|
|
File.ctime(last_backup.path).utc
|
|
end
|
|
end
|
|
|
|
def self.reports(source)
|
|
source.map { |type| Report.find(type).as_json }
|
|
end
|
|
end
|