https://github.com/sonots/fluent-plugin-named_pipe
Named pipe input/output plugin for Fluentd
https://github.com/sonots/fluent-plugin-named_pipe
fluentd-input-plugin fluentd-plugin v10 v12 v14 wont-be-multi-workers-ready
Last synced: about 1 year ago
JSON representation
Named pipe input/output plugin for Fluentd
- Host: GitHub
- URL: https://github.com/sonots/fluent-plugin-named_pipe
- Owner: sonots
- License: mit
- Created: 2014-11-21T19:15:02.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-06-28T13:45:31.000Z (almost 8 years ago)
- Last Synced: 2025-03-14T23:14:23.712Z (about 1 year ago)
- Topics: fluentd-input-plugin, fluentd-plugin, v10, v12, v14, wont-be-multi-workers-ready
- Language: Ruby
- Size: 26.4 KB
- Stars: 9
- Watchers: 1
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# fluent-plugin-named_pipe
[](http://travis-ci.org/sonots/fluent-plugin-named_pipe)
Named pipe input/output plugin for Fluentd.
# Input Plugin
## Configuration
```apache
type named_pipe
path /path/to/file
tag foo.bar
format ltsv
```
## Parameters
- path
The file path of the named pipe
- tag
The emit tag name
- format
The input format such as regular expression, `apache2`, `ltsv`, etc. Same with `in_tail` plugin. See http://docs.fluentd.org/articles/in_tail
# Output Plugin
## Configuration
```apache
type named_pipe
path /path/to/file
```
The output to the named pipe would be like:
```
foo.bar: {"foo":"bar"}
```
## Parameters
- path
The file path of the named pipe
- format
The output format such as `out_file`, `json`, `ltsv`, `single_value`. Default is `out_file`.
## ChangeLog
See [CHANGELOG.md](CHANGELOG.md) for details.
## 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)
## Copyright
Copyright (c) 2014 Naotoshi Seo. See [LICENSE](LICENSE) for details.