main_website/print_stats.py

37 lines
1.4 KiB
Python
Raw Normal View History

2021-11-19 17:09:24 +01:00
#!/usr/bin/python3
import os
import traceback
import logging
2021-11-19 17:09:24 +01:00
from time import sleep
from dotenv import load_dotenv
from seleniumwire import webdriver
from seleniumwire.webdriver import FirefoxOptions
try:
2021-11-19 22:51:34 +01:00
os.chdir(os.path.dirname(os.path.abspath(__file__)))
load_dotenv()
2021-11-19 17:09:24 +01:00
2021-11-19 22:51:34 +01:00
opts = FirefoxOptions()
opts.add_argument("--headless")
browser = webdriver.Firefox(options=opts,executable_path="/usr/local/bin/geckodriver")
browser.set_window_size(3000, 1120)
2021-11-19 17:09:24 +01:00
2021-11-19 22:51:34 +01:00
def interceptor(request):
request.headers['Authorization'] = 'Basic '+os.environ["ES_TOKEN"]
browser.request_interceptor = interceptor
2021-11-19 17:09:24 +01:00
2021-11-19 22:51:34 +01:00
for duration in ["24h", "7d", "1M", "1y"]:
browser.get("https://mon.gnous.fr/app/dashboards#/view/380099d0-4944-11ec-81a9-95d7ffa23468?embed=true&_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-"+duration+"%2Cto%3Anow))&hide-filter-bar=true")
2021-11-21 01:42:47 +01:00
sleep(60)
2021-11-19 22:51:34 +01:00
browser.get_screenshot_as_file("html/ressources/stats/mm"+duration+".png")
2021-11-19 17:09:24 +01:00
2021-11-19 22:51:34 +01:00
for duration in ["24h", "7d", "1M", "1y"]:
browser.get("https://mon.gnous.fr/app/dashboards#/view/ef70de60-4947-11ec-81a9-95d7ffa23468?embed=true&_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-"+duration+"%2Cto%3Anow))&hide-filter-bar=true")
2021-11-21 01:42:47 +01:00
sleep(60)
2021-11-19 22:51:34 +01:00
browser.get_screenshot_as_file("html/ressources/stats/nc"+duration+".png")
2021-11-21 01:42:47 +01:00
browser.quit()
except Exception as e:
2021-11-19 22:51:34 +01:00
logging.error(traceback.format_exc())