BigW Consortium Gitlab

gitlab_usage_ping_worker.rb 832 Bytes
Newer Older
1 2 3 4
class GitlabUsagePingWorker
  LEASE_TIMEOUT = 86400

  include Sidekiq::Worker
5
  include CronjobQueue
6 7 8 9 10 11 12 13 14 15
  include HTTParty

  def perform
    return unless current_application_settings.usage_ping_enabled

    # Multiple Sidekiq workers could run this. We should only do this at most once a day.
    return unless try_obtain_lease

    begin
      HTTParty.post(url,
16
                    body: Gitlab::UsageData.to_json(force_refresh: true),
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
                    headers: { 'Content-type' => 'application/json' }
                   )
    rescue HTTParty::Error => e
      Rails.logger.info "Unable to contact GitLab, Inc.: #{e}"
    end
  end

  def try_obtain_lease
    Gitlab::ExclusiveLease.new('gitlab_usage_ping_worker:ping', timeout: LEASE_TIMEOUT).try_obtain
  end

  def url
    'https://version.gitlab.com/usage_data'
  end
end