File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 44call stack rather than tracing every function call.
55"""
66
7- from profiling .sampling .collector import Collector
8- from profiling .sampling .pstats_collector import PstatsCollector
9- from profiling .sampling .stack_collector import CollapsedStackCollector
7+ from .collector import Collector
8+ from .pstats_collector import PstatsCollector
9+ from .stack_collector import CollapsedStackCollector
10+ from .pyroscope_collector import PyroscopeCollector
1011
1112__all__ = ("Collector" , "PstatsCollector" , "CollapsedStackCollector" )
Original file line number Diff line number Diff line change 11"""Run the sampling profiler from the command line."""
22
3- from profiling .sample import main
3+ from .sample import main
44
55if __name__ == '__main__' :
66 main ()
You can’t perform that action at this time.
0 commit comments