-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add asyncpg instrumentation. Closes: #15
- Loading branch information
Showing
5 changed files
with
162 additions
and
0 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
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,146 @@ | ||
# Copyright 2010 New Relic, Inc. | ||
# | ||
# 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. | ||
|
||
from newrelic.api.database_trace import ( | ||
DatabaseTrace, | ||
enable_datastore_instance_feature, | ||
register_database_client, | ||
) | ||
from newrelic.api.datastore_trace import DatastoreTrace | ||
from newrelic.common.object_wrapper import ObjectProxy, wrap_function_wrapper | ||
|
||
|
||
class PostgresApi(object): | ||
@staticmethod | ||
def _instance_info(addr, connected_fut, con_params, *args, **kwargs): | ||
if isinstance(addr, str): | ||
host = "localhost" | ||
port = addr | ||
else: | ||
host, port = addr | ||
|
||
return (host, port, getattr(con_params, "database", None)) | ||
|
||
@classmethod | ||
def instance_info(cls, args, kwargs): | ||
return cls._instance_info(*args, **kwargs) | ||
|
||
|
||
register_database_client( | ||
PostgresApi, | ||
"Postgres", | ||
quoting_style="single+dollar", | ||
instance_info=PostgresApi.instance_info, | ||
) | ||
enable_datastore_instance_feature(PostgresApi) | ||
|
||
|
||
class ProtocolProxy(ObjectProxy): | ||
async def bind_execute(self, state, *args, **kwargs): | ||
with DatabaseTrace( | ||
state.query, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.bind_execute(state, *args, **kwargs) | ||
|
||
async def bind_execute_many(self, state, *args, **kwargs): | ||
with DatabaseTrace( | ||
state.query, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.bind_execute_many(state, *args, **kwargs) | ||
|
||
async def bind(self, state, *args, **kwargs): | ||
with DatabaseTrace( | ||
state.query, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.bind(state, *args, **kwargs) | ||
|
||
async def execute(self, state, *args, **kwargs): | ||
with DatabaseTrace( | ||
state.query, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.execute(state, *args, **kwargs) | ||
|
||
async def query(self, query, *args, **kwargs): | ||
with DatabaseTrace( | ||
query, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.query(query, *args, **kwargs) | ||
|
||
async def prepare(self, stmt_name, query, *args, **kwargs): | ||
with DatabaseTrace( | ||
"PREPARE {stmt_name} FROM '{query}'".format( | ||
stmt_name=stmt_name, query=query | ||
), | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.prepare(stmt_name, query, *args, **kwargs) | ||
|
||
async def copy_in(self, copy_stmt, *args, **kwargs): | ||
with DatabaseTrace( | ||
copy_stmt, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.copy_in(copy_stmt, *args, **kwargs) | ||
|
||
async def copy_out(self, copy_stmt, *args, **kwargs): | ||
with DatabaseTrace( | ||
copy_stmt, | ||
dbapi2_module=PostgresApi, | ||
connect_params=getattr(self, "_nr_connect_params", None), | ||
): | ||
return await self.__wrapped__.copy_out(copy_stmt, *args, **kwargs) | ||
|
||
|
||
def proxy_protocol(wrapped, instance, args, kwargs): | ||
proxy = ProtocolProxy(wrapped(*args, **kwargs)) | ||
proxy._nr_connect_params = (args, kwargs) | ||
return proxy | ||
|
||
|
||
def wrap_connect(wrapped, instance, args, kwargs): | ||
host = port = database_name = None | ||
if "addr" in kwargs: | ||
host, port, database_name = PostgresApi._instance_info( | ||
kwargs["addr"], None, kwargs.get("params") | ||
) | ||
|
||
with DatastoreTrace( | ||
PostgresApi._nr_database_product, | ||
None, | ||
"connect", | ||
host=host, | ||
port_path_or_id=port, | ||
database_name=database_name, | ||
): | ||
return wrapped(*args, **kwargs) | ||
|
||
|
||
def instrument_asyncpg_protocol(module): | ||
wrap_function_wrapper(module, "Protocol", proxy_protocol) | ||
|
||
|
||
def instrument_asyncpg_connect_utils(module): | ||
wrap_function_wrapper(module, "_connect_addr", wrap_connect) |