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 插件。

参数

参数

注释

名称

字符串 / 必需

安装具有该名称的插件。

plugin_bin

路径

指定用于插件管理的 logstash-plugin。

默认值: "/usr/share/logstash/bin/logstash-plugin"

proxy_host

字符串

插件安装期间使用的代理主机。

proxy_port

字符串

插件安装期间使用的代理端口。

状态

字符串

应用插件状态。

选项

  • "present" ←(默认)

  • "absent"

版本

字符串

指定要安装的插件的版本。如果插件存在较早版本,则不会更新。

属性

属性

支持

描述

check_mode

支持:完全支持

可以在 check_mode 中运行,并返回更改状态预测,而无需修改目标。

diff_mode

支持:不支持

当处于差异模式时,将返回已更改(或可能需要在 check_mode 中更改)的详细信息。

示例

- 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"

作者

  • Loic Blot (@nerzhul)