Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
d13ae9c2
Commit
d13ae9c2
authored
Sep 05, 2018
by
Sean McGivern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle statement timeouts in usage ping
parent
df1a9d67
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
47 deletions
+74
-47
changelogs/unreleased/45938-postgres-timeout-when-counting-number-of-ci-builds-for-usage-ping.yml
...eout-when-counting-number-of-ci-builds-for-usage-ping.yml
+5
-0
lib/gitlab/usage_data.rb
lib/gitlab/usage_data.rb
+53
-47
spec/lib/gitlab/usage_data_spec.rb
spec/lib/gitlab/usage_data_spec.rb
+16
-0
No files found.
changelogs/unreleased/45938-postgres-timeout-when-counting-number-of-ci-builds-for-usage-ping.yml
0 → 100644
View file @
d13ae9c2
---
title
:
Handle database statement timeouts in usage ping
merge_request
:
21523
author
:
type
:
fixed
lib/gitlab/usage_data.rb
View file @
d13ae9c2
...
...
@@ -22,7 +22,7 @@ module Gitlab
hostname:
Gitlab
.
config
.
gitlab
.
host
,
version:
Gitlab
::
VERSION
,
installation_type:
Gitlab
::
INSTALLATION_TYPE
,
active_user_count:
User
.
active
.
count
,
active_user_count:
count
(
User
.
active
)
,
recorded_at:
Time
.
now
,
edition:
'CE'
}
...
...
@@ -34,51 +34,51 @@ module Gitlab
def
system_usage_data
{
counts:
{
assignee_lists:
List
.
assignee
.
count
,
boards:
Board
.
count
,
ci_builds:
::
Ci
::
Build
.
count
,
ci_internal_pipelines:
::
Ci
::
Pipeline
.
internal
.
count
,
ci_external_pipelines:
::
Ci
::
Pipeline
.
external
.
count
,
ci_pipeline_config_auto_devops:
::
Ci
::
Pipeline
.
auto_devops_source
.
count
,
ci_pipeline_config_repository:
::
Ci
::
Pipeline
.
repository_source
.
count
,
ci_runners:
::
Ci
::
Runner
.
count
,
ci_triggers:
::
Ci
::
Trigger
.
count
,
ci_pipeline_schedules:
::
Ci
::
PipelineSchedule
.
count
,
auto_devops_enabled:
::
ProjectAutoDevops
.
enabled
.
count
,
auto_devops_disabled:
::
ProjectAutoDevops
.
disabled
.
count
,
deploy_keys:
DeployKey
.
count
,
deployments:
Deployment
.
count
,
environments:
::
Environment
.
count
,
clusters:
::
Clusters
::
Cluster
.
count
,
clusters_enabled:
::
Clusters
::
Cluster
.
enabled
.
count
,
clusters_disabled:
::
Clusters
::
Cluster
.
disabled
.
count
,
clusters_platforms_gke:
::
Clusters
::
Cluster
.
gcp_installed
.
enabled
.
count
,
clusters_platforms_user:
::
Clusters
::
Cluster
.
user_provided
.
enabled
.
count
,
clusters_applications_helm:
::
Clusters
::
Applications
::
Helm
.
installed
.
count
,
clusters_applications_ingress:
::
Clusters
::
Applications
::
Ingress
.
installed
.
count
,
clusters_applications_prometheus:
::
Clusters
::
Applications
::
Prometheus
.
installed
.
count
,
clusters_applications_runner:
::
Clusters
::
Applications
::
Runner
.
installed
.
count
,
in_review_folder:
::
Environment
.
in_review_folder
.
count
,
groups:
Group
.
count
,
issues:
Issue
.
count
,
keys:
Key
.
count
,
label_lists:
List
.
label
.
count
,
labels:
Label
.
count
,
lfs_objects:
LfsObject
.
count
,
merge_requests:
MergeRequest
.
count
,
milestone_lists:
List
.
milestone
.
count
,
milestones:
Milestone
.
count
,
notes:
Note
.
count
,
pages_domains:
PagesDomain
.
count
,
projects:
Project
.
count
,
projects_imported_from_github:
Project
.
where
(
import_type:
'github'
).
count
,
protected_branches:
ProtectedBranch
.
count
,
releases:
Release
.
count
,
remote_mirrors:
RemoteMirror
.
count
,
snippets:
Snippet
.
count
,
todos:
Todo
.
count
,
uploads:
Upload
.
count
,
web_hooks:
WebHook
.
count
assignee_lists:
count
(
List
.
assignee
)
,
boards:
count
(
Board
)
,
ci_builds:
count
(
::
Ci
::
Build
)
,
ci_internal_pipelines:
count
(
::
Ci
::
Pipeline
.
internal
)
,
ci_external_pipelines:
count
(
::
Ci
::
Pipeline
.
external
)
,
ci_pipeline_config_auto_devops:
count
(
::
Ci
::
Pipeline
.
auto_devops_source
)
,
ci_pipeline_config_repository:
count
(
::
Ci
::
Pipeline
.
repository_source
)
,
ci_runners:
count
(
::
Ci
::
Runner
)
,
ci_triggers:
count
(
::
Ci
::
Trigger
)
,
ci_pipeline_schedules:
count
(
::
Ci
::
PipelineSchedule
)
,
auto_devops_enabled:
count
(
::
ProjectAutoDevops
.
enabled
)
,
auto_devops_disabled:
count
(
::
ProjectAutoDevops
.
disabled
)
,
deploy_keys:
count
(
DeployKey
)
,
deployments:
count
(
Deployment
)
,
environments:
count
(
::
Environment
)
,
clusters:
count
(
::
Clusters
::
Cluster
)
,
clusters_enabled:
count
(
::
Clusters
::
Cluster
.
enabled
)
,
clusters_disabled:
count
(
::
Clusters
::
Cluster
.
disabled
)
,
clusters_platforms_gke:
count
(
::
Clusters
::
Cluster
.
gcp_installed
.
enabled
)
,
clusters_platforms_user:
count
(
::
Clusters
::
Cluster
.
user_provided
.
enabled
)
,
clusters_applications_helm:
count
(
::
Clusters
::
Applications
::
Helm
.
installed
)
,
clusters_applications_ingress:
count
(
::
Clusters
::
Applications
::
Ingress
.
installed
)
,
clusters_applications_prometheus:
count
(
::
Clusters
::
Applications
::
Prometheus
.
installed
)
,
clusters_applications_runner:
count
(
::
Clusters
::
Applications
::
Runner
.
installed
)
,
in_review_folder:
count
(
::
Environment
.
in_review_folder
)
,
groups:
count
(
Group
)
,
issues:
count
(
Issue
)
,
keys:
count
(
Key
)
,
label_lists:
count
(
List
.
label
)
,
labels:
count
(
Label
)
,
lfs_objects:
count
(
LfsObject
)
,
merge_requests:
count
(
MergeRequest
)
,
milestone_lists:
count
(
List
.
milestone
)
,
milestones:
count
(
Milestone
)
,
notes:
count
(
Note
)
,
pages_domains:
count
(
PagesDomain
)
,
projects:
count
(
Project
)
,
projects_imported_from_github:
count
(
Project
.
where
(
import_type:
'github'
))
,
protected_branches:
count
(
ProtectedBranch
)
,
releases:
count
(
Release
)
,
remote_mirrors:
count
(
RemoteMirror
)
,
snippets:
count
(
Snippet
)
,
todos:
count
(
Todo
)
,
uploads:
count
(
Upload
)
,
web_hooks:
count
(
WebHook
)
}.
merge
(
services_usage
)
}
end
...
...
@@ -120,9 +120,15 @@ module Gitlab
PrometheusService
:
:projects_prometheus_active
}
results
=
Service
.
unscoped
.
where
(
type:
types
.
keys
,
active:
true
).
group
(
:type
).
count
results
=
count
(
Service
.
unscoped
.
where
(
type:
types
.
keys
,
active:
true
).
group
(
:type
),
fallback:
Hash
.
new
(
-
1
))
results
.
each_with_object
({})
{
|
(
key
,
value
),
response
|
response
[
types
[
key
.
to_sym
]]
=
value
}
end
def
count
(
relation
,
fallback:
-
1
)
relation
.
count
rescue
ActiveRecord
::
StatementInvalid
fallback
end
end
end
end
spec/lib/gitlab/usage_data_spec.rb
View file @
d13ae9c2
...
...
@@ -166,4 +166,20 @@ describe Gitlab::UsageData do
expect
(
subject
[
:recorded_at
]).
to
be_a
(
Time
)
end
end
describe
'#count'
do
let
(
:relation
)
{
double
(
:relation
)
}
it
'returns the count when counting succeeds'
do
allow
(
relation
).
to
receive
(
:count
).
and_return
(
1
)
expect
(
described_class
.
count
(
relation
)).
to
eq
(
1
)
end
it
'returns the fallback value when counting fails'
do
allow
(
relation
).
to
receive
(
:count
).
and_raise
(
ActiveRecord
::
StatementInvalid
.
new
(
''
))
expect
(
described_class
.
count
(
relation
,
fallback:
15
)).
to
eq
(
15
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment