2022-04-18 14:23:00 +08:00
|
|
|
package parser
|
|
|
|
|
2022-07-25 19:27:14 +08:00
|
|
|
import (
|
|
|
|
"flashcat.cloud/categraf/types"
|
|
|
|
)
|
2022-04-18 14:23:00 +08:00
|
|
|
|
|
|
|
type Parser interface {
|
2022-07-25 19:27:14 +08:00
|
|
|
Parse(input []byte, slist *types.SampleList) error
|
2022-04-18 14:23:00 +08:00
|
|
|
}
|