summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Mazetto <brodock@gmail.com>2017-05-26 01:46:30 +0200
committerGabriel Mazetto <brodock@gmail.com>2017-05-31 14:33:03 +0200
commit27e632758feed94d8b3ff065b7c8928a854cecc5 (patch)
tree98aa0fdba69d5fcb8bb510516153413225aafaac
parent13e88c93956b5b350515b919ef7217a3dccf28ff (diff)
downloadgitlab-ce-27e632758feed94d8b3ff065b7c8928a854cecc5.tar.gz
Add ActiveUsers Check
-rw-r--r--lib/system_check/app/active_users_check.rb17
-rw-r--r--lib/tasks/gitlab/check.rake8
2 files changed, 19 insertions, 6 deletions
diff --git a/lib/system_check/app/active_users_check.rb b/lib/system_check/app/active_users_check.rb
new file mode 100644
index 00000000000..1d72c8d6903
--- /dev/null
+++ b/lib/system_check/app/active_users_check.rb
@@ -0,0 +1,17 @@
+module SystemCheck
+ module App
+ class ActiveUsersCheck < SystemCheck::BaseCheck
+ set_name 'Active users:'
+
+ def multi_check
+ active_users = User.active.count
+
+ if active_users > 0
+ $stdout.puts active_users.to_s.color(:green)
+ else
+ $stdout.puts active_users.to_s.color(:red)
+ end
+ end
+ end
+ end
+end
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index 0d177663066..973517c99dd 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -32,11 +32,11 @@ namespace :gitlab do
SystemCheck::App::ProjectsHaveNamespaceCheck,
SystemCheck::App::RedisVersionCheck,
SystemCheck::App::RubyVersionCheck,
- SystemCheck::App::GitVersionCheck
+ SystemCheck::App::GitVersionCheck,
+ SystemCheck::App::ActiveUsersCheck
]
SystemCheck.run('GitLab', checks)
- check_active_users
end
end
@@ -554,10 +554,6 @@ namespace :gitlab do
end
end
- def check_active_users
- puts "Active users: #{User.active.count}"
- end
-
def check_repo_integrity(repo_dir)
puts "\nChecking repo at #{repo_dir.color(:yellow)}"