basic file source and usage ingester (#128)

This commit is contained in:
Michael Quigley
2023-03-03 14:22:22 -05:00
parent 55523ae7ed
commit f5846681e7
7 changed files with 49 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
package metrics
type Source interface {
Start() (chan struct{}, error)
Start(chan map[string]interface{}) (chan struct{}, error)
Stop()
}