@@ -356,13 +356,13 @@ def get_icon(value):
356
356
<td>Left</td>
357
357
<td style="{ left_color } ">{ left_content } { left_icon } </td>
358
358
<td style="{ left_message_time_color } ">{ left_message_time_formatted } </td>
359
- <td style=" { left_last_change_color } " >{ left_last_change_formatted } </td>
359
+ <td>{ left_last_change_formatted } </td>
360
360
</tr>
361
361
<tr>
362
362
<td>Right</td>
363
363
<td style="{ right_color } ">{ right_content } { right_icon } </td>
364
364
<td style="{ right_message_time_color } ">{ right_message_time_formatted } </td>
365
- <td style=" { right_last_change_color } " >{ right_last_change_formatted } </td>
365
+ <td>{ right_last_change_formatted } </td>
366
366
</tr>
367
367
</table>
368
368
<div class="center">
@@ -376,14 +376,14 @@ def get_icon(value):
376
376
377
377
378
378
379
- def generate_plot (self , resampling_value = '3H' ):
379
+ def generate_plot (self , resampling_value = '3H' , days = 10 ):
380
380
# Load data from CSV log file
381
381
df = pd .read_csv (link .log_file , parse_dates = ['messageTime' ])
382
382
383
383
# Filter data for the past 7 days
384
384
now = datetime .now ()
385
- one_week_ago = now - timedelta (days = 7 )
386
- df_filtered = df [df ['messageTime' ] >= one_week_ago ]
385
+ time_window = now - timedelta (days = days )
386
+ df_filtered = df [df ['messageTime' ] >= time_window ]
387
387
388
388
# Ensure 'content' column is numeric
389
389
df_filtered ['content' ] = pd .to_numeric (df_filtered ['content' ], errors = 'coerce' )
@@ -435,8 +435,9 @@ def generate_plot(self, resampling_value='3H'):
435
435
labels = labels0 + labels1 + ['Alert Sent' ]
436
436
fig .legend (handles = handles , labels = labels , loc = 'lower center' , ncol = 3 ) # Move legend to bottom
437
437
438
- axs [0 ].set_title (' Bank Contents for the Past 7 Days' )
438
+ axs [0 ].set_title (f" Bank Contents for the Past { days } Days" )
439
439
440
+ plt .xlim (time_window , now ) # Ensure x-axis limits are set correctly
440
441
plt .tight_layout (rect = [0 , 0.1 , 1 , 0.95 ]) # Adjust layout to make space for the legend at the bottom
441
442
plt .savefig ('plot.png' )
442
443
plt .close ()
0 commit comments