{"id":16634179,"url":"https://github.com/jcustenborder/netty-codec-netflow","last_synced_at":"2025-10-27T00:14:50.509Z","repository":{"id":57720425,"uuid":"79370180","full_name":"jcustenborder/netty-codec-netflow","owner":"jcustenborder","description":"Netty decoder for Netflow V9","archived":false,"fork":false,"pushed_at":"2017-02-15T16:36:11.000Z","size":20,"stargazers_count":5,"open_issues_count":1,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T20:34:15.954Z","etag":null,"topics":["decoder","netflow","netflow-v9","netty"],"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-01-18T18:25:48.000Z","updated_at":"2025-03-06T10:39:59.000Z","dependencies_parsed_at":"2022-09-02T13:10:25.559Z","dependency_job_id":null,"html_url":"https://github.com/jcustenborder/netty-codec-netflow","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-netflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-netflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-netflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcustenborder%2Fnetty-codec-netflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jcustenborder","download_url":"https://codeload.github.com/jcustenborder/netty-codec-netflow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251795382,"owners_count":21645018,"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":["decoder","netflow","netflow-v9","netty"],"created_at":"2024-10-12T05:30:37.028Z","updated_at":"2025-10-27T00:14:50.435Z","avatar_url":"https://github.com/jcustenborder.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Introduction\n\nThis project provides support for receiving [NetFlow](https://en.wikipedia.org/wiki/NetFlow) data from network devices\nusing [Netty](http://netty.io). Currently only [NetFlow v9](https://en.wikipedia.org/wiki/NetFlow#NetFlow_and_IPFIX) is supported. There are plans to \nsupport [NetFlow v5](https://en.wikipedia.org/wiki/NetFlow#NetFlow_Versions) in a future release. \n\n## Usage\n\n### Pipeline Configuration\n\n```java\nBootstrap b = new Bootstrap();\nb.group(bossGroup)\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 LoggingHandler(\"NetFlow\", LogLevel.TRACE),\n            new NetFlowV9Decoder(),\n            new NetFlowV9RequestHandler()\n        );\n      }\n    });\n```\n\n### NetFlow Message Processing\n\n```java\nclass NetFlowV9RequestHandler extends SimpleChannelInboundHandler\u003cNetFlowV9Decoder.NetFlowMessage\u003e {\n  @Override\n  protected void channelRead0(ChannelHandlerContext channelHandlerContext, NetFlowV9Decoder.NetFlowMessage netFlowMessage) throws Exception {\n\n  }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcustenborder%2Fnetty-codec-netflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcustenborder%2Fnetty-codec-netflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcustenborder%2Fnetty-codec-netflow/lists"}