Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/component/loki/source/file/reader.go
4096 views
1
package file
2
3
// This code is copied from Promtail to accommodate the tailer and decompressor
4
// implementations as readers.
5
6
// reader contains the set of methods the loki.source.file component uses.
7
type reader interface {
8
Stop()
9
IsRunning() bool
10
Path() string
11
MarkPositionAndSize() error
12
}
13
14