2023-03-03 14:22:22 -05:00

11 lines
181 B
Go

package metrics
type Source interface {
Start(chan map[string]interface{}) (chan struct{}, error)
Stop()
}
type Ingester interface {
Ingest(msg map[string]interface{}) error
}