Skip to content

Commit 2e77bfc

Browse files
owaisalrex
and
alrex
authored
Added a script to generate readme file for root instrumentations (open-telemetry#647)
directory This file lists down all instrumentations and the packages+versions they support. This is helpful to find out at a glance what is exactly supported. Co-authored-by: alrex <[email protected]>
1 parent b6e49ba commit 2e77bfc

File tree

3 files changed

+116
-0
lines changed

3 files changed

+116
-0
lines changed

instrumentation/README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
| Instrumentation | Supported Packages |
3+
| --------------- | ------------------ |
4+
| [opentelemetry-instrumentation-aiohttp-client](./opentelemetry-instrumentation-aiohttp-client) | aiohttp ~= 3.0 |
5+
| [opentelemetry-instrumentation-aiopg](./opentelemetry-instrumentation-aiopg) | aiopg >= 0.13.0, < 1.3.0 |
6+
| [opentelemetry-instrumentation-asgi](./opentelemetry-instrumentation-asgi) | asgiref ~= 3.0 |
7+
| [opentelemetry-instrumentation-asyncpg](./opentelemetry-instrumentation-asyncpg) | asyncpg >= 0.12.0 |
8+
| [opentelemetry-instrumentation-boto](./opentelemetry-instrumentation-boto) | boto~=2.0 |
9+
| [opentelemetry-instrumentation-botocore](./opentelemetry-instrumentation-botocore) | botocore ~= 1.0 |
10+
| [opentelemetry-instrumentation-celery](./opentelemetry-instrumentation-celery) | celery >= 4.0, < 6.0 |
11+
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi |
12+
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 |
13+
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 2.0 |
14+
| [opentelemetry-instrumentation-falcon](./opentelemetry-instrumentation-falcon) | falcon ~= 2.0 |
15+
| [opentelemetry-instrumentation-fastapi](./opentelemetry-instrumentation-fastapi) | fastapi ~= 0.58 |
16+
| [opentelemetry-instrumentation-flask](./opentelemetry-instrumentation-flask) | flask >= 1.0, < 3.0 |
17+
| [opentelemetry-instrumentation-grpc](./opentelemetry-instrumentation-grpc) | grpcio ~= 1.27 |
18+
| [opentelemetry-instrumentation-httpx](./opentelemetry-instrumentation-httpx) | httpx >= 0.18.0, < 0.19.0 |
19+
| [opentelemetry-instrumentation-jinja2](./opentelemetry-instrumentation-jinja2) | jinja2~=2.7 |
20+
| [opentelemetry-instrumentation-logging](./opentelemetry-instrumentation-logging) | logging |
21+
| [opentelemetry-instrumentation-mysql](./opentelemetry-instrumentation-mysql) | mysql-connector-python ~= 8.0 |
22+
| [opentelemetry-instrumentation-psycopg2](./opentelemetry-instrumentation-psycopg2) | psycopg2 >= 2.7.3.1 |
23+
| [opentelemetry-instrumentation-pymemcache](./opentelemetry-instrumentation-pymemcache) | pymemcache ~= 1.3 |
24+
| [opentelemetry-instrumentation-pymongo](./opentelemetry-instrumentation-pymongo) | pymongo ~= 3.1 |
25+
| [opentelemetry-instrumentation-pymysql](./opentelemetry-instrumentation-pymysql) | PyMySQL ~= 0.10.1 |
26+
| [opentelemetry-instrumentation-pyramid](./opentelemetry-instrumentation-pyramid) | pyramid >= 1.7 |
27+
| [opentelemetry-instrumentation-redis](./opentelemetry-instrumentation-redis) | redis >= 2.6 |
28+
| [opentelemetry-instrumentation-requests](./opentelemetry-instrumentation-requests) | requests ~= 2.0 |
29+
| [opentelemetry-instrumentation-sklearn](./opentelemetry-instrumentation-sklearn) | scikit-learn ~= 0.24.0 |
30+
| [opentelemetry-instrumentation-sqlalchemy](./opentelemetry-instrumentation-sqlalchemy) | sqlalchemy |
31+
| [opentelemetry-instrumentation-sqlite3](./opentelemetry-instrumentation-sqlite3) | sqlite3 |
32+
| [opentelemetry-instrumentation-starlette](./opentelemetry-instrumentation-starlette) | starlette ~= 0.13.0 |
33+
| [opentelemetry-instrumentation-tornado](./opentelemetry-instrumentation-tornado) | tornado >= 6.0 |
34+
| [opentelemetry-instrumentation-urllib](./opentelemetry-instrumentation-urllib) | urllib |
35+
| [opentelemetry-instrumentation-urllib3](./opentelemetry-instrumentation-urllib3) | urllib3 >= 1.0.0, < 2.0.0 |
36+
| [opentelemetry-instrumentation-wsgi](./opentelemetry-instrumentation-wsgi) | wsgi |
+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
#!/usr/bin/env python3
2+
3+
# Copyright The OpenTelemetry Authors
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
17+
import logging
18+
import os
19+
20+
logging.basicConfig(level=logging.INFO)
21+
logger = logging.getLogger("instrumentation_readme_generator")
22+
23+
_prefix = "opentelemetry-instrumentation-"
24+
25+
header = """
26+
| Instrumentation | Supported Packages |
27+
| --------------- | ------------------ |"""
28+
29+
30+
def main():
31+
root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
32+
base_instrumentation_path = os.path.join(root_path, "instrumentation")
33+
34+
table = [header]
35+
for instrumentation in sorted(os.listdir(base_instrumentation_path)):
36+
instrumentation_path = os.path.join(
37+
base_instrumentation_path, instrumentation
38+
)
39+
if not os.path.isdir(
40+
instrumentation_path
41+
) or not instrumentation.startswith(_prefix):
42+
continue
43+
44+
src_dir = os.path.join(
45+
instrumentation_path, "src", "opentelemetry", "instrumentation"
46+
)
47+
src_pkgs = [
48+
f
49+
for f in os.listdir(src_dir)
50+
if os.path.isdir(os.path.join(src_dir, f))
51+
]
52+
assert len(src_pkgs) == 1
53+
name = src_pkgs[0]
54+
55+
pkg_info = {}
56+
version_filename = os.path.join(src_dir, name, "package.py",)
57+
with open(version_filename, encoding="utf-8") as fh:
58+
exec(fh.read(), pkg_info)
59+
60+
instruments = pkg_info["_instruments"]
61+
if not instruments:
62+
instruments = (name,)
63+
64+
table.append(
65+
"| [{0}](./{0}) | {1} |".format(
66+
instrumentation, ",".join(instruments)
67+
)
68+
)
69+
70+
with open(
71+
os.path.join(base_instrumentation_path, "README.md"),
72+
"w",
73+
encoding="utf-8",
74+
) as fh:
75+
fh.write("\n".join(table))
76+
77+
78+
if __name__ == "__main__":
79+
main()

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -447,3 +447,4 @@ deps =
447447
commands =
448448
{toxinidir}/scripts/generate_setup.py
449449
{toxinidir}/scripts/generate_instrumentation_bootstrap.py
450+
{toxinidir}/scripts/generate_instrumentation_readme.py

0 commit comments

Comments
 (0)