Documentation ¶
Index ¶
- Constants
- Variables
- func AggregateCheckStatus1d(ctx context.Context) (error, int)
- func AggregateCheckStatus1h(ctx context.Context) (error, int)
- func CleanupSoftDeletedComponents(ctx context.Context, olderThan time.Duration) (int, error)
- func DeleteOldCheckStatuses(ctx context.Context, retention int) (error, int)
- func DeleteOldCheckStatuses1d(ctx context.Context, retention int) (error, int)
- func DeleteOldCheckStatuses1h(ctx context.Context, retention int) (error, int)
- func RefreshCheckStatusSummary(ctx context.Context) error
- func RefreshCheckStatusSummaryAged(ctx context.Context) error
- type Job
- func (j *Job) AddToScheduler(cronRunner *cron.Cron) error
- func (j *Job) FindHistory(statuses ...string) ([]models.JobHistory, error)
- func (j *Job) GetEntry(cronRunner *cron.Cron) *cron.Entry
- func (j *Job) RemoveFromScheduler(cronRunner *cron.Cron)
- func (j *Job) Retain(r Retention) *Job
- func (j *Job) Run()
- func (j *Job) RunOnStart() *Job
- func (j *Job) SetID(id string) *Job
- func (j *Job) SetTimeout(t time.Duration) *Job
- func (j *Job) String() string
- func (j *Job) Unschedule()
- type JobRuntime
- type Retention
Constants ¶
View Source
const ( ResourceTypeCheckStatuses = "check_statuses" ResourceTypeComponent = "components" ResourceTypeUpstream = "upstream" )
Variables ¶
View Source
var Retention3Day = Retention{ Success: 3, Failed: 3, Age: time.Hour * 24 * 3, Interval: time.Hour * 4, }
Functions ¶
func AggregateCheckStatus1d ¶ added in v1.0.245
func AggregateCheckStatus1h ¶ added in v1.0.245
func CleanupSoftDeletedComponents ¶ added in v1.0.267
func DeleteOldCheckStatuses ¶ added in v1.0.245
func DeleteOldCheckStatuses1d ¶ added in v1.0.245
func DeleteOldCheckStatuses1h ¶ added in v1.0.245
func RefreshCheckStatusSummary ¶ added in v1.0.245
func RefreshCheckStatusSummaryAged ¶ added in v1.0.245
Types ¶
type Job ¶ added in v1.0.202
type Job struct { context.Context Name string Schedule string Singleton bool Debug, Trace bool Timeout time.Duration Fn func(ctx JobRuntime) error JobHistory bool RunNow bool ID string Retention Retention // contains filtered or unexported fields }
func (*Job) AddToScheduler ¶ added in v1.0.202
func (*Job) FindHistory ¶ added in v1.0.250
func (j *Job) FindHistory(statuses ...string) ([]models.JobHistory, error)
func (*Job) RemoveFromScheduler ¶ added in v1.0.202
func (j *Job) RemoveFromScheduler(cronRunner *cron.Cron)
func (*Job) RunOnStart ¶ added in v1.0.202
func (*Job) Unschedule ¶ added in v1.0.245
func (j *Job) Unschedule()
type JobRuntime ¶
type JobRuntime struct { context.Context Job *Job Span trace.Span History *models.JobHistory Table, Id string // contains filtered or unexported fields }
func (*JobRuntime) Failf ¶ added in v1.0.245
func (j *JobRuntime) Failf(message string, args ...interface{})
func (*JobRuntime) ID ¶ added in v1.0.250
func (j *JobRuntime) ID() string
Click to show internal directories.
Click to hide internal directories.