Tags
{{ range $name, $tag := .Machine.Tags }}
|
{{ template "fragment_tag.html" $tag }}
|
{{ range $tag.Fields }}
|
{{ .Type.NativeName }}:
|
{{ .HumanValue }}
|
{{ end }}
{{ else }}
No tags.
{{ end }}
Work
{{ range $name, $work := .Machine.Work }}
|
{{ $work.Process }}
|
| Process: |
{{ $work.Process }}
|
{{ $sessionOrErr := index $sessions $name }}
{{ if ne $sessionOrErr.Error "" }}
|
Could not retrieve session information: {{ $sessionOrErr.Error }}
|
{{ else }}
{{ $session := $sessionOrErr.Session }}
| Session |
ID: |
{{ $session.SessionID }}
|
| Component: |
{{ $session.SessionComponentName }} |
| Runtime: |
{{ $session.SessionRuntimeInfo }} |
| Created At: |
{{ $session.SessionCreatedAt }} |
| Liveness: |
Interval {{ $session.SessionIntervalSeconds }}s, deadline {{ $session.SessionDeadline }} |
{{ end }}
{{ else }}
No active work.
{{ end }}
Backoffs
Active
{{ range $name, $backoff := .Machine.ActiveBackoffs }}
|
{{ $backoff.Process }}
|
| Process: |
{{ $backoff.Process }} |
| Until: |
{{ $backoff.Until }} |
| Cause: |
{{ $backoff.Cause }} |
{{ else }}
No active backoffs.
{{ end }}
Expired
{{ range $name, $backoff := .Machine.ExpiredBackoffs }}
|
{{ $backoff.Process }}
|
| Process: |
{{ $backoff.Process }} |
| Until: |
{{ $backoff.Until }} |
| Cause: |
{{ $backoff.Cause }} |
{{ else }}
No expired backoffs.
{{ end }}