mirror of
https://github.com/Kizuren/statusPage.git
synced 2025-12-21 21:16:09 +01:00
24 lines
No EOL
574 B
JavaScript
24 lines
No EOL
574 B
JavaScript
export default {
|
|
verbose : true,
|
|
interval : 15, // In minutes
|
|
responseTimeGood : 300, // In milliseconds, this and below will be green
|
|
responseTimeWarning : 600, // In milliseconds, above this will be red
|
|
timeout : 5000, // In milliseconds, requests will be aborted above this. (Do not )
|
|
sites : [
|
|
{
|
|
id : 'google',
|
|
name : 'Google',
|
|
endpoints : [
|
|
{
|
|
name : 'Homepage',
|
|
url : 'https://www.google.com',
|
|
request : {
|
|
method: 'GET',
|
|
},
|
|
mustFind : 'Feeling Lucky',
|
|
mustNotFind : /not found/i,
|
|
}
|
|
]
|
|
}
|
|
],
|
|
}; |