2018-04-21 18:18:20 -04:00
|
|
|
from flask_restful import Resource
|
|
|
|
from pygal.style import Style
|
|
|
|
from master import ctx
|
|
|
|
import pygal
|
|
|
|
import timeago
|
|
|
|
from math import ceil
|
|
|
|
|
|
|
|
class HistoryGraph(Resource):
|
|
|
|
def get(self, history_count):
|
|
|
|
try:
|
|
|
|
custom_style = Style(
|
|
|
|
background='transparent',
|
|
|
|
plot_background='transparent',
|
|
|
|
foreground='rgba(109, 118, 126, 0.3)',
|
|
|
|
foreground_strong='rgba(109, 118, 126, 0.3)',
|
|
|
|
foreground_subtle='rgba(109, 118, 126, 0.3)',
|
|
|
|
opacity='0.1',
|
|
|
|
opacity_hover='0.2',
|
|
|
|
transition='100ms ease-in',
|
|
|
|
colors=('#007acc', '#749363')
|
|
|
|
)
|
|
|
|
|
|
|
|
graph = pygal.StackedLine(
|
|
|
|
stroke_style={'width': 0.4},
|
|
|
|
show_dots=False,
|
|
|
|
show_legend=False,
|
|
|
|
fill=True,
|
|
|
|
style=custom_style,
|
|
|
|
disable_xml_declaration=True)
|
|
|
|
|
|
|
|
instance_count = [history['time'] for history in ctx.history.instance_history][-history_count:]
|
|
|
|
|
|
|
|
if len(instance_count) > 0:
|
|
|
|
graph.x_labels = [ timeago.format(instance_count[0])]
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
instance_counts = [history['count'] for history in ctx.history.instance_history][-history_count:]
|
|
|
|
client_counts = [history['count'] for history in ctx.history.client_history][-history_count:]
|
|
|
|
|
|
|
|
graph.add('Instance Count', instance_counts)
|
|
|
|
graph.add('Client Count', client_counts)
|
2018-04-21 18:18:20 -04:00
|
|
|
return { 'message' : graph.render(),
|
2018-04-23 17:03:50 -04:00
|
|
|
'data_points' : len(instance_count),
|
|
|
|
'instance_count' : 0 if len(instance_counts) is 0 else instance_counts[-1],
|
|
|
|
'client_count' : 0 if len(client_counts) is 0 else client_counts[-1]
|
2018-04-21 18:18:20 -04:00
|
|
|
}, 200
|
|
|
|
except Exception as e:
|
|
|
|
return { 'message' : str(e) }, 500
|