Label |
{{ job.exec_job_id }} |
Type |
{% if job.clustered %}Clustered{% else %}Compute{% endif %} |
Exit Code |
{{ job.exitcode }} |
Stdout Preview |
Preview
|
Stdout File |
{{ job.stdout_file }}
|
Stderr Preview |
Preview
|
Stderr File |
{{ job.stderr_file }}
|
Condor Submit File |
{{ job.exec_job_id }}.sub
|
Site |
{{ job.site }} |
Host |
{{ job.ip }} > {{ job.hostname }} |
{% if job_states|length %}
{% for state in job_states %}
{{ state.state|replace('_', '
')|capitalize }}
|
{{ state.timestamp }} ( {{ state.interval|time_to_str }} ) |
{% endfor %}
{% endif %}
{% if job_metrics == None %}
No job metrics available for this job.
{% endif %}
{% for field, name in [
('dag_job_id', 'DAG Job ID'),
('hostname', 'Hostname'),
('exec_name', 'Executable Name'),
('kickstart_pid', 'Kickstart PID'),
('ts', 'Timestamp'),
('site', 'Site')
] %}
{{ name }} |
{{ job_metrics[field] }} |
{% endfor %}
CPU Metrics
{% for field, name in [
('stime', 'stime'),
('utime', 'utime')
] %}
{{ name }} |
{{ job_metrics[field] }} |
{% endfor %}
IO Metrics
{% for field, name in [
('iowait', 'IO Wait'),
('vmsize', 'VMsize'),
('vmrss', 'VMrss'),
('read_bytes', 'Bytes Read'),
('write_bytes', 'Bytes Written'),
('syscr', 'Syscr'),
('syscw', 'Syscw'),
('bytes_transferred', 'Bytes Transferred')
] %}
{{ name }} |
{{ job_metrics[field] }} |
{% endfor %}
Other Metrics
{% for field, name in [
('threads', 'Threads'),
('transfer_duration', 'Transfer Duration')
] %}
{{ name }} |
{{ job_metrics[field] }} |
{% endfor %}
Hardware Counters
{% for field, name in [
('totins', 'Total Instructions Executed'),
('fpops', 'Floating Point Operations Executed'),
('fpins', 'Floating Point Instructions Executed'),
('ldins', 'Load Instructions Executed'),
('srins', 'Store Instructions Executed'),
('l3misses', 'L3 Total Cache Misses'),
('l2misses', 'L2 Total Cache Misses'),
('l1misses', 'L1 Total Cache Misses')
] %}
{{ name }} |
{{ job_metrics[field] }} |
{% endfor %}
CPU Related
IO Related
Others
Hardware Counters
{% if job_anomalies %}
{% else %}
No anomalies detected for this job.
{% endif %}