mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
parent
e670b5f4cf
commit
823aeda9fe
|
@ -2,10 +2,9 @@
|
||||||
# Filename: index.sh
|
# Filename: index.sh
|
||||||
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
|
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
|
||||||
INTERVAL=60
|
INTERVAL=60
|
||||||
HTTP_METHOD="GET"
|
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL
|
curl -s -o /dev/null $PUSH_URL
|
||||||
echo "Pushed!"
|
echo "Pushed!"
|
||||||
sleep $INTERVAL
|
sleep $INTERVAL
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
// Supports: Node.js >= 18, Deno, Bun
|
// Supports: Node.js >= 18, Deno, Bun
|
||||||
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
||||||
const interval = 60;
|
const interval = 60;
|
||||||
const method = "GET";
|
|
||||||
|
|
||||||
const push = async () => {
|
const push = async () => {
|
||||||
await fetch(pushURL, { method });
|
await fetch(pushURL);
|
||||||
console.log("Pushed!");
|
console.log("Pushed!");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue