@@ -125,10 +125,10 @@ var RectifyWorkError = promauto.NewCounterVec(prometheus.CounterOpts{
125
125
Name : "error_rectify_work" ,
126
126
Help : "An error was encountered attempting to rectify the worker's work that needs to be processed/completed." ,
127
127
}, []string {"divider" })
128
- var RemoveWorkFromDividerError = promauto .NewCounterVec (prometheus.CounterOpts {
128
+ var RemoveWorkFromDividerStorageError = promauto .NewCounterVec (prometheus.CounterOpts {
129
129
Namespace : "streemtech" ,
130
130
Subsystem : "redis_work_divider" ,
131
- Name : "error_remove_work_from_divider " ,
131
+ Name : "error_remove_work_from_divider_storage " ,
132
132
Help : "An error was encountered attempting to remove work from the stored work that needs to be done in redis" ,
133
133
}, []string {"divider" })
134
134
var StartWorkExternalError = promauto .NewCounterVec (prometheus.CounterOpts {
@@ -216,7 +216,7 @@ func InitMetrics(name string) {
216
216
PublishAddWorkToDividerError .MetricVec ,
217
217
PublishRemoveWorkFromDividerError .MetricVec ,
218
218
RectifyWorkError .MetricVec ,
219
- RemoveWorkFromDividerError .MetricVec ,
219
+ RemoveWorkFromDividerStorageError .MetricVec ,
220
220
StartWorkExternalError .MetricVec ,
221
221
StopWorkExternalError .MetricVec ,
222
222
WorkFetcherError .MetricVec ,
0 commit comments