From 065a79778a0e28e88b04faaa1c03c64181c60940 Mon Sep 17 00:00:00 2001 From: Tomasz Pytel Date: Mon, 14 Dec 2020 20:14:59 -0300 Subject: [PATCH] [Plugin] added component ID for Python aiohttp (#6006) --- CHANGES.md | 1 + .../src/main/resources/component-libraries.yml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index d2094a6dfd..919b589ea3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -23,6 +23,7 @@ Release Notes. * Fix group name can't be query in the GraphQL. * Fix potential gRPC connection leak(not closed) for the channels among OAP instances. * Filter OAP instances(unassigned in booting stage) of the empty IP in KubernetesCoordinator. +* Add component ID for Python aiohttp plugin requester and server. #### UI * Fix un-removed tags in trace query. diff --git a/oap-server/server-bootstrap/src/main/resources/component-libraries.yml b/oap-server/server-bootstrap/src/main/resources/component-libraries.yml index 872c865733..f1389607ea 100755 --- a/oap-server/server-bootstrap/src/main/resources/component-libraries.yml +++ b/oap-server/server-bootstrap/src/main/resources/component-libraries.yml @@ -476,6 +476,9 @@ Urllib3: Sanic: id: 7007 languages: Python +AioHttp: + id: 7008 + languages: Python # PHP components # [8000, 9000) for PHP agent -- GitLab