{"id":16643534,"url":"https://github.com/sonots/fluent-plugin-debug","last_synced_at":"2025-07-28T19:43:03.571Z","repository":{"id":16384576,"uuid":"19135172","full_name":"sonots/fluent-plugin-debug","owner":"sonots","description":"(Unmaintained) Fluentd plugin to investigate incoming messages in a short-hand","archived":false,"fork":false,"pushed_at":"2017-09-14T21:33:40.000Z","size":9,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-06T19:02:16.725Z","etag":null,"topics":["fluentd-input-plugin","fluentd-plugin","unmaintained-dont-use","v10"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sonots.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-25T05:33:01.000Z","updated_at":"2017-09-15T07:41:54.000Z","dependencies_parsed_at":"2022-07-25T04:32:23.182Z","dependency_job_id":null,"html_url":"https://github.com/sonots/fluent-plugin-debug","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonots%2Ffluent-plugin-debug","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonots%2Ffluent-plugin-debug/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonots%2Ffluent-plugin-debug/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonots%2Ffluent-plugin-debug/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonots","download_url":"https://codeload.github.com/sonots/fluent-plugin-debug/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238961189,"owners_count":19559435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fluentd-input-plugin","fluentd-plugin","unmaintained-dont-use","v10"],"created_at":"2024-10-12T08:08:51.455Z","updated_at":"2025-02-15T07:32:44.020Z","avatar_url":"https://github.com/sonots.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fluent-plugin-debug\n\n[![Build Status](https://secure.travis-ci.org/sonots/fluent-plugin-debug.png?branch=master)](http://travis-ci.org/sonots/fluent-plugin-debug)\n[![Code Climate](https://codeclimate.com/github/sonots/fluent-plugin-debug.png)](https://codeclimate.com/github/sonots/fluent-plugin-debug)\n\nFluentd plugin to investigate incoming messages in a short-hand.\n\n## Installation\n\nUse RubyGems:\n\n    gem install fluent-plugin-debug\n\n## What is this for?\n\nDo you use `out_copy` and `out_stdout` to see incoming messages?\n\n```apache\n\u003cmatch **\u003e\n  type copy\n  \u003cstore\u003e\n    type stdout # output incoming messages here for debug\n  \u003c/store\u003e\n  \u003cstore\u003e\n    type file # something you want to do in production\n  \u003c/store\u003e\n\u003c/match\u003e\n```\n\nThis plugin enables to write the same thing in a short-hand, by just adding `debug true`, as:\n\n```apache\n\u003cmatch **\u003e\n  type file # something you want to do in production\n  debug true # just add this for debug\n\u003c/match\u003e\n```\n\n## Configuration\n\nThis plugin is doing something tricky, which extends arbitrary plugins so that they can use `debug` option parameter. \n\n```apache\n\u003csource\u003e\n  type debug # This makes available the `debug` option for all output plugins\n\u003c/source\u003e\n\n\u003cmatch **\u003e\n  type file\n  debug true # Now you can use `debug true`\n\u003c/match\u003e\n```\n\nIf you are lazy to write even `debug true`, you may use `debug_all` option. \n\n```apache\n\u003csource\u003e\n  type debug\n  debug_all true # This makes turn on the `debug` option for all output plugins\n\u003c/source\u003e\n\n\u003cmatch **\u003e\n  type file # Now you don't need even to add `debug true`\n\u003c/match\u003e\n```\n\n## Options\n\n### Options (source)\n\n* debug_all\n\n  * Apply `debug true` for all output plugins\n\n### Options (output plugins)\n\nThis plugin extends all output plugins and enables to use the following options:\n\n* debug (bool)\n\n  * Enable to output the incoming messages\n\n## ChangeLog\n\nSee [CHANGELOG.md](CHANGELOG.md) for details.\n\n## Note\n\nThis plugin is dedicated to [@hirose31](https://github.com/hirose31). \n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new [Pull Request](../../pull/new/master)\n\n## Copyright\n\nCopyright (c) 2014 Naotoshi Seo. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonots%2Ffluent-plugin-debug","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonots%2Ffluent-plugin-debug","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonots%2Ffluent-plugin-debug/lists"}