Generate a HTML file with monitoring and profiling report for the given directory
(
directory: Path = typer.Argument(..., exists=True, file_okay=False, help="Directory containing `cluster.json`"),
output: Path = Path("out.html"),
)
| 29 | |
| 30 | @cluster.command("generate") |
| 31 | def cluster_generate( |
| 32 | directory: Path = typer.Argument(..., exists=True, file_okay=False, help="Directory containing `cluster.json`"), |
| 33 | output: Path = Path("out.html"), |
| 34 | ): |
| 35 | """Generate a HTML file with monitoring and profiling report for the given directory""" |
| 36 | report = ClusterReport.load(directory) |
| 37 | generate_cluster_report(report, output=output) |
| 38 | |
| 39 | |
| 40 | @summary.command("text") |
nothing calls this directly
no test coverage detected