├── .dockerignore ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ ├── feature_request.yml │ ├── question.yml │ ├── security_issue.yml │ └── translation_request.yml └── workflows │ └── build-frontend-image.yml.dev ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── application ├── .dockerignore ├── .gitignore ├── Dockerfile ├── bun.lockb ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── checkcle_logo.svg │ ├── favicon.ico │ ├── favicon_sidebar.ico │ ├── placeholder.svg │ ├── robots.txt │ └── upload │ │ ├── data │ │ └── pb_schema_latest.json │ │ ├── notification │ │ ├── discord.png │ │ ├── email.png │ │ ├── google.png │ │ ├── gotify.png │ │ ├── notifiarr.png │ │ ├── ntfy.png │ │ ├── pushover.png │ │ ├── signal.png │ │ ├── slack.png │ │ ├── telegram.png │ │ └── webhook.png │ │ ├── os │ │ ├── arch.png │ │ ├── centos.png │ │ ├── debian.png │ │ ├── linux.png │ │ ├── rhel.png │ │ ├── ubuntu.png │ │ └── windows.png │ │ └── profile │ │ ├── profile1.svg │ │ ├── profile2.svg │ │ ├── profile3.svg │ │ ├── profile4.svg │ │ ├── profile5.svg │ │ ├── profile6.svg │ │ ├── profile7.svg │ │ └── profile8.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── api │ │ ├── index.ts │ │ ├── realtime │ │ │ └── index.ts │ │ └── settings │ │ │ ├── actions │ │ │ ├── getSettings.ts │ │ │ ├── sendTestEmail.ts │ │ │ ├── testEmail.ts │ │ │ ├── testEmailConnection.ts │ │ │ └── updateSettings.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── components │ │ ├── ErrorBoundary.tsx │ │ ├── auth │ │ │ ├── ForgotPasswordDialog.tsx │ │ │ └── ProtectedRoute.tsx │ │ ├── dashboard │ │ │ ├── DashboardContent.tsx │ │ │ ├── Header.tsx │ │ │ ├── ServiceFilters.tsx │ │ │ ├── ServicesTable.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── StatusCards.tsx │ │ │ └── sidebar │ │ │ │ ├── MainNavigation.tsx │ │ │ │ ├── MenuItem.tsx │ │ │ │ ├── SettingsPanel.tsx │ │ │ │ ├── SidebarHeader.tsx │ │ │ │ ├── index.ts │ │ │ │ └── navigationData.ts │ │ ├── docker │ │ │ ├── DockerContainersTable.tsx │ │ │ ├── DockerMetricsDialog.tsx │ │ │ ├── DockerStatsCards.tsx │ │ │ ├── DockerStatusBadge.tsx │ │ │ └── table │ │ │ │ ├── DockerEmptyState.tsx │ │ │ │ ├── DockerRowActions.tsx │ │ │ │ ├── DockerTableHeader.tsx │ │ │ │ ├── DockerTableRow.tsx │ │ │ │ ├── DockerTableSearch.tsx │ │ │ │ └── index.ts │ │ ├── operational-page │ │ │ ├── ComponentsSelector.tsx │ │ │ ├── CreateOperationalPageDialog.tsx │ │ │ ├── EditOperationalPageDialog.tsx │ │ │ ├── OperationalPageCard.tsx │ │ │ ├── OperationalPageContent.tsx │ │ │ └── StatusBadge.tsx │ │ ├── profile │ │ │ ├── ChangePasswordForm.tsx │ │ │ ├── ProfileContent.tsx │ │ │ ├── UpdateProfileForm.tsx │ │ │ └── UserProfileDetails.tsx │ │ ├── public │ │ │ ├── ComponentsStatusSection.tsx │ │ │ ├── CurrentStatusSection.tsx │ │ │ ├── OverallUptimeSection.tsx │ │ │ ├── PublicStatusPage.tsx │ │ │ ├── PublicStatusPageFooter.tsx │ │ │ ├── StatusPageHeader.tsx │ │ │ ├── UptimeHistoryRenderer.tsx │ │ │ └── hooks │ │ │ │ └── usePublicStatusPageData.ts │ │ ├── regional-monitoring │ │ │ ├── AddRegionalAgentDialog.tsx │ │ │ ├── RegionalAgentCard.tsx │ │ │ ├── RegionalAgentConfigForm.tsx │ │ │ ├── RegionalManualTab.tsx │ │ │ ├── RegionalMonitoringContent.tsx │ │ │ ├── RegionalOneClickTab.tsx │ │ │ └── index.ts │ │ ├── schedule-incident │ │ │ ├── IncidentManagementTab.tsx │ │ │ ├── ScheduleIncidentContent.tsx │ │ │ ├── ScheduledMaintenanceTab.tsx │ │ │ ├── common │ │ │ │ └── OverviewCard.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useIncidentData.ts │ │ │ │ └── useMaintenanceData.ts │ │ │ ├── incident-management │ │ │ │ ├── ErrorState.tsx │ │ │ │ ├── HeaderActions.tsx │ │ │ │ ├── IncidentManagementContainer.tsx │ │ │ │ ├── OverviewCards.tsx │ │ │ │ ├── TabContent.tsx │ │ │ │ └── index.ts │ │ │ ├── incident │ │ │ │ ├── CreateIncidentDialog.tsx │ │ │ │ ├── EditIncidentDialog.tsx │ │ │ │ ├── EmptyIncidentState.tsx │ │ │ │ ├── IncidentActionsMenu.tsx │ │ │ │ ├── IncidentStatusBadge.tsx │ │ │ │ ├── IncidentStatusDropdown.tsx │ │ │ │ ├── IncidentTable.tsx │ │ │ │ ├── detail-dialog │ │ │ │ │ ├── IncidentDetailContent.tsx │ │ │ │ │ ├── IncidentDetailDialog.tsx │ │ │ │ │ ├── IncidentDetailFooter.tsx │ │ │ │ │ ├── IncidentDetailHeader.tsx │ │ │ │ │ ├── IncidentDetailSections.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CloseButton.tsx │ │ │ │ │ │ ├── DownloadPdfButton.tsx │ │ │ │ │ │ ├── PrintButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useDownloadIncidentPdf.ts │ │ │ │ │ │ └── usePrintIncident.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── sections │ │ │ │ │ │ ├── AffectedSystemsSection.tsx │ │ │ │ │ │ ├── AssignmentSection.tsx │ │ │ │ │ │ ├── BasicInfoSection.tsx │ │ │ │ │ │ ├── ImpactAnalysisSection.tsx │ │ │ │ │ │ ├── ResolutionSection.tsx │ │ │ │ │ │ ├── TimelineSection.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── form │ │ │ │ │ ├── IncidentAffectedFields.tsx │ │ │ │ │ ├── IncidentBasicFields.tsx │ │ │ │ │ ├── IncidentConfigFields.tsx │ │ │ │ │ ├── IncidentDetailsFields.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useIncidentEditForm.ts │ │ │ │ │ └── useIncidentForm.ts │ │ │ │ ├── index.ts │ │ │ │ └── table │ │ │ │ │ ├── IncidentTable.tsx │ │ │ │ │ ├── IncidentTableRow.tsx │ │ │ │ │ ├── IncidentTableSkeleton.tsx │ │ │ │ │ ├── IncidentTableUtils.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── maintenance │ │ │ │ ├── CreateMaintenanceDialog.tsx │ │ │ │ ├── EmptyMaintenanceState.tsx │ │ │ │ ├── MaintenanceActionsMenu.tsx │ │ │ │ ├── MaintenanceStatusBadge.tsx │ │ │ │ ├── MaintenanceStatusChecker.tsx │ │ │ │ ├── MaintenanceStatusDropdown.tsx │ │ │ │ ├── MaintenanceTable.tsx │ │ │ │ ├── detail-dialog │ │ │ │ ├── MaintenanceDetailContent.tsx │ │ │ │ ├── MaintenanceDetailDialog.tsx │ │ │ │ ├── MaintenanceDetailFooter.tsx │ │ │ │ ├── MaintenanceDetailHeader.tsx │ │ │ │ ├── MaintenanceDetailSections.tsx │ │ │ │ ├── components │ │ │ │ │ ├── CloseButton.tsx │ │ │ │ │ ├── DownloadPdfButton.tsx │ │ │ │ │ ├── PrintButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useDownloadMaintenancePdf.ts │ │ │ │ │ └── usePrintMaintenance.ts │ │ │ │ └── index.ts │ │ │ │ ├── edit-dialog │ │ │ │ ├── EditMaintenanceDialog.tsx │ │ │ │ └── index.ts │ │ │ │ ├── form │ │ │ │ ├── MaintenanceAffectedFields.tsx │ │ │ │ ├── MaintenanceBasicFields.tsx │ │ │ │ ├── MaintenanceConfigFields.tsx │ │ │ │ ├── MaintenanceNotificationSettingsField.tsx │ │ │ │ ├── MaintenanceTimeFields.tsx │ │ │ │ ├── config │ │ │ │ │ ├── AssignedUsersField.tsx │ │ │ │ │ ├── ImpactLevelField.tsx │ │ │ │ │ ├── PriorityField.tsx │ │ │ │ │ ├── StatusField.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ ├── useMaintenanceEditForm.ts │ │ │ │ └── useMaintenanceForm.ts │ │ │ │ └── index.ts │ │ ├── servers │ │ │ ├── AddServerAgentDialog.tsx │ │ │ ├── DockerOneClickTab.tsx │ │ │ ├── EditServerDialog.tsx │ │ │ ├── ManualInstallTab.tsx │ │ │ ├── OSSelector.tsx │ │ │ ├── OSTypeIcon.tsx │ │ │ ├── OneClickInstallTab.tsx │ │ │ ├── ServerAgentConfigForm.tsx │ │ │ ├── ServerHistoryCharts.tsx │ │ │ ├── ServerMetricsCharts.tsx │ │ │ ├── ServerMetricsOverview.tsx │ │ │ ├── ServerStatsCards.tsx │ │ │ ├── ServerStatusBadge.tsx │ │ │ ├── ServerSystemInfoCard.tsx │ │ │ ├── ServerTable.tsx │ │ │ └── charts │ │ │ │ ├── CPUChart.tsx │ │ │ │ ├── DiskChart.tsx │ │ │ │ ├── MemoryChart.tsx │ │ │ │ ├── NetworkChart.tsx │ │ │ │ ├── TimeRangeSelector.tsx │ │ │ │ ├── dataUtils.ts │ │ │ │ ├── hooks │ │ │ │ └── useServerHistoryData.ts │ │ │ │ └── tooltips │ │ │ │ ├── DetailedTooltipContent.tsx │ │ │ │ └── NetworkTooltipContent.tsx │ │ ├── services │ │ │ ├── AddServiceDialog.tsx │ │ │ ├── DateRangeFilter.tsx │ │ │ ├── HeatmapChart.tsx │ │ │ ├── HeatmapDialog.tsx │ │ │ ├── LastCheckedTime.tsx │ │ │ ├── LoadingState.tsx │ │ │ ├── RegionalAgentFilter.tsx │ │ │ ├── ResponseTimeChart.tsx │ │ │ ├── ServiceDeleteDialog.tsx │ │ │ ├── ServiceDetailContainer.tsx │ │ │ ├── ServiceDetailContainer │ │ │ │ ├── ServiceDetailWrapper.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useRealTimeUpdates.tsx │ │ │ │ │ └── useServiceData.tsx │ │ │ │ └── index.tsx │ │ │ ├── ServiceDetailContent.tsx │ │ │ ├── ServiceEditDialog.tsx │ │ │ ├── ServiceForm.tsx │ │ │ ├── ServiceHeader.tsx │ │ │ ├── ServiceHistoryDialog.tsx │ │ │ ├── ServiceMonitoringButton.tsx │ │ │ ├── ServiceNotFound.tsx │ │ │ ├── ServiceRow.tsx │ │ │ ├── ServiceStatsCards.tsx │ │ │ ├── ServiceUptimeHistory.tsx │ │ │ ├── ServicesPagination.tsx │ │ │ ├── ServicesTableContainer.tsx │ │ │ ├── ServicesTableView.tsx │ │ │ ├── StatusBadge.tsx │ │ │ ├── UptimeBar.tsx │ │ │ ├── add-service │ │ │ │ ├── ServiceBasicFields.tsx │ │ │ │ ├── ServiceConfigFields.tsx │ │ │ │ ├── ServiceForm.tsx │ │ │ │ ├── ServiceFormActions.tsx │ │ │ │ ├── ServiceNotificationFields.tsx │ │ │ │ ├── ServiceRegionalFields.tsx │ │ │ │ ├── ServiceTypeField.tsx │ │ │ │ ├── ServiceUrlField.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── serviceFormUtils.ts │ │ │ │ └── types.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useConsolidatedUptimeData.ts │ │ │ │ ├── useDefaultUptimeData.ts │ │ │ │ ├── useDialogState.ts │ │ │ │ ├── useServiceActions.ts │ │ │ │ └── useUptimeData.ts │ │ │ ├── incident-history │ │ │ │ ├── EmptyState.tsx │ │ │ │ ├── IncidentTable.tsx │ │ │ │ ├── LatestChecksTable.tsx │ │ │ │ ├── StatusFilterTabs.tsx │ │ │ │ ├── TablePagination.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.tsx │ │ │ ├── index.ts │ │ │ ├── service-row │ │ │ │ ├── ServiceRowActions.tsx │ │ │ │ ├── ServiceRowHeader.tsx │ │ │ │ ├── ServiceRowResponseTime.tsx │ │ │ │ └── index.ts │ │ │ └── uptime │ │ │ │ ├── UptimeErrorState.tsx │ │ │ │ ├── UptimeLoadingState.tsx │ │ │ │ ├── UptimeStatusItem.tsx │ │ │ │ ├── UptimeSummary.tsx │ │ │ │ └── index.ts │ │ ├── settings │ │ │ ├── GeneralSettings.tsx │ │ │ ├── about-system │ │ │ │ ├── AboutSystem.tsx │ │ │ │ └── index.ts │ │ │ ├── alerts-templates │ │ │ │ ├── AlertsTemplates.tsx │ │ │ │ ├── TemplateDialog.tsx │ │ │ │ ├── TemplateList.tsx │ │ │ │ ├── form │ │ │ │ │ ├── BasicTemplateFields.tsx │ │ │ │ │ ├── MessagesTabContent.tsx │ │ │ │ │ ├── PlaceholdersTabContent.tsx │ │ │ │ │ ├── ServerTemplateFields.tsx │ │ │ │ │ ├── ServerThresholdFields.tsx │ │ │ │ │ ├── ServiceTemplateFields.tsx │ │ │ │ │ ├── SslTemplateFields.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useTemplateForm.ts │ │ │ │ └── index.ts │ │ │ ├── data-retention │ │ │ │ ├── DataRetentionSettings.tsx │ │ │ │ └── index.ts │ │ │ ├── general │ │ │ │ ├── GeneralSettingsPanel.tsx │ │ │ │ ├── MailSettingsTab.tsx │ │ │ │ ├── SystemSettingsTab.tsx │ │ │ │ ├── TestEmailDialog.tsx │ │ │ │ └── types.ts │ │ │ ├── notification-settings │ │ │ │ ├── NotificationChannelDialog.tsx │ │ │ │ ├── NotificationChannelList.tsx │ │ │ │ ├── NotificationSettings.tsx │ │ │ │ └── index.ts │ │ │ └── user-management │ │ │ │ ├── AddUserDialog.tsx │ │ │ │ ├── DeleteUserDialog.tsx │ │ │ │ ├── EditUserDialog.tsx │ │ │ │ ├── UserManagement.tsx │ │ │ │ ├── UserTable.tsx │ │ │ │ ├── avatarOptions.ts │ │ │ │ ├── form-fields │ │ │ │ ├── AddUserForm.tsx │ │ │ │ ├── UserProfilePictureField.tsx │ │ │ │ ├── UserRoleField.tsx │ │ │ │ ├── UserTextField.tsx │ │ │ │ ├── UserToggleField.tsx │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useUserDialogs.ts │ │ │ │ ├── useUserForm.ts │ │ │ │ ├── useUserManagement.ts │ │ │ │ ├── useUserOperations.ts │ │ │ │ └── useUsersList.ts │ │ │ │ ├── index.ts │ │ │ │ └── userForms.ts │ │ ├── ssl-domain │ │ │ ├── AddSSLCertificateForm.tsx │ │ │ ├── EditSSLCertificateForm.tsx │ │ │ ├── SSLCertificateActions.tsx │ │ │ ├── SSLCertificateDetailDialog.tsx │ │ │ ├── SSLCertificateStatusCards.tsx │ │ │ ├── SSLCertificatesTable.tsx │ │ │ ├── SSLDomainContent.tsx │ │ │ ├── SSLPagination.tsx │ │ │ └── SSLStatusBadge.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── contexts │ │ ├── LanguageContext.tsx │ │ ├── SidebarContext.tsx │ │ └── ThemeContext.tsx │ ├── hooks │ │ ├── use-mobile.tsx │ │ ├── use-toast.ts │ │ ├── useOperationalPage.ts │ │ ├── useSSLPagination.ts │ │ ├── useServicesPagination.ts │ │ ├── useStatusPageComponents.ts │ │ └── useSystemSettings.tsx │ ├── index.css │ ├── lib │ │ ├── pocketbase.ts │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── ContainerMonitoring.tsx │ │ ├── Dashboard.tsx │ │ ├── Index.tsx │ │ ├── InstanceMonitoring.tsx │ │ ├── Login.tsx │ │ ├── NotFound.tsx │ │ ├── OperationalPage.tsx │ │ ├── Profile.tsx │ │ ├── PublicStatusPage.tsx │ │ ├── RegionalMonitoring.tsx │ │ ├── ScheduleIncident.tsx │ │ ├── ServerDetail.tsx │ │ ├── ServiceDetail.tsx │ │ ├── Settings.tsx │ │ └── SslDomain.tsx │ ├── services │ │ ├── alertConfigService.ts │ │ ├── authService.ts │ │ ├── dataRetentionService.ts │ │ ├── dockerService.ts │ │ ├── incident │ │ │ ├── incidentCache.ts │ │ │ ├── incidentFetch.ts │ │ │ ├── incidentOperations.ts │ │ │ ├── incidentPdfService.ts │ │ │ ├── incidentService.ts │ │ │ ├── incidentUtils.ts │ │ │ ├── index.ts │ │ │ ├── pdf │ │ │ │ ├── generator.ts │ │ │ │ ├── headerFooter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sections.ts │ │ │ │ └── utils.ts │ │ │ └── types.ts │ │ ├── incidentService.ts │ │ ├── maintenance │ │ │ ├── api │ │ │ │ ├── index.ts │ │ │ │ ├── maintenanceCache.ts │ │ │ │ ├── maintenanceFetch.ts │ │ │ │ ├── maintenanceOperations.ts │ │ │ │ └── maintenanceValidation.ts │ │ │ ├── index.ts │ │ │ ├── maintenanceNotificationService.ts │ │ │ ├── maintenanceService.ts │ │ │ ├── maintenanceUtils.ts │ │ │ └── pdf │ │ │ │ ├── generator.ts │ │ │ │ ├── headerFooter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sections.ts │ │ │ │ └── utils.ts │ │ ├── maintenanceService.ts │ │ ├── monitoring │ │ │ ├── handlers │ │ │ │ └── serviceStatusHandlers.ts │ │ │ ├── httpChecker.ts │ │ │ ├── index.ts │ │ │ ├── monitoringIntervals.ts │ │ │ ├── service-status │ │ │ │ ├── index.ts │ │ │ │ ├── pauseMonitoring.ts │ │ │ │ ├── resumeMonitoring.ts │ │ │ │ ├── startAllServices.ts │ │ │ │ └── startMonitoring.ts │ │ │ └── utils │ │ │ │ ├── httpUtils.ts │ │ │ │ └── notificationUtils.ts │ │ ├── notification │ │ │ ├── index.ts │ │ │ ├── signalService.ts │ │ │ ├── telegramService.ts │ │ │ ├── templateProcessor.ts │ │ │ └── types.ts │ │ ├── operationalPageService.ts │ │ ├── regionalService.ts │ │ ├── serverNotificationTemplateService.ts │ │ ├── serverService.ts │ │ ├── serverThresholdService.ts │ │ ├── serviceNotificationTemplateService.ts │ │ ├── serviceService.ts │ │ ├── settingsService.ts │ │ ├── ssl │ │ │ ├── index.ts │ │ │ ├── notification │ │ │ │ ├── index.ts │ │ │ │ ├── sslCheckNotifier.ts │ │ │ │ ├── sslNotificationSender.ts │ │ │ │ └── sslScheduleUtils.ts │ │ │ ├── sslCertificateOperations.ts │ │ │ ├── sslCheckerService.ts │ │ │ ├── sslCheckerUtils.ts │ │ │ ├── sslFetchService.ts │ │ │ ├── sslStatusUtils.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── sslCertificateService.ts │ │ ├── sslCheckerService.ts │ │ ├── sslNotificationTemplateService.ts │ │ ├── statusPageComponentsService.ts │ │ ├── templateService.ts │ │ ├── types │ │ │ ├── maintenance.types.ts │ │ │ └── serverService.ts │ │ ├── uptimeService.ts │ │ ├── userService.ts │ │ └── webhookService.ts │ ├── translations │ │ ├── de │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ ├── en │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── docker.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── instance.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── operation.ts │ │ │ ├── public.ts │ │ │ ├── region.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ ├── index.ts │ │ ├── ja │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ ├── km │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── docker.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── instance.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── operation.ts │ │ │ ├── public.ts │ │ │ ├── region.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ ├── ko │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ ├── types │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── docker.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── instance.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── operation.ts │ │ │ ├── public.ts │ │ │ ├── region.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ │ └── zhcn │ │ │ ├── about.ts │ │ │ ├── common.ts │ │ │ ├── incident.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── maintenance.ts │ │ │ ├── menu.ts │ │ │ ├── services.ts │ │ │ ├── settings.ts │ │ │ └── ssl.ts │ ├── types │ │ ├── docker.types.ts │ │ ├── jspdf-autotable.d.ts │ │ ├── operational.types.ts │ │ ├── regional.types.ts │ │ ├── server.types.ts │ │ ├── service.types.ts │ │ ├── ssl.types.ts │ │ └── statusPageComponents.types.ts │ ├── utils │ │ └── copyUtils.ts │ └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── docker-compose.yml ├── docker ├── Dockerfile.frontend ├── distributed-regional-monitoring.yml ├── docker-compose-dev.yml ├── docker-compose.prod.yml └── server-docker-agent.yml ├── docs ├── CONTRIBUTING_ja.md ├── CONTRIBUTING_km.md ├── DEVELOPMENT_ROADMAP.md ├── DEVELOPMENT_ROADMAP_ja.md ├── README_ja.md ├── README_km.md └── README_zhcn.md ├── scripts ├── entrypoint.sh ├── install-regional-agent.sh ├── server-agent.sh ├── server-docker-agent.sh └── setup.sh └── server ├── pb_migrations ├── 1746786764_updated_services.js ├── 1746786820_updated_services.js ├── 1746786864_updated_services.js ├── 1746787173_updated_services.js ├── 1746787500_updated_services.js ├── 1746787517_updated_services.js ├── 1746787595_updated_uptime_data.js ├── 1746787681_updated_alert_configurations.js ├── 1748029497_updated__superusers.js ├── 1750241370_updated_ping_data.js ├── 1750241407_updated_regional_service.js ├── 1750414552_deleted_server_processes.js ├── 1750414561_deleted_server_notifications.js ├── 1750502263_updated_regional_service.js ├── 1752916282_updated_webhook_configs.js ├── 1752921327_updated_alert_configurations.js ├── 1752921397_updated_alert_configurations.js ├── 1753085447_updated_server_metrics.js ├── 1753102275_updated_server_metrics.js ├── 1753102296_updated_server_metrics.js ├── 1755250344_updated_alert_configurations.js ├── 1756994399_updated__superusers.js ├── 1757161629_updated_alert_configurations.js ├── 1757233868_updated_data_settings.js ├── 1757233934_updated_incidents.js ├── 1757233957_updated_maintenance.js ├── 1757233963_updated_incidents.js ├── 1757233983_updated_operational_page.js ├── 1757234002_updated_ping_data.js ├── 1757234055_updated_alert_configurations.js ├── 1757769533_updated_alert_configurations.js ├── 1760189594_deleted_webhook.js ├── 1760190053_updated_data_settings.js ├── 1760190072_updated_incidents.js ├── 1760190080_updated_maintenance.js ├── 1760190087_updated_operational_page.js ├── 1760190091_updated_ping_data.js └── pb_schema.json ├── pocketbase └── service-operation ├── .env ├── .env.example ├── README.md ├── config └── config.go ├── data-retention ├── handler.go ├── scheduler.go ├── service.go └── types.go ├── go.mod ├── go.sum ├── handlers ├── health_handler.go ├── metrics_handler.go ├── operation.go ├── operation_handler.go ├── quick_operation_handler.go └── utils.go ├── main.go ├── monitoring ├── checker.go ├── metrics_saver.go ├── monitor.go ├── notification_monitor.go ├── regional_monitor.go ├── service.go ├── ssl_monitor.go └── utils.go ├── notification ├── discord.go ├── email.go ├── google_chat.go ├── gotify.go ├── integration.go ├── manager.go ├── notifiarr.go ├── ntfy.go ├── pushover.go ├── server_manager.go ├── shared.go ├── signal.go ├── slack.go ├── ssl_manager.go ├── telegram.go ├── types.go ├── uptime_manager.go └── webhook.go ├── operations ├── dns.go ├── http.go ├── ping.go ├── ssl_extractor.go ├── ssl_operation.go ├── ssl_utils.go ├── ssl_validator.go └── tcp.go ├── ping ├── icmp.go └── types.go ├── pocketbase ├── client.go ├── metrics.go ├── regional.go ├── services.go ├── ssl.go ├── types.go └── utils.go ├── server-monitoring ├── debug.go ├── debug_helper.go ├── integration.go ├── monitor.go ├── notification_service.go ├── pocketbase_client.go ├── threshold_monitor.go └── types.go ├── shared └── savers │ ├── dns_saver.go │ ├── metrics_saver.go │ ├── ping_saver.go │ ├── tcp_saver.go │ ├── uptime_saver.go │ └── utils.go ├── ssl-monitoring ├── monitor.go ├── notification_service.go ├── ssl_client.go ├── status_tracker.go └── types.go ├── types ├── operation.go └── ssl.go └── uptime-monitoring ├── client.go ├── monitor.go ├── notification_service.go ├── status_tracker.go └── types.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/security_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/translation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/ISSUE_TEMPLATE/translation_request.yml -------------------------------------------------------------------------------- /.github/workflows/build-frontend-image.yml.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.github/workflows/build-frontend-image.yml.dev -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/SECURITY.md -------------------------------------------------------------------------------- /application/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | dist 4 | .cache 5 | *.log 6 | 7 | -------------------------------------------------------------------------------- /application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/.gitignore -------------------------------------------------------------------------------- /application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/Dockerfile -------------------------------------------------------------------------------- /application/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/bun.lockb -------------------------------------------------------------------------------- /application/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/components.json -------------------------------------------------------------------------------- /application/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/eslint.config.js -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/index.html -------------------------------------------------------------------------------- /application/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/package-lock.json -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/package.json -------------------------------------------------------------------------------- /application/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/postcss.config.js -------------------------------------------------------------------------------- /application/public/checkcle_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/checkcle_logo.svg -------------------------------------------------------------------------------- /application/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/favicon.ico -------------------------------------------------------------------------------- /application/public/favicon_sidebar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/favicon_sidebar.ico -------------------------------------------------------------------------------- /application/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/placeholder.svg -------------------------------------------------------------------------------- /application/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/robots.txt -------------------------------------------------------------------------------- /application/public/upload/data/pb_schema_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/data/pb_schema_latest.json -------------------------------------------------------------------------------- /application/public/upload/notification/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/discord.png -------------------------------------------------------------------------------- /application/public/upload/notification/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/email.png -------------------------------------------------------------------------------- /application/public/upload/notification/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/google.png -------------------------------------------------------------------------------- /application/public/upload/notification/gotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/gotify.png -------------------------------------------------------------------------------- /application/public/upload/notification/notifiarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/notifiarr.png -------------------------------------------------------------------------------- /application/public/upload/notification/ntfy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/ntfy.png -------------------------------------------------------------------------------- /application/public/upload/notification/pushover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/pushover.png -------------------------------------------------------------------------------- /application/public/upload/notification/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/signal.png -------------------------------------------------------------------------------- /application/public/upload/notification/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/slack.png -------------------------------------------------------------------------------- /application/public/upload/notification/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/telegram.png -------------------------------------------------------------------------------- /application/public/upload/notification/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/notification/webhook.png -------------------------------------------------------------------------------- /application/public/upload/os/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/arch.png -------------------------------------------------------------------------------- /application/public/upload/os/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/centos.png -------------------------------------------------------------------------------- /application/public/upload/os/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/debian.png -------------------------------------------------------------------------------- /application/public/upload/os/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/linux.png -------------------------------------------------------------------------------- /application/public/upload/os/rhel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/rhel.png -------------------------------------------------------------------------------- /application/public/upload/os/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/ubuntu.png -------------------------------------------------------------------------------- /application/public/upload/os/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/os/windows.png -------------------------------------------------------------------------------- /application/public/upload/profile/profile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile1.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile2.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile3.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile4.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile5.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile6.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile7.svg -------------------------------------------------------------------------------- /application/public/upload/profile/profile8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/public/upload/profile/profile8.svg -------------------------------------------------------------------------------- /application/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/App.css -------------------------------------------------------------------------------- /application/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/App.tsx -------------------------------------------------------------------------------- /application/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/index.ts -------------------------------------------------------------------------------- /application/src/api/realtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/realtime/index.ts -------------------------------------------------------------------------------- /application/src/api/settings/actions/getSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/actions/getSettings.ts -------------------------------------------------------------------------------- /application/src/api/settings/actions/sendTestEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/actions/sendTestEmail.ts -------------------------------------------------------------------------------- /application/src/api/settings/actions/testEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/actions/testEmail.ts -------------------------------------------------------------------------------- /application/src/api/settings/actions/testEmailConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/actions/testEmailConnection.ts -------------------------------------------------------------------------------- /application/src/api/settings/actions/updateSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/actions/updateSettings.ts -------------------------------------------------------------------------------- /application/src/api/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/index.ts -------------------------------------------------------------------------------- /application/src/api/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/types.ts -------------------------------------------------------------------------------- /application/src/api/settings/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/api/settings/utils.ts -------------------------------------------------------------------------------- /application/src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /application/src/components/auth/ForgotPasswordDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/auth/ForgotPasswordDialog.tsx -------------------------------------------------------------------------------- /application/src/components/auth/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/auth/ProtectedRoute.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/DashboardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/DashboardContent.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/Header.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/ServiceFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/ServiceFilters.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/ServicesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/ServicesTable.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/Sidebar.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/StatusCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/StatusCards.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/MainNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/MainNavigation.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/MenuItem.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/SettingsPanel.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/SidebarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/SidebarHeader.tsx -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/index.ts -------------------------------------------------------------------------------- /application/src/components/dashboard/sidebar/navigationData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/dashboard/sidebar/navigationData.ts -------------------------------------------------------------------------------- /application/src/components/docker/DockerContainersTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/DockerContainersTable.tsx -------------------------------------------------------------------------------- /application/src/components/docker/DockerMetricsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/DockerMetricsDialog.tsx -------------------------------------------------------------------------------- /application/src/components/docker/DockerStatsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/DockerStatsCards.tsx -------------------------------------------------------------------------------- /application/src/components/docker/DockerStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/DockerStatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/DockerEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/DockerEmptyState.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/DockerRowActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/DockerRowActions.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/DockerTableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/DockerTableHeader.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/DockerTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/DockerTableRow.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/DockerTableSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/DockerTableSearch.tsx -------------------------------------------------------------------------------- /application/src/components/docker/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/docker/table/index.ts -------------------------------------------------------------------------------- /application/src/components/operational-page/ComponentsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/ComponentsSelector.tsx -------------------------------------------------------------------------------- /application/src/components/operational-page/CreateOperationalPageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/CreateOperationalPageDialog.tsx -------------------------------------------------------------------------------- /application/src/components/operational-page/EditOperationalPageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/EditOperationalPageDialog.tsx -------------------------------------------------------------------------------- /application/src/components/operational-page/OperationalPageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/OperationalPageCard.tsx -------------------------------------------------------------------------------- /application/src/components/operational-page/OperationalPageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/OperationalPageContent.tsx -------------------------------------------------------------------------------- /application/src/components/operational-page/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/operational-page/StatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/profile/ChangePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/profile/ChangePasswordForm.tsx -------------------------------------------------------------------------------- /application/src/components/profile/ProfileContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/profile/ProfileContent.tsx -------------------------------------------------------------------------------- /application/src/components/profile/UpdateProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/profile/UpdateProfileForm.tsx -------------------------------------------------------------------------------- /application/src/components/profile/UserProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/profile/UserProfileDetails.tsx -------------------------------------------------------------------------------- /application/src/components/public/ComponentsStatusSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/ComponentsStatusSection.tsx -------------------------------------------------------------------------------- /application/src/components/public/CurrentStatusSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/CurrentStatusSection.tsx -------------------------------------------------------------------------------- /application/src/components/public/OverallUptimeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/OverallUptimeSection.tsx -------------------------------------------------------------------------------- /application/src/components/public/PublicStatusPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/PublicStatusPage.tsx -------------------------------------------------------------------------------- /application/src/components/public/PublicStatusPageFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/PublicStatusPageFooter.tsx -------------------------------------------------------------------------------- /application/src/components/public/StatusPageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/StatusPageHeader.tsx -------------------------------------------------------------------------------- /application/src/components/public/UptimeHistoryRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/UptimeHistoryRenderer.tsx -------------------------------------------------------------------------------- /application/src/components/public/hooks/usePublicStatusPageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/public/hooks/usePublicStatusPageData.ts -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/AddRegionalAgentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/AddRegionalAgentDialog.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/RegionalAgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/RegionalAgentCard.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/RegionalAgentConfigForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/RegionalAgentConfigForm.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/RegionalManualTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/RegionalManualTab.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/RegionalMonitoringContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/RegionalMonitoringContent.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/RegionalOneClickTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/RegionalOneClickTab.tsx -------------------------------------------------------------------------------- /application/src/components/regional-monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/regional-monitoring/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/IncidentManagementTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/IncidentManagementTab.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/ScheduleIncidentContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/ScheduleIncidentContent.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/ScheduledMaintenanceTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/ScheduledMaintenanceTab.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/common/OverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/common/OverviewCard.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/hooks/useIncidentData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/hooks/useIncidentData.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/hooks/useMaintenanceData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/hooks/useMaintenanceData.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/ErrorState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/ErrorState.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/HeaderActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/HeaderActions.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/IncidentManagementContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/IncidentManagementContainer.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/OverviewCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/OverviewCards.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/TabContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/TabContent.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident-management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident-management/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/CreateIncidentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/CreateIncidentDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/EditIncidentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/EditIncidentDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/EmptyIncidentState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/EmptyIncidentState.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/IncidentActionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/IncidentActionsMenu.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/IncidentStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/IncidentStatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/IncidentStatusDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/IncidentStatusDropdown.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/IncidentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/IncidentTable.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailContent.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailFooter.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailHeader.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/IncidentDetailSections.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/components/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/components/CloseButton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/components/DownloadPdfButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/components/DownloadPdfButton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/components/PrintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/components/PrintButton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/components/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/hooks/useDownloadIncidentPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/hooks/useDownloadIncidentPdf.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/hooks/usePrintIncident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/hooks/usePrintIncident.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/AssignmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/AssignmentSection.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/BasicInfoSection.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/ResolutionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/ResolutionSection.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/TimelineSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/TimelineSection.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/detail-dialog/sections/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/detail-dialog/sections/utils.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/form/IncidentAffectedFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/form/IncidentAffectedFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/form/IncidentBasicFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/form/IncidentBasicFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/form/IncidentConfigFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/form/IncidentConfigFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/form/IncidentDetailsFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/form/IncidentDetailsFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/form/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/hooks/useIncidentEditForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/hooks/useIncidentEditForm.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/hooks/useIncidentForm.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/table/IncidentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/table/IncidentTable.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/table/IncidentTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/table/IncidentTableRow.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/table/IncidentTableSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/table/IncidentTableSkeleton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/table/IncidentTableUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/table/IncidentTableUtils.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/incident/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/incident/table/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/CreateMaintenanceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/CreateMaintenanceDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/EmptyMaintenanceState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/EmptyMaintenanceState.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/MaintenanceActionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/MaintenanceActionsMenu.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/MaintenanceStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/MaintenanceStatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/MaintenanceStatusChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/MaintenanceStatusChecker.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/MaintenanceStatusDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/MaintenanceStatusDropdown.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/MaintenanceTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/MaintenanceTable.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/MaintenanceDetailContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/MaintenanceDetailContent.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/MaintenanceDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/MaintenanceDetailDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/components/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/components/CloseButton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/components/PrintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/components/PrintButton.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/components/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/detail-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/detail-dialog/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/edit-dialog/EditMaintenanceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/edit-dialog/EditMaintenanceDialog.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/edit-dialog/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './EditMaintenanceDialog'; 3 | -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/MaintenanceAffectedFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/MaintenanceAffectedFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/MaintenanceBasicFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/MaintenanceBasicFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/MaintenanceConfigFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/MaintenanceConfigFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/MaintenanceTimeFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/MaintenanceTimeFields.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/config/AssignedUsersField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/config/AssignedUsersField.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/config/ImpactLevelField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/config/ImpactLevelField.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/config/PriorityField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/config/PriorityField.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/config/StatusField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/config/StatusField.tsx -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/config/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/form/index.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/hooks/useMaintenanceEditForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/hooks/useMaintenanceEditForm.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/hooks/useMaintenanceForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/hooks/useMaintenanceForm.ts -------------------------------------------------------------------------------- /application/src/components/schedule-incident/maintenance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/schedule-incident/maintenance/index.ts -------------------------------------------------------------------------------- /application/src/components/servers/AddServerAgentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/AddServerAgentDialog.tsx -------------------------------------------------------------------------------- /application/src/components/servers/DockerOneClickTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/DockerOneClickTab.tsx -------------------------------------------------------------------------------- /application/src/components/servers/EditServerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/EditServerDialog.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ManualInstallTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ManualInstallTab.tsx -------------------------------------------------------------------------------- /application/src/components/servers/OSSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/OSSelector.tsx -------------------------------------------------------------------------------- /application/src/components/servers/OSTypeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/OSTypeIcon.tsx -------------------------------------------------------------------------------- /application/src/components/servers/OneClickInstallTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/OneClickInstallTab.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerAgentConfigForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerAgentConfigForm.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerHistoryCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerHistoryCharts.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerMetricsCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerMetricsCharts.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerMetricsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerMetricsOverview.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerStatsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerStatsCards.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerStatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerSystemInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerSystemInfoCard.tsx -------------------------------------------------------------------------------- /application/src/components/servers/ServerTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/ServerTable.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/CPUChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/CPUChart.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/DiskChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/DiskChart.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/MemoryChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/MemoryChart.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/NetworkChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/NetworkChart.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/TimeRangeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/TimeRangeSelector.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/dataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/dataUtils.ts -------------------------------------------------------------------------------- /application/src/components/servers/charts/hooks/useServerHistoryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/hooks/useServerHistoryData.ts -------------------------------------------------------------------------------- /application/src/components/servers/charts/tooltips/DetailedTooltipContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/tooltips/DetailedTooltipContent.tsx -------------------------------------------------------------------------------- /application/src/components/servers/charts/tooltips/NetworkTooltipContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/servers/charts/tooltips/NetworkTooltipContent.tsx -------------------------------------------------------------------------------- /application/src/components/services/AddServiceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/AddServiceDialog.tsx -------------------------------------------------------------------------------- /application/src/components/services/DateRangeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/DateRangeFilter.tsx -------------------------------------------------------------------------------- /application/src/components/services/HeatmapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/HeatmapChart.tsx -------------------------------------------------------------------------------- /application/src/components/services/HeatmapDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/HeatmapDialog.tsx -------------------------------------------------------------------------------- /application/src/components/services/LastCheckedTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/LastCheckedTime.tsx -------------------------------------------------------------------------------- /application/src/components/services/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/LoadingState.tsx -------------------------------------------------------------------------------- /application/src/components/services/RegionalAgentFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/RegionalAgentFilter.tsx -------------------------------------------------------------------------------- /application/src/components/services/ResponseTimeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ResponseTimeChart.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDeleteDialog.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContainer/index.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceDetailContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceDetailContent.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceEditDialog.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceForm.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceHeader.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceHistoryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceHistoryDialog.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceMonitoringButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceMonitoringButton.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceNotFound.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceRow.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceStatsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceStatsCards.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServiceUptimeHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServiceUptimeHistory.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServicesPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServicesPagination.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServicesTableContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServicesTableContainer.tsx -------------------------------------------------------------------------------- /application/src/components/services/ServicesTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/ServicesTableView.tsx -------------------------------------------------------------------------------- /application/src/components/services/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/StatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/services/UptimeBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/UptimeBar.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceBasicFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceBasicFields.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceConfigFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceConfigFields.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceForm.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceFormActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceFormActions.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceNotificationFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceNotificationFields.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceRegionalFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceRegionalFields.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceTypeField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceTypeField.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/ServiceUrlField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/ServiceUrlField.tsx -------------------------------------------------------------------------------- /application/src/components/services/add-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/index.ts -------------------------------------------------------------------------------- /application/src/components/services/add-service/serviceFormUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/serviceFormUtils.ts -------------------------------------------------------------------------------- /application/src/components/services/add-service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/add-service/types.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/useConsolidatedUptimeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/useConsolidatedUptimeData.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/useDefaultUptimeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/useDefaultUptimeData.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/useDialogState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/useDialogState.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/useServiceActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/useServiceActions.ts -------------------------------------------------------------------------------- /application/src/components/services/hooks/useUptimeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/hooks/useUptimeData.ts -------------------------------------------------------------------------------- /application/src/components/services/incident-history/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/EmptyState.tsx -------------------------------------------------------------------------------- /application/src/components/services/incident-history/IncidentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/IncidentTable.tsx -------------------------------------------------------------------------------- /application/src/components/services/incident-history/LatestChecksTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/LatestChecksTable.tsx -------------------------------------------------------------------------------- /application/src/components/services/incident-history/StatusFilterTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/StatusFilterTabs.tsx -------------------------------------------------------------------------------- /application/src/components/services/incident-history/TablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/TablePagination.tsx -------------------------------------------------------------------------------- /application/src/components/services/incident-history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/index.ts -------------------------------------------------------------------------------- /application/src/components/services/incident-history/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/types.ts -------------------------------------------------------------------------------- /application/src/components/services/incident-history/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/incident-history/utils.tsx -------------------------------------------------------------------------------- /application/src/components/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/index.ts -------------------------------------------------------------------------------- /application/src/components/services/service-row/ServiceRowActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/service-row/ServiceRowActions.tsx -------------------------------------------------------------------------------- /application/src/components/services/service-row/ServiceRowHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/service-row/ServiceRowHeader.tsx -------------------------------------------------------------------------------- /application/src/components/services/service-row/ServiceRowResponseTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/service-row/ServiceRowResponseTime.tsx -------------------------------------------------------------------------------- /application/src/components/services/service-row/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/service-row/index.ts -------------------------------------------------------------------------------- /application/src/components/services/uptime/UptimeErrorState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/uptime/UptimeErrorState.tsx -------------------------------------------------------------------------------- /application/src/components/services/uptime/UptimeLoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/uptime/UptimeLoadingState.tsx -------------------------------------------------------------------------------- /application/src/components/services/uptime/UptimeStatusItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/uptime/UptimeStatusItem.tsx -------------------------------------------------------------------------------- /application/src/components/services/uptime/UptimeSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/uptime/UptimeSummary.tsx -------------------------------------------------------------------------------- /application/src/components/services/uptime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/services/uptime/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/GeneralSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/GeneralSettings.tsx -------------------------------------------------------------------------------- /application/src/components/settings/about-system/AboutSystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/about-system/AboutSystem.tsx -------------------------------------------------------------------------------- /application/src/components/settings/about-system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/about-system/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/AlertsTemplates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/AlertsTemplates.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/TemplateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/TemplateDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/TemplateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/TemplateList.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/PlaceholdersTabContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/PlaceholdersTabContent.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/ServerTemplateFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/ServerTemplateFields.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/ServerThresholdFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/ServerThresholdFields.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/ServiceTemplateFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/ServiceTemplateFields.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/SslTemplateFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/SslTemplateFields.tsx -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/form/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/hooks/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './useTemplateForm'; -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/hooks/useTemplateForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/hooks/useTemplateForm.ts -------------------------------------------------------------------------------- /application/src/components/settings/alerts-templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/alerts-templates/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/data-retention/DataRetentionSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/data-retention/DataRetentionSettings.tsx -------------------------------------------------------------------------------- /application/src/components/settings/data-retention/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/data-retention/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/general/GeneralSettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/general/GeneralSettingsPanel.tsx -------------------------------------------------------------------------------- /application/src/components/settings/general/MailSettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/general/MailSettingsTab.tsx -------------------------------------------------------------------------------- /application/src/components/settings/general/SystemSettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/general/SystemSettingsTab.tsx -------------------------------------------------------------------------------- /application/src/components/settings/general/TestEmailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/general/TestEmailDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/general/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/general/types.ts -------------------------------------------------------------------------------- /application/src/components/settings/notification-settings/NotificationChannelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/notification-settings/NotificationChannelDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/notification-settings/NotificationChannelList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/notification-settings/NotificationChannelList.tsx -------------------------------------------------------------------------------- /application/src/components/settings/notification-settings/NotificationSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/notification-settings/NotificationSettings.tsx -------------------------------------------------------------------------------- /application/src/components/settings/notification-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/notification-settings/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/AddUserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/AddUserDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/DeleteUserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/DeleteUserDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/EditUserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/EditUserDialog.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/UserManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/UserManagement.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/UserTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/UserTable.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/avatarOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/avatarOptions.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/AddUserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/AddUserForm.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/UserProfilePictureField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/UserProfilePictureField.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/UserRoleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/UserRoleField.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/UserTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/UserTextField.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/UserToggleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/UserToggleField.tsx -------------------------------------------------------------------------------- /application/src/components/settings/user-management/form-fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/form-fields/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/useUserDialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/useUserDialogs.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/useUserForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/useUserForm.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/useUserManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/useUserManagement.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/useUserOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/useUserOperations.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/hooks/useUsersList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/hooks/useUsersList.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/index.ts -------------------------------------------------------------------------------- /application/src/components/settings/user-management/userForms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/settings/user-management/userForms.ts -------------------------------------------------------------------------------- /application/src/components/ssl-domain/AddSSLCertificateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/AddSSLCertificateForm.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/EditSSLCertificateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/EditSSLCertificateForm.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLCertificateActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLCertificateActions.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLCertificateDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLCertificateDetailDialog.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLCertificateStatusCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLCertificateStatusCards.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLCertificatesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLCertificatesTable.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLDomainContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLDomainContent.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLPagination.tsx -------------------------------------------------------------------------------- /application/src/components/ssl-domain/SSLStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ssl-domain/SSLStatusBadge.tsx -------------------------------------------------------------------------------- /application/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /application/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /application/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /application/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /application/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /application/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /application/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /application/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/button.tsx -------------------------------------------------------------------------------- /application/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /application/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/card.tsx -------------------------------------------------------------------------------- /application/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /application/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /application/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /application/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /application/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/command.tsx -------------------------------------------------------------------------------- /application/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /application/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /application/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /application/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /application/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/form.tsx -------------------------------------------------------------------------------- /application/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /application/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /application/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/input.tsx -------------------------------------------------------------------------------- /application/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/label.tsx -------------------------------------------------------------------------------- /application/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /application/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /application/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /application/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /application/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /application/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /application/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /application/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /application/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/select.tsx -------------------------------------------------------------------------------- /application/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /application/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /application/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /application/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /application/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /application/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /application/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /application/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/table.tsx -------------------------------------------------------------------------------- /application/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /application/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /application/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /application/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /application/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /application/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /application/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /application/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /application/src/contexts/LanguageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/contexts/LanguageContext.tsx -------------------------------------------------------------------------------- /application/src/contexts/SidebarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/contexts/SidebarContext.tsx -------------------------------------------------------------------------------- /application/src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /application/src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /application/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /application/src/hooks/useOperationalPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/useOperationalPage.ts -------------------------------------------------------------------------------- /application/src/hooks/useSSLPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/useSSLPagination.ts -------------------------------------------------------------------------------- /application/src/hooks/useServicesPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/useServicesPagination.ts -------------------------------------------------------------------------------- /application/src/hooks/useStatusPageComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/useStatusPageComponents.ts -------------------------------------------------------------------------------- /application/src/hooks/useSystemSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/hooks/useSystemSettings.tsx -------------------------------------------------------------------------------- /application/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/index.css -------------------------------------------------------------------------------- /application/src/lib/pocketbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/lib/pocketbase.ts -------------------------------------------------------------------------------- /application/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/lib/utils.ts -------------------------------------------------------------------------------- /application/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/main.tsx -------------------------------------------------------------------------------- /application/src/pages/ContainerMonitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/ContainerMonitoring.tsx -------------------------------------------------------------------------------- /application/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /application/src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/Index.tsx -------------------------------------------------------------------------------- /application/src/pages/InstanceMonitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/InstanceMonitoring.tsx -------------------------------------------------------------------------------- /application/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/Login.tsx -------------------------------------------------------------------------------- /application/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /application/src/pages/OperationalPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/OperationalPage.tsx -------------------------------------------------------------------------------- /application/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/Profile.tsx -------------------------------------------------------------------------------- /application/src/pages/PublicStatusPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/PublicStatusPage.tsx -------------------------------------------------------------------------------- /application/src/pages/RegionalMonitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/RegionalMonitoring.tsx -------------------------------------------------------------------------------- /application/src/pages/ScheduleIncident.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/ScheduleIncident.tsx -------------------------------------------------------------------------------- /application/src/pages/ServerDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/ServerDetail.tsx -------------------------------------------------------------------------------- /application/src/pages/ServiceDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/ServiceDetail.tsx -------------------------------------------------------------------------------- /application/src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/Settings.tsx -------------------------------------------------------------------------------- /application/src/pages/SslDomain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/pages/SslDomain.tsx -------------------------------------------------------------------------------- /application/src/services/alertConfigService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/alertConfigService.ts -------------------------------------------------------------------------------- /application/src/services/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/authService.ts -------------------------------------------------------------------------------- /application/src/services/dataRetentionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/dataRetentionService.ts -------------------------------------------------------------------------------- /application/src/services/dockerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/dockerService.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentCache.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentFetch.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentOperations.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentPdfService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentPdfService.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentService.ts -------------------------------------------------------------------------------- /application/src/services/incident/incidentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/incidentUtils.ts -------------------------------------------------------------------------------- /application/src/services/incident/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/index.ts -------------------------------------------------------------------------------- /application/src/services/incident/pdf/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/pdf/generator.ts -------------------------------------------------------------------------------- /application/src/services/incident/pdf/headerFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/pdf/headerFooter.ts -------------------------------------------------------------------------------- /application/src/services/incident/pdf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/pdf/index.ts -------------------------------------------------------------------------------- /application/src/services/incident/pdf/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/pdf/sections.ts -------------------------------------------------------------------------------- /application/src/services/incident/pdf/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/pdf/utils.ts -------------------------------------------------------------------------------- /application/src/services/incident/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incident/types.ts -------------------------------------------------------------------------------- /application/src/services/incidentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/incidentService.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/api/index.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/api/maintenanceCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/api/maintenanceCache.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/api/maintenanceFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/api/maintenanceFetch.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/api/maintenanceOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/api/maintenanceOperations.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/api/maintenanceValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/api/maintenanceValidation.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/index.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/maintenanceNotificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/maintenanceNotificationService.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/maintenanceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/maintenanceService.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/maintenanceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/maintenanceUtils.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/pdf/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/pdf/generator.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/pdf/headerFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/pdf/headerFooter.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/pdf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/pdf/index.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/pdf/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/pdf/sections.ts -------------------------------------------------------------------------------- /application/src/services/maintenance/pdf/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenance/pdf/utils.ts -------------------------------------------------------------------------------- /application/src/services/maintenanceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/maintenanceService.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/handlers/serviceStatusHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/handlers/serviceStatusHandlers.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/httpChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/httpChecker.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/index.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/monitoringIntervals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/monitoringIntervals.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/service-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/service-status/index.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/service-status/pauseMonitoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/service-status/pauseMonitoring.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/service-status/resumeMonitoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/service-status/resumeMonitoring.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/service-status/startAllServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/service-status/startAllServices.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/service-status/startMonitoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/service-status/startMonitoring.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/utils/httpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/utils/httpUtils.ts -------------------------------------------------------------------------------- /application/src/services/monitoring/utils/notificationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/monitoring/utils/notificationUtils.ts -------------------------------------------------------------------------------- /application/src/services/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/notification/index.ts -------------------------------------------------------------------------------- /application/src/services/notification/signalService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/notification/signalService.ts -------------------------------------------------------------------------------- /application/src/services/notification/telegramService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/notification/telegramService.ts -------------------------------------------------------------------------------- /application/src/services/notification/templateProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/notification/templateProcessor.ts -------------------------------------------------------------------------------- /application/src/services/notification/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/notification/types.ts -------------------------------------------------------------------------------- /application/src/services/operationalPageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/operationalPageService.ts -------------------------------------------------------------------------------- /application/src/services/regionalService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/regionalService.ts -------------------------------------------------------------------------------- /application/src/services/serverNotificationTemplateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/serverNotificationTemplateService.ts -------------------------------------------------------------------------------- /application/src/services/serverService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/serverService.ts -------------------------------------------------------------------------------- /application/src/services/serverThresholdService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/serverThresholdService.ts -------------------------------------------------------------------------------- /application/src/services/serviceNotificationTemplateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/serviceNotificationTemplateService.ts -------------------------------------------------------------------------------- /application/src/services/serviceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/serviceService.ts -------------------------------------------------------------------------------- /application/src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/settingsService.ts -------------------------------------------------------------------------------- /application/src/services/ssl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/index.ts -------------------------------------------------------------------------------- /application/src/services/ssl/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/notification/index.ts -------------------------------------------------------------------------------- /application/src/services/ssl/notification/sslCheckNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/notification/sslCheckNotifier.ts -------------------------------------------------------------------------------- /application/src/services/ssl/notification/sslNotificationSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/notification/sslNotificationSender.ts -------------------------------------------------------------------------------- /application/src/services/ssl/notification/sslScheduleUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/notification/sslScheduleUtils.ts -------------------------------------------------------------------------------- /application/src/services/ssl/sslCertificateOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/sslCertificateOperations.ts -------------------------------------------------------------------------------- /application/src/services/ssl/sslCheckerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/sslCheckerService.ts -------------------------------------------------------------------------------- /application/src/services/ssl/sslCheckerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/sslCheckerUtils.ts -------------------------------------------------------------------------------- /application/src/services/ssl/sslFetchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/sslFetchService.ts -------------------------------------------------------------------------------- /application/src/services/ssl/sslStatusUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/sslStatusUtils.ts -------------------------------------------------------------------------------- /application/src/services/ssl/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/types.ts -------------------------------------------------------------------------------- /application/src/services/ssl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/ssl/utils.ts -------------------------------------------------------------------------------- /application/src/services/sslCertificateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/sslCertificateService.ts -------------------------------------------------------------------------------- /application/src/services/sslCheckerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/sslCheckerService.ts -------------------------------------------------------------------------------- /application/src/services/sslNotificationTemplateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/sslNotificationTemplateService.ts -------------------------------------------------------------------------------- /application/src/services/statusPageComponentsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/statusPageComponentsService.ts -------------------------------------------------------------------------------- /application/src/services/templateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/templateService.ts -------------------------------------------------------------------------------- /application/src/services/types/maintenance.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/types/maintenance.types.ts -------------------------------------------------------------------------------- /application/src/services/types/serverService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/types/serverService.ts -------------------------------------------------------------------------------- /application/src/services/uptimeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/uptimeService.ts -------------------------------------------------------------------------------- /application/src/services/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/userService.ts -------------------------------------------------------------------------------- /application/src/services/webhookService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/services/webhookService.ts -------------------------------------------------------------------------------- /application/src/translations/de/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/about.ts -------------------------------------------------------------------------------- /application/src/translations/de/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/common.ts -------------------------------------------------------------------------------- /application/src/translations/de/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/incident.ts -------------------------------------------------------------------------------- /application/src/translations/de/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/index.ts -------------------------------------------------------------------------------- /application/src/translations/de/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/login.ts -------------------------------------------------------------------------------- /application/src/translations/de/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/de/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/menu.ts -------------------------------------------------------------------------------- /application/src/translations/de/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/services.ts -------------------------------------------------------------------------------- /application/src/translations/de/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/settings.ts -------------------------------------------------------------------------------- /application/src/translations/de/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/de/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/en/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/about.ts -------------------------------------------------------------------------------- /application/src/translations/en/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/common.ts -------------------------------------------------------------------------------- /application/src/translations/en/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/docker.ts -------------------------------------------------------------------------------- /application/src/translations/en/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/incident.ts -------------------------------------------------------------------------------- /application/src/translations/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/index.ts -------------------------------------------------------------------------------- /application/src/translations/en/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/instance.ts -------------------------------------------------------------------------------- /application/src/translations/en/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/login.ts -------------------------------------------------------------------------------- /application/src/translations/en/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/en/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/menu.ts -------------------------------------------------------------------------------- /application/src/translations/en/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/operation.ts -------------------------------------------------------------------------------- /application/src/translations/en/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/public.ts -------------------------------------------------------------------------------- /application/src/translations/en/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/region.ts -------------------------------------------------------------------------------- /application/src/translations/en/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/services.ts -------------------------------------------------------------------------------- /application/src/translations/en/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/settings.ts -------------------------------------------------------------------------------- /application/src/translations/en/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/en/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/index.ts -------------------------------------------------------------------------------- /application/src/translations/ja/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/about.ts -------------------------------------------------------------------------------- /application/src/translations/ja/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/common.ts -------------------------------------------------------------------------------- /application/src/translations/ja/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/incident.ts -------------------------------------------------------------------------------- /application/src/translations/ja/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/index.ts -------------------------------------------------------------------------------- /application/src/translations/ja/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/login.ts -------------------------------------------------------------------------------- /application/src/translations/ja/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/ja/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/menu.ts -------------------------------------------------------------------------------- /application/src/translations/ja/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/services.ts -------------------------------------------------------------------------------- /application/src/translations/ja/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/settings.ts -------------------------------------------------------------------------------- /application/src/translations/ja/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ja/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/km/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/about.ts -------------------------------------------------------------------------------- /application/src/translations/km/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/common.ts -------------------------------------------------------------------------------- /application/src/translations/km/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/docker.ts -------------------------------------------------------------------------------- /application/src/translations/km/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/incident.ts -------------------------------------------------------------------------------- /application/src/translations/km/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/index.ts -------------------------------------------------------------------------------- /application/src/translations/km/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/instance.ts -------------------------------------------------------------------------------- /application/src/translations/km/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/login.ts -------------------------------------------------------------------------------- /application/src/translations/km/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/km/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/menu.ts -------------------------------------------------------------------------------- /application/src/translations/km/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/operation.ts -------------------------------------------------------------------------------- /application/src/translations/km/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/public.ts -------------------------------------------------------------------------------- /application/src/translations/km/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/region.ts -------------------------------------------------------------------------------- /application/src/translations/km/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/services.ts -------------------------------------------------------------------------------- /application/src/translations/km/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/settings.ts -------------------------------------------------------------------------------- /application/src/translations/km/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/km/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/ko/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/about.ts -------------------------------------------------------------------------------- /application/src/translations/ko/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/common.ts -------------------------------------------------------------------------------- /application/src/translations/ko/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/incident.ts -------------------------------------------------------------------------------- /application/src/translations/ko/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/index.ts -------------------------------------------------------------------------------- /application/src/translations/ko/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/login.ts -------------------------------------------------------------------------------- /application/src/translations/ko/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/ko/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/menu.ts -------------------------------------------------------------------------------- /application/src/translations/ko/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/services.ts -------------------------------------------------------------------------------- /application/src/translations/ko/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/settings.ts -------------------------------------------------------------------------------- /application/src/translations/ko/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/ko/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/types/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/about.ts -------------------------------------------------------------------------------- /application/src/translations/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/common.ts -------------------------------------------------------------------------------- /application/src/translations/types/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/docker.ts -------------------------------------------------------------------------------- /application/src/translations/types/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/incident.ts -------------------------------------------------------------------------------- /application/src/translations/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/index.ts -------------------------------------------------------------------------------- /application/src/translations/types/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/instance.ts -------------------------------------------------------------------------------- /application/src/translations/types/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/login.ts -------------------------------------------------------------------------------- /application/src/translations/types/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/types/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/menu.ts -------------------------------------------------------------------------------- /application/src/translations/types/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/operation.ts -------------------------------------------------------------------------------- /application/src/translations/types/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/public.ts -------------------------------------------------------------------------------- /application/src/translations/types/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/region.ts -------------------------------------------------------------------------------- /application/src/translations/types/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/services.ts -------------------------------------------------------------------------------- /application/src/translations/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/settings.ts -------------------------------------------------------------------------------- /application/src/translations/types/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/types/ssl.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/about.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/common.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/incident.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/incident.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/index.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/login.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/maintenance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/maintenance.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/menu.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/services.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/settings.ts -------------------------------------------------------------------------------- /application/src/translations/zhcn/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/translations/zhcn/ssl.ts -------------------------------------------------------------------------------- /application/src/types/docker.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/docker.types.ts -------------------------------------------------------------------------------- /application/src/types/jspdf-autotable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/jspdf-autotable.d.ts -------------------------------------------------------------------------------- /application/src/types/operational.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/operational.types.ts -------------------------------------------------------------------------------- /application/src/types/regional.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/regional.types.ts -------------------------------------------------------------------------------- /application/src/types/server.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/server.types.ts -------------------------------------------------------------------------------- /application/src/types/service.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/service.types.ts -------------------------------------------------------------------------------- /application/src/types/ssl.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/ssl.types.ts -------------------------------------------------------------------------------- /application/src/types/statusPageComponents.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/types/statusPageComponents.types.ts -------------------------------------------------------------------------------- /application/src/utils/copyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/src/utils/copyUtils.ts -------------------------------------------------------------------------------- /application/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /application/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/tailwind.config.ts -------------------------------------------------------------------------------- /application/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/tsconfig.app.json -------------------------------------------------------------------------------- /application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/tsconfig.json -------------------------------------------------------------------------------- /application/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/tsconfig.node.json -------------------------------------------------------------------------------- /application/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/application/vite.config.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile.frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker/Dockerfile.frontend -------------------------------------------------------------------------------- /docker/distributed-regional-monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker/distributed-regional-monitoring.yml -------------------------------------------------------------------------------- /docker/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker/server-docker-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docker/server-docker-agent.yml -------------------------------------------------------------------------------- /docs/CONTRIBUTING_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/CONTRIBUTING_ja.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING_km.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/CONTRIBUTING_km.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT_ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/DEVELOPMENT_ROADMAP.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT_ROADMAP_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/DEVELOPMENT_ROADMAP_ja.md -------------------------------------------------------------------------------- /docs/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/README_ja.md -------------------------------------------------------------------------------- /docs/README_km.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/README_km.md -------------------------------------------------------------------------------- /docs/README_zhcn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/docs/README_zhcn.md -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /scripts/install-regional-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/scripts/install-regional-agent.sh -------------------------------------------------------------------------------- /scripts/server-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/scripts/server-agent.sh -------------------------------------------------------------------------------- /scripts/server-docker-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/scripts/server-docker-agent.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /server/pb_migrations/1746786764_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746786764_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746786820_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746786820_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746786864_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746786864_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746787173_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746787173_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746787500_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746787500_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746787517_updated_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746787517_updated_services.js -------------------------------------------------------------------------------- /server/pb_migrations/1746787595_updated_uptime_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746787595_updated_uptime_data.js -------------------------------------------------------------------------------- /server/pb_migrations/1746787681_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1746787681_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1748029497_updated__superusers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1748029497_updated__superusers.js -------------------------------------------------------------------------------- /server/pb_migrations/1750241370_updated_ping_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1750241370_updated_ping_data.js -------------------------------------------------------------------------------- /server/pb_migrations/1750241407_updated_regional_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1750241407_updated_regional_service.js -------------------------------------------------------------------------------- /server/pb_migrations/1750414552_deleted_server_processes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1750414552_deleted_server_processes.js -------------------------------------------------------------------------------- /server/pb_migrations/1750414561_deleted_server_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1750414561_deleted_server_notifications.js -------------------------------------------------------------------------------- /server/pb_migrations/1750502263_updated_regional_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1750502263_updated_regional_service.js -------------------------------------------------------------------------------- /server/pb_migrations/1752916282_updated_webhook_configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1752916282_updated_webhook_configs.js -------------------------------------------------------------------------------- /server/pb_migrations/1752921327_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1752921327_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1752921397_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1752921397_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1753085447_updated_server_metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1753085447_updated_server_metrics.js -------------------------------------------------------------------------------- /server/pb_migrations/1753102275_updated_server_metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1753102275_updated_server_metrics.js -------------------------------------------------------------------------------- /server/pb_migrations/1753102296_updated_server_metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1753102296_updated_server_metrics.js -------------------------------------------------------------------------------- /server/pb_migrations/1755250344_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1755250344_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1756994399_updated__superusers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1756994399_updated__superusers.js -------------------------------------------------------------------------------- /server/pb_migrations/1757161629_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757161629_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1757233868_updated_data_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757233868_updated_data_settings.js -------------------------------------------------------------------------------- /server/pb_migrations/1757233934_updated_incidents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757233934_updated_incidents.js -------------------------------------------------------------------------------- /server/pb_migrations/1757233957_updated_maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757233957_updated_maintenance.js -------------------------------------------------------------------------------- /server/pb_migrations/1757233963_updated_incidents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757233963_updated_incidents.js -------------------------------------------------------------------------------- /server/pb_migrations/1757233983_updated_operational_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757233983_updated_operational_page.js -------------------------------------------------------------------------------- /server/pb_migrations/1757234002_updated_ping_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757234002_updated_ping_data.js -------------------------------------------------------------------------------- /server/pb_migrations/1757234055_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757234055_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1757769533_updated_alert_configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1757769533_updated_alert_configurations.js -------------------------------------------------------------------------------- /server/pb_migrations/1760189594_deleted_webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760189594_deleted_webhook.js -------------------------------------------------------------------------------- /server/pb_migrations/1760190053_updated_data_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760190053_updated_data_settings.js -------------------------------------------------------------------------------- /server/pb_migrations/1760190072_updated_incidents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760190072_updated_incidents.js -------------------------------------------------------------------------------- /server/pb_migrations/1760190080_updated_maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760190080_updated_maintenance.js -------------------------------------------------------------------------------- /server/pb_migrations/1760190087_updated_operational_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760190087_updated_operational_page.js -------------------------------------------------------------------------------- /server/pb_migrations/1760190091_updated_ping_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/1760190091_updated_ping_data.js -------------------------------------------------------------------------------- /server/pb_migrations/pb_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pb_migrations/pb_schema.json -------------------------------------------------------------------------------- /server/pocketbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/pocketbase -------------------------------------------------------------------------------- /server/service-operation/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/.env -------------------------------------------------------------------------------- /server/service-operation/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/.env.example -------------------------------------------------------------------------------- /server/service-operation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/README.md -------------------------------------------------------------------------------- /server/service-operation/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/config/config.go -------------------------------------------------------------------------------- /server/service-operation/data-retention/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/data-retention/handler.go -------------------------------------------------------------------------------- /server/service-operation/data-retention/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/data-retention/scheduler.go -------------------------------------------------------------------------------- /server/service-operation/data-retention/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/data-retention/service.go -------------------------------------------------------------------------------- /server/service-operation/data-retention/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/data-retention/types.go -------------------------------------------------------------------------------- /server/service-operation/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/go.mod -------------------------------------------------------------------------------- /server/service-operation/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/go.sum -------------------------------------------------------------------------------- /server/service-operation/handlers/health_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/health_handler.go -------------------------------------------------------------------------------- /server/service-operation/handlers/metrics_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/metrics_handler.go -------------------------------------------------------------------------------- /server/service-operation/handlers/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/operation.go -------------------------------------------------------------------------------- /server/service-operation/handlers/operation_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/operation_handler.go -------------------------------------------------------------------------------- /server/service-operation/handlers/quick_operation_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/quick_operation_handler.go -------------------------------------------------------------------------------- /server/service-operation/handlers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/handlers/utils.go -------------------------------------------------------------------------------- /server/service-operation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/main.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/checker.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/metrics_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/metrics_saver.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/monitor.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/notification_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/notification_monitor.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/regional_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/regional_monitor.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/service.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/ssl_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/ssl_monitor.go -------------------------------------------------------------------------------- /server/service-operation/monitoring/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/monitoring/utils.go -------------------------------------------------------------------------------- /server/service-operation/notification/discord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/discord.go -------------------------------------------------------------------------------- /server/service-operation/notification/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/email.go -------------------------------------------------------------------------------- /server/service-operation/notification/google_chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/google_chat.go -------------------------------------------------------------------------------- /server/service-operation/notification/gotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/gotify.go -------------------------------------------------------------------------------- /server/service-operation/notification/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/integration.go -------------------------------------------------------------------------------- /server/service-operation/notification/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/manager.go -------------------------------------------------------------------------------- /server/service-operation/notification/notifiarr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/notifiarr.go -------------------------------------------------------------------------------- /server/service-operation/notification/ntfy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/ntfy.go -------------------------------------------------------------------------------- /server/service-operation/notification/pushover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/pushover.go -------------------------------------------------------------------------------- /server/service-operation/notification/server_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/server_manager.go -------------------------------------------------------------------------------- /server/service-operation/notification/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/shared.go -------------------------------------------------------------------------------- /server/service-operation/notification/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/signal.go -------------------------------------------------------------------------------- /server/service-operation/notification/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/slack.go -------------------------------------------------------------------------------- /server/service-operation/notification/ssl_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/ssl_manager.go -------------------------------------------------------------------------------- /server/service-operation/notification/telegram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/telegram.go -------------------------------------------------------------------------------- /server/service-operation/notification/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/types.go -------------------------------------------------------------------------------- /server/service-operation/notification/uptime_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/uptime_manager.go -------------------------------------------------------------------------------- /server/service-operation/notification/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/notification/webhook.go -------------------------------------------------------------------------------- /server/service-operation/operations/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/dns.go -------------------------------------------------------------------------------- /server/service-operation/operations/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/http.go -------------------------------------------------------------------------------- /server/service-operation/operations/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/ping.go -------------------------------------------------------------------------------- /server/service-operation/operations/ssl_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/ssl_extractor.go -------------------------------------------------------------------------------- /server/service-operation/operations/ssl_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/ssl_operation.go -------------------------------------------------------------------------------- /server/service-operation/operations/ssl_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/ssl_utils.go -------------------------------------------------------------------------------- /server/service-operation/operations/ssl_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/ssl_validator.go -------------------------------------------------------------------------------- /server/service-operation/operations/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/operations/tcp.go -------------------------------------------------------------------------------- /server/service-operation/ping/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ping/icmp.go -------------------------------------------------------------------------------- /server/service-operation/ping/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ping/types.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/client.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/metrics.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/regional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/regional.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/services.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/ssl.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/types.go -------------------------------------------------------------------------------- /server/service-operation/pocketbase/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/pocketbase/utils.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/debug.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/debug_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/debug_helper.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/integration.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/monitor.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/notification_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/notification_service.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/pocketbase_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/pocketbase_client.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/threshold_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/threshold_monitor.go -------------------------------------------------------------------------------- /server/service-operation/server-monitoring/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/server-monitoring/types.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/dns_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/dns_saver.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/metrics_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/metrics_saver.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/ping_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/ping_saver.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/tcp_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/tcp_saver.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/uptime_saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/uptime_saver.go -------------------------------------------------------------------------------- /server/service-operation/shared/savers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/shared/savers/utils.go -------------------------------------------------------------------------------- /server/service-operation/ssl-monitoring/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ssl-monitoring/monitor.go -------------------------------------------------------------------------------- /server/service-operation/ssl-monitoring/notification_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ssl-monitoring/notification_service.go -------------------------------------------------------------------------------- /server/service-operation/ssl-monitoring/ssl_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ssl-monitoring/ssl_client.go -------------------------------------------------------------------------------- /server/service-operation/ssl-monitoring/status_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ssl-monitoring/status_tracker.go -------------------------------------------------------------------------------- /server/service-operation/ssl-monitoring/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/ssl-monitoring/types.go -------------------------------------------------------------------------------- /server/service-operation/types/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/types/operation.go -------------------------------------------------------------------------------- /server/service-operation/types/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/types/ssl.go -------------------------------------------------------------------------------- /server/service-operation/uptime-monitoring/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/uptime-monitoring/client.go -------------------------------------------------------------------------------- /server/service-operation/uptime-monitoring/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/uptime-monitoring/monitor.go -------------------------------------------------------------------------------- /server/service-operation/uptime-monitoring/notification_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/uptime-monitoring/notification_service.go -------------------------------------------------------------------------------- /server/service-operation/uptime-monitoring/status_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/uptime-monitoring/status_tracker.go -------------------------------------------------------------------------------- /server/service-operation/uptime-monitoring/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operacle/checkcle/HEAD/server/service-operation/uptime-monitoring/types.go --------------------------------------------------------------------------------