We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e64fd commit ca8e24fCopy full SHA for ca8e24f
features/statuspage.ts
@@ -5,6 +5,7 @@ import { isDocker } from "../utils/docker";
5
export default (client: Client): void => {
6
// Check if the bot is running in a docker container by checking if the env variable UPTIME_KUMA_CONTAINERIZED is true
7
if (isDocker()) return;
8
+ if (!process.env.UPTIME_KUMA_MONITOR_DOMAIN || !process.env.UPTIME_KUMA_MONITOR_ID) return;
9
const updateStatus = async () => {
10
// This function is called every 1 minutes and pings the network status page for uptime monitoring
11
await axios.get(
0 commit comments