BasicAuth鉴权

简介

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

版本

Alpha

版本说明

  • 推荐版本:iLogtail v1.5.0 及以上

配置参数

参数
类型
是否必选
说明

Username

string

用户名

Password

string

密码

样例

采集/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来引用。

Last updated