iLogtail

1752
下载
iLogtail 是阿里云日志服务(Log Service)中的一款高性能、可扩展的日志采集工具。它被设计用于实时收集、解析和传输各类日志数据,支持多种数据源和复杂的日志处理场景,广泛应用于分布式系统、Web 服务器、应用程序等环境中的日志管理。

BasicAuth鉴权


BasicAuth认证扩展

简介

ext_basicauth 扩展插件,实现了 extensions.ClientAuthenticator 接口,可以在 http_flusher 插件中引用,提供向请求中添加 basic auth Header 的能力。

版本

Alpha

配置参数

参数类型是否必选说明
UsernameString用户名
PasswordString密码

样例

采集/home/test-log/路径下的所有文件名匹配*.log规则的文件,并将采集结果以 custom_single 协议、json格式提交到 http://localhost:8086/write
且提交时,使用 basic auth 认证扩展。

enable: true
inputs:
- Type: input_file
FilePaths:
- /home/test-log/*.log
flushers:
- Type: flusher_http
RemoteURL: "http://localhost:8086/write"
Convert:
Protocol: custom_single
Encoding: json
Authenticator:
Type: ext_basicauth
extensions:
- Type: ext_basicauth
Username: user1
Password: pwd1

使用命名扩展

当希望在同一个pipeline中使用多个扩展时,可一给同一类型的不同扩展实例附加一个命名,引用时可以通过full-name来引用特定的实例。

如下示例,通过将Type: ext_basicauth 改写为 Type: ext_basicauth/user1,追加命名为user1,在 http_flusher插件中通过 ext_basicauth/user1来引用。

enable: true
inputs:
- Type: input_file
FilePaths:
- /home/test-log/*.log
flushers:
- Type: flusher_http
RemoteURL: "http://localhost:8086/write"
Convert:
Protocol: custom_single
Encoding: json
Authenticator:
Type: ext_basicauth/user1
extensions:
- Type: ext_basicauth/user1
Username: user1
Password: pwd1
- Type: ext_basicauth/user2
Username: user2
Password: pwd2

observability.cn Authors 2024 | Documentation Distributed under CC-BY-4.0
Copyright © 2017-2024, Alibaba. All rights reserved. Alibaba has registered trademarks and uses trademarks.
浙ICP备2021005855号-32