2018-05-11 04:49:36 +00:00
|
|
|
package probe
|
|
|
|
|
2018-05-11 05:17:17 +00:00
|
|
|
import (
|
|
|
|
"git.loafle.net/overflow/commons-go/model/data"
|
|
|
|
)
|
|
|
|
|
2018-05-11 04:49:36 +00:00
|
|
|
type MetricService interface {
|
2018-05-11 05:17:17 +00:00
|
|
|
Send(metric *data.Metric) error
|
2018-05-11 04:49:36 +00:00
|
|
|
}
|