1 Star 0 Fork 0

zhangjungang/beats

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
stdin.go 330 Bytes
Copy Edit Raw Blame History
package harvester
import (
"os"
"github.com/elastic/beats/filebeat/harvester/source"
)
// Stdin reads all incoming traffic from stdin and sends it directly to the output
func (h *Harvester) openStdin() error {
h.file = source.Pipe{File: os.Stdin}
var err error
h.encoding, err = h.encodingFactory(h.file)
return err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.0.0-alpha1

Search