casseo 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/casseo/dashboard.rb +1 -1
- data/lib/casseo/version.rb +1 -1
- metadata +1 -1
data/lib/casseo/dashboard.rb
CHANGED
@@ -251,7 +251,7 @@ module Casseo
|
|
251
251
|
def show_status
|
252
252
|
Curses.setpos(num_lines, 0)
|
253
253
|
Curses.attron(Curses::color_pair(STATUS) | Curses::A_NORMAL) do
|
254
|
-
str = "
|
254
|
+
str = "casseo: =%s (%s) [metrics:%s interval:%ss]" %
|
255
255
|
[@name, format_period(@period * 60), @num_metrics, Config.interval.to_i]
|
256
256
|
page_str = "--- %s/%s ---" % [@page, num_pages]
|
257
257
|
|
data/lib/casseo/version.rb
CHANGED