|
|
@ -1107,7 +1107,7 @@ def prepare_plot(id):
|
|
|
|
q.append({"info":"Monitoring CPU consumption trends","ylabel":"% used","node":node,"type":"bar","x":XCPU,"labels":np.arange(1,xn_).tolist(),"series":names,"title":"CPU Usage"})
|
|
|
|
q.append({"info":"Monitoring CPU consumption trends","ylabel":"% used","node":node,"type":"bar","x":XCPU,"labels":np.arange(1,xn_).tolist(),"series":names,"title":"CPU Usage"})
|
|
|
|
key = 'apps@'+node
|
|
|
|
key = 'apps@'+node
|
|
|
|
session[key] = q
|
|
|
|
session[key] = q
|
|
|
|
print session.keys()
|
|
|
|
|
|
|
|
return (key,200)
|
|
|
|
return (key,200)
|
|
|
|
except Exception,e:
|
|
|
|
except Exception,e:
|
|
|
|
print (e)
|
|
|
|
print (e)
|
|
|
@ -1118,7 +1118,7 @@ def prepare_plot(id):
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/1/plot/<format>/<id>/<key>",methods=['GET'])
|
|
|
|
@app.route("/1/plot/<format>/<id>/<key>",methods=['GET'])
|
|
|
|
def get_charts(format,id,key):
|
|
|
|
def get_charts(format,id,key):
|
|
|
|
print session.keys()
|
|
|
|
|
|
|
|
if key not in session :
|
|
|
|
if key not in session :
|
|
|
|
context = SYS_ARGS.PARAMS['context'] if 'context' in SYS_ARGS.PARAMS else ''
|
|
|
|
context = SYS_ARGS.PARAMS['context'] if 'context' in SYS_ARGS.PARAMS else ''
|
|
|
|
return render_template('error.html',context=context,caption='404',msg='Session key NOT set in session')
|
|
|
|
return render_template('error.html',context=context,caption='404',msg='Session key NOT set in session')
|
|
|
|