Beta Release version 0.2.3-b01
Beta release of version 0.2.3. Application is ready to work in headless mode. These fixes were made:
- Email notification triggers are now stored in the
notifications
table as 'success' or 'fail' - Flask App offers these 4 GET services:
- Get Current Status - gets the status of all sites in the currentStatus table - this table includes any websites that were previous monitored. Those sites will appear as 'down'
- Get Activity - gets all status updates for sites at all times whenever the sites are checked
- Get Outages - gets all data in the
outages
table that which records when websites were down - Get Downtime Counts - gets data from the downtimeCounts table which keeps track of websites that report offline in multiple checks
- All end points also take the following two URL parameters along with their default values if not defined:
- page (default: 1)
- limit (default: 25)
- Example: {{addr}}/getActivity?page=2&limit=100 (this will output records 101 to 200 on page 2)