Skip to content

Commit

Permalink
Add time_start/end fields to legacy format
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Bjerring committed Oct 22, 2018
1 parent 95f559d commit 2e885cd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions metrics/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@ type TestRunLegacy struct {
// Time when the test run metadata was first created.
CreatedAt time.Time `json:"created_at"`

// Time when the test run started.
TimeStart time.Time `json:"time_start"`

// Time when the test run ended.
TimeEnd time.Time `json:"time_end"`

// URL for raw results JSON object. Resembles the JSON output of the
// wpt report tool.
RawResultsURL string `json:"raw_results_url"`
Expand Down

0 comments on commit 2e885cd

Please sign in to comment.