timing
This commit is contained in:
parent
e3b2ea704d
commit
0e9cb0a7f8
10
src/run.py
10
src/run.py
@ -71,7 +71,7 @@ def index():
|
||||
),
|
||||
yaxis=dict(ticksuffix=" kWh")
|
||||
)
|
||||
graph_html_1 = fig_1.to_html(full_html=False, default_height='33%')
|
||||
graph_html_1 = fig_1.to_html(full_html=False, default_height='30%')
|
||||
|
||||
step3_time = time.time()
|
||||
df = pd.read_sql("SELECT time_bucket('5 minutes', time) AS bucket, AVG(power) AS avg_power FROM pv_power_v WHERE time >= date_trunc('day', now()) - '1 day'::interval AND time < date_trunc('day', now()) GROUP BY bucket ORDER BY bucket", con=engine)
|
||||
@ -86,7 +86,7 @@ def index():
|
||||
title=f"Export gestern {duration1:.3f}, {duration2:.3f}",
|
||||
yaxis=dict(ticksuffix=" W")
|
||||
)
|
||||
graph_html_2 = fig_2.to_html(full_html=False, default_height='33%')
|
||||
graph_html_2 = fig_2.to_html(full_html=False, default_height='30%')
|
||||
|
||||
step6_time = time.time()
|
||||
df = pd.read_sql("SELECT time_bucket('5 minutes', time) AS bucket, AVG(power) AS avg_power FROM pv_power_v WHERE time >= date_trunc('day', now()) AND time < date_trunc('day', now()) + '1 day'::interval GROUP BY bucket ORDER BY bucket", con=engine)
|
||||
@ -101,7 +101,7 @@ def index():
|
||||
title=f"Export heute {duration1:.3f}, {duration2:.3f}",
|
||||
yaxis=dict(ticksuffix=" W")
|
||||
)
|
||||
graph_html_3 = fig_3.to_html(full_html=False, default_height='33%')
|
||||
graph_html_3 = fig_3.to_html(full_html=False, default_height='30%')
|
||||
stepZ_time = time.time()
|
||||
duration = stepZ_time - stepX_time
|
||||
|
||||
@ -114,9 +114,9 @@ def index():
|
||||
{graph_html_1}
|
||||
{graph_html_2}
|
||||
{graph_html_3}
|
||||
<p>
|
||||
<div style="height:9vh; background-color:lightgrey;">
|
||||
{duration:.3f}
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
""")
|
||||
|
Loading…
x
Reference in New Issue
Block a user