Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/config_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1066,6 +1066,7 @@ All logging handlers share the following set of common attributes:
``%(check_job_completion_time_unix)s``, The completion time of the associated run job (see :attr:`~reframe.core.schedulers.Job.completion_time`).
``%(check_job_exitcode)s``, The exit code of the associated run job.
``%(check_job_nodelist)s``, The list of nodes that the associated run job has run on.
``%(check_job_submit_time)s``, The submission time of the associated run job (see :attr:`~reframe.core.schedulers.Job.submit_time`).
``%(check_jobid)s``, The ID of the associated run job.
``%(check_keep_files)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.keep_files` attribute.
``%(check_local)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.local` attribute.
Expand Down
6 changes: 6 additions & 0 deletions reframe/core/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1492,6 +1492,12 @@ def _jobid(self):
if self.job:
return self.job.jobid

@loggable_as('job_submit_time')
@property
def _job_submit_time(self):
if self.job:
return self.job.submit_time

@loggable_as('job_completion_time_unix')
@property
def _job_completion_time(self):
Expand Down