Class performance_report
Gather performance report
Declaration
class performance_report
source linkDocumentation
This creates a static HTML file that includes many of the same plots of the
dashboard for later viewing.
The resulting file uses JavaScript, and so must be viewed with a web
browser. Locally we recommend using ``python -m http.server`` or hosting
the file live online.
Examples
>>> with performance_report(filename="myfile.html"):
... x.compute()
$ python -m http.server
$ open myfile.html
Methods
▷ def __exit__(self, typ, value, traceback) ▷ def __init__(self, filename="dask-report.html")
Reexports