d345591fc8
GitLab Performance Monitoring is now able to track custom events not directly related to application performance. These events include the number of tags pushed, repositories created, builds registered, etc. The use of these events is to get a better overview of how a GitLab instance is used and how that may affect performance. For example, a large number of Git pushes may have a negative impact on the underlying storage engine. Events are stored in the "events" measurement and are not prefixed with "rails_" or "sidekiq_", this makes it easier to query events with the same name triggered from different parts of the application. All events being stored in the same measurement also makes it easier to downsample data. Currently the following events are tracked: * Creating repositories * Removing repositories * Changing the default branch of a repository * Pushing a new tag * Removing an existing tag * Pushing a commit (along with the branch being pushed to) * Pushing a new branch * Removing an existing branch * Importing a repository (along with the URL we're importing) * Forking a repository (along with the source/target path) * CI builds registered (and when no build could be found) * CI builds being updated * Rails and Sidekiq exceptions Fixes gitlab-org/gitlab-ce#13720
24 lines
755 B
Ruby
24 lines
755 B
Ruby
module Gitlab
|
|
module Metrics
|
|
# Sidekiq middleware for tracking jobs.
|
|
#
|
|
# This middleware is intended to be used as a server-side middleware.
|
|
class SidekiqMiddleware
|
|
def call(worker, message, queue)
|
|
trans = Transaction.new("#{worker.class.name}#perform")
|
|
|
|
begin
|
|
# Old gitlad-shell messages don't provide enqueued_at/created_at attributes
|
|
trans.set(:sidekiq_queue_duration, Time.now.to_f - (message['enqueued_at'] || message['created_at'] || 0))
|
|
trans.run { yield }
|
|
rescue Exception => error # rubocop: disable Lint/RescueException
|
|
trans.add_event(:sidekiq_exception)
|
|
|
|
raise error
|
|
ensure
|
|
trans.finish
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|