Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3588b222
authored
Mar 18, 2014
by
Oláh István Gergely
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: add monitoring info to node list
parent
6b0da54a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
6 deletions
+59
-6
circle/dashboard/tables.py
+4
-4
circle/dashboard/templates/dashboard/node-list.html
+2
-2
circle/dashboard/templates/dashboard/node-list/column-monitor.html
+53
-0
No files found.
circle/dashboard/tables.py
View file @
3588b222
...
...
@@ -76,12 +76,12 @@ class NodeListTable(Table):
number_of_VMs
=
TemplateColumn
(
template_name
=
'dashboard/node-list/column-vm.html'
,
attrs
=
{
'th'
:
{
'class'
:
'node-list-table-
adm
in'
}},
attrs
=
{
'th'
:
{
'class'
:
'node-list-table-
th
in'
}},
)
admin
=
TemplateColumn
(
template_name
=
'dashboard/node-list/column-
admin
.html'
,
attrs
=
{
'th'
:
{
'class'
:
'node-list-table-
admin
'
}},
monitor
=
TemplateColumn
(
template_name
=
'dashboard/node-list/column-
monitor
.html'
,
attrs
=
{
'th'
:
{
'class'
:
'node-list-table-
monitor
'
}},
)
details
=
TemplateColumn
(
...
...
circle/dashboard/templates/dashboard/node-list.html
View file @
3588b222
...
...
@@ -57,8 +57,8 @@
width
:
10px
;
}
.node-list-table-
admin
{
width
:
13
0px
;
.node-list-table-
monitor
{
width
:
20
0px
;
}
</style>
{% endblock %}
...
...
circle/dashboard/templates/dashboard/node-list/column-monitor.html
0 → 100644
View file @
3588b222
{%load sizefieldtags %}
{% load i18n %}
<i
class=
"icon-gears"
></i>
{% trans "CPU" %}
<div
class=
"progress pull-right"
>
<div
class=
"progress-bar progress-bar-success"
role=
"progressbar"
aria-valuenow=
"{{ record.cpu_usage }}"
aria-valuemin=
"0"
aria-valuemax=
"1"
style=
"width: 80%"
>
<span
class=
"progress-bar-text"
>
{{ record.cpu_usage|floatformat:1 }} %
</span>
</div>
</div>
<br>
<i
class=
"icon-ticket"
></i>
{% trans "Memory" %}
<div
class=
"progress pull-right"
>
<div
class=
"progress-bar progress-bar-info"
role=
"progressbar"
aria-valuenow=
"{{ record.ram_usage}}"
aria-valuemin=
"0"
aria-valuemax=
"1"
>
<span
class=
"progress-bar-text"
>
{% widthratio record.byte_ram_usage 1048576 1 %} MB
</span>
</div>
</div>
{% block "extra-js" %}
<script>
$
(
'.progress-bar'
).
each
(
function
()
{
var
min
=
$
(
this
).
attr
(
'aria-valuemin'
);
var
max
=
$
(
this
).
attr
(
'aria-valuemax'
);
var
now
=
$
(
this
).
attr
(
'aria-valuenow'
);
var
siz
=
(
now
-
min
)
*
100
/
(
max
-
min
);
$
(
this
).
css
(
'width'
,
siz
+
'%'
);
});
</script>
{% endblock %}
<style>
.progress
{
position
:
relative
;
width
:
100px
;
height
:
12px
;
margin-bottom
:
0px
;
margin-top
:
5px
;
}
.progress-bar-text
{
position
:
absolute
;
display
:
block
;
width
:
100%
;
color
:
white
;
/* outline */
text-shadow
:
-1px
-1px
0
#000
,
1px
-1px
0
#000
,
-1px
1px
0
#000
,
1px
1px
0
#000
;
font-size
:
10px
;
}
</style>
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