Class DataPipelineStageMetrics
- 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
LastUpdateTimestamp
Gets or sets the timestamp when the stage metrics were last updated.
[JsonPropertyName("last_update_timestamp")]
public DateTimeOffset LastUpdateTimestamp { get; set; }
  Property Value
StartTimestamp
Gets or sets the timestamp when the stage started processing.
[JsonPropertyName("start_timestamp")]
public DateTimeOffset StartTimestamp { get; set; }
  Property Value
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
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; }