Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jul 8, 2020
1 parent 888036e commit 72a148f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,29 @@ This is the contents of the published config file:
```php
return [
/*
* Schedule monitor will log each start, finish and failure of all scheduled jobs.
* The schedule monitor will log each start, finish and failure of all scheduled jobs.
* After a while the `monitored_scheduled_task_log_items` might become big.
* Here you can specify the amount of days log items should be kept.
*/
'delete_log_items_older_than_days' => 30,

/*
* The date format used for all dates displayed on the output of commands
* provided by this package.
*/
'date_format' => 'Y-m-d H:i:s',

/*
* Oh Dear can notify you via Mail, Slack, SMS, web hooks, ... when a
* scheduled task does not run on time.
*
* More info: https://ohdear.app/cron-checks
*/
'oh_dear' => [
/*
* You can generate an API token at the Oh Dear user settings screen.
* You can generate an API token at the Oh Dear user settings screen
*
* https://ohdear.app/TODO-ADD-LINK
*/
'api_token' => env('OH_DEAR_API_TOKEN', ''),

Expand All @@ -75,10 +84,11 @@ return [

/*
* To keep scheduled jobs as short as possible, Oh Dear will be pinged
* via queued jobs. Here you can specify the name of the queue you wish to use.
* via a queued job. Here you can specify the name of the queue you wish to use.
*/
'queue' => env('OH_DEAR_QUEUE'),
],
];
```

#### Cleaning the database
Expand Down
2 changes: 1 addition & 1 deletion config/schedule-monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
/*
* Schedule Monitor will log each start, finish and failure of all scheduled jobs.
* The schedule monitor will log each start, finish and failure of all scheduled jobs.
* After a while the `monitored_scheduled_task_log_items` might become big.
* Here you can specify the amount of days log items should be kept.
*/
Expand Down

0 comments on commit 72a148f

Please sign in to comment.