Set up an evaluation or monitoring Project.
ws
and Organization with an org_id
:get_project
method.
save()
command:
ws
, use:
search_project
method:
Parameter | Description | Example |
---|---|---|
name: str | Project name. | - |
id: UUID4 = Field(default_factory=uuid.uuid4) | Unique identifier of the Project. Assigned automatically. | - |
description: Optional[str] = None | Optional description. Visible when you browse Projects. | - |
dashboard: DashboardConfig | Dashboard configuration that describes the composition of the monitoring Panels. | See Dashboard Design for details. You don’t need to explicitly pass DashboardConfig if you use the .dashboard.add_panel method. |
date_from: Optional[datetime.datetime] = None | Start DateTime of the monitoring Dashboard. By default it shows data for all available periods. | datetime.now() + timedelta(-30) |
date_to: Optional[datetime.datetime] = None | End DateTime of the monitoring Dashboard. | Works the same as date_from . |