Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2018-05-28 13:36:26 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2018-05-28 13:36:26 +0300
commit265b1fafe64ae9fe8a3e92d83c1678b47533ba86 (patch)
tree414c5cdbcda463cb9061f3c9f29289140d3e46e2 /app
parent3ab3838346ec6437bbd655417f021f8f0e7a9855 (diff)
parentb6125f7045d2bed4aadf798dde4c547e2047e039 (diff)
Merge branch 'sh-fix-admin-page-counts-take-2' into 'master'
Fix fast admin counters not working when PostgreSQL has secondaries Closes #46742 See merge request gitlab-org/gitlab-ce!19154
Diffstat (limited to 'app')
-rw-r--r--app/controllers/admin/dashboard_controller.rb4
-rw-r--r--app/helpers/count_helper.rb8
-rw-r--r--app/views/admin/dashboard/index.html.haml20
3 files changed, 20 insertions, 12 deletions
diff --git a/app/controllers/admin/dashboard_controller.rb b/app/controllers/admin/dashboard_controller.rb
index d6a6bc7d4a1..737942f3eb2 100644
--- a/app/controllers/admin/dashboard_controller.rb
+++ b/app/controllers/admin/dashboard_controller.rb
@@ -1,7 +1,11 @@
class Admin::DashboardController < Admin::ApplicationController
include CountHelper
+ COUNTED_ITEMS = [Project, User, Group, ForkedProjectLink, Issue, MergeRequest,
+ Note, Snippet, Key, Milestone].freeze
+
def index
+ @counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
@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)
diff --git a/app/helpers/count_helper.rb b/app/helpers/count_helper.rb
index 24ee62e68ba..5cd98f40f78 100644
--- a/app/helpers/count_helper.rb
+++ b/app/helpers/count_helper.rb
@@ -1,5 +1,9 @@
module CountHelper
- def approximate_count_with_delimiters(model)
- number_with_delimiter(Gitlab::Database::Count.approximate_count(model))
+ def approximate_count_with_delimiters(count_data, model)
+ count = count_data[model]
+
+ raise "Missing model #{model} from count data" unless count
+
+ number_with_delimiter(count)
end
end
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml
index 3df4ce93fa8..3cdeb103bb8 100644
--- a/app/views/admin/dashboard/index.html.haml
+++ b/app/views/admin/dashboard/index.html.haml
@@ -12,7 +12,7 @@
= link_to admin_projects_path do
%h3.text-center
Projects:
- = approximate_count_with_delimiters(Project)
+ = approximate_count_with_delimiters(@counts, Project)
%hr
= link_to('New project', new_project_path, class: "btn btn-new")
.col-sm-4
@@ -21,7 +21,7 @@
= link_to admin_users_path do
%h3.text-center
Users:
- = approximate_count_with_delimiters(User)
+ = approximate_count_with_delimiters(@counts, User)
= render_if_exists 'users_statistics'
%hr
= link_to 'New user', new_admin_user_path, class: "btn btn-new"
@@ -31,7 +31,7 @@
= link_to admin_groups_path do
%h3.text-center
Groups:
- = approximate_count_with_delimiters(Group)
+ = approximate_count_with_delimiters(@counts, Group)
%hr
= link_to 'New group', new_admin_group_path, class: "btn btn-new"
.row
@@ -42,31 +42,31 @@
%p
Forks
%span.light.float-right
- = approximate_count_with_delimiters(ForkedProjectLink)
+ = approximate_count_with_delimiters(@counts, ForkedProjectLink)
%p
Issues
%span.light.float-right
- = approximate_count_with_delimiters(Issue)
+ = approximate_count_with_delimiters(@counts, Issue)
%p
Merge Requests
%span.light.float-right
- = approximate_count_with_delimiters(MergeRequest)
+ = approximate_count_with_delimiters(@counts, MergeRequest)
%p
Notes
%span.light.float-right
- = approximate_count_with_delimiters(Note)
+ = approximate_count_with_delimiters(@counts, Note)
%p
Snippets
%span.light.float-right
- = approximate_count_with_delimiters(Snippet)
+ = approximate_count_with_delimiters(@counts, Snippet)
%p
SSH Keys
%span.light.float-right
- = approximate_count_with_delimiters(Key)
+ = approximate_count_with_delimiters(@counts, Key)
%p
Milestones
%span.light.float-right
- = approximate_count_with_delimiters(Milestone)
+ = approximate_count_with_delimiters(@counts, Milestone)
%p
Active Users
%span.light.float-right