Monitoring.MetricJobEndReport
namespace Monitoring
{
public class MetricJobEndReport : MetricJobBase
{
public TelemetryConstants.JobStatus JobStatus { get; set; }
public long TotalSizeBytes { get; set; }
public long FileSizeBytes { get; set; }
public long MetadataSizeBytes { get; set; }
public long TotalRecords { get; set; }
public long CompletedRecords { get; set; }
public long RecordsWithErrors { get; set; }
public double ThroughputBytesPerSecond { get; set; }
public double ThroughputRecordsPerSecond { get; set; }
public double SqlBulkLoadThroughputRecordsPerSecond { get; set; }
public double JobDurationInSeconds { get; set; }
public TapiClient InitialTransferMode { get; set; }
public double JobStartTimeStamp { get; set; }
public double JobEndTimeStamp { get; set; }
public string JobRunId { get; set; }
public long ExportedNativeCount { get; set; }
public long ExportedPdfCount { get; set; }
public long ExportedImageCount { get; set; }
public long ExportedLongTextCount { get; set; }
public MetricJobEndReport();
}
}