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
feb76f63
Commit
feb76f63
authored
Jan 30, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-01-30
parents
c61a917f
364395b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
app/assets/javascripts/monitoring/components/dashboard.vue
app/assets/javascripts/monitoring/components/dashboard.vue
+7
-1
app/assets/javascripts/monitoring/components/empty_state.vue
app/assets/javascripts/monitoring/components/empty_state.vue
+9
-2
No files found.
app/assets/javascripts/monitoring/components/dashboard.vue
View file @
feb76f63
...
...
@@ -76,7 +76,13 @@
.
then
(
data
=>
this
.
store
.
storeDeploymentData
(
data
))
.
catch
(()
=>
new
Flash
(
'
Error getting deployment information.
'
)),
])
.
then
(()
=>
{
this
.
showEmptyState
=
false
;
})
.
then
(()
=>
{
if
(
this
.
store
.
groups
.
length
<
1
)
{
this
.
state
=
'
noData
'
;
return
;
}
this
.
showEmptyState
=
false
;
})
.
catch
(()
=>
{
this
.
state
=
'
unableToConnect
'
;
});
},
...
...
app/assets/javascripts/monitoring/components/empty_state.vue
View file @
feb76f63
...
...
@@ -34,16 +34,23 @@
svgUrl
:
this
.
emptyGettingStartedSvgPath
,
title
:
'
Get started with performance monitoring
'
,
description
:
`Stay updated about the performance and health
of your environment by configuring Prometheus to monitor your deployments.`
,
of your environment by configuring Prometheus to monitor your deployments.`
,
buttonText
:
'
Configure Prometheus
'
,
},
loading
:
{
svgUrl
:
this
.
emptyLoadingSvgPath
,
title
:
'
Waiting for performance data
'
,
description
:
`Creating graphs uses the data from the Prometheus server.
If this takes a long time, ensure that data is available.`
,
If this takes a long time, ensure that data is available.`
,
buttonText
:
'
View documentation
'
,
},
noData
:
{
svgUrl
:
this
.
emptyUnableToConnectSvgPath
,
title
:
'
No data found
'
,
description
:
`You are connected to the Prometheus server, but there is currently
no data to display.`
,
buttonText
:
'
Configure Prometheus
'
,
},
unableToConnect
:
{
svgUrl
:
this
.
emptyUnableToConnectSvgPath
,
title
:
'
Unable to connect to Prometheus server
'
,
...
...
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