CLI works

This commit is contained in:
Cody Lee
2022-12-22 18:16:43 -06:00
parent db9bcd5687
commit 3768c53512
16 changed files with 126 additions and 33 deletions

View File

@@ -21,7 +21,7 @@ type Input interface {
Metrics(*Filter) (*Metrics, error) // Called every time new metrics are requested.
Events(*Filter) (*Events, error) // This is new.
RawMetrics(*Filter) ([]byte, error)
DebugInputs(Logger) (bool, error)
DebugInput() (bool, error)
}
// InputPlugin describes an input plugin's consumable interface.