Table of Contents

Class JobLog

Namespace
Oqtane.Models
Assembly
Oqtane.Shared.dll

Log / Journal of Jobs executed.

public class JobLog
Inheritance
JobLog

Properties

FinishDate

Timestamp when the Job ended.

public DateTime? FinishDate { get; set; }

Property Value

DateTime?

Job

Reference to the Job.

public Job Job { get; set; }

Property Value

Job

Remarks

It's not clear if this is always populated.

JobId

Reference to the Job which was run

public int JobId { get; set; }

Property Value

int

JobLogId

Internal ID

public int JobLogId { get; set; }

Property Value

int

Notes

Additional protocol information that was left after the Job ran.

public string Notes { get; set; }

Property Value

string

StartDate

Timestamp when the Job started.

public DateTime StartDate { get; set; }

Property Value

DateTime

Succeeded

Success information.

public bool? Succeeded { get; set; }

Property Value

bool?