{"id":35402326,"url":"https://github.com/paepckehh/uniex","last_synced_at":"2026-04-01T19:38:48.138Z","repository":{"id":269280870,"uuid":"906943384","full_name":"paepckehh/uniex","owner":"paepckehh","description":"unifi controller device inventory exporter, anayses all device and stat records for complete records [mongodb|csv|json]  (app/lib/api) ","archived":false,"fork":false,"pushed_at":"2026-03-20T08:28:57.000Z","size":395,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-21T01:23:08.256Z","etag":null,"topics":["csv","export","exporter","mongodb","unifi"],"latest_commit_sha":null,"homepage":"https://paepcke.de/uniex","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paepckehh.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-22T11:30:45.000Z","updated_at":"2026-03-20T08:28:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad2ec9e2-74a4-47dc-b863-2387444d107c","html_url":"https://github.com/paepckehh/uniex","commit_stats":null,"previous_names":["paepckehh/uniex"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/paepckehh/uniex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paepckehh%2Funiex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paepckehh%2Funiex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paepckehh%2Funiex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paepckehh%2Funiex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paepckehh","download_url":"https://codeload.github.com/paepckehh/uniex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paepckehh%2Funiex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291163,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":["csv","export","exporter","mongodb","unifi"],"created_at":"2026-01-02T11:44:31.045Z","updated_at":"2026-04-01T19:38:48.114Z","avatar_url":"https://github.com/paepckehh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OVERVIEW \n[![Go Reference](https://pkg.go.dev/badge/paepcke.de/uniex.svg)](https://pkg.go.dev/paepcke.de/uniex) \n[![Go Report Card](https://goreportcard.com/badge/paepcke.de/uniex)](https://goreportcard.com/report/paepcke.de/uniex) \n[![Go Build](https://github.com/paepckehh/uniex/actions/workflows/golang.yml/badge.svg)](https://github.com/paepckehh/uniex/actions/workflows/golang.yml)\n[![License](https://img.shields.io/github/license/paepckehh/uniex)](https://github.com/paepckehh/uniex/blob/master/LICENSE)\n[![SemVer](https://img.shields.io/github/v/release/paepckehh/uniex)](https://github.com/paepckehh/uniex/releases/latest)\n\u003cbr\u003e[![built with nix](https://builtwithnix.org/badge.svg)](https://search.nixos.org/packages?channel=unstable\u0026from=0\u0026size=50\u0026sort=relevance\u0026type=packages\u0026query=uniex)\n\n[paepcke.de/uniex](https://paepcke.de/uniex)\n\n# UNIEX\n\n- Exports UNIFI Controller Inventory Database (mongoDB) to [csv|json]\n- Adds missing attributes (latest used hostname, latest used ip, latest seen, ...) via parsing all device and stat records\n- Converts Timestamps (eg. unix nano time) into RFC3339 (parseable by excel, human readable) format\n- Fast, even for large corp inventory (in-memory, parallel processing)\n \n# SCREENSHOT CLI\n\n![UNIEX SAMPLE SCREENSHOT](https://github.com/paepckehh/uniex/blob/main/resources/screenshot01.png \"SCREEN\")\n\n# ⚡️QUICK START\n\n```\ngo run paepcke.de/uniex/cmd/uniex@main\n```\n\n# ⚡️PRETTY PRINT CSV OUTPUT VIA [BAT](https://github.com/sharkdp/bat)\n\n```\ngo run paepcke.de/uniex/cmd/uniex@main | bat -l csv\n```\n\n# ⚡️PRETTY PRINT JSON OUTPUT VIA [JQ](https://github.com/jqlang/jq) \n\n```\nUNIEX_FORMAT=json go run paepcke.de/uniex/cmd/uniex@main | jq\n```\n\n# ⚡️HOW TO INSTALL\n\n```\ngo install paepcke.de/uniex/cmd/uniex@main\n```\n\n# ⚡️PRE-BUILD BINARIES (DOWNLOAD)\n[https://github.com/paepckehh/uniex/releases](https://github.com/paepckehh/uniex/releases)\n\n\n# SUPPORTED OPTIONS \n\n```\n# Optional (via env variables)\n- UNIEX_MONGODB   - mongodb uri, default: mongodb://127.0.0.1:27117\n- UNIEX_FORMAT    - export format, default: csv [csv|json]\n```\n\n# DOCS\n\n[pkg.go.dev/paepcke.de/uniex](https://pkg.go.dev/paepcke.de/uniex)\n\n# 🛡 License\n\n[![License](https://img.shields.io/github/license/paepckehh/uniex)](https://github.com/paepckehh/uniex/blob/master/LICENSE)\n\nThis project is licensed under the terms of the `BSD 3-Clause License` license. See [LICENSE](https://github.com/paepckehh/uniex/blob/master/LICENSE) for more details.\n\n# 📃 Citation\n\n```bibtex\n@misc{uniex,\n  author = {Michael Paepcke},\n  title = {Export UNIFI MongoDB Inventory Database},\n  year = {2024},\n  publisher = {GitHub},\n  journal = {GitHub repository},\n  howpublished = {\\url{https://paepcke.de/uniex}}\n}\n```\n\n# CONTRIBUTION\n\nYes, Please! PRs Welcome! \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaepckehh%2Funiex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaepckehh%2Funiex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaepckehh%2Funiex/lists"}