123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- var monitor = {}
- monitor.processes = {}
- monitor.processes.fetch = function(){
- var httpclient = HttpClient.instance()
- httpclient.get('/get/processes',monitor.processes.init);
-
- }
- monitor.processes.init = function(x){
- var r = JSON.parse(x.responseText)
- monitor.processes.summary.init(r)
- var keys = jx.utils.keys(r)
- jx.dom.set.value('menu','')
- jx.utils.patterns.visitor(keys,function(label){
- var div = jx.dom.get.instance('DIV')
- var frame= jx.dom.get.instance('DIV')
- var i = jx.dom.get.instance('I')
- i.className = 'fa fa-chevron-right left'
-
- div.innerHTML = label
- frame.data = r[label]
- frame.label = label
- frame.appendChild(i)
- frame.appendChild(div)
- frame.className = 'menu-item'
- frame.onclick = function () {
- monitor.processes.render(this.label, this.data);
- jx.dom.set.value('trends_chart','')
- //monitor.processes.trend.init(this.label)
- }
- jx.dom.append('menu',frame)
- })
- //
- // Auto start the first item in the menu
- // This is designed not to let the user wander or wonder what is going on
- //
- jx.dom.get.children('menu')[0].click()
- setTimeout(monitor.sandbox.init,3000)
- }
- monitor.processes.render = function(label,data) {
- data = jx.utils.patterns.visitor(data,function(row){
- var status = {"idle":'<i class="fa fa-ellipsis-h" title="IDLE"></i>',"running":'<i class="fa fa-check" title="RUNNING"></i>',"crash":'<i class="fa fa-times" title="CRASHED"></i>'}
- if (!row.status.match(/class/)) {
- row.status_id = row.status
- row.status = status[row.status]
-
- }
- return row
- })
- jx.dom.set.value('latest_processes','') ;
- jx.dom.set.value('latest_processes_label',label)
- var options = {
- width: $('#latest_processes').width(), height:'auto'
- }
- options.paging = true
- options.pageSize = 3
- options.pageIndex = 1
- options.pageButtonCount = 3
- options.pagerContainer = '#latest_process_pager'
- options.pagerFormat= "{prev} Page {pageIndex} of {pageCount} {next}"
- options.pagePrevText= '<i class="fa fa-chevron-left"></i>'
- options.pageNextText= "<i class='fa fa-chevron-right small' title='Next'> </i>"
-
- options.data = data
- options.rowClass = function (item, index,evt) {
-
- return 'small'
- }
- options.rowClick = function(args){
- var item = args.item
- var id = jx.dom.get.value('latest_processes_label')
- var app = item.label
- monitor.processes.trend.init(id,app)
- }
-
- options.autoload = true
- options.fields = [
- { name: 'label', type: 'text', title: "Process", headercss: "small bold", css: "small"},
- { name: "cpu_usage", type: "number", title: "CPU", headercss: "small bold" , width:'64px'},
- { name: "memory_usage", type: "text", title: "Mem. Used", type: "number", headercss: "small bold" },
- { name: "memory_available", type: "number", title: "Mem. Avail", headercss: "small bold" },
- {name:"status",type:"text",title:"Status",headercss:"small bold",align:"center", width:'64px'}
- ]
- var grid = $('#latest_processes').jsGrid(options) ;
- //
- // We need to auto click the first row
- $('#latest_processes').find('.jsgrid-row')[0].click()
- }
- monitor.processes.trend = {}
- monitor.processes.trend.init = function (label,app) {
- var httpclient = HttpClient.instance()
- var uri = '/trends?id='+label+'&app='+encodeURIComponent(app)
- httpclient.get(uri, function (x) {
- var logs = JSON.parse(x.responseText)
- var dom = jx.dom.get.instance('trend_info');
- dom.logs = logs
- jx.dom.set.value('trend_info',app)
- // jx.dom.set.attribute(label,'logs',logs)
- monitor.processes.trend.render(logs,null,app)
- })
- }
- monitor.processes.trend.render = function (logs, key,label) {
- if (key == null) {
- key = 'memory_usage'
- }
- if (logs == null || label == null){
-
- logs = jx.dom.get.instance('trend_info').logs
- label= jx.dom.get.value('trend_info') ;
- }
- var frame = $('#trends_chart')
- jx.dom.set.value('trends_chart','')
- var context = jx.dom.get.instance('CANVAS')
-
- var conf = { type: 'line',responsive:true,maintainAspectRatio:true }
- conf.data = {}
- conf.options = { legend: { position: 'bottom' } }
- conf.options.scales = {}
- conf.options.scales.yAxes = [ {scaleLabel:{display:true,labelString:key.replace(/_/,' ').toUpperCase()},ticks:{min:0,beginAtZero:true},gridLines: {display:false}}]
- conf.options.scales.xAxes = [
- {
-
- type: 'time',
- gridLines: {display:false},
- unitStepSize:25,
- time: {
- format:'DD-MMM HH:mm'
- }
-
- }
-
- ]
- conf.data.datasets = [ ]
- var x_axis = []
- var _x = {}
- var _y = {}
- var values = jx.utils.patterns.visitor(logs,function(item){
- x = new Date(item.year,item.month-1,item.day,item.hour,item.minute)
- y = item[key]
- if (_x[x] == null ||(_x[x] == null && _y[y] == null)) {
- _x[x] = 1
- _y[y] = 1
- x_axis.push(x)
-
- return {x:x,y:y}
-
- } else {
- return null
- }
-
- })
-
- var serie = {label:label,data:values}
- i = parseInt(Math.random() * (COLORS.length - 1))
- serie.backgroundColor = 'transparent'
- serie.borderColor = COLORS[2]
- serie.borderWidth = 1
- serie.type = 'line'
- conf.data.datasets.push(serie)
-
- x_axis = jx.utils.unique(x_axis)
-
- conf.data.labels = x_axis
- // console.log(conf)
- jx.dom.append('trends_chart',context)
- var chart = new Chart(context,conf)
-
- }
- monitor.processes.summary = {}
- monitor.processes.summary.init = function(logs){
- var xr = 0, xc = 0, xi = 0
- var series = {}
- //var colors = [COLORS[11], COLORS[1], COLORS[2]]
- colors = [COLORS[11], COLORS[2], COLORS[100]]
- RUNNING_COLOR = COLORS[26]
- IDLE_COLOR = COLORS[100]
- CRASH_COLOR=COLORS[2]
- var i = 0;
- for( label in logs ){
- var rows = logs[label]
- series[label] = {data:[0,0,0],label:label}
-
- jx.utils.patterns.visitor(rows,function(item){
-
- if (item.status == 'running'){
- xr += 1
- }else if(item.status == 'idle'){
- xi += 1
- }else{
- xc += 1
- }
- })
-
- }
- var data = {labels:['Running','Crash','Idle'],datasets:[{data:[xr,xc,xi],backgroundColor:[RUNNING_COLOR,CRASH_COLOR,IDLE_COLOR/**COLORS[11],COLORS[2],COLORS[100]*/]}]}
- var context = jx.dom.get.instance('CANVAS')
-
- jx.dom.set.value('summary_chart','')
- jx.dom.append('summary_chart',context)
- var conf = {width:50,height:50}
-
- conf.type = 'doughnut'
- conf.data = data
- conf.options = {legend:{ position:'right'},repsonsive:true}
- var chart = new Chart(context,conf)
-
- jx.dom.set.value('summary_ranking','')
- context = jx.dom.get.instance('CANVAS')
- jx.dom.append('summary_ranking',context)
-
- conf = { type: 'bar', responsive: true }
-
- conf.options={scales:{xAxes:[{gridLines: {display:false}}],yAxes:[{gridLines: {display:false},scaleLabel:{display:true,labelString:'PROCESS COUNTS'} }] }}
- conf.options.legend ={position:'right'}
- /*
- conf.data = {labels:['Running','Idle','Crash']}
- var labels = jx.utils.keys(series)
-
- var i = 0
- conf.data.datasets = jx.utils.patterns.visitor(labels,function(id){
- series[id].backgroundColor = COLORS[i++]
- return series[id]})
- chart = new Chart(context,conf);
- */
- var labels = jx.utils.keys(logs)
- conf.data = { labels: labels, backgroundColor:colors }
- var xr = [], xi = [], xc = [],xr_bg = [],xc_bg = [],xi_bg = []
- jx.utils.patterns.visitor(labels, function (id) {
- var rows = logs[id]
- var index = xr.length
- xr_bg[index] = RUNNING_COLOR
- xi_bg[index] = IDLE_COLOR
- xc_bg[index] = CRASH_COLOR
- if (xr[index] == null) {
- xr[index] = 0
- xc[index] = 0
- xi[index] = 0
- }
-
- jx.utils.patterns.visitor(logs[id], function (row) {
- if (row.status.match(/running/i)) {
- xr[index] += 1
-
- } else if (row.status.match(/idle/i)) {
- xi[index] += 1
-
- } else {
- xc[index] += 1
-
- }
- })
- })
-
- conf.data.datasets = [{ label: 'running', data:xr,backgroundColor:xr_bg},{label:'crash',data:xc,backgroundColor:xc_bg},{label:'idle',data:xi,backgroundColor:xi_bg} ]
- console.log(conf.data.datasets)
- chart = new Chart(context, conf)
-
- }
- monitor.sandbox = {}
- monitor.sandbox.init = function () {
- jx.dom.hide('inspect_sandbox')
- var httpclient = HttpClient.instance()
- httpclient.get('/sandbox', function (x) {
- var r = JSON.parse(x.responseText)
- monitor.sandbox.render(r);
- })
- }
- monitor.sandbox.render = function (logs) {
- months = {1:'Jan',2:'Feb',3:'Mar',4:'Apr',5:'May',6:'Jun',7:'Jul',8:'Aug',9:'Sep',10:'Oct',11:'Nov',12:'Dec'}
- var d = ([logs[0].day, '-', months[logs[0].month],'-', logs[0].year, ' ', logs[0].hour, ':', logs[0].minute]).join('')
- jx.dom.set.value('sandbox_date',d)
- var options = {width:$('#sandbox_status').width(),height:'auto'}
- options.data = logs
- options.paging = true
- options.pageSize = 3
- options.pageIndex = 1
- options.pageButtonCount = 3
- options.pagerContainer = '#latest_process_pager'
- options.pagerFormat= "{prev} Page {pageIndex} of {pageCount} {next}"
- options.pagePrevText= '<i class="fa fa-chevron-left"></i>'
- options.pageNextText = "<i class='fa fa-chevron-right small' title='Next'> </i>";
- options.rowClass = function (item) {
-
- if (item.value < 70) {
- return 'bad'
- } else if (item.value < 100) {
- return 'warning'
- } else {
- return 'good'
- }
- }
- options.fields = [
- { name: 'label',title:'Virtual Environment Label',type:'text',css:'small',headercss:'small bold' },
- { name: 'value', title:'Completeness %',type: 'number', css: 'small', headercss: 'small bold' }
-
- ]
- var grid = $('#sandbox_status').jsGrid(options)
- jx.dom.show('inspect_sandbox')
-
- }
|