Skip to content

Commit

Permalink
cubestat: fix observed
Browse files Browse the repository at this point in the history
  • Loading branch information
okuvshynov committed Jun 14, 2024
1 parent 280049b commit 8445ffb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cubestat/cubestat.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def render(self):
self.write_char(i * 2 + 1, col, chr, curses.color_pair(color_pair))

i += 1
self.snapshots_rendered += 1
self.snapshots_rendered = self.snapshots_observed
if self.modes['time'] != TimelineMode.none:
tl = plot_timeline(self.cols - 2, args.refresh_ms, self.filling, self.timeline_interval, self.horizontal_shift)
self.write_string(i * 2, 0, "╚" + tl + "╝")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='cubestat',
version='0.3.0',
version='0.3.1',
author='Oleksandr Kuvshynov',
author_email='okuvshynov@gmail.com',
description='Horizon chart in terminal for system monitoring',
Expand Down

0 comments on commit 8445ffb

Please sign in to comment.