-
Notifications
You must be signed in to change notification settings - Fork 667
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47d42aa
commit a40edf5
Showing
10 changed files
with
312 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
OpenTelemetry Psycopg integration | ||
================================= | ||
|
||
The integration with PostgreSQL supports the `Psycopg`_ library and is specified | ||
to ``trace_integration`` using ``'PostgreSQL'``. | ||
|
||
.. Psycopg: http://initd.org/psycopg/ | ||
Usage | ||
----- | ||
|
||
.. code:: python | ||
import psycopg2 | ||
from opentelemetry import trace | ||
from opentelemetry.sdk.trace import TracerSource | ||
from opentelemetry.trace.ext.psycopg2 import trace_integration | ||
trace.set_preferred_tracer_source_implementation(lambda T: TracerSource()) | ||
tracer = trace.tracer_source().get_tracer(__name__) | ||
trace_integration(tracer) | ||
cnx = psycopg2.connect(database='Database') | ||
cursor = cnx.cursor() | ||
cursor.execute("INSERT INTO test (testField) VALUES (123)") | ||
cursor.close() | ||
cnx.close() | ||
References | ||
---------- | ||
* `OpenTelemetry Project <https://opentelemetry.io/>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Copyright 2020, OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
[metadata] | ||
name = opentelemetry-ext-psycopg2 | ||
description = OpenTelemetry psycopg2 integration | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
author = OpenTelemetry Authors | ||
author_email = [email protected] | ||
url = https://github.com/open-telemetry/opentelemetry-python/ext/opentelemetry-ext-psycopg2 | ||
platforms = any | ||
license = Apache-2.0 | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
|
||
[options] | ||
python_requires = >=3.4 | ||
package_dir= | ||
=src | ||
packages=find_namespace: | ||
install_requires = | ||
opentelemetry-api >= 0.4.dev0 | ||
psycopg2-binary >= 2.7.3.1 | ||
wrapt >= 1.0.0, < 2.0.0 | ||
|
||
[options.packages.find] | ||
where = src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2020, OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import os | ||
|
||
import setuptools | ||
|
||
BASE_DIR = os.path.dirname(__file__) | ||
VERSION_FILENAME = os.path.join( | ||
BASE_DIR, "src", "opentelemetry", "ext", "psycopg2", "version.py" | ||
) | ||
PACKAGE_INFO = {} | ||
with open(VERSION_FILENAME) as f: | ||
exec(f.read(), PACKAGE_INFO) | ||
|
||
setuptools.setup(version=PACKAGE_INFO["__version__"]) |
96 changes: 96 additions & 0 deletions
96
ext/opentelemetry-ext-psycopg2/src/opentelemetry/ext/psycopg2/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# Copyright 2020, OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
""" | ||
The opentelemetry-ext-psycopg2 package allows tracing PostgreSQL queries made by the | ||
Psycopg2 library. | ||
""" | ||
|
||
import logging | ||
import typing | ||
|
||
import psycopg2 | ||
import wrapt | ||
from psycopg2.sql import Composable | ||
|
||
from opentelemetry.ext.dbapi import DatabaseApiIntegration, TracedCursor | ||
from opentelemetry.trace import Tracer | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
DATABASE_COMPONENT = "postgresql" | ||
DATABASE_TYPE = "sql" | ||
|
||
|
||
def trace_integration(tracer): | ||
"""Integrate with PostgreSQL Psycopg library. | ||
Psycopg: http://initd.org/psycopg/ | ||
""" | ||
|
||
connection_attributes = { | ||
"database": "info.dbname", | ||
"port": "info.port", | ||
"host": "info.host", | ||
"user": "info.user", | ||
} | ||
db_integration = DatabaseApiIntegration( | ||
tracer, | ||
DATABASE_COMPONENT, | ||
database_type=DATABASE_TYPE, | ||
connection_attributes=connection_attributes, | ||
) | ||
|
||
# pylint: disable=unused-argument | ||
def wrap_connect( | ||
connect_func: typing.Callable[..., any], | ||
instance: typing.Any, | ||
args: typing.Tuple[any, any], | ||
kwargs: typing.Dict[any, any], | ||
): | ||
connection = connect_func(*args, **kwargs) | ||
db_integration.get_connection_attributes(connection) | ||
connection.cursor_factory = PsycopgTraceCursor | ||
return connection | ||
|
||
try: | ||
wrapt.wrap_function_wrapper(psycopg2, "connect", wrap_connect) | ||
except Exception as ex: # pylint: disable=broad-except | ||
logger.warning("Failed to integrate with pyscopg2. %s", str(ex)) | ||
|
||
class PsycopgTraceCursor(psycopg2.extensions.cursor): | ||
def __init__(self, *args, **kwargs): | ||
self._traced_cursor = TracedCursor(db_integration) | ||
super(PsycopgTraceCursor, self).__init__(*args, **kwargs) | ||
|
||
# pylint: disable=redefined-builtin | ||
def execute(self, query, vars=None): | ||
if isinstance(query, Composable): | ||
query = query.as_string(self) | ||
return self._traced_cursor.traced_execution( | ||
super(PsycopgTraceCursor, self).execute, query, vars | ||
) | ||
|
||
# pylint: disable=redefined-builtin | ||
def executemany(self, query, vars): | ||
if isinstance(query, Composable): | ||
query = query.as_string(self) | ||
return self._traced_cursor.traced_execution( | ||
super(PsycopgTraceCursor, self).executemany, query, vars | ||
) | ||
|
||
# pylint: disable=redefined-builtin | ||
def callproc(self, procname, vars=None): | ||
return self._traced_cursor.traced_execution( | ||
super(PsycopgTraceCursor, self).callproc, procname, vars | ||
) |
Oops, something went wrong.