Skip to content
Snippets Groups Projects
Commit 6ba8ce20 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

history plot use orange for events still being analyzed

parent 6e994366
No related branches found
No related tags found
No related merge requests found
......@@ -82,9 +82,15 @@ def plot_history(path, lookback='7 days ago', draw_segs=False):
fig = plt.figure(figsize=(16, 4)) #, dpi=80)
ax = fig.add_subplot(111)
# plot analyzing
escatter(
[e for e in events if e.analyzing],
s=100, color='orange',
)
# plot failed lock losses
escatter(
[e for e in events if not e.analysis_succeeded],
[e for e in events if not e.analyzing and not e.analysis_succeeded],
s=100, color='red',
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment