mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 22:26:22 +00:00
332ae66b8a
la forma en que las estamos recopilando es rápida pero no acumulativa, entonces los números siempre dan mal.
18 lines
465 B
Ruby
18 lines
465 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Registran cuándo fue la última recolección de datos.
|
|
class Stat < ApplicationRecord
|
|
# XXX: Los intervalos van en orden de mayor especificidad a menor
|
|
INTERVALS = %i[day].freeze
|
|
RESOURCES = %i[builds space_used build_time].freeze
|
|
COLUMNS = %i[http_referer geoip2_data_country_name].freeze
|
|
|
|
belongs_to :site
|
|
|
|
# El intervalo por defecto
|
|
#
|
|
# @return [Symbol]
|
|
def self.default_interval
|
|
INTERVALS.first
|
|
end
|
|
end
|