mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 12:43:39 +08:00

* Revert "Refactor bootstrap generation (#2101)" This reverts commit 1ee7261ea7117fbd22e2262e488402213a874125. * Add error handling to opentelemetry-bootstrap -a Fixes #2516 --------- Co-authored-by: Tammy Baylis <96076570+tammy-baylis-swi@users.noreply.github.com>
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
# Copyright The 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 subprocess
|
|
from subprocess import CalledProcessError
|
|
|
|
import tomli
|
|
|
|
scripts_path = os.path.dirname(os.path.abspath(__file__))
|
|
root_path = os.path.dirname(scripts_path)
|
|
instrumentations_path = os.path.join(root_path, "instrumentation")
|
|
|
|
|
|
def get_instrumentation_packages():
|
|
for pkg in sorted(os.listdir(instrumentations_path)):
|
|
pkg_path = os.path.join(instrumentations_path, pkg)
|
|
if not os.path.isdir(pkg_path):
|
|
continue
|
|
|
|
try:
|
|
version = subprocess.check_output(
|
|
"hatch version",
|
|
shell=True,
|
|
cwd=pkg_path,
|
|
universal_newlines=True,
|
|
)
|
|
except CalledProcessError as exc:
|
|
print(f"Could not get hatch version from path {pkg_path}")
|
|
print(exc.output)
|
|
raise exc
|
|
|
|
pyproject_toml_path = os.path.join(pkg_path, "pyproject.toml")
|
|
|
|
with open(pyproject_toml_path, "rb") as file:
|
|
pyproject_toml = tomli.load(file)
|
|
|
|
instrumentation = {
|
|
"name": pyproject_toml["project"]["name"],
|
|
"version": version.strip(),
|
|
"instruments": pyproject_toml["project"]["optional-dependencies"][
|
|
"instruments"
|
|
],
|
|
}
|
|
instrumentation["requirement"] = "==".join(
|
|
(
|
|
instrumentation["name"],
|
|
instrumentation["version"],
|
|
)
|
|
)
|
|
yield instrumentation
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(list(get_instrumentation_packages()))
|