Fetch an Insights report by ID or from a prior report object.
get_insights_report(
self,
*,
id: str | uuid.UUID | None = None,
report: ls_schemas.InsightsReport | None = None,
project_id: str | uuid.UUID | None = None,
include_runs: bool = True
) -> ls_schemas.InsightsReportResult| Name | Type | Description |
|---|---|---|
id | str | uuid.UUID | None | Default: NoneThe Insights report ID (aka clustering job ID). Provide with
|
report | ls_schemas.InsightsReport | None | Default: NoneAn |
project_id | str | uuid.UUID | None | Default: NoneThe tracing project (session) ID associated with the report.
Required if |
include_runs | bool | Default: TrueWhether to include all runs for the report. |