{ "info": { "author": "Quentin Rousseau", "author_email": "quentin@instacart.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development", "Topic :: System :: Monitoring" ], "description": "===============================\nCloudWatch Alarms Manager\n===============================\n\n|pypi| |travis| |doc| |pyup|\n\nEasy way to create default CloudWatch Alarms.\n\n**CWAM** is creating default alarms associated with default metrics for different kind of AWS resources.\n\nInstallation\n------------\n\nInstall using pip:\n\n.. code:: bash\n\n $ pip install cwam\n\nRequirements\n------------\n\n- Python 2.6, 2.7, 3.3, 3.4, or 3.5\n- An AWS account\n\nCWAM\n------------\n\nResources supported\n~~~~~~~~~~~~~~~~~~~\n\n- ELB\n- ALB\n- RDS\n- Kinesis\n- ElasticCache\n\nTemplates samples\n~~~~~~~~~~~~~~~~~\n\n- https://github.com/instacart/cwam/blob/master/templates/alb.template.yml\n- https://github.com/instacart/cwam/blob/master/templates/rds.template.yml\n- https://github.com/instacart/cwam/blob/master/templates/kinesis.template.yml\n- https://github.com/instacart/cwam/blob/master/templates/elasticache.template.yml\n\nHuman interaction\n~~~~~~~~~~~~~~~~~\n\nAt any time, a human can modify an alarm value created by **CWAM**.\nTo make sure **CWAM** is not overriding that value again, the alarm description\nfield needs to be updated with a string different from ``Created by Script``.\n\nCLI\n---\n\nCLI Authentication\n~~~~~~~~~~~~~~~~~~\n\nVia environment variables:\n\n.. code:: bash\n\n $ export AWS_ACCESS_KEY_ID=\"aws_access_key_id\"\n $ export AWS_SECRET_ACCESS_KEY=\"aws_access_secret_key\"\n $ export AWS_SESSION_TOKEN=\"aws_session_token\"\n $ export AWS_DEFAULT_REGION=\"us-east-1\"\n $ cwam --conf ~/.cwam/conf.yml elb create -t /path/to/template.yml\n\nVia (--conf/-c) option:\n\nEdit ~/.cwam/conf.yml\n\n.. code:: yaml\n\n aws:\n aws_access_key_id: aws_access_key_id\n aws_access_secret_key: aws_access_secret_key\n aws_session_token: aws_session_token\n aws_default_region: aws_default_region\n\n.. code:: bash\n\n $ cwam --conf ~/.cwam/conf.yml elb create -t /path/to/template.yml\n\nVia CLI options:\n\n.. code:: bash\n\n $ cwam ----aws-access-key-id aws_access_key_id \\\n --aws-access-secret-key aws_access_secret_key \\\n --aws-session-token aws_session_token \\\n --aws_default_region us-east-1 elb create -t /path/to/template.yml\n\nSubcommands\n~~~~~~~~~~~\n\n.. code:: plain\n\n Usage: cwam [OPTIONS] COMMAND [ARGS]...\n\n Options:\n -d, --debug Debug mode.\n -p, --pretty Prettify JSON output.\n -k, --aws-access-key-id TEXT AWS Access Key ID.\n -s, --aws-access-secret-key TEXT\n AWS Secret Access Key.\n -t, --aws-session-token TEXT AWS Secret Access Key.\n -r, --aws_default_region TEXT AWS Region.\n --version Show the version and exit.\n -h, --help Show this message and exit.\n\n Commands:\n alb\n elasticache\n elb\n kinesis\n rds\n\nDocumentation\n=============\n\n- https://cwam.readthedocs.io\n\nHistory\n=======\n\nView the `changelog`_\n\nAuthors\n=======\n\n- `Quentin Rousseau`_\n\nLicense\n=======\n\n.. code:: plain\n\n Copyright (c) 2018 Instacart \n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the \"Software\"), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n.. _changelog: https://github.com/instacart/cwam/blob/master/HISTORY.rst\n.. _Quentin Rousseau: https://github.com/kwent\n\n.. |pypi| image:: https://img.shields.io/pypi/v/cwam.svg\n :target: https://pypi.python.org/pypi/cwam\n.. |travis| image:: https://img.shields.io/travis/instacart/cwam.svg\n :target: https://travis-ci.org/instacart/cwam\n.. |doc| image:: https://readthedocs.org/projects/cwam/badge/?version=latest\n :target: https://cwam.readthedocs.io/en/latest/?badge=latest\n.. |pyup| image:: https://pyup.io/repos/github/instacart/cwam/shield.svg\n :target: https://pyup.io/repos/github/instacart/cwam/\n\n\n=======\nHistory\n=======\n\n1.0.0 (2018-05-17)\n------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/instacart/cwam", "keywords": "cloudwatch", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "cwam", "package_url": "https://pypi.org/project/cwam/", "platform": "", "project_url": "https://pypi.org/project/cwam/", "project_urls": { "Homepage": "https://github.com/instacart/cwam" }, "release_url": "https://pypi.org/project/cwam/2.0/", "requires_dist": [ "PyYAML (>=3.12)", "Click (>=7.0)", "boto3 (>=1.4.3)", "dictdiffer (>=0.6.1)" ], "requires_python": "", "summary": "Easy way to create default CloudWatch Alarms.", "version": "2.0" }, "last_serial": 4365784, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4be97ae8918eff31f7ffd64068c4e1fd", "sha256": "b25b80b64ae3bcb2edc79e53185131a2f2dcf4c2751abb2c042add8d40f74293" }, "downloads": -1, "filename": "cwam-0.1.0-py2.7.egg", "has_sig": false, "md5_digest": "4be97ae8918eff31f7ffd64068c4e1fd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 44072, "upload_time": "2018-05-17T23:28:56", "url": "https://files.pythonhosted.org/packages/47/9e/93dbae05756f084c98af0d4d5b287634b97a8ef109cddfe61f6861d4b296/cwam-0.1.0-py2.7.egg" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "541e308150415f9f38e8e9b3706d0e5f", "sha256": "3a2a3231d877cdff0087cd6f811592dd43a1a89ef18a6f7636f9d2d7fbecb270" }, "downloads": -1, "filename": "cwam-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "541e308150415f9f38e8e9b3706d0e5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22561, "upload_time": "2018-05-17T23:28:55", "url": "https://files.pythonhosted.org/packages/9d/86/7e2dab74536a57c1ceb743eddb888046888d1b2fb8b7e5db88edb543d65b/cwam-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "846bb27f9e20d36fe2080506c811d3aa", "sha256": "01e0e3c01d13834cba3f012c29c5ca38c154c0f40859bdfdc6d02584688d02d4" }, "downloads": -1, "filename": "cwam-1.0.0.tar.gz", "has_sig": false, "md5_digest": "846bb27f9e20d36fe2080506c811d3aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24344, "upload_time": "2018-05-17T23:28:58", "url": "https://files.pythonhosted.org/packages/8c/db/6fef9c3896b9534eaf9df39e168b15e542c6aaef86b91b940ce3fd892337/cwam-1.0.0.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "d9fe3425215ac4c798a802445bf70f1f", "sha256": "573812ee5770a96461107e5751e547b3d430e6d01cb0c5e79b963a8d69f79b59" }, "downloads": -1, "filename": "cwam-2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9fe3425215ac4c798a802445bf70f1f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20737, "upload_time": "2018-10-11T20:09:57", "url": "https://files.pythonhosted.org/packages/30/0a/e60be7b0496446c381e265d7a24920b8eacc26dd2fb8ff6c70bc0a0995a4/cwam-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1af21867152006d716d4a073f9d59963", "sha256": "d9cd6909b44670e6d11d5ab3ef44609d815f43b85d2ce42c44f88d5c7f73fd64" }, "downloads": -1, "filename": "cwam-2.0.tar.gz", "has_sig": false, "md5_digest": "1af21867152006d716d4a073f9d59963", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24848, "upload_time": "2018-10-11T20:09:58", "url": "https://files.pythonhosted.org/packages/00/b1/5738a6fa5e33cb2de1e837d28fb149fdaac0b7b4c10dd149f8bc815b229a/cwam-2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d9fe3425215ac4c798a802445bf70f1f", "sha256": "573812ee5770a96461107e5751e547b3d430e6d01cb0c5e79b963a8d69f79b59" }, "downloads": -1, "filename": "cwam-2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9fe3425215ac4c798a802445bf70f1f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20737, "upload_time": "2018-10-11T20:09:57", "url": "https://files.pythonhosted.org/packages/30/0a/e60be7b0496446c381e265d7a24920b8eacc26dd2fb8ff6c70bc0a0995a4/cwam-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1af21867152006d716d4a073f9d59963", "sha256": "d9cd6909b44670e6d11d5ab3ef44609d815f43b85d2ce42c44f88d5c7f73fd64" }, "downloads": -1, "filename": "cwam-2.0.tar.gz", "has_sig": false, "md5_digest": "1af21867152006d716d4a073f9d59963", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24848, "upload_time": "2018-10-11T20:09:58", "url": "https://files.pythonhosted.org/packages/00/b1/5738a6fa5e33cb2de1e837d28fb149fdaac0b7b4c10dd149f8bc815b229a/cwam-2.0.tar.gz" } ] }