Skip to content

Commit 0e5b23c

Browse files
committed
changed the plot to a default of 10 days history (customisable)
remove the red warning from the lastChange column
1 parent 70c1394 commit 0e5b23c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

linde_manager.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -356,13 +356,13 @@ def get_icon(value):
356356
<td>Left</td>
357357
<td style="{left_color}">{left_content} {left_icon}</td>
358358
<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>
360360
</tr>
361361
<tr>
362362
<td>Right</td>
363363
<td style="{right_color}">{right_content} {right_icon}</td>
364364
<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>
366366
</tr>
367367
</table>
368368
<div class="center">
@@ -376,14 +376,14 @@ def get_icon(value):
376376

377377

378378

379-
def generate_plot(self, resampling_value='3H'):
379+
def generate_plot(self, resampling_value='3H', days=10):
380380
# Load data from CSV log file
381381
df = pd.read_csv(link.log_file, parse_dates=['messageTime'])
382382

383383
# Filter data for the past 7 days
384384
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]
387387

388388
# Ensure 'content' column is numeric
389389
df_filtered['content'] = pd.to_numeric(df_filtered['content'], errors='coerce')
@@ -435,8 +435,9 @@ def generate_plot(self, resampling_value='3H'):
435435
labels = labels0 + labels1 + ['Alert Sent']
436436
fig.legend(handles=handles, labels=labels, loc='lower center', ncol=3) # Move legend to bottom
437437

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")
439439

440+
plt.xlim(time_window, now) # Ensure x-axis limits are set correctly
440441
plt.tight_layout(rect=[0, 0.1, 1, 0.95]) # Adjust layout to make space for the legend at the bottom
441442
plt.savefig('plot.png')
442443
plt.close()

0 commit comments

Comments
 (0)