http-check-config.d.ts 236 B

12345678910111213
  1. type HttpCheckConfig = {
  2. id: number;
  3. serverId?: number;
  4. title: string;
  5. type: 'http';
  6. url: string;
  7. active: boolean;
  8. interval: number;
  9. timeout?: number;
  10. notify: boolean;
  11. notifyThreshold: number;
  12. checks: string[];
  13. };