{"id":16634140,"url":"https://github.com/jcustenborder/netty-codec-syslog","last_synced_at":"2025-10-30T04:31:40.762Z","repository":{"id":57720416,"uuid":"99752474","full_name":"jcustenborder/netty-codec-syslog","owner":"jcustenborder","description":"Netty codec for syslog","archived":false,"fork":false,"pushed_at":"2018-08-04T03:16:33.000Z","size":248,"stargazers_count":10,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-07-26T21:58:48.215Z","etag":null,"topics":["codec","netty","syslog"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jcustenborder.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":"2017-08-09T01:35:59.000Z","updated_at":"2023-06-17T16:05:15.000Z","dependencies_parsed_at":"2022-09-02T13:02:00.102Z","dependency_job_id":null,"html_url":"https://github.com/jcustenborder/netty-codec-syslog","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-syslog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-syslog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-syslog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-syslog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jcustenborder","download_url":"https://codeload.github.com/jcustenborder/netty-codec-syslog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219856675,"owners_count":16556082,"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":["codec","netty","syslog"],"created_at":"2024-10-12T05:29:48.462Z","updated_at":"2025-10-30T04:31:40.336Z","avatar_url":"https://github.com/jcustenborder.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven Central](https://img.shields.io/maven-central/v/com.github.jcustenborder.netty/netty-codec-syslog.svg)]()\n\n# Introduction\n\nThis project provides a [Netty](http://netty.io) based solution for receiving syslog messages. The \nfollowing formats are currently supported. The mechanism for parsing log messages is plugable. You \ncan add support for additional formats by implementing a \n[MessageParser](src/main/java/com/github/jcustenborder/netty/syslog/MessageParser.java) for the \nformat you wish to support.\n\n* [RFC 3164 - The BSD Syslog Protocol](https://tools.ietf.org/html/rfc3164)\n* [RFC 5424 - The Syslog Protocol](https://tools.ietf.org/html/rfc5424)\n* [CEF - ArcSight Common Event Format](https://community.softwaregrp.com/t5/ArcSight-Connectors/ArcSight-Common-Event-Format-CEF-Guide/ta-p/1589306)\n\n# Setting up a listener\n\n## UDP\n\n```java\n     Bootstrap b = new Bootstrap();\n     b.group(workerGroup)\n         .channel(NioDatagramChannel.class)\n         .handler(new ChannelInitializer\u003cDatagramChannel\u003e() {\n           @Override\n           protected void initChannel(DatagramChannel datagramChannel) throws Exception {\n             ChannelPipeline channelPipeline = datagramChannel.pipeline();\n             channelPipeline.addLast(\n                 new UDPSyslogMessageDecoder(),\n                 new SyslogMessageHandler(),\n                 handler\n             );\n           }\n         });\n \n     return b.bind(InetAddress.getLoopbackAddress(), port());\n```\n\n# Building\n```bash\nmvn clean install\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcustenborder%2Fnetty-codec-syslog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcustenborder%2Fnetty-codec-syslog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcustenborder%2Fnetty-codec-syslog/lists"}