You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -204,5 +205,5 @@ Below is a checklist of things to be mindful of when implementing a new instrume
204
205
205
206
## Expectations from contributors
206
207
207
-
OpenTelemetry is an open source community, and as such, greatly encourages contributions from anyone interested in the project. With that being said, there is a certain level of expectation from contributors even after a pull request is merged, specifically pertaining to instrumentations. The OpenTelemetry Python community expects contributors to maintain a level of support and interest in the instrumentations they contribute. This is to ensure that the instrumentation does not become stale and still functions the way the original contributor intended. Some instrumentations also pertain to libraries that the current memebers of the community are not so familiar with, so it is necessary to rely on the expertise of the original contributing parties.
208
+
OpenTelemetry is an open source community, and as such, greatly encourages contributions from anyone interested in the project. With that being said, there is a certain level of expectation from contributors even after a pull request is merged, specifically pertaining to instrumentations. The OpenTelemetry Python community expects contributors to maintain a level of support and interest in the instrumentations they contribute. This is to ensure that the instrumentation does not become stale and still functions the way the original contributor intended. Some instrumentations also pertain to libraries that the current members of the community are not so familiar with, so it is necessary to rely on the expertise of the original contributing parties.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-aiohttp-client/src/opentelemetry/instrumentation/aiohttp_client/__init__.py
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-asgi/src/opentelemetry/instrumentation/asgi/__init__.py
+3-3
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,8 @@ async def hello():
71
71
Request/Response hooks
72
72
**********************
73
73
74
-
Utilize request/reponse hooks to execute custom logic to be performed before/after performing a request. The server request hook takes in a server span and ASGI
75
-
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method recieve is called.
74
+
Utilize request/response hooks to execute custom logic to be performed before/after performing a request. The server request hook takes in a server span and ASGI
75
+
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method receive is called.
76
76
The client response hook is called with the internal span and an ASGI event which is sent as a dictionary for when the method send is called.
77
77
78
78
.. code-block:: python
@@ -379,7 +379,7 @@ class OpenTelemetryMiddleware:
379
379
server_request_hook: Optional callback which is called with the server span and ASGI
380
380
scope object for every incoming request.
381
381
client_request_hook: Optional callback which is called with the internal span and an ASGI
382
-
scope which is sent as a dictionary for when the method recieve is called.
382
+
scope which is sent as a dictionary for when the method receive is called.
383
383
client_response_hook: Optional callback which is called with the internal span and an ASGI
384
384
event which is sent as a dictionary for when the method send is called.
385
385
tracer_provider: The optional tracer provider to use. If omitted
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-aws-lambda/src/opentelemetry/instrumentation/aws_lambda/__init__.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
15
15
"""
16
16
The opentelemetry-instrumentation-aws-lambda package provides an `Instrumentor`
17
-
to traces calls whithin a Python AWS Lambda function.
17
+
to traces calls within a Python AWS Lambda function.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-botocore/src/opentelemetry/instrumentation/botocore/extensions/types.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ class _AwsSdkCallContext:
35
35
36
36
Args:
37
37
service: the AWS service (e.g. s3, lambda, ...) which is called
38
-
service_id: the name of the service in propper casing
38
+
service_id: the name of the service in proper casing
39
39
operation: the called operation (e.g. ListBuckets, Invoke, ...) of the
40
40
AWS service.
41
41
params: a dict of input parameters passed to the service operation.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-fastapi/src/opentelemetry/instrumentation/fastapi/__init__.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -54,8 +54,8 @@ async def foobar():
54
54
Request/Response hooks
55
55
**********************
56
56
57
-
Utilize request/reponse hooks to execute custom logic to be performed before/after performing a request. The server request hook takes in a server span and ASGI
58
-
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method recieve is called.
57
+
Utilize request/response hooks to execute custom logic to be performed before/after performing a request. The server request hook takes in a server span and ASGI
58
+
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method receive is called.
59
59
The client response hook is called with the internal span and an ASGI event which is sent as a dictionary for when the method send is called.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-flask/README.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ You can also pass the comma delimited regexes to the ``instrument_app`` method d
41
41
Request/Response hooks
42
42
**********************
43
43
44
-
Utilize request/reponse hooks to execute custom logic to be performed before/after performing a request. Environ is an instance of WSGIEnvironment (flask.request.environ).
44
+
Utilize request/response hooks to execute custom logic to be performed before/after performing a request. Environ is an instance of WSGIEnvironment (flask.request.environ).
45
45
Response_headers is a list of key-value (tuples) representing the response headers returned from the response.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-flask/src/opentelemetry/instrumentation/flask/__init__.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ def hello():
68
68
Request/Response hooks
69
69
**********************
70
70
71
-
Utilize request/reponse hooks to execute custom logic to be performed before/after performing a request. Environ is an instance of WSGIEnvironment (flask.request.environ).
71
+
Utilize request/response hooks to execute custom logic to be performed before/after performing a request. Environ is an instance of WSGIEnvironment (flask.request.environ).
72
72
Response_headers is a list of key-value (tuples) representing the response headers returned from the response.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-pyramid/src/opentelemetry/instrumentation/pyramid/__init__.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@
55
55
---------------------------------
56
56
57
57
If you use Method 2 and then set tweens for your application with the ``pyramid.tweens`` setting,
58
-
you need to add ``opentelemetry.instrumentation.pyramid.trace_tween_factory`` explicity to the list,
58
+
you need to add ``opentelemetry.instrumentation.pyramid.trace_tween_factory`` explicitly to the list,
59
59
*as well as* instrumenting the config as shown above.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-starlette/src/opentelemetry/instrumentation/starlette/__init__.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ def home(request):
51
51
**********************
52
52
53
53
Utilize request/response hooks to execute custom logic to be performed before/after performing a request. The server request hook takes in a server span and ASGI
54
-
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method recieve is called.
54
+
scope object for every incoming request. The client request hook is called with the internal span and an ASGI scope which is sent as a dictionary for when the method receive is called.
55
55
The client response hook is called with the internal span and an ASGI event which is sent as a dictionary for when the method send is called.
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-tornado/src/opentelemetry/instrumentation/tornado/__init__.py
Copy file name to clipboardexpand all lines: sdk-extension/opentelemetry-sdk-extension-aws/src/opentelemetry/sdk/extension/aws/resource/_lambda.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ class AwsLambdaResourceDetector(ResourceDetector):
29
29
"""Detects attribute values only available when the app is running on AWS
30
30
Lambda and returns them in a Resource.
31
31
32
-
Uses Lambda defined runtime enivronment variables. See more: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-runtime
32
+
Uses Lambda defined runtime environment variables. See more: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-runtime
0 commit comments