summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/templates/dashboard/resource_utilization.html
blob: fb483d60c10c2770a62cbd58342fdc8ea5c89961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{% extends "base.html" %}
{% load staticfiles %}

{% block extrahead %}
    <!-- Morris Charts CSS -->
    <link href="{% static "bower_components/morrisjs/morris.css" %}" rel="stylesheet">

{% endblock extrahead %}


{% block content %}
    <div class="row">
        {% for resource, utilization in pods %}
            <div class="col-lg-3">
                <div class="panel panel-default">
                    <div class="panel-heading">
                        {{ resource.name }}
                    </div>
                    <div class="panel-body">
                        <div class="flot-chart">
                            <div class="flot-chart-content" id="{{ resource.slave.name }}"></div>
                        </div>
                    </div>
                </div>
            </div>
        {% endfor %}
    </div>

{% endblock content %}


{% block extrajs %}

    <!-- Flot Charts JavaScript -->
    <script src="{% static "bower_components/flot/excanvas.min.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.pie.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.resize.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.time.js" %}"></script>
    <script src="{% static "bower_components/flot.tooltip/js/jquery.flot.tooltip.min.js" %}"></script>

    <script type="text/javascript">
        $(document).ready(function () {
            {% for resource, utilization in pods %}
                $(function () {
                    var data = [{
                        label: "Offline",
                        data: {{ utilization.offline }},
                        color: '#d9534f'
                    }, {
                        label: "Online",
                        data: {{ utilization.online }},
                        color: '#5cb85c'
                    }, {
                        label: "Idle",
                        data: {{ utilization.idle }},
                        color: '#5bc0de'
                    }];

                    var plotObj = $.plot($("#{{ resource.slave.name }}"), data, {
                        series: {
                            pie: {
                                show: true
                            }
                        },
                        grid: {
                            hoverable: true
                        },
                        tooltip: true,
                        tooltipOpts: {
                            content: "%p.0%, %s", // show percentages, rounding to 2 decimal places
                            shifts: {
                                x: 20,
                                y: 0
                            },
                            defaultTheme: false
                        }
                    });

                });
            {% endfor %}

        });
    </script>

{% endblock extrajs %}