41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'overall' => [
|
|
'operational' => 'All services operational',
|
|
'degraded' => 'One service is degraded',
|
|
'down' => 'One service is down',
|
|
// Not "operational": nothing is being watched, and reporting the
|
|
// absence of a check as the absence of a problem is the one thing a
|
|
// status page must never do.
|
|
'unknown' => 'Not fully monitored',
|
|
],
|
|
|
|
'state' => [
|
|
'operational' => 'Operational',
|
|
'degraded' => 'Degraded',
|
|
'down' => 'Down',
|
|
'unknown' => 'Unknown',
|
|
],
|
|
|
|
'component' => [
|
|
'portal' => 'Website & customer portal',
|
|
'instances' => 'Cloud instances',
|
|
'provisioning' => 'Provisioning of new instances',
|
|
'backups' => 'Backups',
|
|
],
|
|
|
|
'about' => [
|
|
'portal' => 'Availability of www.clupilot.com and the customer area.',
|
|
'instances' => 'Availability of the customer instances we operate.',
|
|
'provisioning' => 'New orders are being delivered without failures.',
|
|
'backups' => 'Every instance has a backup from the last 48 hours.',
|
|
],
|
|
|
|
'detail' => [
|
|
'instances' => ':down of :total instances without a positive signal.',
|
|
'provisioning' => ':failed failed provisioning run(s) in the last 24 hours.',
|
|
'backups' => ':stale of :total instances without a current backup.',
|
|
],
|
|
];
|