{"id":30703157,"url":"https://github.com/dfinity/journald-parser","last_synced_at":"2026-03-07T02:35:14.770Z","repository":{"id":204651232,"uuid":"670617304","full_name":"dfinity/journald-parser","owner":"dfinity","description":"Rust parser for systemd-journal-gatewayd logs in journal export format","archived":false,"fork":false,"pushed_at":"2025-08-25T07:58:14.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-25T10:00:45.523Z","etag":null,"topics":["journald-parser","rust","systemd","systemd-journal-gatewayd"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/dfinity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2023-07-25T12:59:51.000Z","updated_at":"2025-08-25T07:58:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"4c2e7218-69e5-4c8e-a2bc-a0a9db65053d","html_url":"https://github.com/dfinity/journald-parser","commit_stats":null,"previous_names":["dfinity/journald-parser"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dfinity/journald-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Fjournald-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Fjournald-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Fjournald-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Fjournald-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dfinity","download_url":"https://codeload.github.com/dfinity/journald-parser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfinity%2Fjournald-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273317765,"owners_count":25084037,"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-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["journald-parser","rust","systemd","systemd-journal-gatewayd"],"created_at":"2025-09-02T16:56:26.370Z","updated_at":"2026-03-07T02:35:09.724Z","avatar_url":"https://github.com/dfinity.png","language":"Rust","readme":"# Journald-parser\n\n## Table of contents\n* [Introduction](#introduction)\n* [Features](#features)\n* [Installation](#installation)\n* [Usage](#usage)\n\n## Introduction\nWelcome to the Rust Parser for systemd-journal-gatewayd Logs project! This is an open-source Rust library designed to parse and extract relevant information from logs gathered via systemd-journal-gatewayd. The parser aims to provide developers and system administrators an efficient way to handle and analyze logs from the gatewayd service. The systemd logs protocol can be found [here](https://systemd.io/JOURNAL_EXPORT_FORMATS/)\n\nPlease note that this parser is specifically tailored to work with logs generated by systemd-journal-gatewayd and may not be compatible with logs from other sources or services. In addition it is specifically created to parse `Journal Export Format`.\n\n## Features\n* Efficient Parsing: The parser is designed to efficiently process large log files to extract valuable information while keeping resource usage in check.\n* Structured Data: The parsed logs are transformed into structured data formats, allowing for easy manipulation and analysis.\n* Error Handling: The parser implements robust error handling to gracefully handle malformed or unexpected log entries.\n\n## Installation\nTo use the parser in your Rust code simply add it to your `Cargo.toml` file as follows:\n```toml\n[dependencies]\njournald_parser = \"0.1.0\"\n```\n\n## Usage\nThe parser can be used as follows:\n```rust\nuse journald_parser::parse;\n\nfn main() {\n    let data_as_bytes: Vec\u003cu8\u003e = fetch_logs();\n\n    let batch = parse(data_as_bytes);\n\n    // Do something with the parsed logs\n    for entry in batch.get_entries() {\n        println!(\"Entry: {:#?}\", entry);\n    }\n}\n\nfn fetch_logs() -\u003e Vec\u003cu8\u003e {\n    // Fetch logs from systemd-journal-gatewayd\n    unimplemented!()\n}\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfinity%2Fjournald-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdfinity%2Fjournald-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfinity%2Fjournald-parser/lists"}