Repository is archived
No commit activity in last 3 years
No release in over 3 years
Fluentd plugin to reload child plugin's config
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0

Runtime

 Project Readme

fluent-plugin-config_reloader

reload child plugin's config plugin.

Output Plugin

  config_file child.conf
  reload_file reload.txt
  reload_file_watch_interval 5
  • config_file: child conf file path
  • Require 1 match directive in this file
  • reload_file: reload file path(reload when touch this file)
  • reload_file_watch_interval (optional): reload file watch interval sec(default 1)

example

<match example.**>
  type config_reloader
  config_file conf/child.conf
  reload_file reload.txt
</match>

conf/child.conf

<match>
  type stdout
</match>

Use out_copy...

<store>
  type copy
  <store>
    type stdout
  </store>
  <store>
    type null
  </store>
</store>