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
78d3f94c
Commit
78d3f94c
authored
May 07, 2019
by
Adriel Santiago
Committed by
Clement Ho
May 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add custom metrics form to dashboard
Use existing form to allow users to add custom metrics via the dashboard
parent
f6ca3b1a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
150 additions
and
60 deletions
+150
-60
app/assets/javascripts/monitoring/components/dashboard.vue
app/assets/javascripts/monitoring/components/dashboard.vue
+123
-45
app/assets/stylesheets/framework/common.scss
app/assets/stylesheets/framework/common.scss
+11
-13
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+8
-0
locale/gitlab.pot
locale/gitlab.pot
+3
-0
spec/javascripts/monitoring/dashboard_spec.js
spec/javascripts/monitoring/dashboard_spec.js
+5
-2
No files found.
app/assets/javascripts/monitoring/components/dashboard.vue
View file @
78d3f94c
<
script
>
import
{
GlButton
,
GlDropdown
,
GlDropdownItem
,
GlLink
}
from
'
@gitlab/ui
'
;
import
{
GlButton
,
GlDropdown
,
GlDropdownItem
,
GlModal
,
GlModalDirective
,
GlLink
,
}
from
'
@gitlab/ui
'
;
import
_
from
'
underscore
'
;
import
{
s__
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
...
...
@@ -27,8 +34,11 @@ export default {
GlDropdown
,
GlDropdownItem
,
GlLink
,
GlModal
,
},
directives
:
{
GlModalDirective
,
},
props
:
{
externalDashboardPath
:
{
type
:
String
,
...
...
@@ -102,6 +112,19 @@ export default {
type
:
Boolean
,
required
:
true
,
},
customMetricsAvailable
:
{
type
:
Boolean
,
required
:
false
,
default
:
false
,
},
customMetricsPath
:
{
type
:
String
,
required
:
true
,
},
validateQueryPath
:
{
type
:
String
,
required
:
true
,
},
},
data
()
{
return
{
...
...
@@ -111,8 +134,14 @@ export default {
elWidth
:
0
,
selectedTimeWindow
:
''
,
selectedTimeWindowKey
:
''
,
formIsValid
:
null
,
};
},
computed
:
{
canAddMetrics
()
{
return
this
.
customMetricsAvailable
&&
this
.
customMetricsPath
.
length
;
},
},
created
()
{
this
.
service
=
new
MonitoringService
({
metricsEndpoint
:
this
.
metricsEndpoint
,
...
...
@@ -193,11 +222,20 @@ export default {
this
.
state
=
'
unableToConnect
'
;
});
},
hideAddMetricModal
()
{
this
.
$refs
.
addMetricModal
.
hide
();
},
onSidebarMutation
()
{
setTimeout
(()
=>
{
this
.
elWidth
=
this
.
$el
.
clientWidth
;
},
sidebarAnimationDuration
);
},
setFormValidity
(
isValid
)
{
this
.
formIsValid
=
isValid
;
},
submitCustomMetricsForm
()
{
this
.
$refs
.
customMetricsForm
.
submit
();
},
activeTimeWindow
(
key
)
{
return
this
.
timeWindows
[
key
]
===
this
.
selectedTimeWindow
;
},
...
...
@@ -205,11 +243,16 @@ export default {
return
`?time_window=
${
key
}
`
;
},
},
addMetric
:
{
title
:
s__
(
'
Metrics|Add metric
'
),
modalId
:
'
add-metric
'
,
},
};
</
script
>
<
template
>
<div
v-if=
"!showEmptyState"
class=
"prometheus-graphs prepend-top-default"
>
<div
v-if=
"!showEmptyState"
class=
"prometheus-graphs"
>
<div
class=
"gl-p-3 border-bottom bg-gray-light d-flex justify-content-between"
>
<div
v-if=
"environmentsEndpoint"
class=
"dropdowns d-flex align-items-center justify-content-between"
...
...
@@ -225,7 +268,6 @@ export default {
<gl-dropdown-item
v-for=
"environment in store.environmentsData"
:key=
"environment.id"
:href=
"environment.metrics_path"
:active=
"environment.name === currentEnvironmentName"
active-class=
"is-active"
>
{{
environment
.
name
}}
</gl-dropdown-item
...
...
@@ -247,9 +289,44 @@ export default {
>
</gl-dropdown>
</div>
</div>
<div
class=
"d-flex"
>
<div
v-if=
"isEE && canAddMetrics"
>
<gl-button
v-gl-modal-directive=
"$options.addMetric.modalId"
class=
"js-add-metric-button text-success border-success"
>
{{
$options
.
addMetric
.
title
}}
</gl-button>
<gl-modal
ref=
"addMetricModal"
:modal-id=
"$options.addMetric.modalId"
:title=
"$options.addMetric.title"
>
<form
ref=
"customMetricsForm"
:action=
"customMetricsPath"
method=
"post"
>
<custom-metrics-form-fields
:validate-query-path=
"validateQueryPath"
form-operation=
"post"
@
formValidation=
"setFormValidity"
/>
</form>
<div
slot=
"modal-footer"
>
<gl-button
@
click=
"hideAddMetricModal"
>
{{
__
(
'
Cancel
'
)
}}
</gl-button>
<gl-button
:disabled=
"!formIsValid"
variant=
"success"
@
click=
"submitCustomMetricsForm"
>
{{
__
(
'
Save changes
'
)
}}
</gl-button>
</div>
</gl-modal>
</div>
<gl-button
v-if=
"externalDashboardPath.length"
class=
"js-external-dashboard-link
"
class=
"js-external-dashboard-link prepend-left-8
"
variant=
"primary"
:href=
"externalDashboardPath"
>
...
...
@@ -257,6 +334,7 @@ export default {
<icon
name=
"external-link"
/>
</gl-button>
</div>
</div>
<graph-group
v-for=
"(groupData, index) in store.groups"
:key=
"index"
...
...
app/assets/stylesheets/framework/common.scss
View file @
78d3f94c
...
...
@@ -48,6 +48,10 @@
color
:
$brand-info
;
}
.bg-gray-light
{
background-color
:
$gray-light
;
}
.text-break-word
{
word-break
:
break-all
;
}
...
...
@@ -446,19 +450,13 @@ img.emoji {
}
/** COMMON SPACING CLASSES **/
.gl-pl-0
{
padding-left
:
0
;
}
.gl-pl-1
{
padding-left
:
#{
0
.5
*
$grid-size
}
;
}
.gl-pl-2
{
padding-left
:
$grid-size
;
}
.gl-pl-3
{
padding-left
:
#{
2
*
$grid-size
}
;
}
.gl-pl-4
{
padding-left
:
#{
3
*
$grid-size
}
;
}
.gl-pl-5
{
padding-left
:
#{
4
*
$grid-size
}
;
}
.gl-pr-0
{
padding-right
:
0
;
}
.gl-pr-1
{
padding-right
:
#{
0
.5
*
$grid-size
}
;
}
.gl-pr-2
{
padding-right
:
$grid-size
;
}
.gl-pr-3
{
padding-right
:
#{
2
*
$grid-size
}
;
}
.gl-pr-4
{
padding-right
:
#{
3
*
$grid-size
}
;
}
.gl-pr-5
{
padding-right
:
#{
4
*
$grid-size
}
;
}
@each
$index
,
$padding
in
$spacing-scale
{
#{
'.gl-p-
#{
$index
}
'
}
{
padding
:
$padding
;
}
#{
'.gl-pl-
#{
$index
}
'
}
{
padding-left
:
$padding
;
}
#{
'.gl-pr-
#{
$index
}
'
}
{
padding-right
:
$padding
;
}
#{
'.gl-pt-
#{
$index
}
'
}
{
padding-top
:
$padding
;
}
#{
'.gl-pb-
#{
$index
}
'
}
{
padding-bottom
:
$padding
;
}
}
/**
* Removes browser specific clear icon from input fields in
...
...
app/assets/stylesheets/framework/variables.scss
View file @
78d3f94c
...
...
@@ -11,6 +11,14 @@ $default-transition-duration: 0.15s;
$contextual-sidebar-width
:
220px
;
$contextual-sidebar-collapsed-width
:
50px
;
$toggle-sidebar-height
:
48px
;
$spacing-scale
:
(
0
:
0
,
1
:
#{
0
.5
*
$grid-size
}
,
2
:
$grid-size
,
3
:
#{
2
*
$grid-size
}
,
4
:
#{
3
*
$grid-size
}
,
5
:
#{
4
*
$grid-size
}
);
/*
* Color schema
...
...
locale/gitlab.pot
View file @
78d3f94c
...
...
@@ -5911,6 +5911,9 @@ msgstr ""
msgid "Metrics for environment"
msgstr ""
msgid "Metrics|Add metric"
msgstr ""
msgid "Metrics|Check out the CI/CD documentation on deploying to an environment"
msgstr ""
...
...
spec/javascripts/monitoring/dashboard_spec.js
View file @
78d3f94c
...
...
@@ -20,6 +20,9 @@ const propsData = {
emptyUnableToConnectSvgPath
:
'
/path/to/unable-to-connect.svg
'
,
environmentsEndpoint
:
'
/root/hello-prometheus/environments/35
'
,
currentEnvironmentName
:
'
production
'
,
customMetricsAvailable
:
false
,
customMetricsPath
:
''
,
validateQueryPath
:
''
,
};
export
default
propsData
;
...
...
@@ -163,7 +166,7 @@ describe('Dashboard', () => {
});
});
it
(
'
renders the environments dropdown with a single
is-
active element
'
,
done
=>
{
it
(
'
renders the environments dropdown with a single active element
'
,
done
=>
{
const
component
=
new
DashboardComponent
({
el
:
document
.
querySelector
(
'
.prometheus-graphs
'
),
propsData
:
{
...
...
@@ -178,7 +181,7 @@ describe('Dashboard', () => {
setTimeout
(()
=>
{
const
dropdownItems
=
component
.
$el
.
querySelectorAll
(
'
.js-environments-dropdown .dropdown-item
.is-active
'
,
'
.js-environments-dropdown .dropdown-item
[active="true"]
'
,
);
expect
(
dropdownItems
.
length
).
toEqual
(
1
);
...
...
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