Merge pull request #2330 from bluewave-labs/feature/2299-add-ping-monitoring-to-status-pages

Add ping monitoring to status pages (#2299)
This commit is contained in:
Alexander Holliday
2025-05-26 08:12:16 -07: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"], // status page is available only for the uptime type
types: ["http", "ping"], // status page is available for uptime and ping monitors
});
setMonitors(response.data.data.monitors);
} catch (error) {