get_project_performance

imerit_ango.sdk.SDK.

get_project_performance(project_id, interval, batches)

Get all performance metrics of a project.

Parameters

  • project_id: string

  • interval: list[datetime], default None

    • Format: [start_datetime, end_datetime]

    • Example: [datetime.now() - timedelta(days=7), datetime.now()]

  • batches: list[str], default None

    • Filter performance metrics by batch (e.g., only get tasks belonging to the batch specified)

    • Example ['batch_1', 'batch_2']

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

Example

Get all performance metrics:

Filter metrics by time and batches:

See also

get_metrics

Last updated