blob: be63ed1e5757fd5678007df6bc504dc14072310e [file] [log] [blame]
peustermdd559512017-09-21 16:29:34 +02001/*
2 Copyright (c) 2017 SONATA-NFV and Paderborn University
3 ALL RIGHTS RESERVED.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 Neither the name of the SONATA-NFV, Paderborn University
18 nor the names of its contributors may be used to endorse or promote
19 products derived from this software without specific prior written
20 permission.
21
22 This work has been performed in the framework of the SONATA project,
23 funded by the European Commission under Grant number 671517 through
24 the Horizon 2020 and 5G-PPP programmes. The authors would like to
25 acknowledge the contributions of their colleagues of the SONATA
26 partner consortium (www.sonata-nfv.eu).
27*/
peustermd8740022019-06-18 16:08:47 +020028var API_HOST = ""; // set to a remote url if dashboard is not served by REST API server
peustermf14b02a2017-01-12 19:08:34 +010029var ERROR_ALERT = false;
peusterm0289b602017-01-11 19:16:28 +010030var TIMESTAMP = 0;
peustermf14b02a2017-01-12 19:08:34 +010031var CONNECTED = false;
32var LATENESS_UPDATE_INTERVAL = 50;
peusterm0719f4e2019-06-18 16:55:26 +020033var DATA_UPDATE_INTERVAL = 1000 * 10; // 30 seconds
peustermf14b02a2017-01-12 19:08:34 +010034var LAST_UPDATE_TIMESTAMP_CONTAINER = 0;
35var LAST_UPDATE_TIMESTAMP_DATACENTER = 0;
peusterm0289b602017-01-11 19:16:28 +010036
37
peustermf14b02a2017-01-12 19:08:34 +010038function update_lateness_loop() {
39 lateness_datacenter= (Date.now() - LAST_UPDATE_TIMESTAMP_DATACENTER) / 1000;
peustermd8740022019-06-18 16:08:47 +020040 $("#lbl_lateness_datacenter").text("Lateness: " + Number(lateness_datacenter).toPrecision(2) + "s");
peustermf14b02a2017-01-12 19:08:34 +010041 lateness_container= (Date.now() - LAST_UPDATE_TIMESTAMP_CONTAINER) / 1000;
peustermd8740022019-06-18 16:08:47 +020042 $("#lbl_lateness_container").text("Lateness: " + Number(lateness_container).toPrecision(2) + "s");
peustermf14b02a2017-01-12 19:08:34 +010043 // loop while connected
44 if(CONNECTED)
45 setTimeout(update_lateness_loop, LATENESS_UPDATE_INTERVAL)
peusterm0289b602017-01-11 19:16:28 +010046}
47
peusterm0289b602017-01-11 19:16:28 +010048
49function errorAjaxConnection()
50{
51 // only do once
52 if(!ERROR_ALERT)
53 {
54 ERROR_ALERT = true;
55 // show message
peustermd8740022019-06-18 16:08:47 +020056 //alert("API request failed. Is the emulator running?", function() {
57 // // callback
58 // ERROR_ALERT = false;
59 //});
peusterm0289b602017-01-11 19:16:28 +010060 }
peustermd8740022019-06-18 16:08:47 +020061 CONNECTED = false;
62 console.error("API request failed. Is the emulator running?")
peusterm0289b602017-01-11 19:16:28 +010063}
64
peustermf14b02a2017-01-12 19:08:34 +010065
66function update_table_datacenter(data)
peusterm0289b602017-01-11 19:16:28 +010067{
peustermf14b02a2017-01-12 19:08:34 +010068 console.debug(data)
69 // clear table
70 $("#table_datacenter").empty();
71 // header
stevenvanrossemba51a812017-04-23 01:22:59 +020072 $("#table_datacenter").append('<tr class="tbl-head"><td>Label</td><td>Int. Name</td><td>Switch</td><td>Num. Containers</td><td>VNFs</td></tr>');
peustermf14b02a2017-01-12 19:08:34 +010073 // fill table
74 $.each(data, function(i, item) {
75 var row_str = "";
76 row_str += '<tr class="tbl-row clickable_row" id="datacenter_row_' + i +'">';
peustermd8740022019-06-18 16:08:47 +020077 row_str += '<td>' + item.label + '</td>';
peustermf14b02a2017-01-12 19:08:34 +010078 row_str += '<td>' + item.internalname + '</td>';
79 row_str += '<td>' + item.switch + '</td>';
80 row_str += '<td><span class="badge">' + item.n_running_containers + '</span></td>';
stevenvanrossemba51a812017-04-23 01:22:59 +020081 //row_str += '<td><span class="badge">' + Object.keys(item.metadata).length + '</span></td>';
82 row_str += '<td>' + item.vnf_list + '</span></td>';
peustermf14b02a2017-01-12 19:08:34 +010083 row_str += '<tr>';
84 $("#table_datacenter").append(row_str);
85 });
86 $("#lbl_datacenter_count").text(data.length);
87 // update lateness counter
88 LAST_UPDATE_TIMESTAMP_DATACENTER = Date.now();
89}
90
91
92function update_table_container(data)
93{
94 console.debug(data)
95 // clear table
96 $("#table_container").empty();
97 // header
peustermd8740022019-06-18 16:08:47 +020098 $("#table_container").append('<tr class="tbl-head"><td>Datacenter</td><td>Container</td><td>Image</td><td>docker0</td><td>Status</td></tr>');
peustermf14b02a2017-01-12 19:08:34 +010099 // fill table
100 $.each(data, function(i, item) {
101 var row_str = "";
peustermd8740022019-06-18 16:08:47 +0200102 row_str += '<tr class="tbl-row clickable_row" id="container_row_' + i +'">';
peustermf14b02a2017-01-12 19:08:34 +0100103 row_str += '<td>' + item[1].datacenter + '</td>';
104 row_str += '<td>' + item[0] + '</td>';
105 row_str += '<td>' + item[1].image + '</td>';
peustermd8740022019-06-18 16:08:47 +0200106 row_str += '<td><code>' + item[1].docker_network + '<code></td>';
107 if(item[1].state.Status == "running")
108 row_str += '<td><span class="label label-success">running</span></td>';
109 else
110 row_str += '<td><span class="label label-danger">stopped</span></td>';
111 row_str += '<tr>';
112 $("#table_container").append(row_str);
peustermf14b02a2017-01-12 19:08:34 +0100113 });
114 $("#lbl_container_count").text(data.length);
115 // update lateness counter
116 LAST_UPDATE_TIMESTAMP_CONTAINER = Date.now();
117}
118
119
120function fetch_datacenter()
121{
122 // do HTTP request and trigger gui update on success
123 var request_url = API_HOST + "/restapi/datacenter";
124 console.debug("fetching from: " + request_url);
125 $.getJSON(request_url, update_table_datacenter);
126}
127
128
129function fetch_container()
130{
131 // do HTTP request and trigger gui update on success
132 var request_url = API_HOST + "/restapi/compute";
133 console.debug("fetching from: " + request_url);
134 $.getJSON(request_url, update_table_container);
135}
136
137
138function fetch_loop()
139{
140 // only fetch if we are connected
141 if(!CONNECTED)
142 return;
143
144 // download data
145 fetch_datacenter();
146 fetch_container();
147
148 // loop while connected
149 if(CONNECTED)
150 setTimeout(fetch_loop, DATA_UPDATE_INTERVAL);
151}
152
153
154function connect()
155{
156 console.info("connect()");
157 // get host address
peustermd8740022019-06-18 16:08:47 +0200158 //API_HOST = "http://" + $("#text_api_host").val();
peustermf14b02a2017-01-12 19:08:34 +0100159 console.debug("API address: " + API_HOST);
160 // reset data
161 LAST_UPDATE_TIMESTAMP_DATACENTER = Date.now();
162 LAST_UPDATE_TIMESTAMP_CONTAINER = Date.now();
163 CONNECTED = true;
164 // restart lateness counter
165 update_lateness_loop();
166 // restart data fetch loop
167 fetch_loop();
peusterm0289b602017-01-11 19:16:28 +0100168}
169
170
171$(document).ready(function(){
172 console.info("document ready");
peustermf14b02a2017-01-12 19:08:34 +0100173 // setup global connection error handling
peustermd8740022019-06-18 16:08:47 +0200174
peustermf14b02a2017-01-12 19:08:34 +0100175 $.ajaxSetup({
176 "error": errorAjaxConnection
177 });
peusterm0289b602017-01-11 19:16:28 +0100178
peustermd8740022019-06-18 16:08:47 +0200179 // connect
180 connect();
stevenvanrossemba51a812017-04-23 01:22:59 +0200181
peustermf14b02a2017-01-12 19:08:34 +0100182 // additional refresh on window focus
peusterm0289b602017-01-11 19:16:28 +0100183 $(window).focus(function () {
peustermf14b02a2017-01-12 19:08:34 +0100184 if(CONNECTED)
185 {
186 fetch_datacenter();
187 fetch_container();
188 }
peusterm0289b602017-01-11 19:16:28 +0100189 });
190
191});