{"id":28899314,"url":"https://github.com/julialogging/zmqloggers.jl","last_synced_at":"2026-01-31T13:37:41.139Z","repository":{"id":298345955,"uuid":"999654015","full_name":"JuliaLogging/ZMQLoggers.jl","owner":"JuliaLogging","description":"A julia logger that logs to a ZMQ socket","archived":false,"fork":false,"pushed_at":"2025-06-15T12:30:38.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-20T15:47:14.719Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JuliaLogging.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-06-10T15:23:31.000Z","updated_at":"2025-06-12T12:16:29.000Z","dependencies_parsed_at":"2025-06-15T13:05:37.850Z","dependency_job_id":"9b80e8c5-eaf4-4710-ba62-c6e6645a8fd1","html_url":"https://github.com/JuliaLogging/ZMQLoggers.jl","commit_stats":null,"previous_names":["casbex/loggingzmq.jl","julialogging/loggingzmq.jl","julialogging/zmqloggers.jl"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JuliaLogging/ZMQLoggers.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaLogging%2FZMQLoggers.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaLogging%2FZMQLoggers.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaLogging%2FZMQLoggers.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaLogging%2FZMQLoggers.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaLogging","download_url":"https://codeload.github.com/JuliaLogging/ZMQLoggers.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaLogging%2FZMQLoggers.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28944789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T13:02:32.153Z","status":"ssl_error","status_checked_at":"2026-01-31T13:00:07.528Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-06-21T08:09:08.781Z","updated_at":"2026-01-31T13:37:41.134Z","avatar_url":"https://github.com/JuliaLogging.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZMQLoggers\n\n[![Test workflow status](https://github.com/JuliaLogging/ZMQLoggers.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/JuliaLogging/LoggingZMQ.jl/actions/workflows/Test.yml?query=branch%3Amain)\n[![Coverage](https://codecov.io/gh/JuliaLogging/ZMQLoggers.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaLogging/LoggingZMQ.jl)\n[![BestieTemplate](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/JuliaBesties/BestieTemplate.jl/main/docs/src/assets/badge.json)](https://github.com/JuliaBesties/BestieTemplate.jl)\n\nThis package provides a logger that writes its output to a ZMQ socket.\n\nThe logger is **not** thread safe because ZMQ sockets are not thread safe.\n\n## Usage\n```julia\nimport Logging\nusing ZMQLoggers\nusing ZMQ\n\nctx = Context()\naddr = \"inproc://logger\"\n\nreceiver = Socket(ctx, SUB)\nsubscribe(receiver, \"\")\nbind(receiver, addr)\n\nlogsock = Socket(ctx, PUB)\nconnect(logsock, addr)\nlogger = ZMQLogger(logsock, Logging.Info)\n\nLogging.with_logger(logger) do\n\t@info \"This is a test\"\nend\nprintln(recv(receiver, String)) # This is a test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulialogging%2Fzmqloggers.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulialogging%2Fzmqloggers.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulialogging%2Fzmqloggers.jl/lists"}