{"id":31847908,"url":"https://github.com/wireapp/wire-utility-tool","last_synced_at":"2025-10-12T09:58:29.637Z","repository":{"id":306225736,"uuid":"1022124738","full_name":"wireapp/wire-utility-tool","owner":"wireapp","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-22T10:02:48.000Z","size":25000,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-22T10:17:37.726Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wireapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-07-18T13:49:01.000Z","updated_at":"2025-09-22T10:02:52.000Z","dependencies_parsed_at":"2025-07-24T13:14:59.972Z","dependency_job_id":"40a3d266-959e-4b71-aa53-1f92fbfe0d04","html_url":"https://github.com/wireapp/wire-utility-tool","commit_stats":null,"previous_names":["wireapp/wire-utlity-tool","wireapp/wire-utility-tool"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/wireapp/wire-utility-tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fwire-utility-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fwire-utility-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fwire-utility-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fwire-utility-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wireapp","download_url":"https://codeload.github.com/wireapp/wire-utility-tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fwire-utility-tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010951,"owners_count":26084841,"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-10-12T02:00:06.719Z","response_time":53,"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":[],"created_at":"2025-10-12T09:58:27.826Z","updated_at":"2025-10-12T09:58:29.628Z","avatar_url":"https://github.com/wireapp.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wire Utility Tool\n\nA comprehensive Docker toolkit providing essential debugging utilities for Wire's backend infrastructure.\n\n## 🚀 Quick Start\n\n```bash\n# Wire Utility Tool (debugging \u0026 utilities)\ndocker run -it --rm quay.io/wire/wire-utility-tool:latest\n```\n\n## 📦 What's Included\n\n### 🔧 Wire Utility Tool\n\nA debugging container with comprehensive tooling:\n\n**Database Clients**\n- **PostgreSQL** (`psql`) - Connect and query PostgreSQL databases\n- **Redis** (`redis-cli`) - Interact with Redis instances\n- **Cassandra** (`cqlsh`) - Query Cassandra clusters (v3.11 compatible)\n\n**Message Queue \u0026 Storage**\n- **RabbitMQ** (`rabbitmqadmin`) - Manage RabbitMQ instances\n- **MinIO Client** (`mc`) - Interact with S3-compatible storage\n\n**Network \u0026 System Tools**\n- **Network**: `curl`, `wget`, `nc`, `nmap`, `tcpdump`, `dig`, `ping`, `traceroute`, `netstat`\n- **Text Processing**: `jq`, `vim`, `nano`, `less`, `tree`\n- **Programming**: Python 2 \u0026 3 with pip\n- **System Monitoring**: `ps`, `top`, `free`, `uptime`, `vmstat`\n\n**Search \u0026 Analytics**\n- **Elasticsearch Debug** (`es`) - Debug Elasticsearch clusters\n\n**Status Monitoring**\n- **Status Command** (`status`) - Check connectivity to all services\n\n## 🛠️ Usage\n\n### Development\n\n```bash\n# Build and test locally\nmake build-utility \u0026\u0026 make test-utility\n```\n\n### Production\n\n```bash\n# Interactive debugging session\ndocker run -it --rm quay.io/wire/wire-utility-tool:latest\n\n# Check service connectivity\ndocker run --rm quay.io/wire/wire-utility-tool:latest status\n\n# Debug Elasticsearch\ndocker run --rm quay.io/wire/wire-utility-tool:latest es health\n```\n\n### Available Commands\n\n```bash\n# Status and connectivity\nstatus                    # Show service connectivity status\n\n# Database tools\npsql                      # PostgreSQL client\ncqlsh                     # Cassandra CQL shell\nredis-cli                 # Redis client\n\n# Message queue\nrabbitmqadmin list queues # RabbitMQ management\n\n# Storage\nmc ls wire-minio          # MinIO/S3 client\n\n# Search\nes health                 # Elasticsearch cluster health\nes nodes                  # Elasticsearch nodes info\nes indices                # List indices\nes usages                 # Show all available commands\n```\n\n## 🔖 Versioning\n\n### Creating Releases\n\n1. **Make changes and test locally**\n2. **Create version tag**:\n   ```bash\n   git tag -a v1.3.0 -m \"Add ..\"\n   ```\n3. **Push to trigger automated build**:\n   ```bash\n   git push origin v1.3.0     # → quay.io/wire/wire-utility-tool:v1.3.0\n   ```\n\n### Available Tags\n\n| Component | Latest | Versioned |\n|-----------|--------|-----------|\n| **Utility Tool** | `latest` | `v1.3.0`, `v1.2.0`, `1.2` |\n\n## 🏗️ Architecture\n\n- **Multi-platform**: AMD64 \u0026 ARM64 support\n- **Security**: Non-root user (UID 65532), minimal attack surface\n- **Base**: Debian Bullseye Slim for stability\n- **Python**: Python 2.7 \u0026 3.x with essential libraries\n\n## 🤝 Contributing\n\n1. **Add new tools** to Dockerfile.utility\n2. **Update README** with tool documentation\n3. **Test changes** locally with `make test-utility`\n4. **Submit PR** with version tag\n\n---\n\n**Repository Purpose**: Provides standardized debugging utilities for Wire's infrastructure operations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Fwire-utility-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwireapp%2Fwire-utility-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Fwire-utility-tool/lists"}