{"id":27736743,"url":"https://github.com/nilesh2000/awspipelinemonitor","last_synced_at":"2026-04-29T00:32:23.606Z","repository":{"id":290355280,"uuid":"974138843","full_name":"Nilesh2000/AWSPipelineMonitor","owner":"Nilesh2000","description":"Monitor AWS CodePipeline deployments. View pipeline status, branches, commit messages, and execution details in a clean tabulated format.","archived":false,"fork":false,"pushed_at":"2025-04-28T10:46:21.000Z","size":5,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-28T11:45:19.803Z","etag":null,"topics":["aws","codepipeline","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Nilesh2000.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-04-28T10:07:34.000Z","updated_at":"2025-04-28T11:35:03.000Z","dependencies_parsed_at":"2025-04-28T11:45:22.992Z","dependency_job_id":"d151e66c-db6c-4510-8533-c43d726f0a09","html_url":"https://github.com/Nilesh2000/AWSPipelineMonitor","commit_stats":null,"previous_names":["nilesh2000/awspipelinemonitor"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nilesh2000%2FAWSPipelineMonitor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nilesh2000%2FAWSPipelineMonitor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nilesh2000%2FAWSPipelineMonitor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nilesh2000%2FAWSPipelineMonitor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nilesh2000","download_url":"https://codeload.github.com/Nilesh2000/AWSPipelineMonitor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251330006,"owners_count":21572216,"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":["aws","codepipeline","python"],"created_at":"2025-04-28T14:30:02.843Z","updated_at":"2026-04-29T00:32:23.601Z","avatar_url":"https://github.com/Nilesh2000.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS Pipeline Monitor\n\nA Python script to monitor AWS CodePipeline deployments and display pipeline information in a tabulated format.\n\n## Features\n\n- List all pipelines matching specified filters\n- Display current branch, status, and last execution time\n- Show commit messages and execution duration\n- Filter pipelines by name\n- Command-line argument support for filters\n\n## Prerequisites\n\n- Python 3.6 or higher\n- AWS credentials with appropriate permissions\n- Required Python packages (see Installation)\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/aws_pipeline_monitor.git\ncd AWSPipelineMonitor\n```\n\n2. Create and activate a virtual environment:\n```bash\n# Create virtual environment\npython -m venv venv\n\n# Activate virtual environment\n# On Windows:\nvenv\\Scripts\\activate\n# On macOS/Linux:\nsource venv/bin/activate\n```\n\n3. Install the required packages:\n```bash\npip install -r requirements.txt\n```\n\n4. Set up your AWS credentials:\n```bash\n# Copy the example environment file\ncp .env.example .env\n```\n\n5. Edit the `.env` file with your AWS credentials\nThe `.env` file should contain:\n```bash\nAWS_ACCESS_KEY_ID=your_access_key\nAWS_SECRET_ACCESS_KEY=your_secret_key\nAWS_SESSION_TOKEN=your_session_token\nAWS_REGION=your_region  # Optional, defaults to eu-west-1\n```\n\nAlternatively, you can set the environment variables directly:\n```bash\nexport AWS_ACCESS_KEY_ID=your_access_key\nexport AWS_SECRET_ACCESS_KEY=your_secret_key\nexport AWS_SESSION_TOKEN=your_session_token\nexport AWS_REGION=your_region  # Optional, defaults to eu-west-1\n```\n\n## Usage\n\nBasic usage with default filter (\"kulu\"):\n```bash\npython pipeline_monitor.py\n```\n\nSpecify a single filter:\n```bash\npython pipeline_monitor.py --filters core\n```\n\nSpecify multiple filters:\n```bash\npython pipeline_monitor.py --filters core service\n```\n\n## Output Example\n\n```text\n=== AWS CodePipeline Deployment Monitor ===\nLast updated: 01/01/2024 12:00\nFiltering pipelines containing: core\n\n+------------------+--------+-----------+------------------+----------+-------------------------------+\n| Pipeline         | Branch | Status    | Last Run         | Duration | Commit Message                |\n+==================+========+===========+==================+==========+===============================+\n| core-service-1   | main   | Succeeded | 01/01/2024 11:30 | 5m 30s   | Update dependencies           |\n+------------------+--------+-----------+------------------+----------+-------------------------------+\n| core-service-2   | dev    | Failed    | 01/01/2024 10:45 | 2m 15s   | Fix authentication issue      |\n+------------------+--------+-----------+------------------+----------+-------------------------------+\n```\n\n## Required AWS Permissions\n\nThe script requires your IAM role to have the following AWS permissions:\n- `codepipeline:ListPipelines`\n- `codepipeline:GetPipeline`\n- `codepipeline:ListPipelineExecutions`\n- `codepipeline:GetPipelineExecution`\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilesh2000%2Fawspipelinemonitor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnilesh2000%2Fawspipelinemonitor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilesh2000%2Fawspipelinemonitor/lists"}