mirror of
https://github.com/Luzifer/elastic_cron.git
synced 2024-11-08 13:50:04 +00:00
16 lines
227 B
YAML
16 lines
227 B
YAML
---
|
|
|
|
elasticsearch:
|
|
index: 'elastic_cron-%{+YYYY.MM.dd}'
|
|
servers:
|
|
- http://localhost:9200
|
|
auth: [username, password]
|
|
|
|
jobs:
|
|
- name: date
|
|
schedule: "0 * * * * *"
|
|
cmd: "/bin/date"
|
|
args:
|
|
- "+%+"
|
|
|
|
...
|