mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import URL from 'Common/Types/API/URL';
|
|
import logger from 'CommonServer/Utils/Logger';
|
|
import ObjectID from 'Common/Types/ObjectID';
|
|
|
|
if (!process.env['PROBE_API_URL']) {
|
|
logger.error('PROBE_API_URL is not set');
|
|
process.exit();
|
|
}
|
|
|
|
export let PROBE_API_URL: URL = URL.fromString(process.env['PROBE_API_URL']);
|
|
|
|
// If probe api does not have the path. Add it.
|
|
if (
|
|
!PROBE_API_URL.toString().endsWith('probe-api') &&
|
|
!PROBE_API_URL.toString().endsWith('probe-api/')
|
|
) {
|
|
PROBE_API_URL = URL.fromString(
|
|
PROBE_API_URL.addRoute('/probe-api').toString()
|
|
);
|
|
}
|
|
|
|
export const PROBE_NAME: string | null = process.env['PROBE_NAME'] || null;
|
|
|
|
export const PROBE_DESCRIPTION: string | null =
|
|
process.env['PROBE_DESCRIPTION'] || null;
|
|
|
|
export const PROBE_ID: ObjectID | null = process.env['PROBE_ID']
|
|
? new ObjectID(process.env['PROBE_ID'])
|
|
: null;
|
|
|
|
if (!process.env['PROBE_KEY']) {
|
|
logger.error('PROBE_KEY is not set');
|
|
process.exit();
|
|
}
|
|
|
|
export const PROBE_KEY: string = process.env['PROBE_KEY'];
|
|
|
|
let probeMonitoringWorkers: string | number =
|
|
process.env['PROBE_MONITORING_WORKERS'] || 1;
|
|
|
|
if (typeof probeMonitoringWorkers === 'string') {
|
|
probeMonitoringWorkers = parseInt(probeMonitoringWorkers);
|
|
}
|
|
|
|
export const PROBE_MONITORING_WORKERS: number = probeMonitoringWorkers;
|
|
|
|
let monitorFetchLimit: string | number =
|
|
process.env['PROBE_MONITOR_FETCH_LIMIT'] || 1;
|
|
|
|
if (typeof monitorFetchLimit === 'string') {
|
|
monitorFetchLimit = parseInt(monitorFetchLimit);
|
|
}
|
|
|
|
export const PROBE_MONITOR_FETCH_LIMIT: number = monitorFetchLimit;
|