Meet metrics! Now in HAProxy-WI you can see count incomning connections!
This commit is contained in:
Aidaho12
2018-08-04 01:17:03 +06:00
parent 08dc1d8146
commit a8c7b99db8
18 changed files with 455 additions and 52 deletions

29
app/metrics.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python3
import os
import sql
import http
import funct
import sql
from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader('templates/'))
template = env.get_template('metrics.html')
print('Content-type: text/html\n')
funct.check_login()
try:
cookie = http.cookies.SimpleCookie(os.environ.get("HTTP_COOKIE"))
user_id = cookie.get('uuid')
user = sql.get_user_name_by_uuid(user_id.value)
servers = sql.get_dick_permit()
token = sql.get_token(user_id.value)
except:
pass
template = template.render(h2 = 1, title = "Metrics",
autorefresh = 1,
role = sql.get_user_role_by_uuid(user_id.value),
user = user,
onclick = "metricsShow()",
token = token)
print(template)