2021-10-08 21:21:09 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-10-26 14:33:15 +00:00
|
|
|
# Registran cuándo fue la última recolección de datos.
|
2021-10-09 18:50:38 +00:00
|
|
|
class Stat < ApplicationRecord
|
2021-10-26 14:33:15 +00:00
|
|
|
# XXX: Los intervalos van en orden de mayor especificidad a menor
|
|
|
|
INTERVALS = %i[day month year].freeze
|
2021-10-09 18:50:38 +00:00
|
|
|
RESOURCES = %i[builds space_used build_time].freeze
|
2021-10-26 14:33:15 +00:00
|
|
|
|
|
|
|
belongs_to :site
|
2021-10-09 18:50:38 +00:00
|
|
|
end
|