This commit is contained in:
crusader 2018-05-11 14:17:17 +09:00
parent fa179a9bf6
commit bd183fd1fc

View File

@ -1,5 +1,9 @@
package probe
import (
"git.loafle.net/overflow/commons-go/model/data"
)
type MetricService interface {
Send(sensorConfigID string, metric map[string]string) error
Send(metric *data.Metric) error
}