1
0
mirror of https://github.com/Luzifer/elastic_cron.git synced 2024-09-19 15:13:02 +00:00
elastic_cron/config.yml

17 lines
227 B
YAML
Raw Permalink Normal View History

2016-02-26 17:44:10 +00:00
---
2018-04-15 11:54:39 +00:00
elasticsearch:
index: 'elastic_cron-%{+YYYY.MM.dd}'
servers:
- http://localhost:9200
auth: [username, password]
2016-02-26 17:44:10 +00:00
jobs:
- name: date
schedule: "0 * * * * *"
cmd: "/bin/date"
2018-04-15 11:54:39 +00:00
args:
- "+%+"
...