Log correct url

This commit is contained in:
Lukas | AstroGD 2023-09-16 15:27:04 +02:00
parent c197c6edb2
commit d79bf5635b
Signed by: AstroGD
GPG Key ID: 82A5E6C236C535AA
3 changed files with 7 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@astrogd/eu.astrogd.uptime-kuma-push-monitor",
"version": "1.0.0-dev.6",
"version": "1.0.0-dev.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@astrogd/eu.astrogd.uptime-kuma-push-monitor",
"version": "1.0.0-dev.6",
"version": "1.0.0-dev.7",
"license": "UNLICENSED",
"dependencies": {
"axios": "^1.5.0"

View File

@ -1,6 +1,6 @@
{
"name": "@astrogd/eu.astrogd.uptime-kuma-push-monitor",
"version": "1.0.0-dev.6",
"version": "1.0.0-dev.7",
"description": "Handles uptime kuma push monitor uptime requests",
"main": "dist/index.js",
"types": "dist/types/",

View File

@ -8,8 +8,9 @@ import axios from "axios";
*/
export async function sendHeartbeat(url: string, performance?: number, debug: boolean = false) {
const useUrl = new URL(url);
const parsedURL = `${useUrl.origin}/${useUrl.pathname}?status=up&msg=OK${performance ? `&ping=${performance}` : ""}`;
try {
const response = await axios.get(`${useUrl.origin}/${useUrl.pathname}?status=up&msg=OK${performance ? `&ping=${performance}` : ""}`);
const response = await axios.get(parsedURL);
if (debug)
console.log(
`[eu.astrogd.uptime-kuma-push-monitor] (${new Date().toISOString()}) <${url}>: ${response.status} ${response.statusText}`
@ -27,8 +28,9 @@ export async function sendHeartbeat(url: string, performance?: number, debug: bo
*/
export async function sendDownNotification(url: string, msg: string = "Error",debug: boolean = false) {
const useUrl = new URL(url);
const parsedURL = `${useUrl.origin}/${useUrl.pathname}?status=DOWN&msg=${msg}`;
try {
const response = await axios.get(`${useUrl.origin}/${useUrl.pathname}?status=DOWN&msg=${msg}`);
const response = await axios.get(parsedURL);
if (debug)
console.log(
`[eu.astrogd.uptime-kuma-push-monitor] (${new Date().toISOString()}) <${url}>: ${response.status} ${response.statusText}`