{ "info": { "author": "Chris Chang", "author_email": "c@crccheck.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "Cloudwatch-to-Graphite\n======================\n\n.. image:: https://travis-ci.org/crccheck/cloudwatch-to-graphite.svg\n :target: https://travis-ci.org/crccheck/cloudwatch-to-graphite\n\nCloudwatch-to-Graphite (leadbutt) is a small utility to take metrics from\nCloudWatch to Graphite.\n\n\nInstallation\n------------\n\nInstall using pip::\n\n pip install cloudwatch-to-graphite\n\nConfiguring ``boto``\n~~~~~~~~~~~~~~~~~~~~\n\nCloudwatch-to-Graphite uses `boto`_, so make sure to follow its `configuration\ninstructions`_. The easiest way to do this is to set up the\n``AWS_ACCESS_KEY_ID`` and ``AWS_SECRET_ACCESS_KEY`` environment variables.\n\n.. _configuration instructions: http://boto.readthedocs.org/en/latest/boto_config_tut.html\n\n\nUsage\n-----\n\nConfiguration Files\n~~~~~~~~~~~~~~~~~~~\n\nIf you have a simple setup, the easiest way to get started is to set up a\nconfig.yaml. You can copy the included config.yaml.example. Then just run::\n\n leadbutt\n\nIf you have several configs you want to switch between, you can specify a\ncustom configuration file::\n\n leadbutt --config-file=production.yaml -n 20\n\nYou can even generate configs on the fly and send them in via stdin by setting\nthe config file to '-'::\n\n generate_config_from_inventory | leadbutt --config-file=-\n\nThere's a helper to generate configuration files called ``plumbum``. Use it like::\n\n plumbum [-r REGION] [-f FILTER] [--token TOKEN] template namespace\n\nNamespace is the CloudWatch namespace for the resources of interest; for example ``AWS/RDS``.\nThe template is a Jinja2 template. You can add arbitrary replacement tokens, eg ``{{ replace_me }}``, and then\npass in values on the CLI via ``--token``. For example, if you called::\n\n plumbum --token replace_me='hello, world' sample_templates/rds.yml.j2 AWS/RDS\n\nYou would get all instances of ``{{ replace_me }}`` in the templace replaced with ``hello, world``.\n\nFilters\n~~~~~~~\n\nYou can pass simple ``key=value`` filters in to ``plumbum``; be aware of the limitations:\n\n* the filters run against whatever the AWS API has returned; if you have a lot of objects of whatever type, expect the API request to take a while.\n* they work only against object attributes and tags returned by the API. For example, RDS and ELB objects can be tagged, but as getting the tags is a per-object subrequest; ``plumbum`` does not do those, so you can only filter on the object attributes.\n\nExample: ``plumbum -f Name=my-dev-instance sample_templates/ec2.yml.j2 ec2``\n\n\nSending Data to Graphite\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf your graphite server is at graphite.local, you can send metrics by chaining\nwith netcat::\n\n leadbutt | nc -q0 graphite.local 2003\n\nOr if you want to use UDP::\n\n leadbutt | nc -uw0 graphite.local 2003\n\nIf you need to namespace your metrics for a hosted Graphite provider, you could\nprovide a custom formatter, but the easiest way is to just run the output\nthrough awk::\n\n leadbutt | \\\n awk -v namespace=\"$HOSTEDGRAPHITE_APIKEY\" '{print namespace\".\"$0}' | \\\n nc -uw0 my-graphite-provider.xxx 2003\n\nCustomizing Your Graphite Metric Names\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nSet the ``Formatter`` option to set the template used to generate Graphite\nmetric names. I wasn't sure what should be default, so I copied\n`cloudwatch2graphite`_'s. Here's what it looks like::\n\n cloudwatch.%(Namespace)s.%(dimension)s.%(MetricName)s.%(statistic)s.%(Unit)s\n\nTitleCased variables come directly from the YAML configuration, while lowercase\nvariables are derived:\n\n* **statistic** -- the current statistic since ``Statistics`` can be a list\n* **dimension** -- the dimension value, e.g. \"i-r0b0t\" or \"my-load-balancer\"\n\nThe format string is Python's `%-style `_.\n\nconfig.yaml\n-----------\n\nWhat metrics are pulled is in a YAML configuration file. See the example\nconfig.yaml.example for an idea of what you can do.\n\n\nDeveloping\n----------\n\nSee: : `Contributing `__.\n\nUseful References\n-----------------\n\n* `CloudWatch Reference `_\n* `boto CloudWatch docs `_\n\n\nPrior Art\n---------\n\nCloudwatch-to-Graphite was inspired by edasque's `cloudwatch2graphite`_. I was\nlooking to expand it, but I wanted to use `boto`_.\n\n.. _cloudwatch2graphite: https://github.com/edasque/cloudwatch2graphite\n.. _boto: https://boto.readthedocs.org/en/latest/\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/crccheck/cloudwatch-to-graphite", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "cloudwatch-to-graphite", "package_url": "https://pypi.org/project/cloudwatch-to-graphite/", "platform": "", "project_url": "https://pypi.org/project/cloudwatch-to-graphite/", "project_urls": { "Homepage": "https://github.com/crccheck/cloudwatch-to-graphite" }, "release_url": "https://pypi.org/project/cloudwatch-to-graphite/0.11.0/", "requires_dist": null, "requires_python": "", "summary": "Helper for pushing AWS CloudWatch metrics to Graphite", "version": "0.11.0" }, "last_serial": 3773960, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "251fd5d16db370af32101caab599445b", "sha256": "135a1e2ee882185387de48f1f75e1e5ec44527ebbce3fd2dc5e996445f32c7b7" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "251fd5d16db370af32101caab599445b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5602, "upload_time": "2014-10-13T01:52:06", "url": "https://files.pythonhosted.org/packages/7b/63/472df350323822e546b911534f6bef8e3a91579af9658bb4f12f3936cf0e/cloudwatch_to_graphite-0.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "850aa130f68fbed3631067674bc64490", "sha256": "3e78f86ebbd3777fb57ff6367c83dc6eb547fc28d35258cd31c88aa94e6d7989" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.0.0.tar.gz", "has_sig": false, "md5_digest": "850aa130f68fbed3631067674bc64490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3458, "upload_time": "2014-10-13T01:52:03", "url": "https://files.pythonhosted.org/packages/04/27/2f741be2fafcf7162fdc9ed746ccb344f80bd1b23afaf968f9691f7cba18/cloudwatch-to-graphite-0.0.0.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "4fb5d25b9e2ccbc2c58d9694ba8b6e0f", "sha256": "0d15c86040e664fcbee89d481eaf0c9c1aebda5ce5748120bef9b24dbc87f427" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fb5d25b9e2ccbc2c58d9694ba8b6e0f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6002, "upload_time": "2014-10-13T04:47:05", "url": "https://files.pythonhosted.org/packages/e3/a0/5ea3cf950f6b02d0789c8a16733afed1037c0c95edb589094a8886fc546d/cloudwatch_to_graphite-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad892cc21eea7a21e80100200d9e1e27", "sha256": "4671350052bed81e3a5a2e04bbf2f44dd7064eac45db1c13d001d8c6a0e6a115" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.1.0.tar.gz", "has_sig": false, "md5_digest": "ad892cc21eea7a21e80100200d9e1e27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3828, "upload_time": "2014-10-13T04:47:03", "url": "https://files.pythonhosted.org/packages/ca/9e/ec030f89c96668c14d8c07aa8cae0f187183b3d60b551de6ab3d7bf624d8/cloudwatch-to-graphite-0.1.0.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "239e7591d7c42abeb4336ed68cf8cb45", "sha256": "83e04f94d0938ed3972fcc6117a33e993b54b4ea16d1af3774367cfe8af8cd48" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "239e7591d7c42abeb4336ed68cf8cb45", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12387, "upload_time": "2017-12-20T17:39:31", "url": "https://files.pythonhosted.org/packages/a5/41/dcf898fd4175b8c254e796a05a4e76779975ea352b8892bda2cb221fa31a/cloudwatch_to_graphite-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66e3e3e4f38b5872928749376d50798e", "sha256": "e9b90b10c821d5cf4cae791e2234ed407f0ddfd101d7eea231e5477e8d09069a" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.10.0.tar.gz", "has_sig": false, "md5_digest": "66e3e3e4f38b5872928749376d50798e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8709, "upload_time": "2017-12-20T17:39:29", "url": "https://files.pythonhosted.org/packages/77/49/ad94b40fd750f20e9e9ff9a9a0526a935bdceb0534a88da3692085428427/cloudwatch-to-graphite-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "ead3e6fc4ac0b62b73163c81767cb5fe", "sha256": "99b91d392dbabbfb540ee570049eced299da6f2a8e1306d77413f0550469f044" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ead3e6fc4ac0b62b73163c81767cb5fe", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12411, "upload_time": "2018-04-17T16:38:02", "url": "https://files.pythonhosted.org/packages/a5/6a/8d5b196378c7a4890bd1a2b6ff7a9985a5843188102f8259afebe7e55656/cloudwatch_to_graphite-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "903cec0da2f4a9e1a5166ad44aae4e3c", "sha256": "cdf1a5b9718b610f123e853e633ae22d472ce8494528c48e60b5210b86a949d7" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.11.0.tar.gz", "has_sig": false, "md5_digest": "903cec0da2f4a9e1a5166ad44aae4e3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8735, "upload_time": "2018-04-17T16:38:00", "url": "https://files.pythonhosted.org/packages/f0/c4/4ea77f6c25b9e110b3c5d0f7b559784ef7c4099e01aeeed119bb9207cde8/cloudwatch-to-graphite-0.11.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b74dac6af0f65ac84b2edcf6b8ca6127", "sha256": "ee3e42ee3ae4cdceb7eb5486ed49c29cf04fa0ae8ccdfe72377313e2da08041b" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b74dac6af0f65ac84b2edcf6b8ca6127", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7577, "upload_time": "2014-10-14T06:27:55", "url": "https://files.pythonhosted.org/packages/c5/d4/c44032cdfcac64ed941d7aac6209262c77dafcce1c8a49e0605349250d0b/cloudwatch_to_graphite-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfabb25b9bad00b3b8ec0b15e075ae86", "sha256": "aff3a07ebf3955fffb4b04052dc32b824aa79e0c416f722261502ac6b8b54b01" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.2.0.tar.gz", "has_sig": false, "md5_digest": "dfabb25b9bad00b3b8ec0b15e075ae86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4867, "upload_time": "2014-10-14T06:27:52", "url": "https://files.pythonhosted.org/packages/ba/b9/c24f4103a1f07e7ed2d1f379d1ae7cebbc2a0f50dd265dc8dab1404714d0/cloudwatch-to-graphite-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7aecdb4c36d91ec8717d006c813f88ae", "sha256": "65339653ff980c57ca4a906c6fd364c6fd88b535691819fdfa2ec8188ac0e4fa" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7aecdb4c36d91ec8717d006c813f88ae", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8869, "upload_time": "2014-10-27T05:32:29", "url": "https://files.pythonhosted.org/packages/03/a8/d55ea84b501029cd623e4d199aed9f1c25a61d8ae41056cbadef23fb3803/cloudwatch_to_graphite-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16535f584738b809f9e18f17c8181e6b", "sha256": "9a9fc4179d0684ee0cd09f59696873d2b40bfb96e2080eef2f65a23e79b10d1b" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.3.0.tar.gz", "has_sig": false, "md5_digest": "16535f584738b809f9e18f17c8181e6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5800, "upload_time": "2014-10-27T05:32:27", "url": "https://files.pythonhosted.org/packages/00/d8/3e985b74b8b592fbac84a1e50a392a5fff7220b0f3decd19e153721c0248/cloudwatch-to-graphite-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "6dad657175e9ecf0d43aa757fe3ed87b", "sha256": "f170e7c013fb6a6c47df2bb0481ecefb383c9947c66548056a9cf6b3004cc601" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6dad657175e9ecf0d43aa757fe3ed87b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9641, "upload_time": "2014-11-17T04:07:48", "url": "https://files.pythonhosted.org/packages/39/27/7f499dc4814063b323b50daf56bc465bd092a8813f55a28b955923a10c5b/cloudwatch_to_graphite-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9540d09f621f728a26e744eb0c0b3350", "sha256": "5a8672bd575c56b5cbeab1ac5d529f944364b97a75d398449437c9d17162b303" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.4.0.tar.gz", "has_sig": false, "md5_digest": "9540d09f621f728a26e744eb0c0b3350", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6489, "upload_time": "2014-11-17T04:07:45", "url": "https://files.pythonhosted.org/packages/cd/3d/22e3caf8125196150e38252efa78d2f30cfc0832d8a72f8b2002a618460c/cloudwatch-to-graphite-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "c3f735d934e9e6e34372842bc446c946", "sha256": "0a2b7e0c8c0f8f9212dd0aa7ef53893267f89a68e2ca26d96369ed6481fde72a" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c3f735d934e9e6e34372842bc446c946", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9845, "upload_time": "2014-12-03T04:11:32", "url": "https://files.pythonhosted.org/packages/2f/9a/49d84339ec1a9ae1c45061551d80dae3d6a19b0fbae7976406ccd65d75e0/cloudwatch_to_graphite-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0681a23e3f47267ef0d712fd08fda4cb", "sha256": "7c21eacbce9b64ed7dc4abe1370a871ec17579bf71d353abf90c82ae1041eeb3" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.5.0.tar.gz", "has_sig": false, "md5_digest": "0681a23e3f47267ef0d712fd08fda4cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6660, "upload_time": "2014-12-03T04:11:29", "url": "https://files.pythonhosted.org/packages/43/ac/12a1d5a42219dc3f6132fe754e6e0c59fd377a4f39fc45fdda5b19ef2f9e/cloudwatch-to-graphite-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0957489272c413a3ac5ec6dd9e08cc50", "sha256": "befb92714da3a58af4ac6f8f46209c6ddb63809593afed2d3381b6c4cdf96824" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0957489272c413a3ac5ec6dd9e08cc50", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10217, "upload_time": "2015-07-30T04:21:38", "url": "https://files.pythonhosted.org/packages/95/fd/deac76d584caec507d670ef9b86d4aac5a5ea2b8fd8ba33eb7f76d4ee6cd/cloudwatch_to_graphite-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b06b8c9e3798d53bed094ebcdb7bc39", "sha256": "eb4689463106c187cb31a346fc5224657d01b42763d2c70567e59887f16036e9" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.6.0.tar.gz", "has_sig": false, "md5_digest": "8b06b8c9e3798d53bed094ebcdb7bc39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6857, "upload_time": "2015-07-30T04:21:35", "url": "https://files.pythonhosted.org/packages/31/0d/f69fd81e84e66cbd7afcd7ad984020252dc661b66e2f843d5469f268bb5f/cloudwatch-to-graphite-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "8e01a763f14017913e2f51f5b945fc3a", "sha256": "762e3a48156285d36c00e41298649f3690d169c47246c558caf4fc5b6e7b4e8d" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e01a763f14017913e2f51f5b945fc3a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10555, "upload_time": "2015-08-23T02:46:37", "url": "https://files.pythonhosted.org/packages/6a/96/6ce3fbcb907d48c75945360cd0094c8383e65c9066d6dc8d30cbe90b2473/cloudwatch_to_graphite-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1c52ebbfd9f0328d5559190a803206f", "sha256": "81bed8a2c991db235994bb96b3d0f6b0c83492ad1c142150bf70269721291673" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.7.0.tar.gz", "has_sig": false, "md5_digest": "b1c52ebbfd9f0328d5559190a803206f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7127, "upload_time": "2015-08-23T02:46:33", "url": "https://files.pythonhosted.org/packages/fe/1f/7762fefd4d2e1dedd31546cdb5ea4605ed634d0c102478b2177aa484eeee/cloudwatch-to-graphite-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "886c700f6fdfe73fc0cf5c8cdfe61543", "sha256": "e644a2d64d6b0792284e0f19b6400994095ca8328d7cd2681f2648cea0d35cdc" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "886c700f6fdfe73fc0cf5c8cdfe61543", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10600, "upload_time": "2015-10-06T03:19:48", "url": "https://files.pythonhosted.org/packages/52/3e/083db62f667e7b248f4eb48b2a45d3f5b8ec9f6fe0c1d06238f07922e8bf/cloudwatch_to_graphite-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7639cfc4f38248bbc47fe225bc84664", "sha256": "3d169e07a172c5ed7a6ceafd13080b5c6ececc1d534513a9d475f3282bb4021f" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.8.0.tar.gz", "has_sig": false, "md5_digest": "f7639cfc4f38248bbc47fe225bc84664", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7275, "upload_time": "2015-10-06T03:19:45", "url": "https://files.pythonhosted.org/packages/18/77/d9a627d6ad7c5201a918af4b1d7ee2c9edd4e79791891e680d45447a6440/cloudwatch-to-graphite-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "15dafc37ca1224ad315eebd3acb6f92e", "sha256": "556db842b3a8cb95f221297f4e9b1ee8dcecf5ef4b630ddde89d650028d01323" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15dafc37ca1224ad315eebd3acb6f92e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10602, "upload_time": "2015-10-06T03:21:26", "url": "https://files.pythonhosted.org/packages/83/de/20bab5ec2c6f3c5e3203fbe6fe853304f32a757991b08ef727ce2e721d89/cloudwatch_to_graphite-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b659907b188362e4f09c555e8cbd7f4f", "sha256": "6e6667090504950fce0f196010a3d8758bbb8b32f6bbf7b2a719fd08cfdb9b02" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.8.1.tar.gz", "has_sig": false, "md5_digest": "b659907b188362e4f09c555e8cbd7f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7288, "upload_time": "2015-10-06T03:21:23", "url": "https://files.pythonhosted.org/packages/77/28/6d5adf1d6c9c28165b4152cfc3e16d1182bacad91215a285381bb9364d10/cloudwatch-to-graphite-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "03435c1dcf4f4d5895b226d2d0b60239", "sha256": "5240573d5f672572b19820c172151ce22118514723f793df96b66c1ecab16d4b" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03435c1dcf4f4d5895b226d2d0b60239", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10371, "upload_time": "2016-03-05T16:57:49", "url": "https://files.pythonhosted.org/packages/04/1f/3a1cc659fb6c4a4976e0f1511d9c4ab5986020a10dba383fd84383193113/cloudwatch_to_graphite-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f87cfa411c78be73f133c0a0543bc3e9", "sha256": "e5f27def6db1d53b125f11d0dec0d1f3b6f07c2aabb652bfc2246ddfad3eb5cd" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.9.0.tar.gz", "has_sig": false, "md5_digest": "f87cfa411c78be73f133c0a0543bc3e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7032, "upload_time": "2016-03-05T16:57:45", "url": "https://files.pythonhosted.org/packages/26/bb/293c60111c5e7222f2f6df58abb95b24f347d3a7f4aceea2830400c0217d/cloudwatch-to-graphite-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "39e9da8236a470a1326ad522efd0e8ec", "sha256": "1d799ecbe83a1d1807b9dc4ee832fb2885163200ccdad567627bb1b3cf7d9a0c" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "39e9da8236a470a1326ad522efd0e8ec", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11198, "upload_time": "2016-03-15T20:50:21", "url": "https://files.pythonhosted.org/packages/b1/bc/5fc12b2107fc789f6ff9e1d5b35a0c6832ccda08e0605e3ae4a918fc0c41/cloudwatch_to_graphite-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ae29e1e537cc5816697485131a15166", "sha256": "2c920b4923509fe2497155ce132a1381f385aefd180aaec0e4eb2a4cd1a8235d" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.9.1.tar.gz", "has_sig": false, "md5_digest": "0ae29e1e537cc5816697485131a15166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7729, "upload_time": "2016-03-15T20:49:59", "url": "https://files.pythonhosted.org/packages/a6/14/25db683ce987ce37ab7edb621b01733e4579c4cd80370ff8369e5e10491e/cloudwatch-to-graphite-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "9998d9a1a9fadd0f6082c7ba1a69679a", "sha256": "d2e980c05ca6f9ba1cc46cd3d166b602849c248e1681ecccc27c46ba13220173" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9998d9a1a9fadd0f6082c7ba1a69679a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11246, "upload_time": "2016-03-15T22:58:16", "url": "https://files.pythonhosted.org/packages/9a/eb/5d5f2590482629cdf93d457bb7e9e6d9bc7aebfab57999b29c9d8bf608b9/cloudwatch_to_graphite-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3209723a86f0a65ba146f061f9dde02a", "sha256": "2ee27fe60c4fa403453d72025e2e8847ea8177da381ad57a90d56e1f7087a7dc" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.9.2.tar.gz", "has_sig": false, "md5_digest": "3209723a86f0a65ba146f061f9dde02a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7767, "upload_time": "2016-03-15T22:58:02", "url": "https://files.pythonhosted.org/packages/c0/d9/33f66b0f15f944bf26f46e3fd887b5edadfb297f88cb5e833c7c2b56c134/cloudwatch-to-graphite-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ead3e6fc4ac0b62b73163c81767cb5fe", "sha256": "99b91d392dbabbfb540ee570049eced299da6f2a8e1306d77413f0550469f044" }, "downloads": -1, "filename": "cloudwatch_to_graphite-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ead3e6fc4ac0b62b73163c81767cb5fe", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12411, "upload_time": "2018-04-17T16:38:02", "url": "https://files.pythonhosted.org/packages/a5/6a/8d5b196378c7a4890bd1a2b6ff7a9985a5843188102f8259afebe7e55656/cloudwatch_to_graphite-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "903cec0da2f4a9e1a5166ad44aae4e3c", "sha256": "cdf1a5b9718b610f123e853e633ae22d472ce8494528c48e60b5210b86a949d7" }, "downloads": -1, "filename": "cloudwatch-to-graphite-0.11.0.tar.gz", "has_sig": false, "md5_digest": "903cec0da2f4a9e1a5166ad44aae4e3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8735, "upload_time": "2018-04-17T16:38:00", "url": "https://files.pythonhosted.org/packages/f0/c4/4ea77f6c25b9e110b3c5d0f7b559784ef7c4099e01aeeed119bb9207cde8/cloudwatch-to-graphite-0.11.0.tar.gz" } ] }