Skip to content
Snippets Groups Projects
Commit eac3827a authored by Ahmad Sherif's avatar Ahmad Sherif
Browse files

Rename project_count to projects for consistency with other counts

parent d2b19172
No related branches found
No related tags found
No related merge requests found
Pipeline #
PATH
remote: .
specs:
gitlab-monitor (0.0.14)
gitlab-monitor (0.0.15)
pg (~> 0.18.4)
quantile (~> 0.2.0)
redis-namespace (~> 1.5.2)
Loading
Loading
Loading
Loading
@@ -9,7 +9,7 @@ module GitLab
class RowCountCollector < Base
QUERIES = {
groups: { select: :namespaces, where: "type='Group'" },
project_count: { select: :projects, where: "pending_delete=false" },
projects: { select: :projects, where: "pending_delete=false" },
soft_deleted_projects: { select: :projects, where: "pending_delete=true" },
orphaned_projects: {
select: :projects,
Loading
Loading
module GitLab
module Monitor
VERSION = "0.0.14".freeze
VERSION = "0.0.15".freeze
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment