blob: 56a6e6d211eafde2265bd0f5fab651b79d55687f [file] [log] [blame]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001/*
2# ============LICENSE_START===============================================
3# Copyright (C) 2020 Nordix Foundation. 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# ============LICENSE_END=================================================
17#
18*/
19
20// Sim mon server - query the agent and the simulators for counters and other data
21// Presents a web page on localhost:9999/mon
22
23var LOCALHOST="http://127.0.0.1:"
24var MRSTUB_PORT="3905"
25var AGENT_PORT="8081"
26var CR_PORT="8090"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020027var ECS_PORT="8083"
28var PRODSTUB_PORT="8092"
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +010029var RC_PORT="8680"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020030
BjornMagnussonXA80a92002020-03-19 14:31:06 +010031var http = require('http');
32
33var express = require('express');
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010034const { POINT_CONVERSION_HYBRID } = require('constants')
BjornMagnussonXA80a92002020-03-19 14:31:06 +010035var app = express();
36var fieldSize=32;
37
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020038var flagstore={}
BjornMagnussonXA80a92002020-03-19 14:31:06 +010039
40//I am alive
41app.get("/",function(req, res){
42 res.send("ok");
43})
44
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020045//Get parameter value from other server
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020046function getSimCtr(url, index, cb) {
BjornMagnussonXA80a92002020-03-19 14:31:06 +010047 var data = '';
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020048
BjornMagnussonXA72667f12020-04-24 09:20:18 +020049 try {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020050 http.get(url, (resp) => {
BjornMagnussonXA72667f12020-04-24 09:20:18 +020051 // A chunk of data has been recieved.
52 resp.on('data', (chunk) => {
53 data += chunk;
54 });
BjornMagnussonXA80a92002020-03-19 14:31:06 +010055
BjornMagnussonXA72667f12020-04-24 09:20:18 +020056 // The whole response has been received.
57 resp.on('end', () => {
58 var code=resp.statusCode
59 if (code > 199 && code < 300) {
60 cb(data, index);
61 } else {
62 cb("not found", index);
63 }
64 });
BjornMagnussonXA80a92002020-03-19 14:31:06 +010065
BjornMagnussonXA72667f12020-04-24 09:20:18 +020066 }).on("error", (err) => {
67 console.log("Error: " + err.message);
68 cb("no response", index);
69 });
70 } catch(err) {
71 cb("no response", index);
72 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010073}
BjornMagnussonXA80a92002020-03-19 14:31:06 +010074
75
76//Format a comma separated list of data to a html-safe string with fixed fieldsizes
77function formatDataRow(commaList) {
78 var str = "";
79 var tmp=commaList.split(',');
80 for(var i=0;i<tmp.length;i++) {
81 var data=tmp[i];
82 var len = fieldSize-data.length;
83 while(len>0) {
84 data = data+"&nbsp;";
85 len--;
86 }
87 str=str+data+"&nbsp;&nbsp;&nbsp;";
88 }
89 return str;
90}
91
92//Format a comma separated list of ids to a html-safe string with fixed fieldsizes
93function formatIdRow(commaList) {
94 var str = "";
95 var tmp=commaList.split(',');
96 for(var i=0;i<tmp.length;i++) {
97 tmp[i] = tmp[i].trim();
98 var data="&lt"+tmp[i]+"&gt";
99 var len = fieldSize+4-data.length;
100 while(len>0) {
101 data = data+"&nbsp;";
102 len--;
103 }
104 str=str+data+"&nbsp;&nbsp;&nbsp;";
105 }
106 return str;
107}
108
109//Format a list of ids to a html-safe string in compact format
110function formatIdRowCompact(commaList) {
111 if (commaList == undefined) {
112 commaList= "";
113 }
114 var str = "";
115 var tmp=commaList.split(',');
116 for(var i=0;i<tmp.length;i++) {
117 tmp[i] = tmp[i].trim();
118 var data="&lt"+tmp[i]+"&gt";
119 str=str+data+"&nbsp;";
120 }
121 return str;
122}
123
124//Pad a string upto a certain size using a pad string
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100125function padding(val, size, pad) {
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100126 var s=""+val;
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100127 for(var i=s.length;i<size;i++) {
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100128 s=s+pad
129 }
130 return s;
131}
132
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200133//Function to check if the previous call has returned, if so return true, if not return false
134//For preventing multiple calls to slow containers.
135function checkFunctionFlag(flag) {
136 if (flagstore.hasOwnProperty(flag)) {
137 if (flagstore[flag] == 0) {
138 flagstore[flag]=1
139 return true
140 } else if (flagstore[flag] > 10) {
141 //Reset flag after ten attempts
142 console.log("Force release flag "+flag)
143 flagstore[flag]=1
144 return true
145 } else {
146 //Previous call not returned
147 console.log("Flag not available "+flag)
148 flagstore[flag]=flagstore[flag]+1
149 return false
150 }
151 } else {
152 flagstore[flag]=1
153 return true
154 }
155}
156//Clear flag for parameter
157function clearFlag(flag) {
158 flagstore[flag]=0
159}
160
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100161//Status variables, for parameters values fetched from other simulators
162var mr1="", mr2="", mr3="", mr4="", mr5="", mr6="";
163
164//Status variables for agent
165var ag1=""
166var ag2=""
167var ag3=""
168var ag4=""
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200169var ag5=""
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100170
171//Status variables for callback receiver
172var cr1=""
173var cr2=""
174var cr3=""
175
176
177//Container names and ports of the ric simulator
178var simnames=[]
179var simports=[]
180
181//Status variables for each ric simulator
182var simvar1=[]
183var simvar2=[]
184var simvar3=[]
185var simvar4=[]
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200186var simvar5=[]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200187var simvar6=[]
188
189//Status variables, for parameters values fetched from ecs
190var ecs1="", ecs2="", ecs3="", ecs4="", ecs_types="-", ecs_producers="-";
191var ecs_producer_arr=new Array(0)
192var ecs_producer_type_arr=new Array(0)
193var ecs_producer_jobs_arr=new Array(0)
194var ecs_producer_status_arr=new Array(0)
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100195var ecs_jobs=new Array(0)
196var ecs_job_status=new Array(0)
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200197
198//Status variables, for parameters values fetched from prodstub
199var ps2="", ps3="", ps4="", ps_types="-", ps_producers="-";
200var ps_producer_type_arr=new Array(0)
201var ps_producer_jobs_arr=new Array(0)
202var ps_producer_delivery_arr=new Array(0)
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100203
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100204//Full CR DB
205var cr_db={}
206
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100207//Counts the number of get request for the html page
208var getCtr=0
209
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200210var refreshCount_pol=-1
211
212var refreshCount_ecs=-1
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200213
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100214var refreshCount_cr=-1
215
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100216var refreshCount_rc=-1
217
BjornMagnussonXAad047782020-06-08 15:54:11 +0200218var ricbasename="ricsim"
219
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100220var rc_services=""
221
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100222var pmsprefix=""
223
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200224function fetchAllMetrics_pol() {
225
226 console.log("Fetching policy metrics " + refreshCount_pol)
227
228 if (refreshCount_pol < 0) {
229 refreshCount_pol = -1
230 return
231 } else {
232 refreshCount_pol = refreshCount_pol - 1
233 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100234 setTimeout(() => {
235
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100236 if (getCtr%3 == 0) {
237 //Extract the port numbers from the running simulators, for every 3 calls
238 const { exec } = require('child_process');
BjornMagnussonXAad047782020-06-08 15:54:11 +0200239 exec('docker ps --filter "name='+ricbasename+'" --format "{{.Names}} {{.Ports}}" | sed s/0.0.0.0:// | cut -d \'>\' -f1 | sed \'s/[[-]]*$//\'', (err, stdout, stderr) => {
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100240
241 var simulators = ""
242 simulators=`${stdout}`.replace(/(\r\n|\n|\r)/gm," ");
243 simulators=simulators.trim();
244 var sims=simulators.split(" ")
245 simnames=[]
246 simports=[]
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100247 for(var i=0;i<sims.length;i=i+2) {
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100248 simnames[i/2]=sims[i]
249 simports[i/2]=sims[i+1]
250 }
251 });
252 }
253 getCtr=getCtr+1
254
255 //Get metric values from the simulators
256 for(var index=0;index<simnames.length;index++) {
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200257
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200258 if (checkFunctionFlag("simvar1_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100259 getSimCtr(LOCALHOST+simports[index]+"/counter/num_instances", index, function(data, idx) {
260 simvar1[idx] = data;
261 clearFlag("simvar1_"+idx)
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200262 });
BjornMagnussonXA72667f12020-04-24 09:20:18 +0200263 }
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200264 if (checkFunctionFlag("simvar2_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100265 getSimCtr(LOCALHOST+simports[index]+"/counter/num_types", index, function(data,idx) {
266 simvar2[idx] = data;
267 clearFlag("simvar2_"+idx)
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200268 });
269 }
270 if (checkFunctionFlag("simvar3_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100271 getSimCtr(LOCALHOST+simports[index]+"/policytypes", index, function(data,idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200272 data=data.replace(/\[/g,'');
273 data=data.replace(/\]/g,'');
274 data=data.replace(/ /g,'');
275 data=data.replace(/\"/g,'');
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100276 simvar3[idx] = data;
277 clearFlag("simvar3_"+idx)
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200278 });
279 }
280 if (checkFunctionFlag("simvar4_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100281 getSimCtr(LOCALHOST+simports[index]+"/counter/interface", index, function(data,idx) {
282 simvar4[idx] = data;
283 clearFlag("simvar4_"+idx)
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200284 });
285 }
286 if (checkFunctionFlag("simvar5_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100287 getSimCtr(LOCALHOST+simports[index]+"/counter/remote_hosts", index, function(data,idx) {
288 simvar5[idx] = data;
289 clearFlag("simvar5_"+idx)
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200290 });
291 }
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200292 if (checkFunctionFlag("simvar6_"+index)) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100293 getSimCtr(LOCALHOST+simports[index]+"/counter/datadelivery", index, function(data,idx) {
294 simvar6[idx] = data;
295 clearFlag("simvar6_"+idx)
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200296 });
297 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100298 }
299
300 //MR - get metrics values from the MR stub
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200301 if (checkFunctionFlag("mr1")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100302 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/requests_submitted", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200303 mr1 = data;
304 clearFlag("mr1")
305 });
306 }
307 if (checkFunctionFlag("mr2")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100308 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/requests_fetched", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200309 mr2 = data;
310 clearFlag("mr2")
311 });
312 }
313 if (checkFunctionFlag("mr3")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100314 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/current_requests", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200315 mr3 = data;
316 clearFlag("mr3")
317 });
318 }
319 if (checkFunctionFlag("mr4")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100320 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/responses_submitted", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200321 mr4 = data;
322 clearFlag("mr4")
323 });
324 }
325 if (checkFunctionFlag("mr5")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100326 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/responses_fetched", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200327 mr5 = data;
328 clearFlag("mr5")
329 });
330 }
331 if (checkFunctionFlag("mr6")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100332 getSimCtr(LOCALHOST+MRSTUB_PORT+"/counter/current_responses", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200333 mr6 = data;
334 clearFlag("mr6")
335 });
336 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100337
338 //CR - get metrics values from the callbackreceiver
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200339 if (checkFunctionFlag("cr1")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100340 getSimCtr(LOCALHOST+CR_PORT+"/counter/received_callbacks", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200341 cr1 = data;
342 clearFlag("cr1")
343 });
344 }
345 if (checkFunctionFlag("cr2")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100346 getSimCtr(LOCALHOST+CR_PORT+"/counter/fetched_callbacks", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200347 cr2 = data;
348 clearFlag("cr2")
349 });
350 }
351 if (checkFunctionFlag("cr3")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100352 getSimCtr(LOCALHOST+CR_PORT+"/counter/current_messages", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200353 cr3 = data;
354 clearFlag("cr3")
355 });
356 }
357 //Agent - more get metrics from the agent
358 if (checkFunctionFlag("ag1")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100359 getSimCtr(LOCALHOST+AGENT_PORT+"/status", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200360 ag1 = data;
361 clearFlag("ag1")
362 });
363 }
364 if (checkFunctionFlag("ag2")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100365 getSimCtr(LOCALHOST+AGENT_PORT+"/services", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200366 ag2="";
367 try {
368 var jd=JSON.parse(data);
369 for(var key in jd) {
370 if (ag2.length > 1) {
371 ag2=ag2+", "
372 }
373 ag2=ag2+(jd[key]["serviceName"]).trim()
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100374 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100375 }
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200376 catch (err) {
377 ag2=data
378 }
379 clearFlag("ag2")
380 });
381 }
382 if (checkFunctionFlag("ag3")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100383 getSimCtr(LOCALHOST+AGENT_PORT+"/policy_types", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200384 ag3="";
385 try {
386 var jd=JSON.parse(data);
387 for(var key in jd) {
388 if (ag3.length > 0) {
389 ag3=ag3+", "
390 }
391 ag3=ag3+jd[key].trim()
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100392 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100393 }
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200394 catch (err) {
395 ag3=""
396 }
397 clearFlag("ag3")
398 });
399 }
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200400
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200401 if (checkFunctionFlag("ag4")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100402 getSimCtr(LOCALHOST+AGENT_PORT+"/policy_ids", 0, function(data, idx) {
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200403 try {
404 var jd=JSON.parse(data);
405 ag4=""+jd.length
406 }
407 catch (err) {
408 ag4=""
409 }
410 clearFlag("ag4")
411 });
412 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100413
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200414 if (checkFunctionFlag("ag5")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100415 getSimCtr(LOCALHOST+AGENT_PORT+"/rics", 0, function(data, idx) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200416 try {
417 var jd=JSON.parse(data);
418 ag5=""+jd.length
419 }
420 catch (err) {
421 ag5=""
422 }
423 clearFlag("ag5")
424 });
425 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100426
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200427 fetchAllMetrics_pol();
428
429 }, 500)
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100430}
431
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200432function fetchAllMetrics_ecs() {
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100433
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200434 console.log("Fetching enrichment metrics - timer:" + refreshCount_ecs)
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100435
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200436 if (refreshCount_ecs < 0) {
437 refreshCount_ecs = -1
438 return
439 } else {
440 refreshCount_ecs = refreshCount_ecs - 1
441 }
442 setTimeout(() => {
443
444 if (checkFunctionFlag("ecs_stat")) {
445 getSimCtr(LOCALHOST+ECS_PORT+"/status", 0, function(data, index) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200446 try {
447 var jd=JSON.parse(data);
448 ecs1=jd["status"]
449 ecs2=""+jd["no_of_producers"]
450 ecs3=""+jd["no_of_types"]
451 ecs4=""+jd["no_of_jobs"]
452 }
453 catch (err) {
454 ecs1="error response"
455 ecs2="error response"
456 ecs3="error response"
457 ecs4="error response"
458 }
459 });
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100460 clearFlag("ecs_stat")
461 }
462 if (checkFunctionFlag("ecs_types")) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200463 getSimCtr(LOCALHOST+ECS_PORT+"/ei-producer/v1/eitypes", 0, function(data, index) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100464 var tmp_ecs_types="-"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200465 try {
466 var jd=JSON.parse(data);
467 for(var i=0;i<jd.length;i++) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100468 if (tmp_ecs_types.length == 1) {
469 tmp_ecs_types=""
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200470 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100471 tmp_ecs_types=""+tmp_ecs_types+jd[i]+" "
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200472 }
473 }
474 catch (err) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100475 tmp_ecs_types="error response"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200476 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100477 ecs_types = tmp_ecs_types
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200478 });
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100479 clearFlag("ecs_types")
480 }
481 if (checkFunctionFlag("ecs_producers")) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200482 getSimCtr(LOCALHOST+ECS_PORT+"/ei-producer/v1/eiproducers", 0, function(data, index) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100483 var tmp_ecs_producers="-"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200484 try {
485 var jd=JSON.parse(data);
486 var tmp_ecs_producer_arr=new Array(jd.length)
487 for(var i=0;i<jd.length;i++) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100488 if (tmp_ecs_producers.length == 1) {
489 tmp_ecs_producers=""
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200490 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100491 tmp_ecs_producers=""+tmp_ecs_producers+jd[i]+" "
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200492 tmp_ecs_producer_arr[i]=jd[i]
493 }
494 ecs_producer_arr = tmp_ecs_producer_arr
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100495 ecs_producers = tmp_ecs_producers
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200496 }
497 catch (err) {
498 ecs_producers="error response"
499 ecs_producer_arr=new Array(0)
500 }
501 });
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100502 clearFlag("ecs_producers")
503 }
504 if (checkFunctionFlag("ecs_data")) {
505 try {
506 var tmp_ecs_producer_type_arr = JSON.parse(JSON.stringify(ecs_producer_arr))
507 for(var x=0;x<tmp_ecs_producer_type_arr.length;x++) {
508 getSimCtr(LOCALHOST+ECS_PORT+"/ei-producer/v1/eiproducers/"+tmp_ecs_producer_type_arr[x], x, function(data, idx) {
509 var row=""+tmp_ecs_producer_type_arr[idx]+" : "
510 try {
511 var jd=JSON.parse(data);
512 var jda=jd["supported_ei_types"]
513 for(var j=0;j<jda.length;j++) {
514 row=""+row+jda[j]["ei_type_identity"]+" "
515 }
516 tmp_ecs_producer_type_arr[idx]=row
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200517 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100518 catch (err) {
519 tmp_ecs_producer_type_arr=new Array(0)
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200520 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100521 });
522 }
523 ecs_producer_type_arr = tmp_ecs_producer_type_arr
524 } catch (err) {
525 ecs_producer_type_arr=new Array(0)
526 }
527 try {
528 var tmp_ecs_producer_jobs_arr = JSON.parse(JSON.stringify(ecs_producer_arr))
529 for(x=0;x<tmp_ecs_producer_jobs_arr.length;x++) {
530 getSimCtr(LOCALHOST+ECS_PORT+"/ei-producer/v1/eiproducers/"+tmp_ecs_producer_jobs_arr[x]+"/eijobs", x, function(data, idx) {
531 var row=""+tmp_ecs_producer_jobs_arr[idx]+" : "
532 try {
533 var jd=JSON.parse(data);
534 for(var j=0;j<jd.length;j++) {
535 var jda=jd[j]
536 row=""+row+jda["ei_job_identity"]+"("+jda["ei_type_identity"]+") "
537 }
538 tmp_ecs_producer_jobs_arr[idx]=row
539 }
540 catch (err) {
541 tmp_ecs_producer_jobs_arr=new Array(0)
542 }
543 });
544 }
545 ecs_producer_jobs_arr = tmp_ecs_producer_jobs_arr
546 } catch (err) {
547 ecs_producer_jobs_arr=new Array(0)
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200548 }
549
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100550 try {
551 var tmp_ecs_producer_status_arr = JSON.parse(JSON.stringify(ecs_producer_arr))
552 for(x=0;x<tmp_ecs_producer_status_arr.length;x++) {
553 getSimCtr(LOCALHOST+ECS_PORT+"/ei-producer/v1/eiproducers/"+tmp_ecs_producer_status_arr[x]+"/status", x, function(data, idx) {
554 var row=""+tmp_ecs_producer_status_arr[idx]+" : "
555 try {
556 var jd=JSON.parse(data);
557 row=""+row+jd["operational_state"]
558 tmp_ecs_producer_status_arr[idx]=row
559 }
560 catch (err) {
561 tmp_ecs_producer_status_arr=new Array(0)
562 }
563 });
564 }
565 ecs_producer_status_arr = tmp_ecs_producer_status_arr
566 } catch (err) {
567 ecs_producer_status_arr=new Array(0)
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200568 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100569 clearFlag("ecs_data")
570 }
571 if (checkFunctionFlag("ecs_jobs")) {
572 getSimCtr(LOCALHOST+ECS_PORT+"/A1-EI/v1/eijobs", 0, function(data, index) {
573 try {
574 var jd=JSON.parse(data);
575 var tmpArr=new Array(jd.length)
576 for(var i=0;i<jd.length;i++) {
577 tmpArr[i]=jd[i]
578 }
579 ecs_jobs=tmpArr
580 }
581 catch (err) {
582 ecs_jobs=new Array(0)
583 }
584 });
585 clearFlag("ecs_jobs")
586 }
587 if (checkFunctionFlag("ecs_job_status")) {
588 try {
589 var tmp_ecs_job_status= JSON.parse(JSON.stringify(ecs_jobs))
590 for(x=0;x<tmp_ecs_job_status.length;x++) {
591 getSimCtr(LOCALHOST+ECS_PORT+"/A1-EI/v1/eijobs/"+tmp_ecs_job_status[x]+"/status", x, function(data, idx) {
592 try {
593 var jd=JSON.parse(data);
594 tmp_ecs_job_status[idx]=""+tmp_ecs_job_status[idx]+":"+jd["eiJobStatus"]
595 }
596 catch (err) {
597 tmp_ecs_job_status="-"
598 }
599 });
600 }
601 ecs_job_status = tmp_ecs_job_status
602 } catch (err) {
603 ecs_job_status="-"
604 }
605 clearFlag("ecs_job_status")
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200606 }
607 if (checkFunctionFlag("prodstub_stat")) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100608 getSimCtr(LOCALHOST+PRODSTUB_PORT+"/status", x, function(data, idx) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200609 var ctr2_map=new Map()
610 var ctr3_map=new Map()
611 var ctr2=0
612 var ctr4=0
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100613 var tmp_ps_producers=""
614 var tmp_ps_types=""
615 var tmp_ps_producer_type_arr=new Array()
616 var tmp_ps_producer_jobs_arr=new Array()
617 var tmp_ps_producer_delivery_arr=new Array()
618 var tmp_ps2=""
619 var tmp_ps3=""
620 var tmp_ps4=""
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200621 try {
622 var jp=JSON.parse(data);
623 for(var prod_name in jp) {
624 ctr2_map.set(prod_name, prod_name)
625 ctr2 += 1
626 var jj=jp[prod_name]
627 var row=""+prod_name+" : "
628 var rowj=""+prod_name+" : "
629 var rowd=""+prod_name+" : "
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100630 tmp_ps_producers += prod_name + " "
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200631 for(var ji in jj) {
632 if (ji == "types") {
633 var ta=jj[ji]
634 for(var i=0;i<ta.length;i++) {
635 ctr3_map.set(ta[i], ta[i])
636 row += " "+ta[i]
637 }
638 } else if (ji == "supervision_response") {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100639 //Do nothing
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200640 } else if (ji == "supervision_counter") {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100641 //Do nothing
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200642 } else if (ji == "types") {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100643 //Do nothing
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200644 } else {
645 ctr4 += 1
646 rowj += " "+ji
647 rowd += " "+ji
648 var job_data=jj[ji]["json"]
649 if (job_data != undefined) {
650 rowj += "("+job_data["ei_type_identity"]+")"
651 }
652 rowd += "("+jj[ji]["delivery_attempts"]+")"
653 }
654 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100655 tmp_ps_producer_type_arr[(ctr2-1)]=row
656 tmp_ps_producer_jobs_arr[(ctr2-1)]=rowj
657 tmp_ps_producer_delivery_arr[(ctr2-1)]=rowd
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200658 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100659 tmp_ps2=""+ctr2_map.size
660 tmp_ps3=""+ctr3_map.size
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200661 for(const [key, value] of ctr3_map.entries()) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100662 tmp_ps_types += key + " "
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200663 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100664 tmp_ps4=""+ctr4
665
666 ps_producers=tmp_ps_producers
667 ps_types=tmp_ps_types
668 ps_producer_type_arr=tmp_ps_producer_type_arr
669 ps_producer_jobs_arr=tmp_ps_producer_jobs_arr
670 ps_producer_delivery_arr=tmp_ps_producer_delivery_arr
671 ps2=tmp_ps2
672 ps3=tmp_ps3
673 ps4=tmp_ps4
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200674 }
675 catch (err) {
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200676 ps_producers="error response"
677 ps_types="error response"
678 ps_producer_type_arr=new Array()
679 ps_producer_jobs_arr=new Array()
680 ps_producer_delivery_arr=new Array()
681 ps2="error response"
682 ps3="error response"
683 ps4="error response"
684 }
685 });
686 clearFlag("prodstub_stat")
687 }
688
689 fetchAllMetrics_ecs();
690
691 }, 500)
692}
693
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100694function fetchAllMetrics_cr() {
695
696 console.log("Fetching CR DB - timer:" + refreshCount_ecs)
697
698 if (refreshCount_cr < 0) {
699 refreshCount_cr = -1
700 return
701 } else {
702 refreshCount_cr = refreshCount_cr - 1
703 }
704 setTimeout(() => {
705
706 if (checkFunctionFlag("cr_stat")) {
707 getSimCtr(LOCALHOST+CR_PORT+"/db", 0, function(data, index) {
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100708 try {
709 cr_db=JSON.parse(data);
710 }
711 catch (err) {
712 cr_db={}
713 }
714 });
715 clearFlag("cr_stat")
716 }
717 fetchAllMetrics_cr();
718 }, 500)
719}
720
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100721function fetchAllMetrics_rc() {
722
723 console.log("Fetching RC services - timer:" + refreshCount_ecs)
724
725 if (refreshCount_rc < 0) {
726 refreshCount_rc = -1
727 return
728 } else {
729 refreshCount_rc = refreshCount_rc - 1
730 }
731 setTimeout(() => {
732
733 if (checkFunctionFlag("rc_stat")) {
734 getSimCtr(LOCALHOST+RC_PORT+"/services", 0, function(data, index) {
735 var tmp_serv=""
736 try {
737 var jd=JSON.parse(data);
738 for(var i=0;i<jd.length;i++) {
739 if (tmp_serv.length > 0) {
740 tmp_serv=tmp_serv+","
741 }
742 tmp_serv=tmp_serv+jd[i]["name"]
743 }
744
745 }
746 catch (err) {
747 tmp_serv="no_response"
748 }
749 rc_services=tmp_serv
750 });
751 clearFlag("rc_stat")
752 }
753 fetchAllMetrics_rc();
754 }, 500)
755}
756
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100757// Monitor for CR db
758app.get("/mon3",function(req, res){
759
760 console.log("Creating CR DB page - timer: " + refreshCount_ecs)
761
762 if (refreshCount_cr < 0) {
763 refreshCount_cr=5
764 fetchAllMetrics_cr()
765 }
766 refreshCount_cr=5
767 var json_str=JSON.stringify(cr_db, null, 1)
768 var htmlStr = "<!DOCTYPE html>" +
769 "<html>" +
770 "<head>" +
771 "<meta http-equiv=\"refresh\" content=\"2\">"+ //2 sec auto refresh
772 "<title>CR DB dump</title>"+
773 "</head>" +
774 "<body style=\"white-space: pre-wrap\">" +
775 json_str +
776 "</body>" +
777 "</html>";
778 res.send(htmlStr);
779})
780
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200781// Monitor for ECS
782app.get("/mon2",function(req, res){
783
784 console.log("Creating enrichment metrics - timer: " + refreshCount_ecs)
785
786 if (refreshCount_ecs < 0) {
787 refreshCount_ecs=5
788 fetchAllMetrics_ecs()
789 }
790 refreshCount_ecs=5
791
792 var summary=req.query.summary
793
794 if (summary == undefined) {
795 return res.redirect('/mon2?summary=false');
796 }
797
798 //Build web page
799 var htmlStr = "<!DOCTYPE html>" +
800 "<html>" +
801 "<head>" +
802 "<meta http-equiv=\"refresh\" content=\"2\">"+ //2 sec auto refresh
803 "<title>Enrichment coordinator service and producer stub</title>"+
804 "</head>" +
805 "<body>" +
806 "<font size=\"-3\" face=\"summary\">"
807 if (summary == "false") {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100808 htmlStr=htmlStr+"<p>Set query param '?summary' to true to only show summary statistics.</p>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200809 } else {
810 htmlStr=htmlStr+"<p>Set query param '?summary' to false to only show full statistics</p>"
811 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100812 if (ecs_job_status.length > 10) {
813 htmlStr=htmlStr+"<div style=\"color:red\"> Avoid running the server for large number of producers and/or jobs</div>"
814 }
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200815 htmlStr=htmlStr+"</font>" +
816 "<h3>Enrichment Coordinator Service</h3>" +
817 "<font face=\"monospace\">" +
818 "Status:..........." + formatDataRow(ecs1) + "<br>" +
819 "Producers:........" + formatDataRow(ecs2) + "<br>" +
820 "Types:............" + formatDataRow(ecs3) + "<br>" +
821 "Jobs:............." + formatDataRow(ecs4) + "<br>" +
822 "</font>"
823 if (summary == "false") {
824 htmlStr=htmlStr+
825 "<h4>Details</h4>" +
826 "<font face=\"monospace\">" +
827 "Producer ids:....." + formatDataRow(ecs_producers) + "<br>" +
828 "Type ids:........." + formatDataRow(ecs_types) + "<br>" +
829 "<br>";
830 for(var i=0;i<ecs_producer_type_arr.length;i++) {
831 var tmp=ecs_producer_type_arr[i]
832 if (tmp != undefined) {
833 var s = "Producer types...." + formatDataRow(ecs_producer_type_arr[i]) + "<br>"
834 htmlStr=htmlStr+s
835 }
836 }
837 htmlStr=htmlStr+"<br>";
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100838 for(i=0;i<ecs_producer_jobs_arr.length;i++) {
839 tmp=ecs_producer_jobs_arr[i]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200840 if (tmp != undefined) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100841 s = "Producer jobs....." + formatDataRow(ecs_producer_jobs_arr[i]) + "<br>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200842 htmlStr=htmlStr+s
843 }
844 }
845 htmlStr=htmlStr+"<br>";
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100846 for(i=0;i<ecs_producer_status_arr.length;i++) {
847 tmp=ecs_producer_status_arr[i]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200848 if (tmp != undefined) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100849 s = "Producer status..." + formatDataRow(tmp) + "<br>"
850 htmlStr=htmlStr+s
851 }
852 }
853 htmlStr=htmlStr+"<br>";
854 for(i=0;i<ecs_job_status.length;i++) {
855 tmp=ecs_job_status[i]
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100856 if (tmp != undefined) {
857 s = padding("Job", 18, ".") + formatDataRow(tmp) + "<br>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200858 htmlStr=htmlStr+s
859 }
860 }
861 htmlStr=htmlStr+"<br>"+"<br>" +
862 "</font>"
863 }
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100864
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200865 htmlStr=htmlStr+
866 "<h3>Producer stub</h3>" +
867 "<font face=\"monospace\">" +
868 "Producers:........" + formatDataRow(ps2) + "<br>" +
869 "Types:............" + formatDataRow(ps3) + "<br>" +
870 "Jobs:............." + formatDataRow(ps4) + "<br>" +
871 "</font>"
872 if (summary == "false") {
873 htmlStr=htmlStr+
874 "<h4>Details</h4>" +
875 "<font face=\"monospace\">" +
876 "Producer ids:....." + formatDataRow(ps_producers) + "<br>" +
877 "Type ids:........." + formatDataRow(ps_types) + "<br>" +
878 "<br>";
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100879 for(i=0;i<ps_producer_type_arr.length;i++) {
880 tmp=ps_producer_type_arr[i]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200881 if (tmp != undefined) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100882 s = "Producer types...." + formatDataRow(ps_producer_type_arr[i]) + "<br>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200883 htmlStr=htmlStr+s
884 }
885 }
886 htmlStr=htmlStr+"<br>";
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100887 for(i=0;i<ps_producer_jobs_arr.length;i++) {
888 tmp=ps_producer_jobs_arr[i]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200889 if (tmp != undefined) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100890 s = "Producer jobs....." + formatDataRow(ps_producer_jobs_arr[i]) + "<br>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200891 htmlStr=htmlStr+s
892 }
893 }
894 htmlStr=htmlStr+"<br>";
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100895 for(i=0;i<ps_producer_delivery_arr.length;i++) {
896 tmp=ps_producer_delivery_arr[i]
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200897 if (tmp != undefined) {
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100898 s = "Producer delivery." + formatDataRow(ps_producer_delivery_arr[i]) + "<br>"
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200899 htmlStr=htmlStr+s
900 }
901 }
902 }
903 htmlStr=htmlStr+
904 "</font>" +
905 "</body>" +
906 "</html>";
907 res.send(htmlStr);
908})
909
910// Monitor for policy management
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100911app.get("/mon",function(req, res){
912
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200913 console.log("Creating policy metrics page " + refreshCount_pol)
914
915 if (refreshCount_pol < 0) {
916 refreshCount_pol=5
917 fetchAllMetrics_pol()
918 }
919 refreshCount_pol=5
920
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100921 if (refreshCount_rc < 0) {
922 refreshCount_rc=5
923 fetchAllMetrics_rc()
924 }
925 refreshCount_rc=5
926
BjornMagnussonXAad047782020-06-08 15:54:11 +0200927 var bn=req.query.basename
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100928 pmsprefix=req.query.pmsprefix
BjornMagnussonXAad047782020-06-08 15:54:11 +0200929
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100930 console.log("PMS"+pmsprefix)
931 if ((bn == undefined) || (pmsprefix == undefined)) {
BjornMagnussonXAad047782020-06-08 15:54:11 +0200932 getCtr=0
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100933 return res.redirect('/mon?basename=ricsim&pmsprefix=/a1-policy/v2');
BjornMagnussonXAad047782020-06-08 15:54:11 +0200934 } else {
935 ricbasename=bn
936 }
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100937
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100938
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200939 //Build web page
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100940 var htmlStr = "<!DOCTYPE html>" +
941 "<html>" +
942 "<head>" +
943 "<meta http-equiv=\"refresh\" content=\"2\">"+ //2 sec auto refresh
944 "<title>Policy Agent and simulator monitor</title>"+
945 "</head>" +
946 "<body>" +
BjornMagnussonXAad047782020-06-08 15:54:11 +0200947 "<font size=\"-3\" face=\"monospace\">" +
948 "<p>Change basename in url if other ric sim prefix is used</p>" +
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100949 "<p>Change pmsprefix in url if pms with other prefix is used</p>" +
BjornMagnussonXAad047782020-06-08 15:54:11 +0200950 "</font>" +
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100951 "<h3>Policy agent</h3>" +
952 "<font face=\"monospace\">" +
953 "Status:..............................." + formatDataRow(ag1) + "<br>" +
954 "Services:............................." + formatIdRowCompact(ag2) + "<br>" +
955 "Types:................................" + formatIdRowCompact(ag3) + "<br>" +
956 "Number of instances:.................." + formatDataRow(ag4) + "<br>" +
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200957 "Near-RT RICs:........................." + formatDataRow(ag5) + "<br>" +
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100958 "</font>" +
959 "<h3>MR Stub interface</h3>" +
960 "<font face=\"monospace\">"+
961 "Submitted requests:............................" + formatDataRow(mr1) + "<br>" +
962 "Fetched requests:.............................." + formatDataRow(mr2) + "<br>" +
963 "Current requests waiting:......................" + formatDataRow(mr3) + "<br>" +
964 "Submitted responses:..........................." + formatDataRow(mr4) + "<br>" +
965 "Fetched responses.............................." + formatDataRow(mr5) + "<br>" +
966 "Current responses waiting......................" + formatDataRow(mr6) + "<br>" +
967 "</font>"+
968 "<h3>Callback receiver</h3>" +
969 "<font face=\"monospace\">" +
970 "Callbacks received:..................." + formatDataRow(cr1) + "<br>" +
971 "Callbacks fetched:...................." + formatDataRow(cr2) + "<br>" +
972 "Number of waiting callback messages:.." + formatDataRow(cr3) + "<br>" +
973 "</font>" +
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100974 "<h3>R-APP Catalogue</h3>" +
975 "<font face=\"monospace\">" +
976 "Services:............................." + formatIdRowCompact(rc_services) + "<br>" +
977 "</font>" +
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100978 "<h3>Near-RT RIC Simulators</h3>" +
979 "<font face=\"monospace\">"
980
981 htmlStr=htmlStr+padding("Near-RT RIC Simulator name", 35,"&nbsp;")
982 htmlStr=htmlStr+padding("Types", 10,"&nbsp;")
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200983 htmlStr=htmlStr+padding("Instances", 12,"&nbsp;")
984 htmlStr=htmlStr+padding("Data delivery", 12,"&nbsp;")+"<br>"
985 htmlStr=htmlStr+padding("",70,"=")+"<br>"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100986 for(var simIndex=0;simIndex<simnames.length;simIndex++) {
987 htmlStr=htmlStr+padding(simnames[simIndex]+ " ("+simports[simIndex]+")",35,"&nbsp;");
988 htmlStr=htmlStr+padding(simvar2[simIndex],10,"&nbsp;")
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200989 htmlStr=htmlStr+padding(simvar1[simIndex],12 ,"&nbsp;")
990 htmlStr=htmlStr+padding(simvar6[simIndex],12,"&nbsp;")
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100991 htmlStr=htmlStr+"<br>";
992 }
993
994 htmlStr=htmlStr+"<br>";
995 htmlStr=htmlStr+padding("Near-RT RIC Simulator name", 35,"&nbsp;")
996 htmlStr=htmlStr+padding("Version", 20,"&nbsp;")
997 htmlStr=htmlStr+padding("Type-IDs", 10,"&nbsp;")+"<br>"
998 htmlStr=htmlStr+padding("",65,"=")+"<br>"
999 for(simIndex=0;simIndex<simnames.length;simIndex++) {
1000 htmlStr=htmlStr+padding(simnames[simIndex]+ " ("+simports[simIndex]+")",35,"&nbsp;");
1001 htmlStr=htmlStr+padding(simvar4[simIndex],20,"&nbsp;")
1002 htmlStr=htmlStr+padding(formatIdRowCompact(simvar3[simIndex]),10,"&nbsp;")
1003 htmlStr=htmlStr+"<br>";
1004 }
1005
BjornMagnussonXA72667f12020-04-24 09:20:18 +02001006 htmlStr=htmlStr+"<br>";
1007 htmlStr=htmlStr+padding("Near-RT RIC Simulator name", 35,"&nbsp;")
1008 htmlStr=htmlStr+padding("Remote hosts", 50,"&nbsp;")+"<br>"
1009 htmlStr=htmlStr+padding("",90,"=")+"<br>"
1010 for(simIndex=0;simIndex<simnames.length;simIndex++) {
1011 htmlStr=htmlStr+padding(simnames[simIndex]+ " ("+simports[simIndex]+")",35,"&nbsp;");
1012 htmlStr=htmlStr+padding(simvar5[simIndex],50,"&nbsp;")
1013 htmlStr=htmlStr+"<br>";
1014 }
1015
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001016 htmlStr=htmlStr+
1017 "</body>" +
1018 "</html>";
1019 res.send(htmlStr);
1020})
1021
1022var httpServer = http.createServer(app);
1023var httpPort=9999;
1024httpServer.listen(httpPort);
1025console.log("Simulator monitor listening (http) at "+httpPort);
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +02001026console.log("Open the web page on localhost:9999/mon to view the policy statistics page.")
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +01001027console.log("Open the web page on localhost:9999/mon2 to view the enrichment statistics page.")
1028console.log("Open the web page on localhost:9999/mon3 to view CR DB in json.")