https://github.com/sonots/fluent-plugin-stdout_ex
(Deprecated) Fluentd out_stdout extension
https://github.com/sonots/fluent-plugin-stdout_ex
deprecated fluentd-output-plugin fluentd-plugin unmaintained-dont-use
Last synced: 4 months ago
JSON representation
(Deprecated) Fluentd out_stdout extension
- Host: GitHub
- URL: https://github.com/sonots/fluent-plugin-stdout_ex
- Owner: sonots
- License: other
- Created: 2014-05-01T16:49:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-11-25T14:49:11.000Z (over 7 years ago)
- Last Synced: 2025-03-06T00:35:20.322Z (4 months ago)
- Topics: deprecated, fluentd-output-plugin, fluentd-plugin, unmaintained-dont-use
- Language: Ruby
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
**Recent built-in stdout plugin supports formatter. This plugin is no longer needed.**
# fluent-plugin-stdout_ex
Fluentd out\_stdout extension
## Introduction
Although the original `out_stdout` outputs log messages as:
```
2010-05-04 12:02:01 +0900 test: {"test":"test"}
```this plugin outputs log messages as:
```
2014-05-02 02:02:21 +0900 [info]: 2010-05-04 12:02:01 +0900 test: {"test":"test"}
```where the first time expresses the current time of *logging*, and the second time expresses the time field of messages, i.e.,
the time when the message is created, or the time written in application logs.This behavior is very useful because we can see the latency between receiving (logging) and sending (creating) of messages.
## Configuration
```apache
type stdout_ex
```
## Parameters
Basically same with out\_stdout plugin. See http://docs.fluentd.org/articles/out_stdout
* format ltsv
The output becomes LTSV format as followings:
current_time:2010-05-04 12:02:01 +0900 time:2010-05-04 12:02:01 +0900 tag:test record:{"test":"test"}## 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.
## stdoutright
* Copyright (c) 2014- Naotoshi Seo
* See [LICENSE](LICENSE) for details.