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-3Lines changed: 3 additions & 3 deletions
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-1Lines changed: 1 addition & 1 deletion
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.
0 commit comments