{"id":21056956,"url":"https://github.com/fluent-plugins-nursery/fluent-plugin-irc","last_synced_at":"2025-07-23T14:34:55.287Z","repository":{"id":54258084,"uuid":"5206864","full_name":"fluent-plugins-nursery/fluent-plugin-irc","owner":"fluent-plugins-nursery","description":null,"archived":false,"fork":false,"pushed_at":"2021-03-01T04:54:40.000Z","size":57,"stargazers_count":16,"open_issues_count":2,"forks_count":9,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-27T01:51:32.288Z","etag":null,"topics":["fluent-plugin","fluentd","irc","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fluent-plugins-nursery.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2012-07-27T16:41:44.000Z","updated_at":"2021-03-01T04:54:43.000Z","dependencies_parsed_at":"2022-08-13T10:10:50.257Z","dependency_job_id":null,"html_url":"https://github.com/fluent-plugins-nursery/fluent-plugin-irc","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/fluent-plugins-nursery/fluent-plugin-irc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-plugins-nursery%2Ffluent-plugin-irc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-plugins-nursery%2Ffluent-plugin-irc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-plugins-nursery%2Ffluent-plugin-irc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-plugins-nursery%2Ffluent-plugin-irc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluent-plugins-nursery","download_url":"https://codeload.github.com/fluent-plugins-nursery/fluent-plugin-irc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-plugins-nursery%2Ffluent-plugin-irc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266694573,"owners_count":23969795,"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","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["fluent-plugin","fluentd","irc","ruby"],"created_at":"2024-11-19T16:55:15.684Z","updated_at":"2025-07-23T14:34:55.260Z","avatar_url":"https://github.com/fluent-plugins-nursery.png","language":"Ruby","readme":"# Fluent::Plugin::Irc, a plugin for [Fluentd](http://fluentd.org)\n\n[![Build Status](https://travis-ci.org/fluent-plugins-nursery/fluent-plugin-irc.svg?branch=master)](https://travis-ci.org/fluent-plugins-nursery/fluent-plugin-irc)\n\nFluent plugin to send messages to IRC server\n\n## Requirements\n\n| fluent-plugin-irc | fluentd | ruby |\n|------------------------|---------|------|\n| \u003e= 0.1.0 | \u003e= v0.14.0 | \u003e= 2.1 |\n|  \u003c 0.1.0 | \u003e= v0.12.0 | \u003e= 1.9 |\n\n## Installation\n\n`$ fluent-gem install fluent-plugin-irc`\n\n## Configuration\n\n### Example\n\n```\n\u003cmatch **\u003e\n  @type irc\n  host localhost\n  port 6667\n  channel fluentd\n  nick fluentd\n  user fluentd\n  real fluentd\n  message notice: %s [%s] %s\n  out_keys tag,time,message\n  time_key time\n  time_format %Y/%m/%d %H:%M:%S\n  tag_key tag\n\u003c/match\u003e\n```\n\n### Parameter\n\n|parameter|description|default|\n|---|---|---|\n|host|IRC server host|localhost|\n|port|IRC server port number|6667|\n|channel|channel to send messages (without first '#')||\n|channel_keys|keys used to format channel. %s will be replaced with value specified by channel_keys if this option is used|nil|\n|nick|nickname registered of IRC|fluentd|\n|user|user name registered of IRC|fluentd|\n|real|real name registered of IRC|fluentd|\n|message|message format. %s will be replaced with value specified by out_keys||\n|out_keys|keys used to format messages||\n|time_key|key name for time|time|\n|time_format|time format. This will be formatted with Time#strftime.|%Y/%m/%d %H:%M:%S|\n|tag_key|key name for tag|tag|\n|command|irc command. `privmsg` or `notice`|privmsg|\n|command_keys|keys used to format command. %s will be replaced with value specified by command_keys if this option is used|nil|\n|send_interval|interval (sec) to send message. defence Excess Flood|2|\n|send_queue_limit|maximum size of send message queue|100|\n\n## Copyright\n\n\u003ctable\u003e\n\u003ctr\u003e\u003ctd\u003eCopyright\u003c/td\u003e\u003ctd\u003eCopyright (c) 2015 OKUNO Akihiro\u003c/td\u003e\u003c/tr\u003e\n\u003ctr\u003e\u003ctd\u003eLicense\u003c/td\u003e\u003ctd\u003eApache License, Version 2.0\u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-plugins-nursery%2Ffluent-plugin-irc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent-plugins-nursery%2Ffluent-plugin-irc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-plugins-nursery%2Ffluent-plugin-irc/lists"}