mirror of
https://github.com/tormachris/cf-workers-status-page.git
synced 2026-04-02 15:05:36 +02:00
Compare commits
1 Commits
dependabot
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f9fc53f47 |
@@ -1,4 +1,4 @@
|
|||||||
import { locations } from '../functions/locations'
|
import { locations } from '../functions/helpers'
|
||||||
|
|
||||||
export default function MonitorDayAverage({ location, avg }) {
|
export default function MonitorDayAverage({ location, avg }) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import config from '../../config.yaml'
|
import config from '../../config.yaml'
|
||||||
import { locations } from '../functions/locations'
|
import { locations } from '../functions/helpers'
|
||||||
|
|
||||||
const classes = {
|
const classes = {
|
||||||
green:
|
green:
|
||||||
|
|||||||
@@ -141,8 +141,8 @@ export async function processCronTrigger(event) {
|
|||||||
// Save allOperational to false
|
// Save allOperational to false
|
||||||
monitorsState.lastUpdate.allOperational = false
|
monitorsState.lastUpdate.allOperational = false
|
||||||
|
|
||||||
// Increment failed checks on status change or first fail of the day (maybe call it .incidents instead?)
|
// Increment failed checks, only on status change (maybe call it .incidents instead?)
|
||||||
if (monitorStatusChanged || monitorsState.monitors[monitor.id].checks[checkDay].fails == 0) {
|
if (monitorStatusChanged) {
|
||||||
monitorsState.monitors[monitor.id].checks[checkDay].fails++
|
monitorsState.monitors[monitor.id].checks[checkDay].fails++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,13 @@ import { useEffect, useState } from 'react'
|
|||||||
|
|
||||||
const kvDataKey = 'monitors_data_v1_1'
|
const kvDataKey = 'monitors_data_v1_1'
|
||||||
|
|
||||||
|
export const locations = {
|
||||||
|
WAW: 'Warsaw',
|
||||||
|
SCL: 'Santiago de Chile',
|
||||||
|
MEL: 'Melbourne',
|
||||||
|
SIN: 'Singapore',
|
||||||
|
}
|
||||||
|
|
||||||
export async function getKVMonitors() {
|
export async function getKVMonitors() {
|
||||||
// trying both to see performance difference
|
// trying both to see performance difference
|
||||||
return KV_STATUS_PAGE.get(kvDataKey, 'json')
|
return KV_STATUS_PAGE.get(kvDataKey, 'json')
|
||||||
@@ -27,7 +34,6 @@ export async function notifySlack(monitor, operational) {
|
|||||||
const payload = {
|
const payload = {
|
||||||
attachments: [
|
attachments: [
|
||||||
{
|
{
|
||||||
fallback: `Monitor ${monitor.name} changed status to ${getOperationalLabel(operational)}`,
|
|
||||||
color: operational ? '#36a64f' : '#f2c744',
|
color: operational ? '#36a64f' : '#f2c744',
|
||||||
blocks: [
|
blocks: [
|
||||||
{
|
{
|
||||||
@@ -64,7 +70,7 @@ export async function notifySlack(monitor, operational) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function notifyTelegram(monitor, operational) {
|
export async function notifyTelegram(monitor, operational) {
|
||||||
const text = `Monitor *${monitor.name.replaceAll(
|
const text = `Monitor *${monitor.name.replace(
|
||||||
'-',
|
'-',
|
||||||
'\\-',
|
'\\-',
|
||||||
)}* changed status to *${getOperationalLabel(operational)}*
|
)}* changed status to *${getOperationalLabel(operational)}*
|
||||||
|
|||||||
@@ -1,226 +0,0 @@
|
|||||||
export const locations = {
|
|
||||||
ADL: 'Adelaide',
|
|
||||||
AKL: 'Auckland',
|
|
||||||
ALG: 'Algiers',
|
|
||||||
AMM: 'Amman',
|
|
||||||
AMS: 'Amsterdam',
|
|
||||||
ARI: 'Arica',
|
|
||||||
ARN: 'Stockholm',
|
|
||||||
ASU: 'Asunción',
|
|
||||||
ATH: 'Athens',
|
|
||||||
ATL: 'Atlanta',
|
|
||||||
BAH: 'Manama',
|
|
||||||
BCN: 'Barcelona',
|
|
||||||
BEG: 'Belgrade',
|
|
||||||
BEL: 'Belém',
|
|
||||||
BEY: 'Beirut',
|
|
||||||
BGW: 'Baghdad',
|
|
||||||
BKK: 'Bangkok',
|
|
||||||
BLR: 'Bangalore',
|
|
||||||
BNA: 'Nashville',
|
|
||||||
BNE: 'Brisbane',
|
|
||||||
BNU: 'Blumenau',
|
|
||||||
BOG: 'Bogotá',
|
|
||||||
BOM: 'Mumbai',
|
|
||||||
BOS: 'Boston',
|
|
||||||
BRU: 'Brussels',
|
|
||||||
BSB: 'Brasilia',
|
|
||||||
BUD: 'Budapest',
|
|
||||||
BUF: 'Buffalo',
|
|
||||||
BWN: 'Bandar Seri Begawan',
|
|
||||||
CAN: 'Guangzhou',
|
|
||||||
CBR: 'Canberra',
|
|
||||||
CCU: 'Kolkata',
|
|
||||||
CDG: 'Paris',
|
|
||||||
CEB: 'Cebu',
|
|
||||||
CFC: 'Caçador',
|
|
||||||
CGK: 'Jakarta',
|
|
||||||
CGO: 'Zhengzhou',
|
|
||||||
CGP: 'Chittagong',
|
|
||||||
CKG: 'Chongqing',
|
|
||||||
CLT: 'Charlotte',
|
|
||||||
CMB: 'Colombo',
|
|
||||||
CMH: 'Columbus',
|
|
||||||
CMN: 'Casablanca',
|
|
||||||
CNF: 'Belo Horizonte',
|
|
||||||
CPH: 'Copenhagen',
|
|
||||||
CPT: 'Cape Town',
|
|
||||||
CSX: 'Zhuzhou',
|
|
||||||
CTU: 'Chengdu',
|
|
||||||
CUR: 'Willemstad',
|
|
||||||
CWB: 'Curitiba',
|
|
||||||
DAC: 'Dhaka',
|
|
||||||
DAR: 'Dar Es Salaam',
|
|
||||||
DEL: 'New Delhi',
|
|
||||||
DEN: 'Denver',
|
|
||||||
DFW: 'Dallas',
|
|
||||||
DKR: 'Dakar',
|
|
||||||
DME: 'Moscow',
|
|
||||||
DMM: 'Dammam',
|
|
||||||
DOH: 'Doha',
|
|
||||||
DTW: 'Detroit',
|
|
||||||
DUB: 'Dublin',
|
|
||||||
DUR: 'Durban',
|
|
||||||
DUS: 'Düsseldorf',
|
|
||||||
DXB: 'Dubai',
|
|
||||||
EDI: 'Edinburgh',
|
|
||||||
EVN: 'Yerevan',
|
|
||||||
EWR: 'Newark',
|
|
||||||
EZE: 'Buenos Aires',
|
|
||||||
FCO: 'Rome',
|
|
||||||
FLN: 'Florianopolis',
|
|
||||||
FOR: 'Fortaleza',
|
|
||||||
FRA: 'Frankfurt',
|
|
||||||
GIG: 'Rio de Janeiro',
|
|
||||||
GND: 'St. George’s',
|
|
||||||
GOT: 'Gothenburg',
|
|
||||||
GRU: 'São Paulo',
|
|
||||||
GUA: 'Guatemala City',
|
|
||||||
GVA: 'Geneva',
|
|
||||||
GYD: 'Baku',
|
|
||||||
GYE: 'Guayaquil',
|
|
||||||
HAM: 'Hamburg',
|
|
||||||
HAN: 'Hanoi',
|
|
||||||
HEL: 'Helsinki',
|
|
||||||
HKG: 'Hong Kong ',
|
|
||||||
HNL: 'Honolulu',
|
|
||||||
HRE: 'Harare',
|
|
||||||
HYD: 'Hyderabad',
|
|
||||||
IAD: 'Ashburn',
|
|
||||||
IAH: 'Houston',
|
|
||||||
ICN: 'Seoul',
|
|
||||||
IND: 'Indianapolis',
|
|
||||||
ISB: 'Islamabad',
|
|
||||||
IST: 'Istanbul',
|
|
||||||
ITJ: 'Itajaí',
|
|
||||||
JAX: 'Jacksonville',
|
|
||||||
JIB: 'Djibouti City',
|
|
||||||
JNB: 'Johannesburg',
|
|
||||||
JSR: 'Jashore',
|
|
||||||
KBP: 'Kyiv',
|
|
||||||
KEF: 'Reykjavík',
|
|
||||||
KGL: 'Kigali',
|
|
||||||
KHI: 'Karachi',
|
|
||||||
KIV: 'Chișinău',
|
|
||||||
KIX: 'Osaka',
|
|
||||||
KJA: 'Krasnoyarsk',
|
|
||||||
KTM: 'Kathmandu',
|
|
||||||
KUL: 'Kuala Lumpur',
|
|
||||||
KWI: 'Kuwait City',
|
|
||||||
LAD: 'Luanda',
|
|
||||||
LAS: 'Las Vegas',
|
|
||||||
LAX: 'Los Angeles',
|
|
||||||
LCA: 'Nicosia',
|
|
||||||
LED: 'Saint Petersburg',
|
|
||||||
LHE: 'Lahore',
|
|
||||||
LHR: 'London',
|
|
||||||
LIM: 'Lima',
|
|
||||||
LIS: 'Lisbon',
|
|
||||||
LOS: 'Lagos',
|
|
||||||
LUX: 'Luxembourg City',
|
|
||||||
MAA: 'Chennai',
|
|
||||||
MAD: 'Madrid',
|
|
||||||
MAN: 'Manchester',
|
|
||||||
MBA: 'Mombasa',
|
|
||||||
MCI: 'Kansas City',
|
|
||||||
MCT: 'Muscat',
|
|
||||||
MDE: 'Medellín',
|
|
||||||
MEL: 'Melbourne',
|
|
||||||
MEM: 'Memphis',
|
|
||||||
MEX: 'Mexico City',
|
|
||||||
MFE: 'McAllen',
|
|
||||||
MFM: 'Macau ',
|
|
||||||
MGM: 'Montgomery',
|
|
||||||
MIA: 'Miami',
|
|
||||||
MLE: 'Malé',
|
|
||||||
MNL: 'Manila',
|
|
||||||
MPM: 'Maputo',
|
|
||||||
MRS: 'Marseille',
|
|
||||||
MRU: 'Port Louis',
|
|
||||||
MSP: 'Minneapolis',
|
|
||||||
MUC: 'Munich',
|
|
||||||
MXP: 'Milan',
|
|
||||||
NAG: 'Nagpur',
|
|
||||||
NBG: 'Ningbo',
|
|
||||||
NBO: 'Nairobi',
|
|
||||||
NOU: 'Noumea',
|
|
||||||
NRT: 'Tokyo',
|
|
||||||
OMA: 'Omaha',
|
|
||||||
ORD: 'Chicago',
|
|
||||||
ORF: 'Norfolk',
|
|
||||||
OSL: 'Oslo',
|
|
||||||
OTP: 'Bucharest',
|
|
||||||
PAP: 'Port',
|
|
||||||
PBH: 'Thimphu',
|
|
||||||
PBM: 'Paramaribo',
|
|
||||||
PDX: 'Portland',
|
|
||||||
PER: 'Perth',
|
|
||||||
PHL: 'Philadelphia',
|
|
||||||
PHX: 'Phoenix',
|
|
||||||
PIT: 'Pittsburgh',
|
|
||||||
PMO: 'Palermo',
|
|
||||||
PNH: 'Phnom Penh',
|
|
||||||
POA: 'Porto Alegre',
|
|
||||||
PRG: 'Prague',
|
|
||||||
PTY: 'Panama City',
|
|
||||||
QRO: 'Queretaro',
|
|
||||||
QWJ: 'Americana',
|
|
||||||
RAO: 'Ribeirao Preto',
|
|
||||||
RGN: 'Yangon',
|
|
||||||
RIC: 'Richmond',
|
|
||||||
RIX: 'Riga',
|
|
||||||
ROB: 'Monrovia',
|
|
||||||
RUH: 'Riyadh',
|
|
||||||
RUN: 'Réunion',
|
|
||||||
SAN: 'San Diego',
|
|
||||||
SCL: 'Santiago',
|
|
||||||
SEA: 'Seattle',
|
|
||||||
SGN: 'Ho Chi Minh City',
|
|
||||||
SHA: 'Shanghai',
|
|
||||||
SIN: 'Singapore',
|
|
||||||
SJC: 'San Jose',
|
|
||||||
SJO: 'San José',
|
|
||||||
SJP: 'São José do Rio Preto',
|
|
||||||
SKG: 'Thessaloniki',
|
|
||||||
SLC: 'Salt Lake City',
|
|
||||||
SMF: 'Sacramento',
|
|
||||||
SOD: 'Sorocaba',
|
|
||||||
SOF: 'Sofia',
|
|
||||||
SSA: 'Salvador',
|
|
||||||
STL: 'St. Louis',
|
|
||||||
SVX: 'Yekaterinburg',
|
|
||||||
SYD: 'Sydney',
|
|
||||||
SZV: 'Suzhou',
|
|
||||||
TBS: 'Tbilisi',
|
|
||||||
TGU: 'Tegucigalpa',
|
|
||||||
TLH: 'Tallahassee',
|
|
||||||
TLL: 'Tallinn',
|
|
||||||
TLV: 'Tel Aviv',
|
|
||||||
TNA: 'Jinan',
|
|
||||||
TNR: 'Antananarivo',
|
|
||||||
TPA: 'Tampa',
|
|
||||||
TPE: 'Taipei ',
|
|
||||||
TSN: 'Tianjin',
|
|
||||||
TUN: 'Tunis',
|
|
||||||
TXL: 'Berlin',
|
|
||||||
UIO: 'Quito',
|
|
||||||
ULN: 'Ulaanbaatar',
|
|
||||||
URT: 'Surat Thani',
|
|
||||||
VCP: 'Campinas',
|
|
||||||
VIE: 'Vienna',
|
|
||||||
VNO: 'Vilnius',
|
|
||||||
VTE: 'Vientiane',
|
|
||||||
WAW: 'Warsaw',
|
|
||||||
WUH: 'Wuhan',
|
|
||||||
WUX: 'Wuxi',
|
|
||||||
XIY: 'Xi’an',
|
|
||||||
YUL: 'Montréal',
|
|
||||||
YVR: 'Vancouver',
|
|
||||||
YWG: 'Winnipeg',
|
|
||||||
YXE: 'Saskatoon',
|
|
||||||
YYC: 'Calgary',
|
|
||||||
YYZ: 'Toronto',
|
|
||||||
ZAG: 'Zagreb',
|
|
||||||
ZDM: 'Ramallah ',
|
|
||||||
ZRH: 'Zürich',
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,6 @@ workers_dev = true
|
|||||||
account_id = ""
|
account_id = ""
|
||||||
type = "webpack"
|
type = "webpack"
|
||||||
webpack_config = "node_modules/flareact/webpack"
|
webpack_config = "node_modules/flareact/webpack"
|
||||||
compatibility_date = "2021-07-23"
|
|
||||||
|
|
||||||
[triggers]
|
[triggers]
|
||||||
crons = ["* * * * *"]
|
crons = ["* * * * *"]
|
||||||
|
|||||||
12
yarn.lock
12
yarn.lock
@@ -4477,9 +4477,9 @@ minimatch@^3.0.4:
|
|||||||
brace-expansion "^1.1.7"
|
brace-expansion "^1.1.7"
|
||||||
|
|
||||||
minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
|
minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
|
||||||
version "1.2.6"
|
version "1.2.5"
|
||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
||||||
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
|
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
||||||
|
|
||||||
minipass-collect@^1.0.2:
|
minipass-collect@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
@@ -5060,9 +5060,9 @@ path-key@^2.0.0, path-key@^2.0.1:
|
|||||||
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
|
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
|
||||||
|
|
||||||
path-parse@^1.0.6:
|
path-parse@^1.0.6:
|
||||||
version "1.0.6"
|
version "1.0.7"
|
||||||
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
||||||
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
||||||
|
|
||||||
path-to-regexp@0.1.7:
|
path-to-regexp@0.1.7:
|
||||||
version "0.1.7"
|
version "0.1.7"
|
||||||
|
|||||||
Reference in New Issue
Block a user