Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/crawlee/otel/crawler_instrumentor.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def __init__(
Args:
instrument_classes: List of classes to be instrumented - all their public methods and coroutines will be
wrapped by generic instrumentation wrapper that will create spans for them.
request_handling_instrumentation: Handpicked most interesting methods to instrument in the request handling
pipeline.
request_handling_instrumentation: When `True`, the most relevant methods in the request handling pipeline
will be instrumented. When `False`, no request handling instrumentation will be done.
"""
self._tracer = get_tracer(__name__)

Expand Down
Loading