Table of Contents

Class DataPipelineStageMetrics

Namespace
FoundationaLLM.Common.Models.ResourceProviders.DataPipeline
Assembly
FoundationaLLM.Common.dll

Represents the metrics for a data pipeline stage.

public class DataPipelineStageMetrics
Inheritance
DataPipelineStageMetrics
Inherited Members
Extension Methods

Properties

CompletedWorkItemsCount

Gets or sets the number of work items that have been processed in the stage.

[JsonPropertyName("completed_work_items_count")]
public int CompletedWorkItemsCount { get; set; }

Property Value

int

SuccessfulWorkItemsCount

Gets or sets the number of work items that have been successfully processed in the stage.

[JsonPropertyName("successful_work_items_count")]
public int SuccessfulWorkItemsCount { get; set; }

Property Value

int

WorkItemsCount

Gets or sets the number of work items that must be processed in the stage.

[JsonPropertyName("work_items_count")]
public int WorkItemsCount { get; set; }

Property Value

int