Skip to content

Commit 321ab9c

Browse files
authored
Fix renamed column (timescale#2843)
* Fix renamed column closes timescale#2678 * Appease Vale
1 parent 71d76b6 commit 321ab9c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

api/job_stats.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ used to implement the policy succeeded and when it is scheduled to run next.
2121

2222
### Available columns
2323

24+
<!-- vale Google.Acronyms = NO -->
2425
|Name|Type|Description|
2526
|---|---|---|
2627
|`hypertable_schema` | TEXT | Schema name of the hypertable |
@@ -31,10 +32,11 @@ used to implement the policy succeeded and when it is scheduled to run next.
3132
|`last_run_status` | TEXT | Whether the last run succeeded or failed |
3233
|`job_status`| TEXT | Status of the job. Valid values are 'Running', 'Scheduled' and 'Paused'|
3334
|`last_run_duration`| INTERVAL | Duration of last run of the job|
34-
|`next_scheduled_run` | TIMESTAMP WITH TIME ZONE | Start time of the next run |
35+
|`next_start` | TIMESTAMP WITH TIME ZONE | Start time of the next run |
3536
|`total_runs` | BIGINT | The total number of runs of this job|
3637
|`total_successes` | BIGINT | The total number of times this job succeeded |
3738
|`total_failures` | BIGINT | The total number of times this job failed |
39+
<!-- vale Google.Acronyms = YES -->
3840

3941
### Sample usage
4042

@@ -70,7 +72,7 @@ last_successful_finish | 2020-10-02 09:38:06.932675-04
7072
last_run_status | Success
7173
job_status | Scheduled
7274
last_run_duration | 00:00:00.060722
73-
next_scheduled_run | 2020-10-02 10:38:06.932675-04
75+
next_start | 2020-10-02 10:38:06.932675-04
7476
total_runs | 1
7577
total_successes | 1
7678
total_failures | 0

0 commit comments

Comments
 (0)