class Sentry::Session

def initialize

def initialize
  @started = Sentry.utc_now
  @status = :ok
  # truncate seconds from the timestamp since we only care about
  # minute level granularity for aggregation
  @aggregation_key = Time.utc(@started.year, @started.month, @started.day, @started.hour, @started.min)
end