2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
2021-01-03 14:25:43 +05:30
|
|
|
class Statistics < ::API::Base
|
2019-12-04 20:38:33 +05:30
|
|
|
before { authenticated_as_admin! }
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
feature_category :devops_reports
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
COUNTED_ITEMS = [Project, User, Group, ForkNetworkMember, ForkNetwork, Issue,
|
|
|
|
MergeRequest, Note, Snippet, Key, Milestone].freeze
|
|
|
|
|
|
|
|
desc 'Get the current application statistics' do
|
|
|
|
success Entities::ApplicationStatistics
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
get "application/statistics", urgency: :low do
|
2019-12-04 20:38:33 +05:30
|
|
|
counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
|
|
|
|
present counts, with: Entities::ApplicationStatistics
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|