mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import API from 'Common/Utils/API';
|
|
import RunCron from '../Utils/Cron';
|
|
import { EVERY_MINUTE } from 'Common/Utils/CronTime';
|
|
import { INGESTOR_URL } from '../Config';
|
|
import LocalCache from 'CommonServer/Infrastructure/LocalCache';
|
|
import URL from 'Common/Types/API/URL';
|
|
import logger from 'CommonServer/Utils/Logger';
|
|
import ProbeAPIRequest from '../Utils/ProbeAPIRequest';
|
|
import Register from '../Services/Register';
|
|
|
|
RunCron(
|
|
'Basic:Alive',
|
|
{
|
|
schedule: EVERY_MINUTE,
|
|
runOnStartup: false,
|
|
},
|
|
async () => {
|
|
logger.info('Checking if probe is alive...');
|
|
|
|
const probeId: string | undefined = LocalCache.getString(
|
|
'PROBE',
|
|
'PROBE_ID'
|
|
);
|
|
|
|
if (!probeId) {
|
|
logger.warn(
|
|
'Probe is not registered yet. Skipping alive check. Trying to register probe again...'
|
|
);
|
|
await Register.registerProbe();
|
|
return;
|
|
}
|
|
|
|
logger.info('Probe ID: ' + probeId.toString());
|
|
|
|
await API.post(
|
|
URL.fromString(INGESTOR_URL.toString()).addRoute('/alive'),
|
|
ProbeAPIRequest.getDefaultRequestBody()
|
|
);
|
|
}
|
|
);
|