No commit activity in last 3 years
No release in over 3 years
Output filter plugin to retag
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 12.0
~> 3.2

Runtime

< 2, >= 0.14.8
 Project Readme

fluent-plugin-retag, a plugin for Fluentd

Overview

Output plugin only retagging.

  • simple retag
  • remove tag prefix
  • add tag prefix

Configuration

Simple Configuration

To retag foo.bar to hoge.fuga:

<match foo.bar>
  @type retag
  tag hoge.fuga
</match>

To retag foo.bar.** to xyz.bar.**:

<match foo.bar>
  @type retag
  remove_prefix foo
  add_prefix xyz
</match>

Useful Configuration

If you want to use branch condition, it is useful to use out_copy with fluent-plugin-retag.

<match foo.bar.**>
  @type copy
  <store>
    @type retag
    add_prefix copied
  </store>
  <store>
    ...
  </store>
</match>

<match copied.foo.bar.**>
  ...
</match>

Copyright

  • Copyright (c) 2013- Masahiro Yamauchi
  • License
    • Apache License, Version 2.0