2016-11-09 20:30:07 +00:00
// Copyright 2016 Circonus, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2016-07-19 23:40:41 +00:00
package circonusgometrics
2019-06-19 12:50:48 +00:00
import "fmt"
2016-07-19 23:40:41 +00:00
// A Counter is a monotonically increasing unsigned integer.
//
// Use a counter to derive rates (e.g., record total number of requests, derive
// requests per second).
// Increment counter by 1
func ( m * CirconusMetrics ) Increment ( metric string ) {
m . Add ( metric , 1 )
}
// IncrementByValue updates counter by supplied value
func ( m * CirconusMetrics ) IncrementByValue ( metric string , val uint64 ) {
m . Add ( metric , val )
}
2016-08-09 23:34:48 +00:00
// Set a counter to specific value
func ( m * CirconusMetrics ) Set ( metric string , val uint64 ) {
m . cm . Lock ( )
defer m . cm . Unlock ( )
m . counters [ metric ] = val
}
2016-07-19 23:40:41 +00:00
// Add updates counter by supplied value
func ( m * CirconusMetrics ) Add ( metric string , val uint64 ) {
m . cm . Lock ( )
defer m . cm . Unlock ( )
m . counters [ metric ] += val
}
// RemoveCounter removes the named counter
func ( m * CirconusMetrics ) RemoveCounter ( metric string ) {
m . cm . Lock ( )
defer m . cm . Unlock ( )
delete ( m . counters , metric )
}
2019-06-19 12:50:48 +00:00
// GetCounterTest returns the current value for a counter. (note: it is a function specifically for "testing", disable automatic submission during testing.)
func ( m * CirconusMetrics ) GetCounterTest ( metric string ) ( uint64 , error ) {
m . cm . Lock ( )
defer m . cm . Unlock ( )
if val , ok := m . counters [ metric ] ; ok {
return val , nil
}
return 0 , fmt . Errorf ( "Counter metric '%s' not found" , metric )
}
2016-07-19 23:40:41 +00:00
// SetCounterFunc set counter to a function [called at flush interval]
func ( m * CirconusMetrics ) SetCounterFunc ( metric string , fn func ( ) uint64 ) {
m . cfm . Lock ( )
defer m . cfm . Unlock ( )
m . counterFuncs [ metric ] = fn
}
// RemoveCounterFunc removes the named counter function
func ( m * CirconusMetrics ) RemoveCounterFunc ( metric string ) {
m . cfm . Lock ( )
defer m . cfm . Unlock ( )
delete ( m . counterFuncs , metric )
}