Merge pull request #2403 from bluewave-labs/fix/port-monitor-status-page

Fix #2365: Add port monitor support to status page
This commit is contained in:
Alexander Holliday
2025-06-08 08:19:14 +08:00
committed by GitHub

View File

@@ -15,7 +15,7 @@ const useMonitorsFetch = () => {
const response = await networkService.getMonitorsByTeamId({
teamId: user.teamId,
limit: null, // donot return any checks for the monitors
types: ["http", "ping"], // status page is available for uptime and ping monitors
types: ["http", "ping", "port"], // status page is available for uptime, ping, and port monitors
});
setMonitors(response.data.data.monitors);
} catch (error) {