2018-04-18 15:46:53 -05:00
|
|
|
"""
|
|
|
|
Routes and views for the flask application.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from datetime import datetime
|
|
|
|
from flask import render_template
|
|
|
|
from master import app
|
2018-04-21 17:18:20 -05:00
|
|
|
from master.resources.history_graph import HistoryGraph
|
2018-04-18 15:46:53 -05:00
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
def home():
|
2018-05-21 16:09:27 -05:00
|
|
|
_history_graph = HistoryGraph().get(2880)
|
2018-04-18 15:46:53 -05:00
|
|
|
return render_template(
|
|
|
|
'index.html',
|
2018-04-21 17:18:20 -05:00
|
|
|
title='API Overview',
|
|
|
|
history_graph = _history_graph[0]['message'],
|
2018-04-23 16:03:50 -05:00
|
|
|
data_points = _history_graph[0]['data_points'],
|
|
|
|
instance_count = _history_graph[0]['instance_count'],
|
|
|
|
client_count = _history_graph[0]['client_count'],
|
2018-05-21 16:09:27 -05:00
|
|
|
server_count = _history_graph[0]['server_count']
|
2018-04-21 17:18:20 -05:00
|
|
|
)
|