5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 09:34:17 +00:00
panel/app/models/stat.rb

19 lines
465 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Registran cuándo fue la última recolección de datos.
2021-10-09 18:50:38 +00:00
class Stat < ApplicationRecord
# XXX: Los intervalos van en orden de mayor especificidad a menor
INTERVALS = %i[day].freeze
2021-10-09 18:50:38 +00:00
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
2021-10-09 18:50:38 +00:00
end