opencensus-python icon indicating copy to clipboard operation
opencensus-python copied to clipboard

A stats collection and distributed tracing framework

Results 141 opencensus-python issues
Sort by recently updated
recently updated
newest added

**Describe your environment.** We want to export Python logs to Azure Monitor. We have a simple python gunicorn/flask webapp, we are unable to execute `logger.info()` (or other log methods) and...

bug
azure

I'm facing problems to tracing database queries. In the `middleware.py` file, `execute_wrappers` are updating to include `_trace_db_call` function [here](https://github.com/census-instrumentation/opencensus-python/blob/master/contrib/opencensus-ext-django/opencensus/ext/django/middleware.py#L168). But when Django access `execute_wrappers` [here](https://github.com/django/django/blob/af5ec222ccd24e81f9fec6c34836a4e503e7ccf7/django/db/backends/utils.py#L75), it seems to be empty....

bug

**Describe your environment.** We are using Python version 3.8.3 with Django 3.1.3 and Opencencus-ext-azure version 1.0.7 **Steps to reproduce.** We have a Django Rest application, whenever we are running the...

bug
azure

Python >= 3.3 provides mock through unittest.mock. No need to explicitly install the PyPI package (soo to be deprecated by newer pythons)

cla: yes

It was found that python-rsa is vulnerable to Bleichenbacher timing attacks. An attacker can use this flaw via the RSA decryption API to decrypt parts of the cipher text encrypted...

feature-request

Hi all, **Background**: I use Stackdriver to log messages and to store trace from my application. The application is hosted in GKE. The app uses Python 3.7 and the below...

bug

**Steps to reproduce.** ``` from opencensus.trace import config_integration, execution_context, tracer, samplers, print_exporter from google.cloud import datastore exporter = print_exporter.PrintExporter() sampler = samplers.AlwaysOnSampler() trace = tracer.Tracer(exporter=exporter, sampler=sampler) config_integration.trace_integrations(['google_cloud_clientlibs'], tracer=trace) client =...

bug

Hi, I work on the Google Cloud Client Libraries team. I noticed that this package depends on `google-api-core`. We're planning to officially remove 2.7 support (require >=3.6) in `google-api-core` soon....

bug