debian-mirror-gitlab/lib/api/statistics.rb

21 lines
608 B
Ruby
Raw Normal View History

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-01-29 00:20:46 +05:30
feature_category :instance_statistics
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
get "application/statistics" do
counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
present counts, with: Entities::ApplicationStatistics
end
end
end