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
Léo-Paul Géneau
gitlab-ce
Commits
fc92d066
Commit
fc92d066
authored
Aug 25, 2016
by
Timothy Andrew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the "Test" cycle analytics section.
parent
3d5729a7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
app/models/cycle_analytics.rb
app/models/cycle_analytics.rb
+6
-0
app/models/cycle_analytics/queries.rb
app/models/cycle_analytics/queries.rb
+22
-0
app/views/projects/cycle_analytics/show.html.haml
app/views/projects/cycle_analytics/show.html.haml
+7
-0
No files found.
app/models/cycle_analytics.rb
View file @
fc92d066
...
@@ -17,6 +17,12 @@ class CycleAnalytics
...
@@ -17,6 +17,12 @@ class CycleAnalytics
Queries
::
mr_wip_flag_removed_or_assigned_to_user_other_than_author_time
)
Queries
::
mr_wip_flag_removed_or_assigned_to_user_other_than_author_time
)
end
end
def
test
calculate_metric
(
Queries
::
merge_requests_closing_issues
,
Queries
::
mr_build_started_at
,
Queries
::
mr_build_finished_at
)
end
def
review
def
review
calculate_metric
(
Queries
::
merge_requests_closing_issues
,
calculate_metric
(
Queries
::
merge_requests_closing_issues
,
Queries
::
mr_wip_flag_removed_or_assigned_to_user_other_than_author_time
,
Queries
::
mr_wip_flag_removed_or_assigned_to_user_other_than_author_time
,
...
...
app/models/cycle_analytics/queries.rb
View file @
fc92d066
...
@@ -40,6 +40,28 @@ class CycleAnalytics
...
@@ -40,6 +40,28 @@ class CycleAnalytics
end
end
end
end
def
mr_build_started_at
lambda
do
|
data_point
|
merge_request
=
data_point
[
:merge_request
]
tip
=
merge_request
.
commits
.
first
return
unless
tip
pipeline
=
Ci
::
Pipeline
.
find_by_sha
(
tip
.
sha
)
pipeline
.
started_at
if
pipeline
end
end
def
mr_build_finished_at
lambda
do
|
data_point
|
merge_request
=
data_point
[
:merge_request
]
tip
=
merge_request
.
commits
.
first
return
unless
tip
pipeline
=
Ci
::
Pipeline
.
find_by_sha
(
tip
.
sha
)
pipeline
.
finished_at
if
pipeline
end
end
def
mr_deployed_to_any_environment_at
def
mr_deployed_to_any_environment_at
lambda
do
|
data_point
|
lambda
do
|
data_point
|
merge_request
=
data_point
[
:merge_request
]
merge_request
=
data_point
[
:merge_request
]
...
...
app/views/projects/cycle_analytics/show.html.haml
View file @
fc92d066
...
@@ -20,6 +20,13 @@
...
@@ -20,6 +20,13 @@
-
else
-
else
=
"<Not enough data>"
=
"<Not enough data>"
%li
.list-group-item
Test:
-
if
test
=
@cycle_analytics
.
test
.
presence
=
distance_of_time_in_words
test
-
else
=
"<Not enough data>"
%li
.list-group-item
%li
.list-group-item
Review:
Review:
-
if
review
=
@cycle_analytics
.
review
.
presence
-
if
review
=
@cycle_analytics
.
review
.
presence
...
...
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