0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00
Commit graph

1101 commits

Author SHA1 Message Date
Pēteris Caune
66663ed713
Fix rocketchat integration to run payload() before closing db conn 2025-03-28 14:15:13 +02:00
Pēteris Caune
ffd40c7c3c
Update rocketchat integration to give up db connection before network IO 2025-03-28 14:12:56 +02:00
Pēteris Caune
dff6984db1
Update Telegram transport to disable channel on "user is deactivated" 2025-03-18 11:58:28 +02:00
Pēteris Caune
0456a5934a
Add missing type annotation 2025-03-17 09:35:27 +02:00
Pēteris Caune
ca4253324a
Switch to sha256 hashes in email verification and unsub links
But still accept sha1 hashes, to allow the existing unsubscribe
links to still work. I'm planning to remove the sha1 backwards
compatibility in a month or so.
2025-03-17 09:34:05 +02:00
Pēteris Caune
df801c6796
Update the GitHub transport to handle uninstalled GitHub app
If the user uninstalls our GitHub app from their GitHub account then,
the next time we request an access token, we will receive a
HTTP 404 response from GitHub. Rather than throwing an unhandled
exception, Healthchecks will now show an error message to the
user saying "GitHub denied access to reposuch/andsuch".
2025-03-14 14:09:07 +02:00
Pēteris Caune
74b7860a0d
Fix exception logging in sendalerts
The on_notify_done callback was accessing exception data incorrectly.
If there's been an exception in the thread, it will be re-thrown while
calling future.result(), and we must catch it with "try ... except"
instead of calling future.exception().
2025-03-14 13:37:50 +02:00
Pēteris Caune
1503ca479b
Reformat 2025-03-10 10:24:13 +02:00
Pēteris Caune
0e6a52d7af
Add "stops working Apr 2025" note to LINE Notify integrations
https://notify-bot.line.me/closing-announce
2025-03-10 09:48:55 +02:00
Pēteris Caune
723a20ddc3
Add support for attaching labels to issues
cc: 
2025-02-25 12:30:52 +02:00
Pēteris Caune
4948f4bbb4
Add tests
cc: 
2025-02-25 12:01:50 +02:00
Pēteris Caune
6382bd737a
Add GitHub Issues integration (WIP)
cc: 
2025-02-24 16:24:17 +02:00
Pēteris Caune
41beaeadce
Add a system check for settings.TIME_ZONE
cc: 
2025-01-30 14:27:14 +02:00
Pēteris Caune
af0ff5194e
Switch to f-strings 2025-01-30 10:21:31 +02:00
Pēteris Caune
abc3ee1ef1
Add test and update docs 2025-01-24 14:45:00 +02:00
Pēteris Caune
bd7f658421
Add last ping body in MS Teams Workflows notifications
cc: 
2025-01-23 10:09:02 +02:00
Pēteris Caune
b5d4f2aa74
Implement S3 outage mitigation
The mitigation is to not attempt GetObject calls if there have
been more than 3 S3 errors in the past minute. The implementation
uses the TokenBucket class that we normally use for rate-limiting.

An example scenario this is trying to avoid is:

* the S3 service becomes unavailable for 10 straight minutes.
  Each S3 request hangs until we hit the configured timeout
  (settings.S3_TIMEOUT)
* A client is frequently requesting the "Get ping's logged body"
  API call. Each call causes one webserver process to become
  busy for S3_TIMEOUT seconds.
* All workers become busy, request backlog fills up, our service
  starts returning 5xx errors.

With the mitigation, during an S3 outage, only the calls that
retrieve ping's logged body will return 503, the rest of the service
will (hopefully) work normally.

Fixes: 
2025-01-13 14:21:42 +02:00
Pēteris Caune
a0312a04f8
Replace percent-sign formatting expressions with f-strings 2025-01-13 11:22:13 +02:00
Pēteris Caune
5a1b13a32e
Fix incorrect status value in Webhook integration's $JSON placeholder 2025-01-10 09:35:12 +02:00
Pēteris Caune
b22f359595
Add support for Signal usernames 2024-12-28 11:08:41 +02:00
Pēteris Caune
7ec1b7fe1c
Fix mypy warning 2024-12-27 14:17:38 +02:00
Pēteris Caune
7d5341c5a7
Add "badge_url" field in Check API responses
Fixes: 
2024-12-27 13:44:49 +02:00
Pēteris Caune
1dbf0751ef
Remove now obsolete Check.prepare_badge_key()
cc: 
2024-12-27 12:56:26 +02:00
Pēteris Caune
bf97e3967c
Make Check.badge_key non-nullable
cc: 
2024-12-27 12:47:24 +02:00
Pēteris Caune
8922c81314
Add data migration to fill badge_key for all checks
cc: 
2024-12-27 12:18:06 +02:00
Pēteris Caune
8dab5d8c36
Add default value (uuid.uuidv4()) for Check.badge_key
cc: 
2024-12-27 11:36:48 +02:00
Pēteris Caune
5f94889d01
Fix mypy warning 2024-12-19 12:34:38 +02:00
Pēteris Caune
f7334f7a0e
Add a system check for testing SITE_ROOT against ALLOWED_HOSTS
It checks if the hostname in SITE_ROOT would validate
against ALLOWED_HOSTS.
2024-12-19 11:45:07 +02:00
Pēteris Caune
45b8bd64df
Simplify hosting under subpath
Instead of using SCRIPT_NAME / FORCE_SCRIPT_NAME, PATH_INFO
and their associated issues, update urls.py to add the subpath
to all routes. This allows us to get rid of several hacks:

* the uwsgi.ini magic which parses SITE_ROOT, sets SCRIPT_NAME
  and fixes PATH_INFO
* set_script_prefix() in sendalerts
* chopping the subpath off an URL in hc.accounts.views._allow_redirect

The idea comes from @apollo13
in https://code.djangoproject.com/ticket/35985#comment:5

cc: 
2024-12-19 09:04:45 +02:00
Pēteris Caune
281ce65504
isort 2024-12-18 13:42:18 +02:00
Pēteris Caune
0fb011464f
Update SMS notification template to include failure reason
cc: 
2024-12-18 12:31:22 +02:00
Pēteris Caune
aba1161597
Update RocketChat notification template to include failure reason
cc: 
2024-12-18 11:51:16 +02:00
Pēteris Caune
22695bfdde
Update Spike notification template to include failure reason
cc: 
2024-12-18 09:39:56 +02:00
Pēteris Caune
3fa80a8800
Update PagerTree notification template to include failure reason
cc: 
2024-12-18 09:13:05 +02:00
Pēteris Caune
fd0d58e96d
Update Zulip notification template to include failure reason
cc: 
2024-12-18 09:00:56 +02:00
Pēteris Caune
46c51787bb
Update PushBullet notification template to include failure reason
cc: 
2024-12-18 08:50:58 +02:00
Pēteris Caune
c28ae32261
Update VictorOps notification template to include failure reason
cc: 
2024-12-17 16:01:51 +02:00
Pēteris Caune
dcc5d7a7c4
Update Gotify notification template to include failure reason
cc: 
2024-12-17 15:22:19 +02:00
Pēteris Caune
d8d8d280ca
Update OpsGenie notification template to include failure reason
cc: 
2024-12-17 10:09:55 +02:00
Pēteris Caune
f390d6eece
Update MS Teams Workflows notification to include failure reason
cc: 
2024-12-17 09:50:29 +02:00
Pēteris Caune
aff41f6688
Update ntfy notification template to include failure reason
cc: 
2024-12-17 08:58:31 +02:00
Pēteris Caune
4628deb395
Update PagerDuty notification template to include failure reason
cc: 
2024-12-17 08:46:35 +02:00
Pēteris Caune
cd70e88c52
Update Pushover notification template to include failure reason
cc: 
2024-12-17 08:23:01 +02:00
Pēteris Caune
4808f35a4c
Update Signal notification template to include failure reason
cc: 
2024-12-16 17:20:28 +02:00
Pēteris Caune
3769bf3ede
Fix mypy warning 2024-12-16 15:55:36 +02:00
Pēteris Caune
ca0d639c6b
Update Slack notification template to include failure reason
cc: 
2024-12-16 15:43:25 +02:00
Pēteris Caune
f41e1e52ea
Clean up transports.Matrix.get_url() 2024-12-16 15:24:16 +02:00
Pēteris Caune
645efa5ce4
Update Telegram notification template to include failure reason
cc: 
2024-12-16 15:20:45 +02:00
Pēteris Caune
ff5b060e86
Move repeating flip reason descriptions to Flip.reason_long() 2024-12-16 14:35:36 +02:00
Pēteris Caune
e09fd28836
Improve Matrix notifications (include tags, period, last ping type etc.)
cc: 
2024-12-13 13:34:41 +02:00