{"id":47904824,"url":"https://github.com/lucasnevespereira/logmx","last_synced_at":"2026-04-04T04:47:00.584Z","repository":{"id":344900444,"uuid":"1183625836","full_name":"lucasnevespereira/logmx","owner":"lucasnevespereira","description":"Aggregate and stream logs from multiple platforms into a single terminal view","archived":false,"fork":false,"pushed_at":"2026-03-17T08:31:36.000Z","size":109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T04:46:42.834Z","etag":null,"topics":["cli","devtools","go","golang","log-aggregator","logs","railway","terminal","vercel"],"latest_commit_sha":null,"homepage":"","language":"Go","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/lucasnevespereira.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"docs/ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-16T19:51:27.000Z","updated_at":"2026-03-17T08:30:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lucasnevespereira/logmx","commit_stats":null,"previous_names":["lucasnevespereira/logmx"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/lucasnevespereira/logmx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasnevespereira%2Flogmx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasnevespereira%2Flogmx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasnevespereira%2Flogmx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasnevespereira%2Flogmx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucasnevespereira","download_url":"https://codeload.github.com/lucasnevespereira/logmx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasnevespereira%2Flogmx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31388168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T04:26:24.776Z","status":"ssl_error","status_checked_at":"2026-04-04T04:23:34.147Z","response_time":60,"last_error":"SSL_read: 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":["cli","devtools","go","golang","log-aggregator","logs","railway","terminal","vercel"],"created_at":"2026-04-04T04:46:59.959Z","updated_at":"2026-04-04T04:47:00.578Z","avatar_url":"https://github.com/lucasnevespereira.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# logmx\n\n[![CI](https://img.shields.io/github/actions/workflow/status/lucasnevespereira/logmx/ci.yml?style=flat-square)](https://github.com/lucasnevespereira/logmx/actions/workflows/ci.yml)\n[![Release](https://img.shields.io/github/v/release/lucasnevespereira/logmx?style=flat-square)](https://github.com/lucasnevespereira/logmx/releases/latest)\n\nAggregate and stream logs from multiple platforms into a single terminal view.\n\n```\n21:04:12 vercel   INFO  request completed in 42ms\n21:04:12 railway  INFO  database connected\n21:04:13 vercel   ERROR connection timeout after 30s\n21:04:13 railway  WARN  memory usage at 80%\n```\n\n## Install\n\n```sh\nbrew install lucasnevespereira/tools/logmx\n```\n\nOr with Go:\n\n```sh\ngo install github.com/lucasnevespereira/logmx/cmd/logmx@latest\n```\n\n## Quick Start\n\n```sh\nlogmx setup    # pick providers, authenticate, select projects\nlogmx tail -f  # stream logs in real time\n```\n\n## Usage\n\n```sh\n# Setup\nlogmx setup                        # Interactive setup wizard\n\n# View logs\nlogmx tail                         # Show recent logs and exit\nlogmx tail -f                      # Stream logs in real time\nlogmx tail -n 50                   # Show last 50 logs per source\nlogmx tail -s my-api               # Filter by source\nlogmx tail --level error           # Filter by log level\nlogmx tail -f -s my-api            # Stream a specific source\n\n# Manage providers \u0026 sources\nlogmx auth vercel                  # Add or refresh a provider token\nlogmx auth railway                 # Log in to Railway CLI\nlogmx source add                   # Add sources (pick provider)\nlogmx source add --from vercel     # Add sources from a specific provider\nlogmx source list                  # List configured sources\nlogmx source remove my-docs        # Remove a source\n```\n\n`tail` works like unix `tail` — shows recent logs and exits. Add `-f` to follow in real time, just like `tail -f`.\n\n## Supported Providers\n\n| Provider | Auth            | Streaming via    |\n| -------- | --------------- | ---------------- |\n| Vercel   | API token       | `vercel` CLI     |\n| Railway  | `railway login` | `railway` CLI    |\n| Fly.io   | Planned         | —                |\n| Render   | Planned         | —                |\n\n## Documentation\n\n- [Architecture](docs/ARCHITECTURE.md) — how it works internally\n- [Roadmap](docs/ROADMAP.md) — what's planned\n\n## Contributing\n\nContributions welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) to get started.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasnevespereira%2Flogmx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucasnevespereira%2Flogmx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasnevespereira%2Flogmx/lists"}