grpcio-observability


Namegrpcio-observability JSON
Version 1.63.0 PyPI version JSON
download
home_pagehttps://grpc.io
SummarygRPC Python observability package
upload_time2024-04-30 16:08:11
maintainerNone
docs_urlNone
authorThe gRPC Authors
requires_python>=3.8
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            gRPC Python Observability
=========================

Package for gRPC Python Observability.

More details can be found in `OpenTelemetry Metrics gRFC <https://github.com/grpc/proposal/blob/master/A66-otel-stats.md#opentelemetry-metrics>`_.

How gRPC Python Observability Works
-----------------------------------

gRPC Python is a wrapper layer built upon the gRPC Core (written in C/C++). Most of telemetry data
is collected at core layer and then exported to Python layer. To optimize performance and reduce
the overhead of acquiring the GIL too frequently, telemetry data is initially cached at the Core layer
and then exported to the Python layer in batches.

Note that while this approach enhances efficiency, it will introduce a slight delay between the
time the data is collected and the time it becomes available through Python exporters.


Supported Python Versions
-------------------------
Python >= 3.7

Installation
------------

Currently gRPC Python Observability is **only available for Linux**.

Installing From PyPI
~~~~~~~~~~~~~~~~~~~~

::

  $ pip install grpcio-observability


Installing From Source
~~~~~~~~~~~~~~~~~~~~~~

Building from source requires that you have the Python headers (usually a
package named :code:`python-dev`) and Cython installed. It further requires a
GCC-like compiler to go smoothly; you can probably get it to work without
GCC-like stuff, but you may end up having a bad time.

::

  $ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
  $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
  $ cd $REPO_ROOT
  $ git submodule update --init

  $ cd src/python/grpcio_observability
  $ python -m make_grpcio_observability

  # For the next command do `sudo pip install` if you get permission-denied errors
  $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .


Dependencies
------------
gRPC Python Observability Depends on the following packages:

::

  grpcio
  opentelemetry-api==1.21.0


Usage
-----

You can find example usage in `Python example folder <https://github.com/grpc/grpc/tree/master/examples/python/observability>`_.

We also provide several environment variables to help you optimize gRPC python observability for your particular use.

1. GRPC_PYTHON_CENSUS_EXPORT_BATCH_INTERVAL
    * This controls how frequently telemetry data collected within gRPC Core is sent to Python layer.
    * Default value is 0.5 (Seconds).

2. GRPC_PYTHON_CENSUS_MAX_EXPORT_BUFFER_SIZE
    * This controls the maximum number of telemetry data items that can be held in the buffer within gRPC Core before they are sent to Python.
    * Default value is 10,000.

3. GRPC_PYTHON_CENSUS_EXPORT_THRESHOLD
    * This setting acts as a trigger: When the buffer in gRPC Core reaches a certain percentage of its capacity, the telemetry data is sent to Python.
    * Default value is 0.7 (Which means buffer will start export when it's 70% full).

4. GRPC_PYTHON_CENSUS_EXPORT_THREAD_TIMEOUT
    * This controls the maximum time allowed for the exporting thread (responsible for sending data to Python) to complete.
    * Main thread will terminate the exporting thread after this timeout.
    * Default value is 10 (Seconds).

            

Raw data

            {
    "_id": null,
    "home_page": "https://grpc.io",
    "name": "grpcio-observability",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "The gRPC Authors",
    "author_email": "grpc-io@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/4a/7c/76840a7975fc1d5b6950702ab474316fd7f94ade79700fb8f659b7450e3d/grpcio_observability-1.63.0.tar.gz",
    "platform": null,
    "description": "gRPC Python Observability\n=========================\n\nPackage for gRPC Python Observability.\n\nMore details can be found in `OpenTelemetry Metrics gRFC <https://github.com/grpc/proposal/blob/master/A66-otel-stats.md#opentelemetry-metrics>`_.\n\nHow gRPC Python Observability Works\n-----------------------------------\n\ngRPC Python is a wrapper layer built upon the gRPC Core (written in C/C++). Most of telemetry data\nis collected at core layer and then exported to Python layer. To optimize performance and reduce\nthe overhead of acquiring the GIL too frequently, telemetry data is initially cached at the Core layer\nand then exported to the Python layer in batches.\n\nNote that while this approach enhances efficiency, it will introduce a slight delay between the\ntime the data is collected and the time it becomes available through Python exporters.\n\n\nSupported Python Versions\n-------------------------\nPython >= 3.7\n\nInstallation\n------------\n\nCurrently gRPC Python Observability is **only available for Linux**.\n\nInstalling From PyPI\n~~~~~~~~~~~~~~~~~~~~\n\n::\n\n  $ pip install grpcio-observability\n\n\nInstalling From Source\n~~~~~~~~~~~~~~~~~~~~~~\n\nBuilding from source requires that you have the Python headers (usually a\npackage named :code:`python-dev`) and Cython installed. It further requires a\nGCC-like compiler to go smoothly; you can probably get it to work without\nGCC-like stuff, but you may end up having a bad time.\n\n::\n\n  $ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice\n  $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT\n  $ cd $REPO_ROOT\n  $ git submodule update --init\n\n  $ cd src/python/grpcio_observability\n  $ python -m make_grpcio_observability\n\n  # For the next command do `sudo pip install` if you get permission-denied errors\n  $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .\n\n\nDependencies\n------------\ngRPC Python Observability Depends on the following packages:\n\n::\n\n  grpcio\n  opentelemetry-api==1.21.0\n\n\nUsage\n-----\n\nYou can find example usage in `Python example folder <https://github.com/grpc/grpc/tree/master/examples/python/observability>`_.\n\nWe also provide several environment variables to help you optimize gRPC python observability for your particular use.\n\n1. GRPC_PYTHON_CENSUS_EXPORT_BATCH_INTERVAL\n    * This controls how frequently telemetry data collected within gRPC Core is sent to Python layer.\n    * Default value is 0.5 (Seconds).\n\n2. GRPC_PYTHON_CENSUS_MAX_EXPORT_BUFFER_SIZE\n    * This controls the maximum number of telemetry data items that can be held in the buffer within gRPC Core before they are sent to Python.\n    * Default value is 10,000.\n\n3. GRPC_PYTHON_CENSUS_EXPORT_THRESHOLD\n    * This setting acts as a trigger: When the buffer in gRPC Core reaches a certain percentage of its capacity, the telemetry data is sent to Python.\n    * Default value is 0.7 (Which means buffer will start export when it's 70% full).\n\n4. GRPC_PYTHON_CENSUS_EXPORT_THREAD_TIMEOUT\n    * This controls the maximum time allowed for the exporting thread (responsible for sending data to Python) to complete.\n    * Main thread will terminate the exporting thread after this timeout.\n    * Default value is 10 (Seconds).\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "gRPC Python observability package",
    "version": "1.63.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/grpc/grpc/issues",
        "Homepage": "https://grpc.io",
        "Source Code": "https://github.com/grpc/grpc/tree/master/src/python/grpcio_observability"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "039f16099685877cb4822e99f8dd477700dc82dfd911cc11b0746d69931dc860",
                "md5": "1d18955a15103335c3c9b3241b257c94",
                "sha256": "f3c3e561be012b544f0a56873af13c2a0760735caf8a6d422e34830e0b144507"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1d18955a15103335c3c9b3241b257c94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 259580,
            "upload_time": "2024-04-30T16:04:17",
            "upload_time_iso_8601": "2024-04-30T16:04:17.576621Z",
            "url": "https://files.pythonhosted.org/packages/03/9f/16099685877cb4822e99f8dd477700dc82dfd911cc11b0746d69931dc860/grpcio_observability-1.63.0-cp310-cp310-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8618fa5ded6b8eb9ec38fef6b1cc843f486b86f6407d655536a57088a863317",
                "md5": "b3a1d8184231ac2638d7a6bec488f534",
                "sha256": "f690aa722446c1b2955cd6b00c84dd3e489ef06f3974ce2737e62ed41c8ffc07"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3a1d8184231ac2638d7a6bec488f534",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 240456,
            "upload_time": "2024-04-30T16:04:19",
            "upload_time_iso_8601": "2024-04-30T16:04:19.241273Z",
            "url": "https://files.pythonhosted.org/packages/e8/61/8fa5ded6b8eb9ec38fef6b1cc843f486b86f6407d655536a57088a863317/grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b9cf487a355cb0f120a4daeefeda34b9d8932c37f88f0db30e43cff40b48789",
                "md5": "c9add11ca6608bd81d87b3685967b7a9",
                "sha256": "f3ee928a5259d59479fb67efa43ba0bbc35a5fbf65bf8b537821cd46cce08582"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c9add11ca6608bd81d87b3685967b7a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 304268,
            "upload_time": "2024-04-30T16:04:21",
            "upload_time_iso_8601": "2024-04-30T16:04:21.486033Z",
            "url": "https://files.pythonhosted.org/packages/7b/9c/f487a355cb0f120a4daeefeda34b9d8932c37f88f0db30e43cff40b48789/grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c0020bf4248d058246f481bf46c0f08014d3e7b88db28689b419fe0cfb324db",
                "md5": "9b7e84857c609186c1a8176d0d369e17",
                "sha256": "76612bca07d2d96622ef864e1aa3892726b950f528d974e496f0f2e1897b4202"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b7e84857c609186c1a8176d0d369e17",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 275749,
            "upload_time": "2024-04-30T16:04:23",
            "upload_time_iso_8601": "2024-04-30T16:04:23.133354Z",
            "url": "https://files.pythonhosted.org/packages/0c/00/20bf4248d058246f481bf46c0f08014d3e7b88db28689b419fe0cfb324db/grpcio_observability-1.63.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "939639461b6e637d2a7599d0c9ae98504a31fc08d2fc2f58edafdaedca36a74a",
                "md5": "bb11e148e74a65b4f8556ef114303d9c",
                "sha256": "10cab82c18d46fe7cf7ff67b843d170fa03e50c4ef42d636a4c2a0df321b7ce1"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bb11e148e74a65b4f8556ef114303d9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 672446,
            "upload_time": "2024-04-30T16:04:25",
            "upload_time_iso_8601": "2024-04-30T16:04:25.462024Z",
            "url": "https://files.pythonhosted.org/packages/93/96/39461b6e637d2a7599d0c9ae98504a31fc08d2fc2f58edafdaedca36a74a/grpcio_observability-1.63.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a35dfe8242bb65cd5c8f48de65dc49677f0ad044999090bf34c661642a2133d",
                "md5": "58afd20c72664c0d631c60b4c59ea7ae",
                "sha256": "7b666b9fb11610daab5f40229a5ff5ebbc3baf5a86edf9f4c9e3430ff9fa4180"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58afd20c72664c0d631c60b4c59ea7ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 604434,
            "upload_time": "2024-04-30T16:04:27",
            "upload_time_iso_8601": "2024-04-30T16:04:27.092179Z",
            "url": "https://files.pythonhosted.org/packages/7a/35/dfe8242bb65cd5c8f48de65dc49677f0ad044999090bf34c661642a2133d/grpcio_observability-1.63.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "206b884ac1c19c6efee110c27ee4ed88cf0e3d813d98d9d026de97c9225649c3",
                "md5": "f5727075de5d46cfcbb745b3cae15354",
                "sha256": "c8fc060cd21b18933de33fbbe74334c3f2c1a579858a9d964c80dabf19845083"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f5727075de5d46cfcbb745b3cae15354",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 258234,
            "upload_time": "2024-04-30T16:04:28",
            "upload_time_iso_8601": "2024-04-30T16:04:28.427321Z",
            "url": "https://files.pythonhosted.org/packages/20/6b/884ac1c19c6efee110c27ee4ed88cf0e3d813d98d9d026de97c9225649c3/grpcio_observability-1.63.0-cp311-cp311-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71726453e860ba418e52d63907fb2c99b0c310bea344df709f9521ebed9e2431",
                "md5": "412b795b010cd84ddb0995fcd49a4169",
                "sha256": "b24e2117e75c70be7cfc46a489d93f75d72d7672538ea806c42c56ed44df8dc6"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "412b795b010cd84ddb0995fcd49a4169",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 241150,
            "upload_time": "2024-04-30T16:04:30",
            "upload_time_iso_8601": "2024-04-30T16:04:30.730861Z",
            "url": "https://files.pythonhosted.org/packages/71/72/6453e860ba418e52d63907fb2c99b0c310bea344df709f9521ebed9e2431/grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16d2e306a5b61d83af28520715e05240acb030d23f09eedb1b062a0857215c88",
                "md5": "0c3c77c5bad552d8c100db5494f93aeb",
                "sha256": "0c3a2e9f9664537b7d773488df2682d295a9b15e82fd6d4594a9ab81de3d378e"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0c3c77c5bad552d8c100db5494f93aeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 304064,
            "upload_time": "2024-04-30T16:04:32",
            "upload_time_iso_8601": "2024-04-30T16:04:32.467286Z",
            "url": "https://files.pythonhosted.org/packages/16/d2/e306a5b61d83af28520715e05240acb030d23f09eedb1b062a0857215c88/grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9129ec0a35bce118bc9ea07524fa1ea6649f1da447958e6d449557ada30bbfd",
                "md5": "e5c66ba5a247cfb0b61253ddc54ab28a",
                "sha256": "8b3adeec3d06fcbb95f06d97b091197381d71f43331d8d1ea9e938e5cff25902"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5c66ba5a247cfb0b61253ddc54ab28a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 275569,
            "upload_time": "2024-04-30T16:04:34",
            "upload_time_iso_8601": "2024-04-30T16:04:34.178080Z",
            "url": "https://files.pythonhosted.org/packages/d9/12/9ec0a35bce118bc9ea07524fa1ea6649f1da447958e6d449557ada30bbfd/grpcio_observability-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec37c2ccef8f44ebd1c5eca4322dfaab261db08548d83ff3e3aeff8010266955",
                "md5": "79cb200c2130a13d56c59bf7d2130e89",
                "sha256": "343bbd9eebf7f65e59c2a0b360773933f71fd6eba556775ee7e3d64d2aeaeea7"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "79cb200c2130a13d56c59bf7d2130e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 671439,
            "upload_time": "2024-04-30T16:04:36",
            "upload_time_iso_8601": "2024-04-30T16:04:36.364930Z",
            "url": "https://files.pythonhosted.org/packages/ec/37/c2ccef8f44ebd1c5eca4322dfaab261db08548d83ff3e3aeff8010266955/grpcio_observability-1.63.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d863fa908f96b1f2f0eff44af6a650b336a2e17da32f40ee6e3170c5936ba8dc",
                "md5": "2d70aadb19b09edaf05aa3428d98313c",
                "sha256": "80386826a6ffc7e07099a19d93a76951df79f70486f5db7303ea91be1a51a75c"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d70aadb19b09edaf05aa3428d98313c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 604217,
            "upload_time": "2024-04-30T16:04:37",
            "upload_time_iso_8601": "2024-04-30T16:04:37.951135Z",
            "url": "https://files.pythonhosted.org/packages/d8/63/fa908f96b1f2f0eff44af6a650b336a2e17da32f40ee6e3170c5936ba8dc/grpcio_observability-1.63.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1237775f2d42d19bb379a76651fb123c97cc94afef558478e25f4073339f64d",
                "md5": "93138331425e15c86848f4945707e8f0",
                "sha256": "80961a3132f6344569456bd7b37a315ee27f5762b07d601c32785741672d39be"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "93138331425e15c86848f4945707e8f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 252435,
            "upload_time": "2024-04-30T16:04:39",
            "upload_time_iso_8601": "2024-04-30T16:04:39.772971Z",
            "url": "https://files.pythonhosted.org/packages/f1/23/7775f2d42d19bb379a76651fb123c97cc94afef558478e25f4073339f64d/grpcio_observability-1.63.0-cp312-cp312-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c09b829c7dcc2e476913953489957bdb8cf46d12af613cfdcbb4e4bf168ed820",
                "md5": "da89b6f927442d7b899e7b08eb0dd269",
                "sha256": "8c252058797b03a04132f9bd049f5a265eaa447368f815fbe1c79bc772c89f2e"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da89b6f927442d7b899e7b08eb0dd269",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 234283,
            "upload_time": "2024-04-30T16:04:42",
            "upload_time_iso_8601": "2024-04-30T16:04:42.038091Z",
            "url": "https://files.pythonhosted.org/packages/c0/9b/829c7dcc2e476913953489957bdb8cf46d12af613cfdcbb4e4bf168ed820/grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a97ba7947914007bbe41a8c9a79ad7fb46a780b2c4851373a69fc27b6f70f290",
                "md5": "7158636be675cd56f195b65af8483168",
                "sha256": "407913fa3847f1561c78ac05b3e6f910835aa5da425b4400a479532f7e82f21a"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7158636be675cd56f195b65af8483168",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 296805,
            "upload_time": "2024-04-30T16:04:44",
            "upload_time_iso_8601": "2024-04-30T16:04:44.007462Z",
            "url": "https://files.pythonhosted.org/packages/a9/7b/a7947914007bbe41a8c9a79ad7fb46a780b2c4851373a69fc27b6f70f290/grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a752030d7f43e4afb3dab7e7af2d8303abbf8c0d305d85e9237c5636fbd1e1c4",
                "md5": "05b4278331065a616a7ddd4af7dda4f6",
                "sha256": "c62dff0876b107dd5fec247fad4be71f88fc0cd81976287f828e279c123fad7b"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05b4278331065a616a7ddd4af7dda4f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 269728,
            "upload_time": "2024-04-30T16:04:45",
            "upload_time_iso_8601": "2024-04-30T16:04:45.480306Z",
            "url": "https://files.pythonhosted.org/packages/a7/52/030d7f43e4afb3dab7e7af2d8303abbf8c0d305d85e9237c5636fbd1e1c4/grpcio_observability-1.63.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20c6e2d406adf4426ba48873f0e86a88bed86fe3684f7ae2a646e212e78e8a18",
                "md5": "04c841178fc62ec901db1e1f73cf087d",
                "sha256": "6ac66ea271c45e710163bcdab33d95f75429ef0db4c46275e3d700942576c90c"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "04c841178fc62ec901db1e1f73cf087d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 664493,
            "upload_time": "2024-04-30T16:04:48",
            "upload_time_iso_8601": "2024-04-30T16:04:48.041977Z",
            "url": "https://files.pythonhosted.org/packages/20/c6/e2d406adf4426ba48873f0e86a88bed86fe3684f7ae2a646e212e78e8a18/grpcio_observability-1.63.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c81596a6b5ae93c3466e05f47dc4f43f7de24174ae053256ab24d4340a58ae08",
                "md5": "3df5dd459b8febda5bd9c2b81fea68df",
                "sha256": "59b41800ac790b1c3183675bd15535c5aa891252d4291d6ea74f426d0e135ca4"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3df5dd459b8febda5bd9c2b81fea68df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 599899,
            "upload_time": "2024-04-30T16:04:49",
            "upload_time_iso_8601": "2024-04-30T16:04:49.714039Z",
            "url": "https://files.pythonhosted.org/packages/c8/15/96a6b5ae93c3466e05f47dc4f43f7de24174ae053256ab24d4340a58ae08/grpcio_observability-1.63.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01bb6ba3de24e15e2ffb004711d97ce150d3fb5fff2647e266600388fb79c667",
                "md5": "e31fb1d27655f323f6d23dc384bc2d3e",
                "sha256": "308675661607d1638f5ec7e11e8108a65c614029e6719a7837cd797b10f0a058"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e31fb1d27655f323f6d23dc384bc2d3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 260907,
            "upload_time": "2024-04-30T16:04:51",
            "upload_time_iso_8601": "2024-04-30T16:04:51.934790Z",
            "url": "https://files.pythonhosted.org/packages/01/bb/6ba3de24e15e2ffb004711d97ce150d3fb5fff2647e266600388fb79c667/grpcio_observability-1.63.0-cp38-cp38-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e9d17248ca6ef3af3cc3031f1572a08f938465dafbad9abc4ca5707ef043315",
                "md5": "263edcb2b7c1ff394028277fc42267c5",
                "sha256": "93df1b68d56ae99ef2ea513102b49e9d712c520eefe012410e9e5fe603a0f976"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "263edcb2b7c1ff394028277fc42267c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 243150,
            "upload_time": "2024-04-30T16:04:53",
            "upload_time_iso_8601": "2024-04-30T16:04:53.578251Z",
            "url": "https://files.pythonhosted.org/packages/4e/9d/17248ca6ef3af3cc3031f1572a08f938465dafbad9abc4ca5707ef043315/grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "977db84ec3ef2a4aa509058d18fc1a05af0be4e3968a41eccc973e0756d1548c",
                "md5": "f2cffe4872232a5b7a7ad6bf2c8c03ce",
                "sha256": "5a25c31f9c3347a37572ab3f1642ec05e82419e7b9d36028d834a97ba07be496"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f2cffe4872232a5b7a7ad6bf2c8c03ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 306868,
            "upload_time": "2024-04-30T16:04:55",
            "upload_time_iso_8601": "2024-04-30T16:04:55.398557Z",
            "url": "https://files.pythonhosted.org/packages/97/7d/b84ec3ef2a4aa509058d18fc1a05af0be4e3968a41eccc973e0756d1548c/grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5249d811110f31890de299457e149359a8daddeb934f07738edcc18f3f721cc9",
                "md5": "8e47fa3f640891322b0c6831d4681c3a",
                "sha256": "ba0bd1d3a9c67f754dc22e06956ab74cffb285236f5f983dd8bc0ffb5fdca3f7"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e47fa3f640891322b0c6831d4681c3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 277650,
            "upload_time": "2024-04-30T16:04:57",
            "upload_time_iso_8601": "2024-04-30T16:04:57.105219Z",
            "url": "https://files.pythonhosted.org/packages/52/49/d811110f31890de299457e149359a8daddeb934f07738edcc18f3f721cc9/grpcio_observability-1.63.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45af4c1173704c132d4e5d56e3d1a8c3917b581fb95df647487d509d9a258620",
                "md5": "77c90ab1f604ba70e79b55cce747c24d",
                "sha256": "01b5a51cb17825b315e1bba896935bcfa97c6d5e29b8b0a7e3c049ea79e311e3"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "77c90ab1f604ba70e79b55cce747c24d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 674335,
            "upload_time": "2024-04-30T16:04:59",
            "upload_time_iso_8601": "2024-04-30T16:04:59.055642Z",
            "url": "https://files.pythonhosted.org/packages/45/af/4c1173704c132d4e5d56e3d1a8c3917b581fb95df647487d509d9a258620/grpcio_observability-1.63.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff56f44b47db09da2cb5b946ac64ca2f304db8deee936233153b2492a86eba91",
                "md5": "d39df568bed940eb32cb8e246a126fb2",
                "sha256": "12d92a4f489080614dbc3d6f822545d9710cd25e7481962d771e4741035c34fb"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d39df568bed940eb32cb8e246a126fb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 607276,
            "upload_time": "2024-04-30T16:05:01",
            "upload_time_iso_8601": "2024-04-30T16:05:01.139275Z",
            "url": "https://files.pythonhosted.org/packages/ff/56/f44b47db09da2cb5b946ac64ca2f304db8deee936233153b2492a86eba91/grpcio_observability-1.63.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5418f92897bd081d5a27b0475f42de41b6f2e5a85b1438e4766fc702a5f5093e",
                "md5": "3a9d0fead0b453a9ce266e53e7ee68f6",
                "sha256": "cd191cf31db57447fd8ebfe85112e3df9b8a1836c617eb0e62ce99e4a3f30e3d"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3a9d0fead0b453a9ce266e53e7ee68f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 260623,
            "upload_time": "2024-04-30T16:05:02",
            "upload_time_iso_8601": "2024-04-30T16:05:02.971212Z",
            "url": "https://files.pythonhosted.org/packages/54/18/f92897bd081d5a27b0475f42de41b6f2e5a85b1438e4766fc702a5f5093e/grpcio_observability-1.63.0-cp39-cp39-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcdaef6446738782e73d13cffec8c9fb6cbfe40268dfdb1929fdde66d98ee0c4",
                "md5": "91e7cd808d505b819a9d6e8d12e3b023",
                "sha256": "1fd9a865806fde7a44c5c43ae6e45c236021ed0a00f12f9f37158ed4840233f5"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91e7cd808d505b819a9d6e8d12e3b023",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 243360,
            "upload_time": "2024-04-30T16:05:05",
            "upload_time_iso_8601": "2024-04-30T16:05:05.074876Z",
            "url": "https://files.pythonhosted.org/packages/fc/da/ef6446738782e73d13cffec8c9fb6cbfe40268dfdb1929fdde66d98ee0c4/grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e7e7cd5de6a0bba576479a5ebec1d36444366997c96e7c3606a8058ed6ecb65",
                "md5": "011ffbfd572a8c65e457ae4d1e0ded24",
                "sha256": "bae02db8f23e240eca85911ff79a38e9ce5b972c615cff82cd1046e042b46f67"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "011ffbfd572a8c65e457ae4d1e0ded24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 306794,
            "upload_time": "2024-04-30T16:05:07",
            "upload_time_iso_8601": "2024-04-30T16:05:07.119722Z",
            "url": "https://files.pythonhosted.org/packages/4e/7e/7cd5de6a0bba576479a5ebec1d36444366997c96e7c3606a8058ed6ecb65/grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e2390f376c0ee74b2d84562702aa1223a42137298d79bea84d5b15007eaebad",
                "md5": "3392dd8b934da59b47555a009c01a007",
                "sha256": "3c4588b05eb654334cb4c99f5e270b66b86ecd16e695ca25252305c99e747caf"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3392dd8b934da59b47555a009c01a007",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 277684,
            "upload_time": "2024-04-30T16:05:09",
            "upload_time_iso_8601": "2024-04-30T16:05:09.607697Z",
            "url": "https://files.pythonhosted.org/packages/4e/23/90f376c0ee74b2d84562702aa1223a42137298d79bea84d5b15007eaebad/grpcio_observability-1.63.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "194197e154d03d03afbb60450a7b0f38a9255f4902e04b2d498830baff4ce297",
                "md5": "a82fd0a104ca73ad90f5f868aa62cf05",
                "sha256": "db1959eb6339938332903f7e7f9e66e87d555542ea1237b61fd1df2c1a0a23d3"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a82fd0a104ca73ad90f5f868aa62cf05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 674127,
            "upload_time": "2024-04-30T16:05:12",
            "upload_time_iso_8601": "2024-04-30T16:05:12.250457Z",
            "url": "https://files.pythonhosted.org/packages/19/41/97e154d03d03afbb60450a7b0f38a9255f4902e04b2d498830baff4ce297/grpcio_observability-1.63.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abff6e9f2c152e5a24d7630ac4225b1dc053aacc2323978081f0d5e28d40e5ba",
                "md5": "04a46aed5f0b7aaf28e37d98bd8543d6",
                "sha256": "fc997749a2700c670cc425fe75b16e92e9894f53a109c85dbfaf5a5789671af2"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04a46aed5f0b7aaf28e37d98bd8543d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 607567,
            "upload_time": "2024-04-30T16:05:14",
            "upload_time_iso_8601": "2024-04-30T16:05:14.837016Z",
            "url": "https://files.pythonhosted.org/packages/ab/ff/6e9f2c152e5a24d7630ac4225b1dc053aacc2323978081f0d5e28d40e5ba/grpcio_observability-1.63.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a7c76840a7975fc1d5b6950702ab474316fd7f94ade79700fb8f659b7450e3d",
                "md5": "7415a1194b21cd1c886924c332c4286a",
                "sha256": "9522a01e816c5e83e0c31a75d1aee67ca007bb687c74e76767bd6bbce69b8ef7"
            },
            "downloads": -1,
            "filename": "grpcio_observability-1.63.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7415a1194b21cd1c886924c332c4286a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 5274018,
            "upload_time": "2024-04-30T16:08:11",
            "upload_time_iso_8601": "2024-04-30T16:08:11.466025Z",
            "url": "https://files.pythonhosted.org/packages/4a/7c/76840a7975fc1d5b6950702ab474316fd7f94ade79700fb8f659b7450e3d/grpcio_observability-1.63.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 16:08:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "grpc",
    "github_project": "grpc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "grpcio-observability"
}
        
Elapsed time: 0.24568s