{{ define "settings" }}

Configuration

Visibility determines who can see the target. If set to public, it will be visible to everyone on the homepage. Otherwise it will be only visible to signed in users.

Group targets together. This affects how they are presented on the homepage.

Metadata is a YAML object that contains the configuration for the target. This configuration can be then used for Targets to filter the targets to act on as well as by using getTarget() function to fetch target metadata.

State {{ if eq .Target.State "ACTIVE" }} ACTIVE {{ else if eq .Target.State "PAUSED" }} PAUSED {{ end }}

Pausing the target will stop it from executing. This can be useful in cases of expected downtime. Or when the target is not needed anymore.

{{ if eq .Target.State "ACTIVE" }} Pause {{ else if eq .Target.State "PAUSED" }} Resume {{ end }}

Danger Zone

Permanently delete this target.

Delete
{{ range .History }} {{ end }}
History

Last 10 executions of the targets.

Status Worker Group Created At Duration Note
{{ .Status }} {{ .WorkerGroupName }} {{ .CreatedAt.Time.Format "2006-01-02 15:04:05" }} { .Duration } {{ .Note }}
{{ end }}