Skip to content

Commit

Permalink
Remove disk-space health check
Browse files Browse the repository at this point in the history
It appears to return false incorrectly, which is causing downtime. This is a mitigation to get things working again over the bank holiday weekend until we can investigate further.
  • Loading branch information
notlee committed Mar 31, 2024
1 parent 06c533b commit a4dbe87
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions lib/health-checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,6 @@ function healthChecks(options) {
businessImpact: 'Application may not be able to serve all requests',
technicalSummary: 'Process is hitting the CPU harder than expected',
panicGuide: 'Restart the service dynos on Heroku'
},

// This check monitors the system disk space
// It will fail if usage is above the threshold
{
type: 'disk-space',
threshold: 90,
interval: 60000,
id: 'disk-space',
name: 'System disk-space usage is below 90%',
severity: 1,
businessImpact: 'New components will not be able to install and existing components will not refresh. As problem persists expect end user reports from critical sites regarding styling and broken functionality.',
technicalSummary: '/tmp directory is full, new components will not be installable.',
panicGuide: 'Restart the service dynos on Heroku'
}

],
Expand Down

0 comments on commit a4dbe87

Please sign in to comment.