{
"info": {
"author": "Sumo Logic",
"author_email": "support@sumologic.com",
"bugtrack_url": null,
"classifiers": [],
"description": "Sumo Logic collectd Plugin\n==========================\n\nA `collectd ` output plugin to send Carbon 2.0-formatted metrics to Sumo Logic.\n\nTLS Deprecation Notice\n\nIn keeping with industry standard security best practices, as of May 31, 2018, the Sumo Logic service will only support TLS version 1.2 going forward. Verify that all connections to Sumo Logic endpoints are made from software that supports TLS 1.2.\n\nGet Started\n-----------\n\n1. Python version\n`````````````````\nSumo Logic collectd plugin is built on top of `collectd-python plugin `_. The minimum required version for running the plugin is Python version 2.6. You can download and install the desired Python version from `Python download page `_. \n\n\n2. Install collectd on your machine\n```````````````````````````````````\nIf collectd is already installed, you can skip this step. Otherwise, follow the instructions in the `collectd download `_ site for download and installation. For additional details, see `first_steps `_ section in the collectd Wiki.\n\n\nMac OSX\n'''''''\n::\n\n brew install collectd\n\n\nDebian / Ubuntu\n'''''''''''''''\n::\n\n sudo apt-get install collectd\n\n\n3. Download and install Sumo Logic collectd plugin\n``````````````````````````````````````````````````\nOption 1: Install as a library\n``````````````````````````````\n::\n\n sudo pip install sumologic_collectd_metrics\n\nAll required dependencies will be automatically installed with library installation.\n\nOption2: Install with source code\n`````````````````````````````````\n\nThe Sumo Logic collectd plugin source code can be saved in a directory anywhere on your system. Dowload it from `PythonIdex > Package Index > sumologic_collectd_metrics `_, or::\n\n git clone https://github.com/SumoLogic/sumologic-collectd-plugin.git\n\nSumo Logic collectd plugin uses `requests `_ and `retry `_ libraries for sumbitting https requests. If they are not installed. Install them using pip::\n\n sudo pip install requests\n sudo pip install retry\n\n4. Create an HTTP Metrics Source in Sumo Logic\n``````````````````````````````````````````````\nCreate a `Sumo Logic account `_ if you don't currently have one.\n\nFollow these instructions for `setting up an HTTP Source `_ in Sumo Logic. Be sure to obtain the URL endpoint after creating an HTTP Source.\n\n\n5. Configure Sumo Logic collectd plugin\n```````````````````````````````````````\nSumo Logic collectd plugin supports the following parameters. To configure the plugin, modify collectd's configuration file named ``collectd.conf`` (e.g. ``/etc/collectd/collectd.conf``).\n\n\nRequired parameters\n```````````````````\n\nThe parameters below are required and must be specified in the module config. \n\n.. Generated by table generator http://www.tablesgenerator.com/text_tables\n\n+------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------+----------+\n| Name | Description | Type | Required |\n+------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------+----------+\n| `URL `_ | The URL to send metrics to. This should be given when `creating the HTTP Source `_ on Sumo Logic web app. | String | True |\n+------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------+----------+\n| TypesDB | Data-set specification for collectd raw data. More information about types.db is available in collectd `types.db `_. Collectd ships with a default types.db file that is in the directory of collectd root, for example ``/usr/share/collectd/types.db`` | Strings in the format of ``\"types1.db\"``, ``\"types2.db\"`` ... | True |\n+------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------+----------+\n\n\nBasic parameters\n````````````````\n\n.. Generated by table generator http://www.tablesgenerator.com/text_tables\n\n\nThe parameters below are not strictly required. It is recommended to set these parameters as they prove to be extremely useful to categorize your metrics and search by them.\n\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| Name | Description | Type | Required |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| SourceName | Name of the metrics source. ``_sourceName`` can be used to search metrics from this source. It will override the default configured in the the Sumo Logic Source configuration. | String | False |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| SourceHost | Name of metrics host. ``_sourceHost`` can be used to search metrics from this host. It will override the default configured in the the Sumo Logic Source configuration. | String | False |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| SourceCategory | Category of the collected metrics. ``_sourceCategory`` can be used to search metrics from this category. It will override the default configured in the the Sumo Logic Source configuration. | String | False |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| Dimensions | Key value pairs that contribute to identifying a metric. Collectd data have intrinsic dimensions with keys as ``host``, ``plugin``, ``plugin_instance``, ``type``, ``type_instance``, ``ds_name``, ``ds_type``. The Additional dimensions specified here can help separating metrics collected from this collectd instance with metircs collected from other collectd instances. Dimensions cannot contain `Reserved symbols`_ and `Reserved keywords`_ | Srings in the format of ``\"key1\"=\"val1\", \"key2\"=\"val2\"`` ... | False |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n| Metadata | Key value pairs that do not contribute to identifying a metric. Metadata are primarily used to assist in searching metrics. Collectd data may have internal metadata. The additional metadata specified here can be used to enrich the existing metadata set. Metadata cannot contain `Reserved symbols`_ and `Reserved keywords`_ | Srings in the format of ``\"key1\"=\"val1\", \"key2\"=\"val2\"`` ... | False |\n+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+----------+\n\nAdditional parameters\n`````````````````````\nFor additional configuration parameters, see `Advanced parameters`_ below.\n\nExample configuration\n`````````````````````\nAn example configuration for the plugin is shown below (code to be added to ``collectd.conf`` under ``collectd_root/etc``)::\n\n LoadPlugin python\n \n \t# Uncomment and update the following line if sumologic collectd plugin installed with source code\n \t# ModulePath \"/path/to/sumologic-collectd-plugin\"\n \tLogTraces true\n \tInteractive false\n \tImport \"sumologic_collectd_metrics\"\n\n \t\n\t TypesDB \"/path/to/your/collectd/share/collectd/types.db\", \"/path/to/my_own_types.db\" # At lease one types.db file must be specified\n \t URL \"https://.sumologic.com/receiver/v1/http/\" # URL must be specified\n\t # Uncomment and update the following lines to override the default metadata configured in the the Sumo Logic Source configuration\n\t # SourceName \"my_source\"\n\t # SourceHost \"my_host\"\n\t # SourceCategory \"my_category\"\n\t # Uncomment and update the following lines to add additional key=value pairs\n\t # Dimensions \"my_dim_key1\"=\"my_dim_val1\", \"my_dim_key2\"=\"my_dim_val2\"\n\t # Metadata \"my_meta_key1\"=\"my_meta_val1\", \"my_meta_key2\"=\"my_meta_val2\"\n \t\n \n\nOther recommended modules\n`````````````````````````\n\nIt is recommeded to setup the following two plugins in ``collectd.conf``. The functionalities of the two plugins are explained in collectd Wiki `Plugin:LogFile `_ and `Plugin:CSV `_::\n\n LoadPlugin logfile\n \n\t LogLevel \"info\"\n\t File \"/var/log/collectd.log\"\n\t Timestamp true\n\t PrintSeverity true\n \n\n LoadPlugin csv\n \n\t DataDir \"/usr/local/var/lib/collectd/csv\"\n \n\nThe following pulgins, if enabled in ``collectd.conf``, enables collecting `cpu `_, `memory `_, `disk `_, `network `_ metrics from the system:: \n\n LoadPlugin cpu\n LoadPlugin memory\n LoadPlugin disk\n LoadPlugin interface\n\nA list of all collectd plugins is awailable in collectd Wiki `Table of Plugins `_\n\nReserved symbols\n````````````````\n\nEqual sign and space are reserved symbols::\n\n \"=\", \" \"\n\n\nReserved keywords\n`````````````````\n\nFollowing terms are reserved for Sumo Logic internal use only::\n\n \"_sourcehost\", \"_sourcename\", \"_sourcecategory\", \"_collectorid\", \"_collector\", \"_source\", \"_sourceid\", \"_contenttype\", \"_rawname\"\n\n\n6. Start sending metrics\n````````````````````````\n\nStart sending metrics by running collectd, e.g. (command will differ depending on collectd installation)::\n\n sudo service collectd start\n\n\nView logs\n`````````\n\nIf logfile is installed, then you can view logs by tailling collectd.log file, e.g. (command can be differnt depends on collectd installation)::\n\n tail -f /var/log/collectd.log\n\n\nData model\n``````````\n\nThe Sumo Logic collectd plugin will send metrics using the `Carbon 2.0 `_ format, defined as::\n\n dimensions metadata value timestamp\n\n\n``dimensions`` and ``metadata`` are key/value pairs of strings separated by two spaces. ``dimensions`` uniquely identifying a metric, while ``metadata`` do not contribute to identifying a metric. Instead, they are used to categorize metrics for searching. \n``value`` is a double number. ``timestamp`` is a 10-digit UNIX epoch timestamp\n\nExample data before compression::\n\n host=my_mac plugin=cpu plugin_instance=1 type=cpu type_instance=user ds_name=value ds_type=DERIVE meta_key1=meta_val1 5991.000000 1502148249\n host=my_mac plugin=cpu plugin_instance=0 type=cpu type_instance=user ds_name=value ds_type=DERIVE meta_key1=meta_val1 98722.000000 1502148249\n\n\nNaming Schema\n`````````````\ncollectd uses are very powerful naming schema to identify each statistics value. It has been proven very generic and flexible, but may be confusing at first, especially to new users. You can read more about it by following this wiki `collectd naming schema `_. \n\n\nCompression\n```````````\n\nMetrics are batched and compressed before they are sent. The compression algorithm is ``\"deflate\"``. The algorithm is explained in more detail in `An Explanation of the Deflate Algorithm `_. Alternately, you can specify ``\"gzip\"`` for gzip compression and ``\"none\"`` for no compression.\n\nError handling\n``````````````\n\nSumo Logic collectd plugin retries on exceptions by default. When all retries fail, the request is either scheduled for a future attempt or dropped based on the buffer status. By default, 1000 requests are buffered. If the buffer becomes full, then requests failed after all retries will be dropped. Otherwise, it is put back to the processing queue for the next run.\n\n7. View metrics\n```````````````\n\nTo view the metrics sent by the collectd plugin, log into Sumo Logic and open a Metrics tab. Query for metrics using either dimensions or metadata, e.g.::\n\n _sourceName=my_source _sourceHost=my_host _sourceCategory=my_category plugin=cpu\n\n\nYou should be able to see metrics displayed in the main graph.\n\n\nAdvanced Topics\n---------------\n\nAdvanced parameters\n```````````````````\n\nYou can configure the Sumo Logic collectd plugin by overriding default values for plugin parameters. \n\n.. Generated by table generator http://www.tablesgenerator.com/text_tables\n\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| Name | Description | Type | Default | Unit |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| MaxBatchSize | Sumo Logic collectd plugin batches metrics before sending them over https. MaxBatchSize defines the upper limit of metrics per batch. | Positive Integer | 5000 | NA |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| MaxBatchInterval | Sumo Logic collectd plugin batches metrics before sending them through https. MaxBatchInterval defines the upper limit of duration to construct a batch. | Positive Integer | 1 | Second |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| HttpPostInterval | Sumo Logic collectd plugin schedules https post requests at fixed intervals. HttpPostInterval defines the frequency for the scheduler to run. If no metrics batch is available at the time, the sceduler immediately returns. If multiple metrics batches are available, then the oldest batch is picked to be sent. | Positive Float | 0.1 | |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| MaxRequestsToBuffer | Sumo Logic collectd plugin buffers failed and delayed metrics batch requests. MaxRequestsToBuffer specifies the maximum number of these requests to buffer. After the buffer becomes full, the request with oldest metrics batch will be dropped to make space for new metrics batch.|Positive Integer | Positive Integer | 1000 | NA |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| RetryInitialDelay | Sumo Logic collectd plugin retries on recoverable exceptions. RetryInitialDelay specifies the initial delay before a retry is scheduled. More information can be found in the `retry library `__ | Non-negative Integer | 0 | Second |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| RetryMaxAttempts | Sumo Logic collectd plugin retries on recoverable exceptions. RetryMaxAttempts specifies the upper limit of retries before the current retry logic fails. The metric batch is then either put back for the next run (when metrics buffer specified by MaxRequestsToBuffer is not full), or dropped (when metrics buffer is full). More information can be found in the `retry library `__ | Positive Integer | 10 | NA |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| RetryMaxDelay | Sumo Logic collectd plugin retries on recoverable exceptions. RetryMaxDelay specifies the upper limit of delay before the current retry logic fails. Then the metric batch either is put back for the next run (when metrics buffer specified by MaxRequestsToBuffer is not full), or dropped (when metrics buffer is full). More information can be found in the `retry library `__ | Positive Integer | 100 | Second |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| RetryJitterMin | Sumo Logic collectd plugin retries on recoverable exceptions. RetryJitterMin specifies the minimum extra seconds added to delay between attempts. More information can be found in the `retry library `__ | Non-negative Integer | 0 | Second |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| RetryJitterMax | Sumo Logic collectd plugin retries on recoverable exceptions. RetryJitterMax specifies the maximum extra seconds added to delay between attempts. More information can be found in the `retry library `__ | Non-negative Integer | 10 | Second |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n| ContentEncoding | The content encoding used to compress HTTP entity-body | ``\"deflate\", \"gzip\", or \"none\"`` | ``\"deflate\"`` | NA |\n+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------+---------------+--------+\n\nPlugin Architecture\n```````````````````\n\n::\n\n Collectd\t\tMetricsConverter\t\t MetricsBatcher\t MetricsBuffer\t\t\t\t MetricsSender\n --------\t --------------------------\t\t --------------\t ------------------------\t\t\t-----------------\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tbatch to send\t\n Raw Data -> Metric in Carbon 2.0 format\t ->\t Metrics Batch ->\t Buffered metrics batches\t ->\t\tRequest scheduler\n\t\t \t\t\t\t\t\t\t\t\t\t\t\t <-\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tfailed batch\n\n\nLicense\n-------\n\nThe Sumo Logic collectd output plugin is published under the Apache Software License, Version 2.0. Please visit http://www.apache.org/licenses/LICENSE-2.0.txt for details.\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/SumoLogic/sumologic-collectd-plugin",
"keywords": "",
"license": "Apache Software License, Version 2.0",
"maintainer": "",
"maintainer_email": "",
"name": "sumologic-collectd-metrics",
"package_url": "https://pypi.org/project/sumologic-collectd-metrics/",
"platform": "",
"project_url": "https://pypi.org/project/sumologic-collectd-metrics/",
"project_urls": {
"Homepage": "https://github.com/SumoLogic/sumologic-collectd-plugin"
},
"release_url": "https://pypi.org/project/sumologic-collectd-metrics/1.0.1/",
"requires_dist": [
"requests",
"retry"
],
"requires_python": "",
"summary": "A collectd output plugin to send Carbon 2.0-formatted metrics to Sumo Logic.",
"version": "1.0.1"
},
"last_serial": 3988575,
"releases": {
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "6f74883b8ad5e4a075a7d1aa4465a038",
"sha256": "0bd037cd5939c223bab6c58eadf6cbbdc24585931e7d2f2c0343e5e2b2c26861"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6f74883b8ad5e4a075a7d1aa4465a038",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 22338,
"upload_time": "2017-08-25T19:43:52",
"url": "https://files.pythonhosted.org/packages/e2/d1/f807438bdfc9291ba6eaf81df212b4d43efa3699608166503705d0122dec/sumologic_collectd_metrics-1.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4cc9112c6bb4e954b65c02fc1ac2c3c6",
"sha256": "faa5f651cd7c9284432dc96194add6ad1d1851808333d5a4f83a61290cbff93e"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "4cc9112c6bb4e954b65c02fc1ac2c3c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25888,
"upload_time": "2017-08-25T19:43:54",
"url": "https://files.pythonhosted.org/packages/37/bc/70de3fe8a8cd0ab91daf1b62fe4addb6e30957dc224d4f5ac3c555d8f06c/sumologic_collectd_metrics-1.0.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "a69b807bc9fd0b69f53ffc21d7e09e70",
"sha256": "eafb9857e405ebe7cd8942ab455d4bbf6d1b1bbd385a04d7999bf591a4f8df47"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "a69b807bc9fd0b69f53ffc21d7e09e70",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 16876,
"upload_time": "2018-06-22T08:12:21",
"url": "https://files.pythonhosted.org/packages/39/95/17db8fd9da7ec7aff6bbec8486098b5d53a5c69c7e4040847715ccfd6fba/sumologic_collectd_metrics-1.0.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a2b09f3b3bd870724af740cf1ca88622",
"sha256": "1661e6d0f5e5bbc84b8bf114a6ea014f9a6e7ce2c250e7fde386cda0bc8d09a7"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "a2b09f3b3bd870724af740cf1ca88622",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27901,
"upload_time": "2018-06-22T08:12:23",
"url": "https://files.pythonhosted.org/packages/86/ef/81078a5f6f83845ce3ecddd42a22e0d144ba6dc04e830f14ff43695face3/sumologic_collectd_metrics-1.0.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "a69b807bc9fd0b69f53ffc21d7e09e70",
"sha256": "eafb9857e405ebe7cd8942ab455d4bbf6d1b1bbd385a04d7999bf591a4f8df47"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "a69b807bc9fd0b69f53ffc21d7e09e70",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 16876,
"upload_time": "2018-06-22T08:12:21",
"url": "https://files.pythonhosted.org/packages/39/95/17db8fd9da7ec7aff6bbec8486098b5d53a5c69c7e4040847715ccfd6fba/sumologic_collectd_metrics-1.0.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a2b09f3b3bd870724af740cf1ca88622",
"sha256": "1661e6d0f5e5bbc84b8bf114a6ea014f9a6e7ce2c250e7fde386cda0bc8d09a7"
},
"downloads": -1,
"filename": "sumologic_collectd_metrics-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "a2b09f3b3bd870724af740cf1ca88622",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27901,
"upload_time": "2018-06-22T08:12:23",
"url": "https://files.pythonhosted.org/packages/86/ef/81078a5f6f83845ce3ecddd42a22e0d144ba6dc04e830f14ff43695face3/sumologic_collectd_metrics-1.0.1.tar.gz"
}
]
}