| 123456789101112131415161718192021222324252627282930313233343536373839 |
- dataProvider:
- type: DATABASE
- config:
- url: "jdbc:postgresql://localhost:5432/senslog"
- username: "<username>"
- password: "<password>"
- connectionPoolSize: 6
- groupName: "<group_name>"
- messageBroker:
- type: EMAIL # EMAIL, CONSOLE (for testing), WHATSAPP (not yet), TELEGRAM (not yet)
- vanishPeriod: 3 # number of days when already send report could be sent again
- config:
- smtpHost: "<smtp_server>"
- smtpPort: 465
- authUsername: "<username>"
- authPassword: "<password>"
- senderEmail: "<sender_email>"
- recipientEmail: "<recipient_email>"
- subject: "<subject>"
- monitoredObjects:
- unit_id_1:
- interval: 1440
- unit_id_2:
- interval: 1440
- sensors: [210000000, 220000000]
- unit_id_3:
- interval: 1440
- sensors:
- 310000000:
- 320000000: 2880
- unit_id_4:
- sensors:
- 410000000: 2880
- 420000000: 1440
|