1package 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. 7type reader interface { 8 Stop() 9 IsRunning() bool 10 Path() string 11 MarkPositionAndSize() error 12} 13 14