mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 15:41:42 +00:00
generar los rollups para los siguientes intervalos
This commit is contained in:
parent
8a3c9a76a7
commit
158c224449
1 changed files with 18 additions and 4 deletions
|
@ -11,8 +11,6 @@
|
|||
# Los hostnames de un sitio van a poder obtenerse a partir de
|
||||
# Site#hostnames con la garantía de que son únicos.
|
||||
class UriCollectionJob < PeriodicJob
|
||||
include RecursiveRollup
|
||||
|
||||
# Ignoramos imágenes porque suelen ser demasiadas y no aportan a las
|
||||
# estadísticas.
|
||||
IMAGES = %w[.png .jpg .jpeg .gif .webp .jfif].freeze
|
||||
|
@ -76,13 +74,29 @@ class UriCollectionJob < PeriodicJob
|
|||
# @param :dimensions [Hash]
|
||||
# @param :filter [Hash]
|
||||
# @return [nil]
|
||||
def rollup(name:, dimensions:, filter: nil)
|
||||
def rollup(name:, dimensions:, interval: starting_interval, filter: nil)
|
||||
AccessLog.where(**(filter || dimensions))
|
||||
.where('created_at >= ?', beginning_of_interval)
|
||||
.completed_requests
|
||||
.non_robots
|
||||
.group(*dimensions.keys)
|
||||
.rollup(name, interval: starting_interval, update: true)
|
||||
.rollup(name, interval: interval, update: true)
|
||||
end
|
||||
|
||||
# Generar rollups con el resto de la información
|
||||
#
|
||||
# @param :name [String]
|
||||
# @param :dimensions [Hash]
|
||||
# @param :filter [Hash]
|
||||
# @return [nil]
|
||||
def reduce_rollup(name:, dimensions:, filter: nil)
|
||||
Stat::INTERVALS.reduce do |_previous, current|
|
||||
rollup(name: name, dimensions: dimensions, filter: filter, interval: current)
|
||||
|
||||
current
|
||||
end
|
||||
|
||||
nil
|
||||
end
|
||||
|
||||
def stat_name
|
||||
|
|
Loading…
Reference in a new issue