Skip to content

Commit

Permalink
docs: fix name of response hook signature in botocore instrumentation (
Browse files Browse the repository at this point in the history
  • Loading branch information
federicobond authored and shadchin committed May 29, 2024
1 parent da6115b commit 398db82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
request_hook (Callable) - a function with extra user-defined logic to be performed before performing the request
this function signature is: def request_hook(span: Span, service_name: str, operation_name: str, api_params: dict) -> None
response_hook (Callable) - a function with extra user-defined logic to be performed after performing the request
this function signature is: def request_hook(span: Span, service_name: str, operation_name: str, result: dict) -> None
this function signature is: def response_hook(span: Span, service_name: str, operation_name: str, result: dict) -> None
for example:
Expand Down

0 comments on commit 398db82

Please sign in to comment.