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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
d377aa54
Commit
d377aa54
authored
Dec 04, 2017
by
Jose Ivan Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed the deploy markers on the prometheus dashboard to be more verbose
parent
1c02af27
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
191 additions
and
38 deletions
+191
-38
app/assets/javascripts/monitoring/components/dashboard.vue
app/assets/javascripts/monitoring/components/dashboard.vue
+4
-0
app/assets/javascripts/monitoring/components/graph.vue
app/assets/javascripts/monitoring/components/graph.vue
+16
-8
app/assets/javascripts/monitoring/components/graph/deployment.vue
...ts/javascripts/monitoring/components/graph/deployment.vue
+69
-24
app/assets/javascripts/monitoring/mixins/monitoring_mixins.js
...assets/javascripts/monitoring/mixins/monitoring_mixins.js
+2
-0
app/assets/javascripts/monitoring/utils/date_time_formatters.js
...sets/javascripts/monitoring/utils/date_time_formatters.js
+1
-0
app/assets/javascripts/vue_shared/components/icon.vue
app/assets/javascripts/vue_shared/components/icon.vue
+29
-1
app/assets/stylesheets/pages/environments.scss
app/assets/stylesheets/pages/environments.scss
+17
-2
app/views/projects/environments/metrics.html.haml
app/views/projects/environments/metrics.html.haml
+2
-0
changelogs/unreleased/38032-deploy-markers-should-be-more-verbose.yml
...nreleased/38032-deploy-markers-should-be-more-verbose.yml
+5
-0
spec/javascripts/monitoring/graph/deployment_spec.js
spec/javascripts/monitoring/graph/deployment_spec.js
+26
-3
spec/javascripts/monitoring/graph_spec.js
spec/javascripts/monitoring/graph_spec.js
+14
-0
spec/javascripts/monitoring/mock_data.js
spec/javascripts/monitoring/mock_data.js
+6
-0
No files found.
app/assets/javascripts/monitoring/components/dashboard.vue
View file @
d377aa54
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
hasMetrics
:
convertPermissionToBoolean
(
metricsData
.
hasMetrics
),
hasMetrics
:
convertPermissionToBoolean
(
metricsData
.
hasMetrics
),
documentationPath
:
metricsData
.
documentationPath
,
documentationPath
:
metricsData
.
documentationPath
,
settingsPath
:
metricsData
.
settingsPath
,
settingsPath
:
metricsData
.
settingsPath
,
tagsPath
:
metricsData
.
tagsPath
,
projectPath
:
metricsData
.
projectPath
,
metricsEndpoint
:
metricsData
.
additionalMetrics
,
metricsEndpoint
:
metricsData
.
additionalMetrics
,
deploymentEndpoint
:
metricsData
.
deploymentEndpoint
,
deploymentEndpoint
:
metricsData
.
deploymentEndpoint
,
emptyGettingStartedSvgPath
:
metricsData
.
emptyGettingStartedSvgPath
,
emptyGettingStartedSvgPath
:
metricsData
.
emptyGettingStartedSvgPath
,
...
@@ -112,6 +114,8 @@
...
@@ -112,6 +114,8 @@
:hover-data=
"hoverData"
:hover-data=
"hoverData"
:update-aspect-ratio=
"updateAspectRatio"
:update-aspect-ratio=
"updateAspectRatio"
:deployment-data=
"store.deploymentData"
:deployment-data=
"store.deploymentData"
:project-path=
"projectPath"
:tags-path=
"tagsPath"
/>
/>
</graph-group>
</graph-group>
</div>
</div>
...
...
app/assets/javascripts/monitoring/components/graph.vue
View file @
d377aa54
...
@@ -30,6 +30,14 @@
...
@@ -30,6 +30,14 @@
required
:
false
,
required
:
false
,
default
:
()
=>
({}),
default
:
()
=>
({}),
},
},
projectPath
:
{
type
:
String
,
required
:
true
,
},
tagsPath
:
{
type
:
String
,
required
:
true
,
},
},
},
mixins
:
[
MonitoringMixin
],
mixins
:
[
MonitoringMixin
],
...
@@ -251,6 +259,14 @@
...
@@ -251,6 +259,14 @@
:line-color=
"path.lineColor"
:line-color=
"path.lineColor"
:area-color=
"path.areaColor"
:area-color=
"path.areaColor"
/>
/>
<rect
class=
"prometheus-graph-overlay"
:width=
"(graphWidth - 70)"
:height=
"(graphHeight - 100)"
transform=
"translate(-5, 20)"
ref=
"graphOverlay"
@
mousemove=
"handleMouseOverGraph($event)"
>
</rect>
<graph-deployment
<graph-deployment
:show-deploy-info=
"showDeployInfo"
:show-deploy-info=
"showDeployInfo"
:deployment-data=
"reducedDeploymentData"
:deployment-data=
"reducedDeploymentData"
...
@@ -267,14 +283,6 @@
...
@@ -267,14 +283,6 @@
:graph-height-offset=
"graphHeightOffset"
:graph-height-offset=
"graphHeightOffset"
:show-flag-content=
"showFlagContent"
:show-flag-content=
"showFlagContent"
/>
/>
<rect
class=
"prometheus-graph-overlay"
:width=
"(graphWidth - 70)"
:height=
"(graphHeight - 100)"
transform=
"translate(-5, 20)"
ref=
"graphOverlay"
@
mousemove=
"handleMouseOverGraph($event)"
>
</rect>
</svg>
</svg>
</svg>
</svg>
</div>
</div>
...
...
app/assets/javascripts/monitoring/components/graph/deployment.vue
View file @
d377aa54
<
script
>
<
script
>
import
{
dateFormat
,
timeFormat
}
from
'
../../utils/date_time_formatters
'
;
import
{
dateFormatWithName
,
timeFormat
}
from
'
../../utils/date_time_formatters
'
;
import
Icon
from
'
../../../vue_shared/components/icon.vue
'
;
export
default
{
export
default
{
props
:
{
props
:
{
...
@@ -25,6 +26,10 @@
...
@@ -25,6 +26,10 @@
},
},
},
},
components
:
{
Icon
,
},
computed
:
{
computed
:
{
calculatedHeight
()
{
calculatedHeight
()
{
return
this
.
graphHeight
-
this
.
graphHeightOffset
;
return
this
.
graphHeight
-
this
.
graphHeightOffset
;
...
@@ -33,7 +38,7 @@
...
@@ -33,7 +38,7 @@
methods
:
{
methods
:
{
refText
(
d
)
{
refText
(
d
)
{
return
d
.
tag
?
d
.
ref
:
d
.
sha
.
slice
(
0
,
6
);
return
d
.
tag
?
d
.
ref
:
d
.
sha
.
slice
(
0
,
8
);
},
},
formatTime
(
deploymentTime
)
{
formatTime
(
deploymentTime
)
{
...
@@ -41,7 +46,7 @@
...
@@ -41,7 +46,7 @@
},
},
formatDate
(
deploymentTime
)
{
formatDate
(
deploymentTime
)
{
return
dateFormat
(
deploymentTime
);
return
dateFormat
WithName
(
deploymentTime
);
},
},
nameDeploymentClass
(
deployment
)
{
nameDeploymentClass
(
deployment
)
{
...
@@ -54,8 +59,8 @@
...
@@ -54,8 +59,8 @@
positionFlag
(
deployment
)
{
positionFlag
(
deployment
)
{
let
xPosition
=
3
;
let
xPosition
=
3
;
if
(
deployment
.
xPos
>
(
this
.
graphWidth
-
2
00
))
{
if
(
deployment
.
xPos
>
(
this
.
graphWidth
-
2
25
))
{
xPosition
=
-
97
;
xPosition
=
-
142
;
}
}
return
xPosition
;
return
xPosition
;
},
},
...
@@ -91,35 +96,75 @@
...
@@ -91,35 +96,75 @@
class=
"js-deploy-info-box"
class=
"js-deploy-info-box"
:x=
"positionFlag(deployment)"
:x=
"positionFlag(deployment)"
y=
"0"
y=
"0"
width=
"
92
"
width=
"
134
"
height=
"
6
0"
>
height=
"
8
0"
>
<rect
<rect
class=
"rect-text-metric deploy-info-rect rect-metric"
class=
"rect-text-metric deploy-info-rect rect-metric"
x=
"1"
x=
"1"
y=
"1"
y=
"1"
rx=
"2"
rx=
"2"
width=
"
90
"
width=
"
132
"
height=
"
5
8"
>
height=
"
7
8"
>
</rect>
</rect>
<g
transform=
"translate(5, 2)"
>
<text
class=
"deploy-info-text text-metric-bold"
>
{{
refText
(
deployment
)
}}
</text>
</g>
<text
class=
"deploy-info-text"
y=
"18"
transform=
"translate(5, 2)"
>
{{
formatDate
(
deployment
.
time
)
}}
</text>
<text
<text
class=
"deploy-info-text text-metric-bold"
class=
"deploy-info-text text-metric-bold"
y=
"38"
transform=
"translate(5, 2)"
>
transform=
"translate(5, 2)"
>
{{
formatTime
(
deployment
.
time
)
}}
Deployed
</text>
</text>
<!--The date info-->
<g
transform=
"translate(5, 20)"
>
<text
class=
"deploy-info-text"
>
{{
formatDate
(
deployment
.
time
)
}}
</text>
<text
class=
"deploy-info-text text-metric-bold"
x=
"62"
>
{{
formatTime
(
deployment
.
time
)
}}
</text>
</g>
<line
class=
"divider-line"
x1=
"0"
y1=
"38"
x2=
"132"
:y2=
"38"
stroke=
"#000"
>
</line>
<!--Commit information-->
<g
transform=
"translate(5, 40)"
>
<icon
name=
"commit"
:width=
"12"
:height=
"12"
:y=
"5"
>
</icon>
<a
:xlink:href=
"deployment.commitUrl"
>
<text
class=
"deploy-info-text deploy-info-text-link"
transform=
"translate(20, 2)"
>
{{
refText
(
deployment
)
}}
</text>
</a>
</g>
<!--Tag information-->
<g
transform=
"translate(5, 55)"
v-if=
"deployment.tag"
>
<icon
name=
"label"
:width=
"12"
:height=
"12"
:y=
"5"
>
</icon>
<a
:xlink:href=
"deployment.tagUrl"
>
<text
class=
"deploy-info-text deploy-info-text-link"
transform=
"translate(20, 2)"
y=
"2"
>
{{
deployment
.
tag
}}
</text>
</a>
</g>
</svg>
</svg>
</g>
</g>
<svg
<svg
...
...
app/assets/javascripts/monitoring/mixins/monitoring_mixins.js
View file @
d377aa54
...
@@ -33,7 +33,9 @@ const mixins = {
...
@@ -33,7 +33,9 @@ const mixins = {
id
:
deployment
.
id
,
id
:
deployment
.
id
,
time
,
time
,
sha
:
deployment
.
sha
,
sha
:
deployment
.
sha
,
commitUrl
:
`
${
this
.
projectPath
}
/commit/
${
deployment
.
sha
}
`
,
tag
:
deployment
.
tag
,
tag
:
deployment
.
tag
,
tagUrl
:
`
${
this
.
tagsPath
}
/
${
deployment
.
tag
}
`
,
ref
:
deployment
.
ref
.
name
,
ref
:
deployment
.
ref
.
name
,
xPos
,
xPos
,
showDeploymentFlag
:
false
,
showDeploymentFlag
:
false
,
...
...
app/assets/javascripts/monitoring/utils/date_time_formatters.js
View file @
d377aa54
import
d3
from
'
d3
'
;
import
d3
from
'
d3
'
;
export
const
dateFormat
=
d3
.
time
.
format
(
'
%b %-d, %Y
'
);
export
const
dateFormat
=
d3
.
time
.
format
(
'
%b %-d, %Y
'
);
export
const
dateFormatWithName
=
d3
.
time
.
format
(
'
%a, %b %-d
'
);
export
const
timeFormat
=
d3
.
time
.
format
(
'
%-I:%M%p
'
);
export
const
timeFormat
=
d3
.
time
.
format
(
'
%-I:%M%p
'
);
export
const
bisectDate
=
d3
.
bisector
(
d
=>
d
.
time
).
left
;
export
const
bisectDate
=
d3
.
bisector
(
d
=>
d
.
time
).
left
;
...
...
app/assets/javascripts/vue_shared/components/icon.vue
View file @
d377aa54
...
@@ -36,6 +36,30 @@
...
@@ -36,6 +36,30 @@
required
:
false
,
required
:
false
,
default
:
''
,
default
:
''
,
},
},
width
:
{
type
:
Number
,
required
:
false
,
default
:
null
,
},
height
:
{
type
:
Number
,
required
:
false
,
default
:
null
,
},
y
:
{
type
:
Number
,
required
:
false
,
default
:
null
,
},
x
:
{
type
:
Number
,
required
:
false
,
default
:
null
,
},
},
},
computed
:
{
computed
:
{
...
@@ -51,7 +75,11 @@
...
@@ -51,7 +75,11 @@
<
template
>
<
template
>
<svg
<svg
:class=
"[iconSizeClass, cssClasses]"
>
:class=
"[iconSizeClass, cssClasses]"
:width=
"width"
:height=
"height"
:x=
"x"
:y=
"y"
>
<use
<use
v-bind=
"
{'xlink:href':spriteHref}"/>
v-bind=
"
{'xlink:href':spriteHref}"/>
</svg>
</svg>
...
...
app/assets/stylesheets/pages/environments.scss
View file @
d377aa54
...
@@ -201,8 +201,9 @@
...
@@ -201,8 +201,9 @@
stroke-width
:
1
;
stroke-width
:
1
;
}
}
.deploy-info-text
{
.divider-line
{
dominant-baseline
:
text-before-edge
;
stroke-width
:
1
;
stroke
:
$gray-darkest
;
}
}
.prometheus-state
{
.prometheus-state
{
...
@@ -312,6 +313,20 @@
...
@@ -312,6 +313,20 @@
stroke
:
$gray-darker
;
stroke
:
$gray-darker
;
}
}
.deploy-info-text
{
dominant-baseline
:
text-before-edge
;
font-size
:
12px
;
}
.deploy-info-text-link
{
font-family
:
$monospace_font
;
fill
:
$gl-link-color
;
&
:hover
{
fill
:
$gl-link-hover-color
;
}
}
@media
(
max-width
:
$screen-sm-max
)
{
@media
(
max-width
:
$screen-sm-max
)
{
.label-axis-text
,
.label-axis-text
,
.text-metric-usage
,
.text-metric-usage
,
...
...
app/views/projects/environments/metrics.html.haml
View file @
d377aa54
...
@@ -19,4 +19,6 @@
...
@@ -19,4 +19,6 @@
"empty-loading-svg-path"
:
image_path
(
'illustrations/monitoring/loading'
),
"empty-loading-svg-path"
:
image_path
(
'illustrations/monitoring/loading'
),
"empty-unable-to-connect-svg-path"
:
image_path
(
'illustrations/monitoring/unable_to_connect'
),
"empty-unable-to-connect-svg-path"
:
image_path
(
'illustrations/monitoring/unable_to_connect'
),
"additional-metrics"
:
additional_metrics_project_environment_path
(
@project
,
@environment
,
format: :json
),
"additional-metrics"
:
additional_metrics_project_environment_path
(
@project
,
@environment
,
format: :json
),
"project-path"
:
project_path
(
@project
),
"tags-path"
:
project_tags_path
(
@project
),
"has-metrics"
:
"#{@environment.has_metrics?}"
,
deployment_endpoint:
project_environment_deployments_path
(
@project
,
@environment
,
format: :json
)
}
}
"has-metrics"
:
"#{@environment.has_metrics?}"
,
deployment_endpoint:
project_environment_deployments_path
(
@project
,
@environment
,
format: :json
)
}
}
changelogs/unreleased/38032-deploy-markers-should-be-more-verbose.yml
0 → 100644
View file @
d377aa54
---
title
:
Changed the deploy markers on the prometheus dashboard to be more verbose
merge_request
:
38032
author
:
type
:
changed
spec/javascripts/monitoring/graph/deployment_spec.js
View file @
d377aa54
...
@@ -118,7 +118,7 @@ describe('MonitoringDeployment', () => {
...
@@ -118,7 +118,7 @@ describe('MonitoringDeployment', () => {
).
not
.
toEqual
(
'
display: none;
'
);
).
not
.
toEqual
(
'
display: none;
'
);
});
});
it
(
'
shows the refText inside a text element with the deploy-info-text class
'
,
()
=>
{
it
(
'
contains date, refs and the "deployed" text
'
,
()
=>
{
reducedDeploymentData
[
0
].
showDeploymentFlag
=
true
;
reducedDeploymentData
[
0
].
showDeploymentFlag
=
true
;
const
component
=
createComponent
({
const
component
=
createComponent
({
showDeployInfo
:
true
,
showDeployInfo
:
true
,
...
@@ -129,8 +129,31 @@ describe('MonitoringDeployment', () => {
...
@@ -129,8 +129,31 @@ describe('MonitoringDeployment', () => {
});
});
expect
(
expect
(
component
.
$el
.
querySelector
(
'
.deploy-info-text
'
).
firstChild
.
nodeValue
.
trim
(),
component
.
$el
.
querySelectorAll
(
'
.deploy-info-text
'
),
).
toEqual
(
component
.
refText
(
reducedDeploymentData
[
0
]));
).
toContainText
(
'
Deployed
'
);
expect
(
component
.
$el
.
querySelectorAll
(
'
.deploy-info-text
'
),
).
toContainText
(
'
Wed, May 31
'
);
expect
(
component
.
$el
.
querySelectorAll
(
'
.deploy-info-text
'
),
).
toContainText
(
component
.
refText
(
reducedDeploymentData
[
0
]));
});
it
(
'
contains a link to the commit contents
'
,
()
=>
{
reducedDeploymentData
[
0
].
showDeploymentFlag
=
true
;
const
component
=
createComponent
({
showDeployInfo
:
true
,
deploymentData
:
reducedDeploymentData
,
graphHeight
:
300
,
graphWidth
:
440
,
graphHeightOffset
:
120
,
});
expect
(
component
.
$el
.
querySelectorAll
(
'
.deploy-info-text-link
'
)[
0
].
parentElement
.
getAttribute
(
'
xlink:href
'
),
).
not
.
toEqual
(
''
);
});
});
it
(
'
should contain a hidden gradient
'
,
()
=>
{
it
(
'
should contain a hidden gradient
'
,
()
=>
{
...
...
spec/javascripts/monitoring/graph_spec.js
View file @
d377aa54
...
@@ -4,6 +4,8 @@ import MonitoringMixins from '~/monitoring/mixins/monitoring_mixins';
...
@@ -4,6 +4,8 @@ import MonitoringMixins from '~/monitoring/mixins/monitoring_mixins';
import
eventHub
from
'
~/monitoring/event_hub
'
;
import
eventHub
from
'
~/monitoring/event_hub
'
;
import
{
deploymentData
,
convertDatesMultipleSeries
,
singleRowMetricsMultipleSeries
}
from
'
./mock_data
'
;
import
{
deploymentData
,
convertDatesMultipleSeries
,
singleRowMetricsMultipleSeries
}
from
'
./mock_data
'
;
const
tagsPath
=
'
http://test.host/frontend-fixtures/environments-project/tags
'
;
const
projectPath
=
'
http://test.host/frontend-fixtures/environments-project
'
;
const
createComponent
=
(
propsData
)
=>
{
const
createComponent
=
(
propsData
)
=>
{
const
Component
=
Vue
.
extend
(
Graph
);
const
Component
=
Vue
.
extend
(
Graph
);
...
@@ -25,6 +27,8 @@ describe('Graph', () => {
...
@@ -25,6 +27,8 @@ describe('Graph', () => {
classType
:
'
col-md-6
'
,
classType
:
'
col-md-6
'
,
updateAspectRatio
:
false
,
updateAspectRatio
:
false
,
deploymentData
,
deploymentData
,
tagsPath
,
projectPath
,
});
});
expect
(
component
.
$el
.
querySelector
(
'
.text-center
'
).
innerText
.
trim
()).
toBe
(
component
.
graphData
.
title
);
expect
(
component
.
$el
.
querySelector
(
'
.text-center
'
).
innerText
.
trim
()).
toBe
(
component
.
graphData
.
title
);
...
@@ -37,6 +41,8 @@ describe('Graph', () => {
...
@@ -37,6 +41,8 @@ describe('Graph', () => {
classType
:
'
col-md-6
'
,
classType
:
'
col-md-6
'
,
updateAspectRatio
:
false
,
updateAspectRatio
:
false
,
deploymentData
,
deploymentData
,
tagsPath
,
projectPath
,
});
});
const
transformedHeight
=
`
${
component
.
graphHeight
-
100
}
`
;
const
transformedHeight
=
`
${
component
.
graphHeight
-
100
}
`
;
...
@@ -50,6 +56,8 @@ describe('Graph', () => {
...
@@ -50,6 +56,8 @@ describe('Graph', () => {
classType
:
'
col-md-6
'
,
classType
:
'
col-md-6
'
,
updateAspectRatio
:
false
,
updateAspectRatio
:
false
,
deploymentData
,
deploymentData
,
tagsPath
,
projectPath
,
});
});
const
viewBoxArray
=
component
.
outerViewBox
.
split
(
'
'
);
const
viewBoxArray
=
component
.
outerViewBox
.
split
(
'
'
);
...
@@ -65,6 +73,8 @@ describe('Graph', () => {
...
@@ -65,6 +73,8 @@ describe('Graph', () => {
classType
:
'
col-md-6
'
,
classType
:
'
col-md-6
'
,
updateAspectRatio
:
false
,
updateAspectRatio
:
false
,
deploymentData
,
deploymentData
,
tagsPath
,
projectPath
,
});
});
spyOn
(
eventHub
,
'
$emit
'
);
spyOn
(
eventHub
,
'
$emit
'
);
...
@@ -81,6 +91,8 @@ describe('Graph', () => {
...
@@ -81,6 +91,8 @@ describe('Graph', () => {
classType
:
'
col-md-6
'
,
classType
:
'
col-md-6
'
,
updateAspectRatio
:
false
,
updateAspectRatio
:
false
,
deploymentData
,
deploymentData
,
tagsPath
,
projectPath
,
});
});
expect
(
component
.
yAxisLabel
).
toEqual
(
component
.
graphData
.
y_label
);
expect
(
component
.
yAxisLabel
).
toEqual
(
component
.
graphData
.
y_label
);
...
@@ -98,6 +110,8 @@ describe('Graph', () => {
...
@@ -98,6 +110,8 @@ describe('Graph', () => {
hoveredDate
:
new
Date
(
'
Sun Aug 27 2017 06:11:51 GMT-0500 (CDT)
'
),
hoveredDate
:
new
Date
(
'
Sun Aug 27 2017 06:11:51 GMT-0500 (CDT)
'
),
currentDeployXPos
:
null
,
currentDeployXPos
:
null
,
},
},
tagsPath
,
projectPath
,
});
});
component
.
positionFlag
();
component
.
positionFlag
();
...
...
spec/javascripts/monitoring/mock_data.js
View file @
d377aa54
...
@@ -2430,33 +2430,39 @@ export const deploymentData = [
...
@@ -2430,33 +2430,39 @@ export const deploymentData = [
id
:
111
,
id
:
111
,
iid
:
3
,
iid
:
3
,
sha
:
'
f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
sha
:
'
f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
commitUrl
:
'
http://test.host/frontend-fixtures/environments-project/commit/f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
ref
:
{
ref
:
{
name
:
'
master
'
name
:
'
master
'
},
},
created_at
:
'
2017-05-31T21:23:37.881Z
'
,
created_at
:
'
2017-05-31T21:23:37.881Z
'
,
tag
:
false
,
tag
:
false
,
tagUrl
:
'
http://test.host/frontend-fixtures/environments-project/tags/false
'
,
'
last?
'
:
true
'
last?
'
:
true
},
},
{
{
id
:
110
,
id
:
110
,
iid
:
2
,
iid
:
2
,
sha
:
'
f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
sha
:
'
f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
commitUrl
:
'
http://test.host/frontend-fixtures/environments-project/commit/f5bcd1d9dac6fa4137e2510b9ccd134ef2e84187
'
,
ref
:
{
ref
:
{
name
:
'
master
'
name
:
'
master
'
},
},
created_at
:
'
2017-05-30T20:08:04.629Z
'
,
created_at
:
'
2017-05-30T20:08:04.629Z
'
,
tag
:
false
,
tag
:
false
,
tagUrl
:
'
http://test.host/frontend-fixtures/environments-project/tags/false
'
,
'
last?
'
:
false
'
last?
'
:
false
},
},
{
{
id
:
109
,
id
:
109
,
iid
:
1
,
iid
:
1
,
sha
:
'
6511e58faafaa7ad2228990ec57f19d66f7db7c2
'
,
sha
:
'
6511e58faafaa7ad2228990ec57f19d66f7db7c2
'
,
commitUrl
:
'
http://test.host/frontend-fixtures/environments-project/commit/6511e58faafaa7ad2228990ec57f19d66f7db7c2
'
,
ref
:
{
ref
:
{
name
:
'
update2-readme
'
name
:
'
update2-readme
'
},
},
created_at
:
'
2017-05-30T17:42:38.409Z
'
,
created_at
:
'
2017-05-30T17:42:38.409Z
'
,
tag
:
false
,
tag
:
false
,
tagUrl
:
'
http://test.host/frontend-fixtures/environments-project/tags/false
'
,
'
last?
'
:
false
'
last?
'
:
false
}
}
];
];
...
...
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