Skip to content
This repository was archived by the owner on Sep 4, 2022. It is now read-only.

Commit 894f625

Browse files
authored
Merge pull request #113 from cisco-open/SDK-741-easy-migration-dependency-injection
feat(easy-mig): add pants to project
2 parents b783b62 + faef3ae commit 894f625

28 files changed

+868
-131
lines changed

.pids/.lock.pantsd

Whitespace-only changes.

BUILD

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
python_requirements(
2+
name="root",
3+
)
4+
5+
python_requirement(
6+
name="opentelemetry api",
7+
requirements=["opentelemetry-api>=1.10.0"],
8+
modules=["opentelemetry"],
9+
)
10+
11+
python_requirement(
12+
name="opentelemetry sdk",
13+
requirements=["opentelemetry-sdk>=1.10.0"],
14+
modules=["opentelemetry.sdk"],
15+
)
16+
17+
python_requirement(
18+
name="opentelemetry grpc exporter",
19+
requirements=["opentelemetry-exporter-otlp-proto-grpc>=1.10.0"],
20+
modules=["opentelemetry.exporter.otlp.proto.grpc"],
21+
)
22+
23+
python_requirement(
24+
name="opentelemetry http exporter",
25+
requirements=["opentelemetry-exporter-otlp-proto-http>=1.10.0"],
26+
modules=["opentelemetry.exporter.otlp.proto.http"],
27+
)
28+
29+
python_requirement(
30+
name="opentelemetry instrumentation requests",
31+
requirements=["opentelemetry-instrumentation-requests>=0.29b"],
32+
modules=["opentelemetry.instrumentation.requests"],
33+
)
34+
35+
python_requirement(
36+
name="opentelemetry instrumentation aiohttp",
37+
requirements=["opentelemetry-instrumentation-aiohttp_client>=0.29b"],
38+
modules=["opentelemetry.instrumentation.aiohttp_client"],
39+
)
40+
41+
python_requirement(
42+
name="opentelemetry instrumentation grpc",
43+
requirements=["opentelemetry-instrumentation-grpc>=0.29b"],
44+
modules=["opentelemetry.instrumentation.grpc"],
45+
)
46+
47+
python_requirement(
48+
name="opentelemetry instrumentation pymongo",
49+
requirements=["opentelemetry-instrumentation-pymongo>=0.29b"],
50+
modules=["opentelemetry.instrumentation.pymongo"],
51+
)
52+
53+
python_requirement(
54+
name="opentelemetry test utils",
55+
requirements=["opentelemetry-test-utils>=0.29b"],
56+
modules=["opentelemetry.test"],
57+
)
58+
59+
python_requirement(
60+
name="grpc",
61+
requirements=["grpcio>=1.46.3"],
62+
modules=["grpc"],
63+
)

cisco_telescope/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()

cisco_telescope/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
import os
17+
18+
os.environ.setdefault("PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION", "python")

cisco_telescope/cmd/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()

cisco_telescope/exporter_factory.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16-
1716
from . import options
1817
from . import consts
1918

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()

cisco_telescope/instrumentations/instrumentation_wrapper.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"""
1616

1717
import logging
18-
from cisco_telescope.instrumentations.requests import RequestsInstrumentorWrapper
19-
from cisco_telescope.instrumentations.aiohttp import AiohttpInstrumentorWrapper
20-
from cisco_telescope.instrumentations.pymongo import PymongoInstrumentorWrapper
21-
from cisco_telescope.instrumentations.grpc import GrpcInstrumentorServerWrapper
22-
from cisco_telescope.instrumentations.grpc import GrpcInstrumentorClientWrapper
18+
from .requests import RequestsInstrumentorWrapper
19+
from .aiohttp import AiohttpInstrumentorWrapper
20+
from .pymongo import PymongoInstrumentorWrapper
21+
from .grpc import GrpcInstrumentorServerWrapper
22+
from .grpc import GrpcInstrumentorClientWrapper
2323
from .. import consts, options
2424

2525

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()

0 commit comments

Comments
 (0)