prometheus-aioexporter


Nameprometheus-aioexporter JSON
Version 2.0.0 PyPI version JSON
download
home_page
SummaryAsyncio library for creating Prometheus exporters
upload_time2023-10-28 07:34:30
maintainer
docs_urlNone
author
requires_python>=3.10
licenseGNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
keywords exporter library prometheus
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Asyncio library for creating Prometheus exporters
=================================================

|Latest Version| |Build Status| |Coverage Status|

``prometheus-aioexporter`` is an aysncio-based library to simplify writing
Prometheus_ exporters.

Exporters are usually implemented as small daemons that expose metrics
in text format through a web endpoint (usually ``/metrics``).


Usage
-----

The library provides a ``PrometheusExporterScript`` class that serves as an
entry point to create services that export Prometheus metrics via an HTTP(s)
endpoint.

Creating a new exporter is just a matter of subclassing
``PrometheusExporterScript`` and implementing a few methods as needed.

An example usage is the following:

.. code:: python

    from prometheus_aioexporter import PrometheusExporterScript


    class MyExporter(PrometheusExporterScript):
        """My Prometheus exporter."""

        name = "my-exporter"

        def configure_argument_parser(
            self, parser: argparse.ArgumentParser
        ) -> None:
            # Additional arguments to the script
            parser.add_argument("--custom-option", help="a custom option")
            # ...

        def configure(self, args: argparse.Namespace) -> None:
            # Save attributes that are needed for later
            self.data = do_stuff()
            # ...

        async def on_application_startup(
            self, application: aiohttp.web.Application
        ) -> None:
            # Start other asyncio tasks at application startup
            use(self.data)
            # ...

        async def on_application_shutdown(
            self, application: aiohttp.web.Application
        ) -> None:
            # Stop other asyncio tasks at application shutdown
            use(self.data)
            # ...


    script = MyExporter()


Exporter command-line
~~~~~~~~~~~~~~~~~~~~~

``PrometheusExporterScript`` provides a few command-line arguments by default:

.. code::

    optional arguments:
      -h, --help            show this help message and exit
      -H HOST [HOST ...], --host HOST [HOST ...]
                            host addresses to bind (default: ['localhost'])
      -p PORT, --port PORT  port to run the webserver on (default: 9090)
      --metrics-path METRICS_PATH
                            path under which metrics are exposed (default: /metrics)
      -L {CRITICAL,ERROR,WARNING,INFO,DEBUG}, --log-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}
                            minimum level for log messages (default: WARNING)
      --process-stats       include process stats in metrics (default: False)
      --ssl-private-key     full path to the ssl private key
      --ssl-public-key      full path to the ssl public key
      --ssl-ca              full path to the ssl certificate authority (CA)


Further options can be added by implementing ``configure_argument_parser()``,
which receives the ``argparse.ArgumentParser`` instance used by the script.

The ``script`` variable from the example above can be referenced in
``pyproject.toml`` to generate the script, like

.. code:: toml

    [project.scripts]
    my-exporter = "path.to.script:script"


The ``description`` of the exporter can be customized by setting the docstring
in the script class.

In order to serve metrics on the HTTPS endpoint both ``ssl-private-key`` and
``ssl-public-key`` need to be define. The ssl certificate authority
(i.e. ``ssl-ca``) is optional.


Startup configuration
~~~~~~~~~~~~~~~~~~~~~

Additional initial setup (e.g. config file parsing) can be performed by the
script by implementing the ``configure()``. This is called at startup with the
parsed argument (an ``argparse.Namespace`` instance).


Metrics configuration
~~~~~~~~~~~~~~~~~~~~~

The metrics exported by the script can be set up by calling ``create_metrics``
with a list of ``MetricConfig``\s. This is typically done in ``configure()``:

.. code:: python

    def configure(self, args: argparse.Namespace) -> None:
        # ...
        self.create_metrics(
            [
                MetricConfig("metric1", "a metric", "gauge"),
                MetricConfig("metric2", "another metric", "counter", labels=("l1", "l2")),
            ]
        )


Web application setup
~~~~~~~~~~~~~~~~~~~~~

On startup, ``PrometheusExporterScript`` creates a ``PrometheusExporter`` which
includes a web application that exposes metrics.

It's possible to customize and perform additional startup/shutdown tasks by
implementing the ``on_application_startup`` and ``on_application_shutdown``
coroutine methods, which are called with the application as parameter.

The ``PrometheusExporter`` instance is accessible via
``application['exporter']``), and provides a ``set_metric_update_handler``
method to register a hook to update metrics on each request, before the
response is returned to the client.  The registered function must return a
coroutine and is called with a dict mapping metric names to metric objects:

.. code:: python

    async def on_application_startup(self, application: aiohttp.web.Application) -> None:
        # ...
        application["exporter"].set_metric_update_handler(self._update_handler)

    async def _update_handler(self, metrics: dict[str, prometheus_client.metrics.MetricWrapperBase]):
        for name, metric in metrics.items():
            metric.set(...)


See ``prometheus_aioexporter.sample`` for a complete example (the script can be
run as ``prometheus-aioexporter-sample``).


.. _Prometheus: https://prometheus.io/

.. |Latest Version| image:: https://img.shields.io/pypi/v/prometheus-aioexporter.svg
   :alt: Latest Version
   :target: https://pypi.python.org/pypi/prometheus-aioexporter
.. |Build Status| image:: https://github.com/albertodonato/prometheus-aioexporter/workflows/CI/badge.svg
   :alt: Build Status
   :target: https://github.com/albertodonato/prometheus-aioexporter/actions?query=workflow%3ACI
.. |Coverage Status| image:: https://img.shields.io/codecov/c/github/albertodonato/prometheus-aioexporter/master.svg
   :alt: Coverage Status
   :target: https://codecov.io/gh/albertodonato/prometheus-aioexporter

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "prometheus-aioexporter",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "Alberto Donato <alberto.donato@gmail.com>",
    "keywords": "exporter,library,prometheus",
    "author": "",
    "author_email": "Alberto Donato <alberto.donato@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/8c/7c/e775f4070682aa6e0306a1773ee69d71be7d1e6eb4dd285806db872b6800/prometheus-aioexporter-2.0.0.tar.gz",
    "platform": null,
    "description": "Asyncio library for creating Prometheus exporters\n=================================================\n\n|Latest Version| |Build Status| |Coverage Status|\n\n``prometheus-aioexporter`` is an aysncio-based library to simplify writing\nPrometheus_ exporters.\n\nExporters are usually implemented as small daemons that expose metrics\nin text format through a web endpoint (usually ``/metrics``).\n\n\nUsage\n-----\n\nThe library provides a ``PrometheusExporterScript`` class that serves as an\nentry point to create services that export Prometheus metrics via an HTTP(s)\nendpoint.\n\nCreating a new exporter is just a matter of subclassing\n``PrometheusExporterScript`` and implementing a few methods as needed.\n\nAn example usage is the following:\n\n.. code:: python\n\n    from prometheus_aioexporter import PrometheusExporterScript\n\n\n    class MyExporter(PrometheusExporterScript):\n        \"\"\"My Prometheus exporter.\"\"\"\n\n        name = \"my-exporter\"\n\n        def configure_argument_parser(\n            self, parser: argparse.ArgumentParser\n        ) -> None:\n            # Additional arguments to the script\n            parser.add_argument(\"--custom-option\", help=\"a custom option\")\n            # ...\n\n        def configure(self, args: argparse.Namespace) -> None:\n            # Save attributes that are needed for later\n            self.data = do_stuff()\n            # ...\n\n        async def on_application_startup(\n            self, application: aiohttp.web.Application\n        ) -> None:\n            # Start other asyncio tasks at application startup\n            use(self.data)\n            # ...\n\n        async def on_application_shutdown(\n            self, application: aiohttp.web.Application\n        ) -> None:\n            # Stop other asyncio tasks at application shutdown\n            use(self.data)\n            # ...\n\n\n    script = MyExporter()\n\n\nExporter command-line\n~~~~~~~~~~~~~~~~~~~~~\n\n``PrometheusExporterScript`` provides a few command-line arguments by default:\n\n.. code::\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      -H HOST [HOST ...], --host HOST [HOST ...]\n                            host addresses to bind (default: ['localhost'])\n      -p PORT, --port PORT  port to run the webserver on (default: 9090)\n      --metrics-path METRICS_PATH\n                            path under which metrics are exposed (default: /metrics)\n      -L {CRITICAL,ERROR,WARNING,INFO,DEBUG}, --log-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}\n                            minimum level for log messages (default: WARNING)\n      --process-stats       include process stats in metrics (default: False)\n      --ssl-private-key     full path to the ssl private key\n      --ssl-public-key      full path to the ssl public key\n      --ssl-ca              full path to the ssl certificate authority (CA)\n\n\nFurther options can be added by implementing ``configure_argument_parser()``,\nwhich receives the ``argparse.ArgumentParser`` instance used by the script.\n\nThe ``script`` variable from the example above can be referenced in\n``pyproject.toml`` to generate the script, like\n\n.. code:: toml\n\n    [project.scripts]\n    my-exporter = \"path.to.script:script\"\n\n\nThe ``description`` of the exporter can be customized by setting the docstring\nin the script class.\n\nIn order to serve metrics on the HTTPS endpoint both ``ssl-private-key`` and\n``ssl-public-key`` need to be define. The ssl certificate authority\n(i.e. ``ssl-ca``) is optional.\n\n\nStartup configuration\n~~~~~~~~~~~~~~~~~~~~~\n\nAdditional initial setup (e.g. config file parsing) can be performed by the\nscript by implementing the ``configure()``. This is called at startup with the\nparsed argument (an ``argparse.Namespace`` instance).\n\n\nMetrics configuration\n~~~~~~~~~~~~~~~~~~~~~\n\nThe metrics exported by the script can be set up by calling ``create_metrics``\nwith a list of ``MetricConfig``\\s. This is typically done in ``configure()``:\n\n.. code:: python\n\n    def configure(self, args: argparse.Namespace) -> None:\n        # ...\n        self.create_metrics(\n            [\n                MetricConfig(\"metric1\", \"a metric\", \"gauge\"),\n                MetricConfig(\"metric2\", \"another metric\", \"counter\", labels=(\"l1\", \"l2\")),\n            ]\n        )\n\n\nWeb application setup\n~~~~~~~~~~~~~~~~~~~~~\n\nOn startup, ``PrometheusExporterScript`` creates a ``PrometheusExporter`` which\nincludes a web application that exposes metrics.\n\nIt's possible to customize and perform additional startup/shutdown tasks by\nimplementing the ``on_application_startup`` and ``on_application_shutdown``\ncoroutine methods, which are called with the application as parameter.\n\nThe ``PrometheusExporter`` instance is accessible via\n``application['exporter']``), and provides a ``set_metric_update_handler``\nmethod to register a hook to update metrics on each request, before the\nresponse is returned to the client.  The registered function must return a\ncoroutine and is called with a dict mapping metric names to metric objects:\n\n.. code:: python\n\n    async def on_application_startup(self, application: aiohttp.web.Application) -> None:\n        # ...\n        application[\"exporter\"].set_metric_update_handler(self._update_handler)\n\n    async def _update_handler(self, metrics: dict[str, prometheus_client.metrics.MetricWrapperBase]):\n        for name, metric in metrics.items():\n            metric.set(...)\n\n\nSee ``prometheus_aioexporter.sample`` for a complete example (the script can be\nrun as ``prometheus-aioexporter-sample``).\n\n\n.. _Prometheus: https://prometheus.io/\n\n.. |Latest Version| image:: https://img.shields.io/pypi/v/prometheus-aioexporter.svg\n   :alt: Latest Version\n   :target: https://pypi.python.org/pypi/prometheus-aioexporter\n.. |Build Status| image:: https://github.com/albertodonato/prometheus-aioexporter/workflows/CI/badge.svg\n   :alt: Build Status\n   :target: https://github.com/albertodonato/prometheus-aioexporter/actions?query=workflow%3ACI\n.. |Coverage Status| image:: https://img.shields.io/codecov/c/github/albertodonato/prometheus-aioexporter/master.svg\n   :alt: Coverage Status\n   :target: https://codecov.io/gh/albertodonato/prometheus-aioexporter\n",
    "bugtrack_url": null,
    "license": "GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007  Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.   This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.  0. Additional Definitions.  As used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License.  \"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.  An \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.  A \"Combined Work\" is a work produced by combining or linking an Application with the Library.  The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\".  The \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.  The \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.  1. Exception to Section 3 of the GNU GPL.  You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.  2. Conveying Modified Versions.  If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:  a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or  b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.  3. Object Code Incorporating Material from Library Header Files.  The object code form of an Application may incorporate material from a header file that is part of the Library.  You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:  a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.  b) Accompany the object code with a copy of the GNU GPL and this license document.  4. Combined Works.  You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:  a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.  b) Accompany the Combined Work with a copy of the GNU GPL and this license document.  c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.  d) Do one of the following:  0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.  1) Use a suitable shared library mechanism for linking with the Library.  A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.  e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)  5. Combined Libraries.  You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:  a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.  b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.  6. Revised Versions of the GNU Lesser General Public License.  The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.  Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.  If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. ",
    "summary": "Asyncio library for creating Prometheus exporters",
    "version": "2.0.0",
    "project_urls": {
        "changelog": "https://github.com/albertodonato/prometheus-aioexporter/blob/main/CHANGES.rst",
        "homepage": "https://github.com/albertodonato/prometheus-aioexporter",
        "repository": "https://github.com/albertodonato/prometheus-aioexporter"
    },
    "split_keywords": [
        "exporter",
        "library",
        "prometheus"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d911eb43cebf8f2992d5a1a360b2b140251a5b4e685db78293690c6f5a2ed06f",
                "md5": "f3500aab7f6267eef44e16f9151d73b4",
                "sha256": "dc0e13c90f525bca313c97690d489c5cb48516d6008b1fcf899cc9989d9f10cf"
            },
            "downloads": -1,
            "filename": "prometheus_aioexporter-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f3500aab7f6267eef44e16f9151d73b4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 15567,
            "upload_time": "2023-10-28T07:34:28",
            "upload_time_iso_8601": "2023-10-28T07:34:28.184726Z",
            "url": "https://files.pythonhosted.org/packages/d9/11/eb43cebf8f2992d5a1a360b2b140251a5b4e685db78293690c6f5a2ed06f/prometheus_aioexporter-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c7ce775f4070682aa6e0306a1773ee69d71be7d1e6eb4dd285806db872b6800",
                "md5": "2dcca7a31f0b53e63dd090ef853a8508",
                "sha256": "2318b15831daab5af4c75f7fc9626ce50c8d8174b2821e6948a378bfade1c60d"
            },
            "downloads": -1,
            "filename": "prometheus-aioexporter-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2dcca7a31f0b53e63dd090ef853a8508",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 16458,
            "upload_time": "2023-10-28T07:34:30",
            "upload_time_iso_8601": "2023-10-28T07:34:30.145304Z",
            "url": "https://files.pythonhosted.org/packages/8c/7c/e775f4070682aa6e0306a1773ee69d71be7d1e6eb4dd285806db872b6800/prometheus-aioexporter-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-28 07:34:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "albertodonato",
    "github_project": "prometheus-aioexporter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "prometheus-aioexporter"
}
        
Elapsed time: 0.13692s