community.general.logstash_plugin 模块 – 管理 Logstash 插件
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.logstash_plugin
。
概要
管理 Logstash 插件。
参数
参数 |
注释 |
---|---|
安装具有该名称的插件。 |
|
指定用于插件管理的 logstash-plugin。 默认值: |
|
插件安装期间使用的代理主机。 |
|
插件安装期间使用的代理端口。 |
|
应用插件状态。 选项
|
|
指定要安装的插件的版本。如果插件存在较早版本,则不会更新。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 |
可以在 |
|
支持:不支持 |
当处于差异模式时,将返回已更改(或可能需要在 |
示例
- name: Install Logstash beats input plugin
community.general.logstash_plugin:
state: present
name: logstash-input-beats
- name: Install specific version of a plugin
community.general.logstash_plugin:
state: present
name: logstash-input-syslog
version: '3.2.0'
- name: Uninstall Logstash plugin
community.general.logstash_plugin:
state: absent
name: logstash-filter-multiline
- name: Install Logstash plugin with alternate heap size
community.general.logstash_plugin:
state: present
name: logstash-input-beats
environment:
LS_JAVA_OPTS: "-Xms256m -Xmx256m"