{"id":27947864,"url":"https://github.com/dmitrysulman/logback-access-reactor-netty","last_synced_at":"2025-05-07T14:38:12.275Z","repository":{"id":290241831,"uuid":"971496978","full_name":"dmitrysulman/logback-access-reactor-netty","owner":"dmitrysulman","description":"Logback Access integration with Reactor Netty HTTP server","archived":false,"fork":false,"pushed_at":"2025-05-05T17:41:58.000Z","size":149,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-05T17:56:06.788Z","etag":null,"topics":["accesslogs","java","kotlin","logback-access","logging","reactor-netty"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/dmitrysulman.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-23T15:57:49.000Z","updated_at":"2025-05-05T17:28:11.000Z","dependencies_parsed_at":"2025-04-27T19:34:15.028Z","dependency_job_id":"21c8b196-3ac3-4ef8-bab9-17c7c7a527b6","html_url":"https://github.com/dmitrysulman/logback-access-reactor-netty","commit_stats":null,"previous_names":["dmitrysulman/logback-access-reactor-netty"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmitrysulman%2Flogback-access-reactor-netty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmitrysulman%2Flogback-access-reactor-netty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmitrysulman%2Flogback-access-reactor-netty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmitrysulman%2Flogback-access-reactor-netty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmitrysulman","download_url":"https://codeload.github.com/dmitrysulman/logback-access-reactor-netty/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252896867,"owners_count":21821351,"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":["accesslogs","java","kotlin","logback-access","logging","reactor-netty"],"created_at":"2025-05-07T14:38:11.685Z","updated_at":"2025-05-07T14:38:12.264Z","avatar_url":"https://github.com/dmitrysulman.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Logback Access for Reactor Netty\n\n[![Build](https://github.com/dmitrysulman/logback-access-reactor-netty/actions/workflows/build.yml/badge.svg)](https://github.com/dmitrysulman/logback-access-reactor-netty/actions/workflows/build.yml)\n[![codecov](https://codecov.io/gh/dmitrysulman/logback-access-reactor-netty/graph/badge.svg?token=LOEJQ7K8Z7)](https://codecov.io/gh/dmitrysulman/logback-access-reactor-netty)\n[![CodeQL](https://github.com/dmitrysulman/logback-access-reactor-netty/actions/workflows/codeql.yml/badge.svg)](https://github.com/dmitrysulman/logback-access-reactor-netty/actions/workflows/codeql.yml)\n\nA library that integrates Logback Access with Reactor Netty HTTP server, providing comprehensive access logging capabilities.\n\n## Overview\n\nThis library serves as a bridge between the Reactor Netty HTTP logging mechanism and the Logback Access library. It enables detailed HTTP access logging with configurable formats, filters, and appenders through Logback Access configuration.\n\n## Features\n\n- XML-based configuration support\n- Comprehensive HTTP request/response logging\n- Lazy-loaded access event properties for optimal performance\n- Support for headers, cookies, and request parameters logging\n- Debug mode for troubleshooting\n- Configurable through system properties or external configuration files\n\n## Dependencies\n\n- Java 8+\n- Logback-access 2.0.6\n- Reactor Netty HTTP Server 1.2.6-SNAPSHOT\n- SLF4J 2.0.17\n\n## Usage\n\n### Basic Setup\n```java\nReactorNettyAccessLogFactory factory = new ReactorNettyAccessLogFactory();\nHttpServer.create()\n          .accessLog(true, factory)\n          .bindNow()\n          .onDispose()\n          .block();\n```\n\n### Configuration\n\nThe library can be configured in several ways:\n\n1. Default configuration: Uses `logback-access.xml` in the classpath\n2. System property: Set `logback.access.reactor.netty.config` to specify configuration file location\n3. Programmatic configuration: Provide configuration file URL or filename directly\n```java\n// Using specific configuration file\nReactorNettyAccessLogFactory factory = new ReactorNettyAccessLogFactory(\"custom-config.xml\");\n// Enable debug mode\nReactorNettyAccessLogFactory factory = new ReactorNettyAccessLogFactory(\"config.xml\", new JoranConfigurator(), true);\n```\n\n## Author\n\n[Dmitry Sulman](https://www.linkedin.com/in/dmitrysulman/)\n\n## See Also\n\n- [Logback Access Documentation](https://logback.qos.ch/access.html)\n- [Reactor Netty HTTP Server Documentation](https://projectreactor.io/docs/netty/release/reference/http-server.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmitrysulman%2Flogback-access-reactor-netty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmitrysulman%2Flogback-access-reactor-netty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmitrysulman%2Flogback-access-reactor-netty/lists"}