{"id":15859191,"url":"https://github.com/michaelcade/kollect","last_synced_at":"2025-07-29T18:11:53.274Z","repository":{"id":242079859,"uuid":"808629067","full_name":"MichaelCade/kollect","owner":"MichaelCade","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-18T21:37:45.000Z","size":47587,"stargazers_count":11,"open_issues_count":19,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-10T04:07:16.115Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MichaelCade.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}},"created_at":"2024-05-31T13:19:38.000Z","updated_at":"2025-01-18T21:37:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"f8ff0d10-c0ff-457f-b155-b7c9c2a5d741","html_url":"https://github.com/MichaelCade/kollect","commit_stats":{"total_commits":68,"total_committers":2,"mean_commits":34.0,"dds":0.05882352941176472,"last_synced_commit":"b67ce58ea3db0be12773354aafa38e20405bbef3"},"previous_names":["michaelcade/kollect"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2Fkollect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2Fkollect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2Fkollect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCade%2Fkollect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MichaelCade","download_url":"https://codeload.github.com/MichaelCade/kollect/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243801610,"owners_count":20350106,"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","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":"2024-10-05T21:04:44.366Z","updated_at":"2025-03-15T23:30:55.098Z","avatar_url":"https://github.com/MichaelCade.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Kollect\n\nKollect is a tool for collecting and displaying data from Kubernetes clusters, AWS, and Azure resources. It provides a web interface to visualize various resources and allows exporting the collected data as a JSON file.\n\n## Features\n\n- Collects data from Kubernetes clusters\n- Collects data from AWS resources (EC2, S3, RDS, DynamoDB, VPCs)\n- Collects data from Azure resources (VMs, Storage Accounts, Blob Storage, Virtual Networks, SQL Databases, File Shares, CosmosDB)\n- Displays data in a web interface\n- Supports exporting data as a JSON file\n\n## Installation\n\nTo install Kollect, clone the repository and build the binary:\n\n```sh\ngit clone https://github.com/michaelcade/kollect.git\ncd kollect\ngo build -o kollect ./cmd/kollect\n```\n\n## Usage\n\nRun the Kollect binary with the desired flags:\n\n```sh\n./kollect [flags]\n```\n\n### Flags\n\n- `--inventory`: Type of inventory to collect (kubernetes/aws/azure)\n- `--storage`: Collect only storage-related objects (default: false)\n- `--kubeconfig`: Path to the kubeconfig file (default: $HOME/.kube/config)\n- `--browser`: Open the web interface in a browser (default: false)\n- `--output`: Output file to save the collected data\n- `--help`: Show help message\n\n### Examples\n\nCollect data from a Kubernetes cluster and display it in the terminal:\n\n```sh\n./kollect --inventory kubernetes\n```\n\nCollect data from AWS resources and display it in the terminal:\n\n```sh\n./kollect --inventory aws\n```\n\nCollect data from Azure resources and display it in the terminal:\n\n```sh\n./kollect --inventory azure\n```\n\nCollect data from a Kubernetes cluster and open the web interface:\n\n```sh\n./kollect --inventory kubernetes --browser\n```\n\nCollect data from AWS resources and save it to a file:\n\n```sh\n./kollect --inventory aws --output aws_data.json\n```\n\n## Development\n\n### Project Structure\n\n```\n.DS_Store\n.github/\n    workflows/\n        release.yaml\n.gitignore\napi/\n    .DS_Store\n    v1/\n        k8sdata.go\ncmd/\n    .DS_Store\n    kollect/\n        main.go\n\n\ngo.mod\n\n\n\n\ngo.sum\n\n\nLICENSE\npkg/\n    .DS_Store\n    aws/\n        inventory.go\n    azure/\n        inventory.go\n    kollect/\n        kollect.go\n\n\nREADME.md\n\n\ntest/\n    kollect_test.go\nweb/\n    .DS_Store\n    index.html\n```\n\n### Building the Project\n\nTo build the project, run the following command:\n\n```sh\ngo build -o kollect ./cmd/kollect\n```\n\n### Running Tests\n\nTo run the tests, use the following command:\n\n```sh\ngo test ./...\n```\n\n## Contributing\n\nWe welcome contributions to Kollect! Please open an issue or submit a pull request on GitHub.\n\n## License\n\nKollect is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n```\n\n### Summary of Changes\n\n1. **Features**: Updated to include AWS and Azure resource collection.\n2. **Usage**: Added examples for collecting data from AWS and Azure resources.\n3. **Project Structure**: Included the current project structure.\n4. **Development**: Added sections for building the project and running tests.\n5. **Contributing**: Added a section for contributing.\n6. **License**: Included a note about the license.\n\nBy following these steps, your \n\nREADME.md\n\n file should now accurately reflect the current capabilities and structure of your tool.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcade%2Fkollect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelcade%2Fkollect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcade%2Fkollect/lists"}