Sha256: 2f21779ba9d6085c9c6b9cf78a11798238775660cdabe4108b2483f0e4ce1e6c

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# fluent-plugin-tagged_copy

## About

Fluentd out\_copy extension to do tagging before passing to chained plugins

## Examples

```apache
<match **>
  type tagged_copy
  <store>
    <filter>
       add_tag_prefix foo
       remove_tag_prefix bar
    </filter>
    type stdout
  </store>

  <store>
    <filter>
       tag blah
    </filter>
    type stdout
  </store>
</match>
```

## Parameters

Basically same with out\_copy plugin. See http://docs.fluentd.org/articles/out_copy

But, you can specify `filter` directive with following options

* tag

    The tag name

* add_tag_prefix

    Add tag prefix for output message

* remove_tag_prefix

    Remove tag prefix for output message
    
## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new [Pull Request](../../pull/new/master)

## ChangeLog

See [CHANGELOG.md](CHANGELOG.md) for details.

## Copyright

* Copyright (c) 2014- Naotoshi Seo
* See [LICENSE](LICENSE) for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-tagged_copy-0.0.1 README.md