1. 下载预编译的iLogtail包,解压后进入目录,该目录下文均称为部署目录。
wget https://ilogtail-community-edition.oss-cn-shanghai.aliyuncs.com/latest/ilogtail-latest.linux-amd64.tar.gz
tar -xzvf ilogtail-latest.linux-amd64.tar.gz
cd ilogtail-<version>
2. 对iLogtail进行配置
部署目录中ilogtail_config.json
是iLogtail的系统参数配置文件。user_yaml_config.d
是iLogtail的采集配置目录。
这里我们在采集配置目录中创建file_simple.yaml
文件,配置采集当前目录simple.log文件并输出到标准输出:
enable: true
inputs:
- Type: file_log # 文件输入类型
LogPath: . # 文件路径Glob匹配规则
FilePattern: simple.log # 文件名Glob匹配规则
flushers:
- Type: flusher_stdout # 标准输出流输出类型
OnlyStdout: true
您也可以直接从下面的地址下载示例配置。
cd user_yaml_config.d
wget https://raw.githubusercontent.com/alibaba/ilogtail/main/example_config/quick_start/user_yaml_config.d/file_simple.yaml
cd -
3. 后台启动iLogtail
nohup ./ilogtail > stdout.log 2> stderr.log &
以上命令将标准输出重定向到stdout.log以便观察。
4. 构造示例日志
echo 'Hello, iLogtail!' >> simple.log
5. 查看采集到的文件日志
cat stdout.log
结果为
2022-07-15 00:20:29 {"__tag__:__path__":"./simple.log","content":"Hello, iLogtail!","__time__":"1657815627"}