2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-01-20 06:20:50 -05:00
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
2018-05-16 02:06:55 -04:00
|
|
|
include CountHelper
|
|
|
|
|
2019-09-08 23:38:42 -04:00
|
|
|
COUNTED_ITEMS = [Project, User, Group].freeze
|
2018-05-25 17:28:16 -04:00
|
|
|
|
2022-04-05 08:10:23 -04:00
|
|
|
feature_category :not_owned # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
|
2020-10-05 17:08:47 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2012-04-20 12:41:49 -04:00
|
|
|
def index
|
2018-05-25 17:28:16 -04:00
|
|
|
@counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
|
2017-08-15 06:27:37 -04:00
|
|
|
@projects = Project.order_id_desc.without_deleted.with_route.limit(10)
|
|
|
|
@users = User.order_id_desc.limit(10)
|
|
|
|
@groups = Group.order_id_desc.with_route.limit(10)
|
2020-02-24 22:08:49 -05:00
|
|
|
@notices = Gitlab::ConfigChecker::PumaRuggedChecker.check
|
2020-05-12 14:07:54 -04:00
|
|
|
@notices += Gitlab::ConfigChecker::ExternalDatabaseChecker.check
|
2021-09-30 14:11:31 -04:00
|
|
|
@redis_versions = [
|
|
|
|
Gitlab::Redis::Queues,
|
|
|
|
Gitlab::Redis::SharedState,
|
|
|
|
Gitlab::Redis::Cache,
|
|
|
|
Gitlab::Redis::TraceChunks,
|
2021-10-15 11:10:09 -04:00
|
|
|
Gitlab::Redis::RateLimiting,
|
|
|
|
Gitlab::Redis::Sessions
|
2021-09-30 14:11:31 -04:00
|
|
|
].map(&:version).uniq
|
2012-04-20 12:41:49 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2019-10-18 20:06:14 -04:00
|
|
|
|
2020-04-08 05:09:43 -04:00
|
|
|
def stats
|
|
|
|
@users_statistics = UsersStatistics.latest
|
|
|
|
end
|
2012-04-20 12:41:49 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Admin::DashboardController.prepend_mod_with('Admin::DashboardController')
|