File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -663,3 +663,12 @@ Mailing List
663
663
664
664
For questions and general Qless discussion, please join the [ Qless
665
665
Mailing list] ( https://groups.google.com/forum/?fromgroups#!forum/qless ) .
666
+
667
+ Release Notes
668
+ =============
669
+
670
+ 0.12.0
671
+ ------
672
+ The metric ` failures ` provided by ` qless-stats ` has been replaced by ` failed ` for
673
+ compatibility with users of ` graphite ` . See [ #275 ] ( https://github.com/seomoz/qless/pull/275 )
674
+ for more details.
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class Stats < Thor
96
96
client . gauge "failures.#{ failure } " , count
97
97
count
98
98
end . reduce ( 0 , :+ )
99
- client . gauge 'failures ' , total
99
+ client . gauge 'failed ' , total
100
100
101
101
# Track workers
102
102
client . gauge 'workers' , qless . workers . counts . length
Original file line number Diff line number Diff line change 1
1
# Encoding: utf-8
2
2
3
3
module Qless
4
- VERSION = '0.11 .0'
4
+ VERSION = '0.12 .0'
5
5
end
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def get_statsd_messages
124
124
end
125
125
126
126
it 'tracks total failures' do
127
- expect ( messages ) . to include ( 'failures :1|g' )
127
+ expect ( messages ) . to include ( 'failed :1|g' )
128
128
end
129
129
130
130
it 'tracks worker counts' do
You can’t perform that action at this time.
0 commit comments