瀏覽代碼

Pass dropcounter rate option if no max counter and no reset value or reset value as 0 is specified (#7743)

Pranay Kanwar 8 年之前
父節點
當前提交
6ab90425c4
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      pkg/tsdb/opentsdb/opentsdb.go

+ 4 - 0
pkg/tsdb/opentsdb/opentsdb.go

@@ -190,6 +190,10 @@ func (e *OpenTsdbExecutor) buildMetric(query *tsdb.Query) map[string]interface{}
 			rateOptions["resetValue"] = resetValue.MustFloat64()
 		}
 
+		if !counterMaxCheck && (!resetValueCheck || resetValue.MustFloat64() == 0) {
+			rateOptions["dropcounter"] = true
+		}
+
 		metric["rateOptions"] = rateOptions
 	}