BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
4809ded8
Commit
4809ded8
authored
Aug 29, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor template formatting according to guidelines
parent
499b6406
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
52 deletions
+32
-52
monitoring.vue
app/assets/javascripts/monitoring/components/monitoring.vue
+11
-15
monitoring_row.vue
...sets/javascripts/monitoring/components/monitoring_row.vue
+3
-3
monitoring_state.vue
...ts/javascripts/monitoring/components/monitoring_state.vue
+18
-34
No files found.
app/assets/javascripts/monitoring/components/monitoring.vue
View file @
4809ded8
...
...
@@ -118,26 +118,22 @@
},
};
</
script
>
<
template
>
<div
class=
"prometheus-graphs"
v-if=
"!showEmptyState"
>
<div
<div
v-if=
"!showEmptyState"
class=
"prometheus-graphs"
>
<div
class=
"row"
v-for=
"(groupData, index) in store.groups"
:key=
"index"
>
<div
class=
"col-md-12"
>
<div
class=
"panel panel-default prometheus-panel"
>
<div
class=
"panel-heading"
>
:key=
"index"
>
<div
class=
"col-md-12"
>
<div
class=
"panel panel-default prometheus-panel"
>
<div
class=
"panel-heading"
>
<h4>
{{
groupData
.
group
}}
</h4>
</div>
<div
class=
"panel-body"
>
<div
class=
"panel-body"
>
<monitoring-row
v-for=
"(row, index) in groupData.metrics"
v-for=
"(row, index) in groupData.metrics"
:key=
"index"
:row-data=
"row"
:update-aspect-ratio=
"updateAspectRatio"
...
...
@@ -148,7 +144,7 @@
</div>
</div>
</div>
<monitoring-state
<monitoring-state
:selected-state=
"state"
:documentation-path=
"documentationPath"
:settings-path=
"settingsPath"
...
...
app/assets/javascripts/monitoring/components/monitoring_row.vue
View file @
4809ded8
...
...
@@ -26,11 +26,11 @@
},
};
</
script
>
<
template
>
<div
class=
"prometheus-row row"
>
<div
class=
"prometheus-row row"
>
<monitoring-column
v-for=
"(column, index) in rowData"
v-for=
"(column, index) in rowData"
:column-data=
"column"
:class-type=
"bootstrapClass"
:key=
"index"
...
...
app/assets/javascripts/monitoring/components/monitoring_state.vue
View file @
4809ded8
...
...
@@ -62,49 +62,33 @@
},
};
</
script
>
<
template
>
<div
class=
"prometheus-state"
>
<div
class=
"row"
>
<div
class=
"col-md-4 col-md-offset-4 state-svg"
v-html=
"currentState.svg"
>
</div>
<div
class=
"prometheus-state"
>
<div
class=
"row"
>
<div
class=
"col-md-4 col-md-offset-4 state-svg"
v-html=
"currentState.svg"
></div>
</div>
<div
class=
"row"
>
<div
class=
"col-md-6 col-md-offset-3"
>
<h4
class=
"text-center state-title"
>
<div
class=
"row"
>
<div
class=
"col-md-6 col-md-offset-3"
>
<h4
class=
"text-center state-title"
>
{{
currentState
.
title
}}
</h4>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-md-6 col-md-offset-3"
>
<div
class=
"description-text text-center state-description"
>
{{
currentState
.
description
}}
<a
:href=
"settingsPath"
v-if=
"showButtonDescription"
>
Prometheus server
</a>
<div
class=
"row"
>
<div
class=
"col-md-6 col-md-offset-3"
>
<div
class=
"description-text text-center state-description"
>
{{
currentState
.
description
}}
<a
v-if=
"showButtonDescription"
:href=
"settingsPath"
>
Prometheus server
</a>
</div>
</div>
</div>
<div
class=
"row state-button-section"
>
<div
class=
"col-md-4 col-md-offset-4 text-center state-button"
>
<a
class=
"btn btn-success"
:href=
"buttonPath"
>
{{
currentState
.
buttonText
}}
<div
class=
"row state-button-section"
>
<div
class=
"col-md-4 col-md-offset-4 text-center state-button"
>
<a
class=
"btn btn-success"
:href=
"buttonPath"
>
{{
currentState
.
buttonText
}}
</a>
</div>
</div>
...
...
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