{"id":16645135,"url":"https://github.com/cosmo0920/fluent-plugin-terminal_notifier","last_synced_at":"2026-04-24T10:33:38.454Z","repository":{"id":56847227,"uuid":"44469785","full_name":"cosmo0920/fluent-plugin-terminal_notifier","owner":"cosmo0920","description":"A fluentd plugin to notify notification center with terminal-notifier.","archived":false,"fork":false,"pushed_at":"2017-05-07T04:30:58.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-07T14:07:41.735Z","etag":null,"topics":["fluentd-plugin","macos","terminal-notifier"],"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/cosmo0920.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-10-18T07:44:45.000Z","updated_at":"2024-04-21T13:15:53.000Z","dependencies_parsed_at":"2022-09-12T11:44:32.749Z","dependency_job_id":null,"html_url":"https://github.com/cosmo0920/fluent-plugin-terminal_notifier","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/cosmo0920/fluent-plugin-terminal_notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmo0920%2Ffluent-plugin-terminal_notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmo0920%2Ffluent-plugin-terminal_notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmo0920%2Ffluent-plugin-terminal_notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmo0920%2Ffluent-plugin-terminal_notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cosmo0920","download_url":"https://codeload.github.com/cosmo0920/fluent-plugin-terminal_notifier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmo0920%2Ffluent-plugin-terminal_notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32219120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-plugin","macos","terminal-notifier"],"created_at":"2024-10-12T08:13:23.788Z","updated_at":"2026-04-24T10:33:38.428Z","avatar_url":"https://github.com/cosmo0920.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fluent::Plugin::TerminalNotifier\n\n[![Build Status](https://travis-ci.org/cosmo0920/fluent-plugin-terminal_notifier.svg?branch=master)](https://travis-ci.org/cosmo0920/fluent-plugin-terminal_notifier)\n\nA fluentd plugin to notify notification center with terminal-notifier.\n\n## Notice\n\n0.1.0 had been dropped support Fluentd v0.12.\nIf you want to use this plugin with Fluentd v0.12, please add version constraint in your Gemfile like as:\n\n```ruby\ngem \"fluent-plugin-formatter_simple_tsv\", \"~\u003e 0.0.3\"\n```\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'fluent-plugin-terminal_notifier'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install fluent-plugin-terminal_notifier\n\n\n## TerminalNotifierOutput\n\n### Configuration Example\n\nFor example, add `terminal-notifier` configuration section like this:\n\n```\n\u003cmatch terminal_notifier.**\u003e\n  @type terminal_notifier\n  title test\n  sub_title sub\n\u003c/match\u003e\n```\n\nAlso you can specify app ID to activate like this:\n\nThis example is activating Terminal.app.\n\n```\n\u003cmatch terminal_notifier.**\u003e\n  @type terminal_notifier\n  title test\n  sub_title sub\n  activate com.apple.Terminal\n\u003c/match\u003e\n```\n\nIn more detail about activatation, please refer to the [TerminalNotifier document](https://github.com/julienXX/terminal-notifier/blob/f727ffdb19c91bd4f87d30274c12044ccea47fe2/README.markdown).\n\n### Parameters\n\n- **title** (String. Optional) This key is used in Notification title.\n- **sub_title** (String. Optional) This key is used in Notification sub title.\n- **activate** (String. Optional) This key is used in OS X application activating.\n\n## TerminalNotifierFilter\n\n### Configuration Example\n\nThis is a filter version of terminal-notifier fluentd plugin.\n\nFor example, add `terminal_notifier` configuration section like this:\n\n```\n\u003cfilter filter.terminal_notifier.**\u003e\n  @type terminal_notifier\n  title filtered\n  sub_title sub_filtered\n\u003c/filter\u003e\n```\n\nAlso you can specify app ID to activate like this:\n\nThis example is activating Terminal.app.\n\n```\n\u003cfilter filter.terminal_notifier.**\u003e\n  @type terminal_notifier\n  title filtered\n  sub_title sub_filtered\n  activate com.apple.Terminal\n\u003c/filter\u003e\n```\n\nIn more detail about activatation, please refer to the [TerminalNotifier document](https://github.com/julienXX/terminal-notifier/blob/f727ffdb19c91bd4f87d30274c12044ccea47fe2/README.markdown).\n\n### Parameters\n\n- **title** (String. Optional) This key is used in Notification title.\n- **sub_title** (String. Optional) This key is used in Notification sub title.\n- **activate** (String. Optional) This key is used in OS X application activating.\n\n## More Complex Example\n\nPlease refer to the [example configuration](example/fluent.conf).\n\nAnd note that this output plugin do not emit records, so, please consider to use something like copy plugin.\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/cosmo0920/fluent-plugin-terminal_notifier.\n\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmo0920%2Ffluent-plugin-terminal_notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosmo0920%2Ffluent-plugin-terminal_notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmo0920%2Ffluent-plugin-terminal_notifier/lists"}