@oneuptime/common 12.0.7 → 12.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Models/AnalyticsModels/MetricItemAggMV1mByK8sCluster.ts +1 -1
- package/Models/AnalyticsModels/MetricItemAggMV1mByService.ts +1 -1
- package/Models/DatabaseModels/AIConversation.ts +32 -0
- package/Models/DatabaseModels/AIConversationMessage.ts +41 -0
- package/Models/DatabaseModels/AlertEpisodeMember.ts +27 -0
- package/Models/DatabaseModels/IncidentEpisodeMember.ts +28 -0
- package/Models/DatabaseModels/Index.ts +12 -4
- package/Models/DatabaseModels/{TelemetryEntity.ts → InventoryItem.ts} +184 -9
- package/Models/DatabaseModels/InventoryItemCustomField.ts +434 -0
- package/Models/DatabaseModels/{TelemetryEntityRelationship.ts → InventoryItemRelationship.ts} +33 -7
- package/Models/DatabaseModels/NetworkDevice.ts +141 -0
- package/Models/DatabaseModels/NetworkDeviceLink.ts +699 -0
- package/Models/DatabaseModels/NetworkDeviceLinkRule.ts +467 -0
- package/Models/DatabaseModels/NetworkTopologySuppression.ts +429 -0
- package/Models/DatabaseModels/OnCallDutyPolicyFeed.ts +9 -0
- package/Models/DatabaseModels/Project.ts +78 -0
- package/Models/DatabaseModels/UserCall.ts +42 -0
- package/Models/DatabaseModels/UserEmail.ts +44 -0
- package/Models/DatabaseModels/UserNotificationRule.ts +425 -55
- package/Models/DatabaseModels/UserOnCallLogTimeline.ts +24 -2
- package/Models/DatabaseModels/UserPush.ts +49 -0
- package/Models/DatabaseModels/UserSMS.ts +43 -0
- package/Models/DatabaseModels/UserTelegram.ts +59 -0
- package/Models/DatabaseModels/UserWebhook.ts +52 -0
- package/Models/DatabaseModels/UserWhatsApp.ts +41 -0
- package/Models/DatabaseModels/WorkflowLog.ts +38 -0
- package/Models/DatabaseModels/WorkflowVariable.ts +12 -0
- package/Server/API/AIChatAPI.ts +315 -1
- package/Server/API/DashboardAPI.ts +217 -1
- package/Server/API/OnCallReadinessAPI.ts +841 -0
- package/Server/API/TeamComplianceAPI.ts +69 -17
- package/Server/API/TelemetryAPI.ts +220 -12
- package/Server/API/UserAPI.ts +16 -1
- package/Server/EnvironmentConfig.ts +52 -0
- package/Server/Infrastructure/Postgres/DataSourceOptions.ts +22 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786100000000-RestoreServiceLowerNameIndex.ts +4 -4
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786200000000-RestoreDroppedUniqueIndexes.ts +5 -5
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786551733814-MigrationName.ts +41 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786559879134-AddWorkflowLogStepTrace.ts +17 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786625176831-AddMonitoringMethodToNetworkDevice.ts +35 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786634985763-AddNetworkDeviceLink.ts +82 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786639512056-AddNetworkDeviceLinkRule.ts +91 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786639972982-AddNetworkTopologySuppression.ts +47 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786800000000-RenameTelemetryEntityToInventoryItem.ts +255 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1786900000000-AddInventoryItemArchiveAndCustomFields.ts +107 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1787000000000-AddOnCallNotificationFallbackColumns.ts +90 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1787100000000-AddAIConversationPageContext.ts +39 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1787200000000-AddAIChatMessageFeedback.ts +33 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1787300000000-AddEpisodeMemberNotifyIndexes.ts +59 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +24 -0
- package/Server/Infrastructure/Queue.ts +78 -13
- package/Server/Middleware/MasterAdminAuthorization.ts +11 -6
- package/Server/Middleware/PublicDashboardRateLimit.ts +593 -0
- package/Server/Services/AIService.ts +7 -0
- package/Server/Services/AlertEpisodeStateTimelineService.ts +29 -0
- package/Server/Services/AlertSeverityService.ts +63 -0
- package/Server/Services/DashboardService.ts +9 -10
- package/Server/Services/DatabaseService.ts +32 -2
- package/Server/Services/IncidentEpisodeStateTimelineService.ts +29 -0
- package/Server/Services/IncidentSeverityService.ts +76 -0
- package/Server/Services/Index.ts +12 -4
- package/Server/Services/InventoryItemCustomFieldService.ts +9 -0
- package/Server/Services/{TelemetryEntityRelationshipService.ts → InventoryItemRelationshipService.ts} +7 -4
- package/Server/Services/{TelemetryEntityService.ts → InventoryItemService.ts} +203 -21
- package/Server/Services/LogAggregationService.ts +45 -8
- package/Server/Services/MetricAggregationService.ts +121 -0
- package/Server/Services/MetricService.ts +7 -7
- package/Server/Services/NetworkDeviceLinkRuleService.ts +10 -0
- package/Server/Services/NetworkDeviceLinkService.ts +84 -0
- package/Server/Services/NetworkDeviceService.ts +140 -0
- package/Server/Services/NetworkSiteService.ts +77 -25
- package/Server/Services/NetworkTopologySuppressionService.ts +84 -0
- package/Server/Services/OnCallDutyPolicyEscalationRuleScheduleService.ts +41 -29
- package/Server/Services/OnCallDutyPolicyExecutionLogService.ts +8 -0
- package/Server/Services/OnCallDutyPolicyExecutionLogTimelineService.ts +62 -13
- package/Server/Services/OnCallDutyPolicyScheduleService.ts +61 -1
- package/Server/Services/OnCallNotificationAlertingService.ts +742 -0
- package/Server/Services/OnCallReadinessService.ts +2803 -0
- package/Server/Services/OnCallSetupReminderService.ts +955 -0
- package/Server/Services/ProfileAggregationService.ts +123 -0
- package/Server/Services/StatusPageService.ts +9 -10
- package/Server/Services/TeamComplianceService.ts +429 -252
- package/Server/Services/UserCallService.ts +26 -1
- package/Server/Services/UserEmailService.ts +26 -1
- package/Server/Services/UserNotificationRuleAdminService.ts +1183 -0
- package/Server/Services/UserNotificationRuleService.ts +3812 -333
- package/Server/Services/UserOnCallLogService.ts +561 -48
- package/Server/Services/UserPushService.ts +29 -0
- package/Server/Services/UserService.ts +11 -0
- package/Server/Services/UserSmsService.ts +26 -1
- package/Server/Services/UserTelegramService.ts +24 -1
- package/Server/Services/UserWebhookService.ts +28 -1
- package/Server/Services/UserWhatsAppService.ts +24 -1
- package/Server/Types/Database/Permissions/BasePermission.ts +19 -0
- package/Server/Types/Database/Permissions/CreatePermission.ts +164 -0
- package/Server/Types/Database/Permissions/OwnerOnlyColumnPermission.ts +340 -0
- package/Server/Types/Database/Permissions/QueryPermission.ts +48 -0
- package/Server/Types/Database/Permissions/TenantPermission.ts +8 -1
- package/Server/Types/Workflow/Components/API/Delete.ts +1 -1
- package/Server/Types/Workflow/Components/API/Get.ts +1 -1
- package/Server/Types/Workflow/Components/API/Patch.ts +1 -1
- package/Server/Types/Workflow/Components/API/Post.ts +1 -1
- package/Server/Types/Workflow/Components/API/Put.ts +1 -1
- package/Server/Types/Workflow/Components/API/Utils.ts +44 -1
- package/Server/Types/Workflow/Components/BaseModel/CreateManyBaseModel.ts +29 -5
- package/Server/Types/Workflow/Components/BaseModel/CreateOneBaseModel.ts +18 -10
- package/Server/Types/Workflow/Components/BaseModel/ModelArguments.ts +55 -0
- package/Server/Types/Workflow/Components/Conditions/IfElse.ts +3 -17
- package/Server/Types/Workflow/Components/Email.ts +25 -7
- package/Server/Types/Workflow/Components/JavaScript.ts +10 -3
- package/Server/Types/Workflow/Components/MicrosoftTeams/SendMessageToChannel.ts +1 -1
- package/Server/Types/Workflow/TriggerCode.ts +12 -0
- package/Server/Types/Workflow/Workflow.ts +5 -0
- package/Server/Utils/AI/Chat/ChatAgentRunner.ts +643 -48
- package/Server/Utils/AI/Chat/ObservabilityAssistant.ts +32 -3
- package/Server/Utils/AI/Chat/ObservabilityChatPrompt.ts +20 -6
- package/Server/Utils/AI/SRE/AIInvestigationEngine.ts +7 -0
- package/Server/Utils/AI/Toolbox/AIActionTools.ts +2 -2
- package/Server/Utils/AI/Toolbox/AIMetaTools.ts +863 -0
- package/Server/Utils/AI/Toolbox/AlertTools.ts +177 -15
- package/Server/Utils/AI/Toolbox/IncidentTools.ts +191 -10
- package/Server/Utils/AI/Toolbox/Index.ts +48 -0
- package/Server/Utils/AI/Toolbox/MonitorTools.ts +298 -11
- package/Server/Utils/AI/Toolbox/NoteWriteTools.ts +295 -0
- package/Server/Utils/AI/Toolbox/OnCallTools.ts +1246 -0
- package/Server/Utils/AI/Toolbox/RunbookTools.ts +424 -0
- package/Server/Utils/AI/Toolbox/SloTools.ts +456 -0
- package/Server/Utils/AI/Toolbox/StatusPageTools.ts +559 -0
- package/Server/Utils/AI/Toolbox/TeamTools.ts +327 -0
- package/Server/Utils/AI/Toolbox/TimelineTools.ts +615 -0
- package/Server/Utils/AI/Toolbox/WorkflowProbeTools.ts +664 -0
- package/Server/Utils/ClientIp.ts +221 -0
- package/Server/Utils/Dashboard/PublicDashboardResourceListPolicy.ts +47 -0
- package/Server/Utils/Dashboard/PublicDashboardSloHistoryPolicy.ts +163 -0
- package/Server/Utils/Dashboard/PublicDashboardSloWidget.ts +147 -0
- package/Server/Utils/Express.ts +12 -17
- package/Server/Utils/LLM/LLMService.ts +85 -8
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +204 -10
- package/Server/Utils/SSRFProtection.ts +98 -23
- package/Server/Utils/StartServer.ts +12 -3
- package/Server/Utils/Telemetry/EntityRegistry.ts +205 -18
- package/Server/Utils/Telemetry/InventoryEntityRegistry.ts +689 -0
- package/Server/Utils/Telemetry/TelemetryEntity.ts +160 -52
- package/Server/Utils/VM/VMAPI.ts +56 -8
- package/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.ts +7 -3
- package/Tests/App/Dashboard/AdminNotificationRulesPage.test.tsx +2146 -0
- package/Tests/App/Dashboard/CreateWorkflowModal.test.tsx +561 -0
- package/Tests/App/Dashboard/EscalationRuleReadiness.test.tsx +2470 -0
- package/Tests/App/Dashboard/MonitorCriteriaAttributeFilter.test.tsx +574 -0
- package/Tests/App/Dashboard/OnCallPreventionGuards.test.tsx +1897 -0
- package/Tests/App/Dashboard/OnCallReadinessSurfaces.test.tsx +3606 -0
- package/Tests/App/Dashboard/OnCallRulesDeleteGuard.test.tsx +784 -0
- package/Tests/App/Dashboard/OnCallRulesTable.test.tsx +1119 -0
- package/Tests/App/Dashboard/SloWidgetFetching.test.tsx +531 -0
- package/Tests/App/Dashboard/UserSettingsSetupChecklistModel.test.ts +1312 -0
- package/Tests/App/Dashboard/UserSettingsSetupChecklistPage.test.tsx +1390 -0
- package/Tests/Models/InventoryItemModel.test.ts +174 -0
- package/Tests/Models/InventoryItemNaming.test.ts +302 -0
- package/Tests/Server/API/AIChatCancelAndFeedback.test.ts +437 -0
- package/Tests/Server/API/DashboardPublicRateLimit.test.ts +659 -0
- package/Tests/Server/API/DashboardPublicResourceListAPI.test.ts +18 -0
- package/Tests/Server/API/DashboardPublicSloAPI.test.ts +880 -0
- package/Tests/Server/API/Helpers.ts +24 -15
- package/Tests/Server/API/OnCallReadinessAPI.test.ts +2680 -0
- package/Tests/Server/API/OnCallSetupReminderAPI.test.ts +915 -0
- package/Tests/Server/API/UserProjectsAPI.test.ts +478 -4
- package/Tests/Server/Infrastructure/Postgres/EpisodeMemberNotifyIndexesMigration.test.ts +533 -0
- package/Tests/Server/Infrastructure/Postgres/InventoryItemArchiveMigration.test.ts +213 -0
- package/Tests/Server/Infrastructure/Postgres/RenameInventoryItemMigration.test.ts +432 -0
- package/Tests/Server/Infrastructure/Queue.test.ts +293 -0
- package/Tests/Server/Middleware/PublicDashboardRateLimit.test.ts +1645 -0
- package/Tests/Server/Services/AdminRuleEditGuards.test.ts +2848 -0
- package/Tests/Server/Services/DeliverNotificationForRuleExtraction.test.ts +1393 -0
- package/Tests/Server/Services/EpisodeRuleSeverityRepair.test.ts +1802 -0
- package/Tests/Server/Services/EpisodeStateTimelineNote.test.ts +304 -0
- package/Tests/Server/Services/InventoryItemDisplayName.test.ts +339 -0
- package/Tests/Server/Services/InventoryItemManualCreate.test.ts +248 -0
- package/Tests/Server/Services/IpAllowlistSpoofing.test.ts +450 -0
- package/Tests/Server/Services/LogAggregationService.test.ts +235 -1
- package/Tests/Server/Services/MetricAggregationService.test.ts +231 -0
- package/Tests/Server/Services/MetricEntityMVKeyParity.test.ts +80 -29
- package/Tests/Server/Services/MetricServiceAggregate.test.ts +30 -30
- package/Tests/Server/Services/NetworkSiteService.test.ts +18 -3
- package/Tests/Server/Services/NotificationChannelEventCoverage.test.ts +1728 -0
- package/Tests/Server/Services/NotificationDeletionImpact.test.ts +2402 -0
- package/Tests/Server/Services/OnCallDutyPolicyExecutionLogTimelineGapFeed.test.ts +394 -0
- package/Tests/Server/Services/OnCallNotificationFallback.test.ts +1744 -0
- package/Tests/Server/Services/OnCallReadinessService.test.ts +4295 -0
- package/Tests/Server/Services/OnCallSetupReminder.test.ts +1272 -0
- package/Tests/Server/Services/OnCallWeeklyReadinessDigest.test.ts +1021 -0
- package/Tests/Server/Services/ProfileAggregationService.test.ts +296 -0
- package/Tests/Server/Services/SeverityCreationRuleBackfill.test.ts +1536 -0
- package/Tests/Server/Services/SeverityRuleBackfill.test.ts +1818 -0
- package/Tests/Server/Services/TeamComplianceServiceBehaviour.test.ts +1845 -0
- package/Tests/Server/Services/UserNotificationRuleAdminGuards.test.ts +1394 -0
- package/Tests/Server/Services/UserNotificationRuleDefaultCreation.test.ts +1166 -0
- package/Tests/Server/Services/UserNotificationRuleExecuteItem.test.ts +1468 -0
- package/Tests/Server/Services/UserOnCallLogNoNotificationRules.test.ts +1457 -0
- package/Tests/Server/Types/Database/Permissions/AdminNotificationRuleAccess.test.ts +1546 -0
- package/Tests/Server/Types/Database/Permissions/CreateOwnershipScoping.test.ts +529 -0
- package/Tests/Server/Types/Database/Permissions/OwnerOnlyColumns.test.ts +1219 -0
- package/Tests/Server/Types/Database/Permissions/UserNotificationRuleScoping.test.ts +1089 -0
- package/Tests/Server/Types/Workflow/Components/ApiComponentErrorPort.test.ts +2 -1
- package/Tests/Server/Types/Workflow/Components/ApiComponentHeaders.test.ts +192 -0
- package/Tests/Server/Types/Workflow/Components/BaseModelDatabaseComponents.test.ts +190 -0
- package/Tests/Server/Types/Workflow/Components/ChatWebhookComponents.test.ts +44 -14
- package/Tests/Server/Types/Workflow/Components/Email.test.ts +151 -0
- package/Tests/Server/Types/Workflow/Components/IfElse.test.ts +98 -0
- package/Tests/Server/Types/Workflow/Components/JavaScript.test.ts +51 -0
- package/Tests/Server/Utils/AI/AIMetaTools.test.ts +586 -0
- package/Tests/Server/Utils/AI/AlertMonitorFilters.test.ts +582 -0
- package/Tests/Server/Utils/AI/ChatAgentRunner.test.ts +726 -0
- package/Tests/Server/Utils/AI/IncidentToolsFilters.test.ts +315 -0
- package/Tests/Server/Utils/AI/LLMServiceStopReason.test.ts +314 -0
- package/Tests/Server/Utils/AI/LLMServiceToolCalling.test.ts +26 -3
- package/Tests/Server/Utils/AI/NoteWriteTools.test.ts +268 -0
- package/Tests/Server/Utils/AI/ObservabilityChatPrompt.test.ts +169 -0
- package/Tests/Server/Utils/AI/OnCallTools.test.ts +664 -0
- package/Tests/Server/Utils/AI/RunbookTools.test.ts +325 -0
- package/Tests/Server/Utils/AI/SloTools.test.ts +306 -0
- package/Tests/Server/Utils/AI/StatusPageTools.test.ts +391 -0
- package/Tests/Server/Utils/AI/TeamTools.test.ts +257 -0
- package/Tests/Server/Utils/AI/TimelineTools.test.ts +472 -0
- package/Tests/Server/Utils/AI/WorkflowProbeTools.test.ts +428 -0
- package/Tests/Server/Utils/AnalyticsDatabase/QuerySettingsHelper.test.ts +152 -0
- package/Tests/Server/Utils/ClientIp.test.ts +438 -0
- package/Tests/Server/Utils/Dashboard/PublicDashboardResourceListPolicy.test.ts +171 -0
- package/Tests/Server/Utils/Dashboard/PublicDashboardSloHistoryPolicy.test.ts +383 -0
- package/Tests/Server/Utils/EntityRegistryRowFence.test.ts +23 -25
- package/Tests/Server/Utils/MicrosoftTeamsWebhookUrlValidation.test.ts +6 -0
- package/Tests/Server/Utils/Monitor/Criteria/DnssecMonitorCriteria.test.ts +307 -0
- package/Tests/Server/Utils/Monitor/Criteria/SSLMonitorCriteria.test.ts +468 -0
- package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluatorTelemetryDeepLinks.test.ts +460 -0
- package/Tests/Server/Utils/ResponseRateLimitStatusCodes.test.ts +137 -0
- package/Tests/Server/Utils/SSRFProtectionBypasses.test.ts +40 -8
- package/Tests/Server/Utils/SSRFProtectionUserInfo.test.ts +351 -0
- package/Tests/Server/Utils/Telemetry/EntityRegistryRetirement.test.ts +531 -0
- package/Tests/Server/Utils/Telemetry/InventoryEntityRegistry.test.ts +322 -0
- package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +356 -39
- package/Tests/Server/Utils/VM/VMAPISubstitution.test.ts +243 -0
- package/Tests/Types/IP/IP.test.ts +263 -0
- package/Tests/Types/IP/IPWhitelist.test.ts +197 -0
- package/Tests/Types/IP/IPv6.test.ts +12 -1
- package/Tests/Types/Monitor/SnmpOid.test.ts +64 -0
- package/Tests/Types/NetworkDevice/NetworkDeviceMonitoringMethod.test.ts +110 -0
- package/Tests/Types/OnCallDutyPolicy/LayerUtilMergeAudit.test.ts +106 -0
- package/Tests/Types/OnCallDutyPolicy/LayerUtilMergeDifferential.test.ts +511 -0
- package/Tests/Types/OnCallDutyPolicy/ScheduleCoverageEndToEnd.test.ts +489 -0
- package/Tests/Types/OnCallDutyPolicy/ScheduleCoverageGapTolerance.test.ts +479 -0
- package/Tests/Types/OnCallDutyPolicy/ScheduleCoverageState.test.ts +822 -0
- package/Tests/Types/SerializableObjectDictionaryImportCycle.test.ts +197 -0
- package/Tests/Types/Telemetry/EntityTypeGroups.test.ts +140 -0
- package/Tests/Types/Workflow/BaseModelComponents.test.ts +429 -0
- package/Tests/Types/Workflow/Components/BaseModel.test.ts +225 -0
- package/Tests/Types/Workflow/IntegrationCredentialMetadata.test.ts +100 -0
- package/Tests/Types/Workflow/StepTrace.test.ts +235 -0
- package/Tests/Types/Workflow/TemplateSyntax.test.ts +491 -0
- package/Tests/Types/Workflow/Templates.test.ts +1218 -0
- package/Tests/UI/Components/ActiveFilterChipsOpenRoute.test.tsx +82 -0
- package/Tests/UI/Components/ComponentsModal.test.tsx +564 -7
- package/Tests/UI/Components/CustomTimeRangeModal.test.tsx +459 -0
- package/Tests/UI/Components/DictionaryAttributeFilterRow.test.tsx +477 -0
- package/Tests/UI/Components/Forms/AnchoredFieldPopupKeyboard.test.tsx +382 -0
- package/Tests/UI/Components/Forms/ColorPickerPicking.test.tsx +569 -0
- package/Tests/UI/Components/Forms/ValidationJSON.test.ts +241 -0
- package/Tests/UI/Components/KeyboardShortcut.test.tsx +95 -0
- package/Tests/UI/Components/LogDetailsPanelCrossSignal.test.tsx +448 -0
- package/Tests/UI/Components/LogTimeRangePicker.test.tsx +42 -0
- package/Tests/UI/Components/LogsTableCrossLinks.test.tsx +263 -0
- package/Tests/UI/Components/ModalPortalDismissal.test.tsx +90 -0
- package/Tests/UI/Components/PendingProjectInvitations.test.tsx +913 -0
- package/Tests/UI/Components/SimpleLogViewer.test.tsx +228 -0
- package/Tests/UI/Components/TableRowSelectability.test.tsx +312 -0
- package/Tests/UI/Components/TelemetryTimeRangePicker.test.tsx +49 -7
- package/Tests/UI/Components/TimeRangePickerDropdown.test.tsx +325 -0
- package/Tests/UI/Components/Workflow/GraphLint.test.ts +893 -0
- package/Tests/UI/Components/Workflow/GraphLintSummary.test.ts +755 -0
- package/Tests/UI/Components/Workflow/ModelColumnEditor.test.ts +522 -0
- package/Tests/UI/Components/Workflow/ModelColumnEditorServerContract.test.ts +193 -0
- package/Tests/UI/Components/Workflow/ModelSchema.test.ts +388 -0
- package/Tests/UI/Components/Workflow/RunStatusWatcher.test.ts +210 -0
- package/Tests/UI/Components/Workflow/StepTraceViewer.test.tsx +256 -0
- package/Tests/UI/Components/Workflow/UseRunWatch.test.tsx +665 -0
- package/Tests/UI/Components/Workflow/Utils.test.ts +192 -0
- package/Tests/UI/Components/Workflow/WorkflowIssuesModal.test.tsx +485 -0
- package/Tests/UI/Components/Workflow/WorkflowLogModal.test.tsx +478 -0
- package/Tests/UI/Components/Workflow/WorkflowStatusBar.test.tsx +379 -0
- package/Tests/UI/EsbuildConfig.test.ts +607 -0
- package/Tests/UI/Monitor/MonitorStepCriteriaView.test.tsx +432 -0
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealBreadcrumbTrails.ts +5 -0
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealRoutePatterns.ts +11 -4
- package/Tests/UI/Utils/ModelAPICreateMiscData.test.ts +94 -0
- package/Tests/UI/Utils/Platform.test.ts +147 -0
- package/Tests/UI/Utils/ProjectInvitationDisplay.test.ts +357 -0
- package/Tests/Utils/Monitor/NetworkDeviceLinkRuleUtil.test.ts +198 -0
- package/Tests/Utils/Monitor/NetworkDeviceRoleUtil.test.ts +514 -0
- package/Tests/Utils/Monitor/NetworkTopologyUtil.test.ts +727 -0
- package/Tests/Utils/Schema/AnalyticsModelSchema.test.ts +469 -0
- package/Tests/Utils/Schema/ModelSchema.test.ts +268 -0
- package/Tests/Utils/Telemetry/CrossSignalScope.test.ts +698 -0
- package/Tests/Utils/Telemetry/EntityKeyNonTelemetry.test.ts +193 -0
- package/Tests/__mocks__/bullmq.js +55 -0
- package/Types/AI/AIChatMessageStatus.ts +8 -1
- package/Types/AI/AIChatTypes.ts +12 -0
- package/Types/Database/AccessControl/OwnerOnlyColumn.ts +88 -0
- package/Types/Exception/ExceptionCode.ts +2 -0
- package/Types/Exception/ServiceUnavailableException.ts +8 -0
- package/Types/Exception/TooManyRequestsException.ts +8 -0
- package/Types/IP/IP.ts +93 -47
- package/Types/Monitor/SnmpMonitor/NetworkTopology.ts +80 -3
- package/Types/NetworkDevice/NetworkDeviceMonitoringMethod.ts +55 -0
- package/Types/OnCallDutyPolicy/Layer.ts +203 -149
- package/Types/OnCallDutyPolicy/OnCallDutyPolicyStatus.ts +13 -0
- package/Types/OnCallDutyPolicy/ScheduleShiftUtil.ts +155 -10
- package/Types/Permission.ts +193 -0
- package/Types/SerializableObjectDictionary.ts +133 -39
- package/Types/Telemetry/EntityRelationshipType.ts +1 -1
- package/Types/Telemetry/EntitySource.ts +40 -0
- package/Types/Telemetry/EntityType.ts +28 -1
- package/Types/Telemetry/EntityTypeGroups.ts +65 -0
- package/Types/Workflow/Component.ts +29 -0
- package/Types/Workflow/Components/API.ts +35 -0
- package/Types/Workflow/Components/BaseModel.ts +77 -27
- package/Types/Workflow/Components/Discord.ts +1 -0
- package/Types/Workflow/Components/Email.ts +12 -3
- package/Types/Workflow/Components/JavaScript.ts +7 -0
- package/Types/Workflow/Components/MicrosoftTeams.ts +3 -2
- package/Types/Workflow/Components/Slack.ts +1 -0
- package/Types/Workflow/Components/Telegram.ts +1 -0
- package/Types/Workflow/StepTrace.ts +181 -0
- package/Types/Workflow/TemplateSyntax.ts +543 -0
- package/Types/Workflow/Templates.ts +2368 -0
- package/UI/Components/Calendar/Calendar.css +43 -0
- package/UI/Components/Calendar/Calendar.tsx +8 -0
- package/UI/Components/Card/Card.tsx +2 -2
- package/UI/Components/Checkbox/Checkbox.tsx +16 -0
- package/UI/Components/Date/CustomTimeRangeModal.tsx +278 -0
- package/UI/Components/Date/TimeRangePickerDropdown.tsx +250 -0
- package/UI/Components/Dictionary/Dictionary.tsx +71 -15
- package/UI/Components/FormModal/BasicFormModal.tsx +2 -1
- package/UI/Components/Forms/Fields/ColorPicker.tsx +66 -10
- package/UI/Components/Forms/Fields/IconPicker.tsx +48 -10
- package/UI/Components/Forms/Types/Field.ts +7 -0
- package/UI/Components/Forms/Validation.ts +63 -1
- package/UI/Components/Header/HeaderIconDropdownButton.tsx +53 -3
- package/UI/Components/Input/Input.tsx +32 -3
- package/UI/Components/KeyboardShortcut/KeyboardKey.ts +185 -0
- package/UI/Components/KeyboardShortcut/KeyboardShortcut.tsx +87 -0
- package/UI/Components/LogsViewer/LogsViewer.tsx +28 -0
- package/UI/Components/LogsViewer/components/ActiveFilterChips.tsx +31 -0
- package/UI/Components/LogsViewer/components/KeyboardShortcutsHelp.tsx +18 -18
- package/UI/Components/LogsViewer/components/LogDetailsPanel.tsx +363 -14
- package/UI/Components/LogsViewer/components/LogTimeRangePicker.tsx +11 -216
- package/UI/Components/LogsViewer/components/LogsAnalyticsView.tsx +11 -0
- package/UI/Components/LogsViewer/components/LogsTable.tsx +155 -12
- package/UI/Components/LogsViewer/components/LogsViewerToolbar.tsx +29 -0
- package/UI/Components/LogsViewer/types.ts +23 -0
- package/UI/Components/Markdown.tsx/MarkdownEditor.tsx +9 -2
- package/UI/Components/Modal/Modal.tsx +37 -4
- package/UI/Components/Navbar/NavBarMenuModal.tsx +15 -30
- package/UI/Components/ProjectInvitations/PendingProjectInvitations.tsx +442 -0
- package/UI/Components/SimpleLogViewer/SimpleLogViewer.tsx +23 -1
- package/UI/Components/Table/Table.tsx +49 -16
- package/UI/Components/Table/TableBody.tsx +53 -28
- package/UI/Components/Table/TableHeader.tsx +13 -0
- package/UI/Components/Table/TableRow.tsx +58 -26
- package/UI/Components/TelemetryViewer/components/TelemetryTimeRangePicker.tsx +11 -210
- package/UI/Components/Workflow/ArgumentsForm.tsx +341 -8
- package/UI/Components/Workflow/Component.tsx +28 -26
- package/UI/Components/Workflow/ComponentReturnValueViewer.tsx +26 -0
- package/UI/Components/Workflow/ComponentSettingsModal.tsx +79 -9
- package/UI/Components/Workflow/ComponentValuePickerModal.tsx +135 -7
- package/UI/Components/Workflow/ComponentsModal.tsx +116 -22
- package/UI/Components/Workflow/DocumentationViewer.tsx +59 -9
- package/UI/Components/Workflow/GraphLint.ts +628 -0
- package/UI/Components/Workflow/GraphLintSummary.ts +390 -0
- package/UI/Components/Workflow/ModelColumnEditor.tsx +528 -0
- package/UI/Components/Workflow/ModelSchema.ts +278 -0
- package/UI/Components/Workflow/RunForm.tsx +41 -7
- package/UI/Components/Workflow/RunStatusWatcher.ts +122 -0
- package/UI/Components/Workflow/StepTraceViewer.tsx +186 -0
- package/UI/Components/Workflow/UseRunWatch.ts +212 -0
- package/UI/Components/Workflow/Utils.ts +93 -1
- package/UI/Components/Workflow/VariableModal.tsx +6 -2
- package/UI/Components/Workflow/Workflow.tsx +126 -7
- package/UI/Components/Workflow/WorkflowIssuesModal.tsx +255 -0
- package/UI/Components/Workflow/WorkflowLogModal.tsx +128 -0
- package/UI/Components/Workflow/WorkflowStatusBar.tsx +224 -0
- package/UI/Types/LayeredDismissal.ts +31 -0
- package/UI/Types/UseAnchoredFieldPopup.ts +99 -0
- package/UI/Utils/AIChatExport/ConversationMarkdown.ts +10 -0
- package/UI/Utils/ModelAPI/ModelAPI.ts +7 -1
- package/UI/Utils/Platform.ts +149 -0
- package/UI/Utils/ProjectInvitationDisplay.ts +118 -0
- package/UI/esbuild-config.js +22 -1
- package/Utils/Monitor/NetworkDeviceLinkRuleUtil.ts +187 -0
- package/Utils/Monitor/NetworkDeviceRoleUtil.ts +533 -0
- package/Utils/Monitor/NetworkTopologyUtil.ts +917 -155
- package/Utils/Telemetry/CrossSignalScope.ts +502 -0
- package/Utils/Telemetry/EntityKey.ts +71 -5
- package/Utils/Telemetry/EntityRelationship.ts +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByK8sCluster.js +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByService.js +1 -1
- package/build/dist/Models/DatabaseModels/AIConversation.js +32 -0
- package/build/dist/Models/DatabaseModels/AIConversation.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AIConversationMessage.js +42 -0
- package/build/dist/Models/DatabaseModels/AIConversationMessage.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertEpisodeMember.js +28 -0
- package/build/dist/Models/DatabaseModels/AlertEpisodeMember.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentEpisodeMember.js +29 -0
- package/build/dist/Models/DatabaseModels/IncidentEpisodeMember.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +12 -4
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/{TelemetryEntity.js → InventoryItem.js} +212 -29
- package/build/dist/Models/DatabaseModels/InventoryItem.js.map +1 -0
- package/build/dist/Models/DatabaseModels/InventoryItemCustomField.js +454 -0
- package/build/dist/Models/DatabaseModels/InventoryItemCustomField.js.map +1 -0
- package/build/dist/Models/DatabaseModels/{TelemetryEntityRelationship.js → InventoryItemRelationship.js} +52 -25
- package/build/dist/Models/DatabaseModels/InventoryItemRelationship.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDevice.js +141 -0
- package/build/dist/Models/DatabaseModels/NetworkDevice.js.map +1 -1
- package/build/dist/Models/DatabaseModels/NetworkDeviceLink.js +719 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceLink.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceLinkRule.js +475 -0
- package/build/dist/Models/DatabaseModels/NetworkDeviceLinkRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/NetworkTopologySuppression.js +446 -0
- package/build/dist/Models/DatabaseModels/NetworkTopologySuppression.js.map +1 -0
- package/build/dist/Models/DatabaseModels/OnCallDutyPolicyFeed.js +9 -0
- package/build/dist/Models/DatabaseModels/OnCallDutyPolicyFeed.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Project.js +80 -0
- package/build/dist/Models/DatabaseModels/Project.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserCall.js +46 -2
- package/build/dist/Models/DatabaseModels/UserCall.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserEmail.js +48 -2
- package/build/dist/Models/DatabaseModels/UserEmail.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserNotificationRule.js +424 -55
- package/build/dist/Models/DatabaseModels/UserNotificationRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserOnCallLogTimeline.js +24 -2
- package/build/dist/Models/DatabaseModels/UserOnCallLogTimeline.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserPush.js +51 -1
- package/build/dist/Models/DatabaseModels/UserPush.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserSMS.js +47 -2
- package/build/dist/Models/DatabaseModels/UserSMS.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserTelegram.js +65 -3
- package/build/dist/Models/DatabaseModels/UserTelegram.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserWebhook.js +56 -2
- package/build/dist/Models/DatabaseModels/UserWebhook.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserWhatsApp.js +45 -2
- package/build/dist/Models/DatabaseModels/UserWhatsApp.js.map +1 -1
- package/build/dist/Models/DatabaseModels/WorkflowLog.js +39 -0
- package/build/dist/Models/DatabaseModels/WorkflowLog.js.map +1 -1
- package/build/dist/Models/DatabaseModels/WorkflowVariable.js +12 -0
- package/build/dist/Models/DatabaseModels/WorkflowVariable.js.map +1 -1
- package/build/dist/Server/API/AIChatAPI.js +237 -1
- package/build/dist/Server/API/AIChatAPI.js.map +1 -1
- package/build/dist/Server/API/DashboardAPI.js +165 -13
- package/build/dist/Server/API/DashboardAPI.js.map +1 -1
- package/build/dist/Server/API/OnCallReadinessAPI.js +599 -0
- package/build/dist/Server/API/OnCallReadinessAPI.js.map +1 -0
- package/build/dist/Server/API/TeamComplianceAPI.js +68 -9
- package/build/dist/Server/API/TeamComplianceAPI.js.map +1 -1
- package/build/dist/Server/API/TelemetryAPI.js +129 -18
- package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
- package/build/dist/Server/API/UserAPI.js +16 -1
- package/build/dist/Server/API/UserAPI.js.map +1 -1
- package/build/dist/Server/EnvironmentConfig.js +45 -0
- package/build/dist/Server/EnvironmentConfig.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/DataSourceOptions.js +22 -0
- package/build/dist/Server/Infrastructure/Postgres/DataSourceOptions.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786100000000-RestoreServiceLowerNameIndex.js +4 -4
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786551733814-MigrationName.js +20 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786551733814-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786559879134-AddWorkflowLogStepTrace.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786559879134-AddWorkflowLogStepTrace.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786625176831-AddMonitoringMethodToNetworkDevice.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786625176831-AddMonitoringMethodToNetworkDevice.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786634985763-AddNetworkDeviceLink.js +39 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786634985763-AddNetworkDeviceLink.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786639512056-AddNetworkDeviceLinkRule.js +38 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786639512056-AddNetworkDeviceLinkRule.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786639972982-AddNetworkTopologySuppression.js +22 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786639972982-AddNetworkTopologySuppression.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786800000000-RenameTelemetryEntityToInventoryItem.js +150 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786800000000-RenameTelemetryEntityToInventoryItem.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786900000000-AddInventoryItemArchiveAndCustomFields.js +57 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786900000000-AddInventoryItemArchiveAndCustomFields.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787000000000-AddOnCallNotificationFallbackColumns.js +69 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787000000000-AddOnCallNotificationFallbackColumns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787100000000-AddAIConversationPageContext.js +32 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787100000000-AddAIConversationPageContext.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787200000000-AddAIChatMessageFeedback.js +26 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787200000000-AddAIChatMessageFeedback.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787300000000-AddEpisodeMemberNotifyIndexes.js +48 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1787300000000-AddEpisodeMemberNotifyIndexes.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +24 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Infrastructure/Queue.js +72 -13
- package/build/dist/Server/Infrastructure/Queue.js.map +1 -1
- package/build/dist/Server/Middleware/MasterAdminAuthorization.js +11 -6
- package/build/dist/Server/Middleware/MasterAdminAuthorization.js.map +1 -1
- package/build/dist/Server/Middleware/PublicDashboardRateLimit.js +399 -0
- package/build/dist/Server/Middleware/PublicDashboardRateLimit.js.map +1 -0
- package/build/dist/Server/Services/AIService.js +1 -0
- package/build/dist/Server/Services/AIService.js.map +1 -1
- package/build/dist/Server/Services/AlertEpisodeStateTimelineService.js +24 -3
- package/build/dist/Server/Services/AlertEpisodeStateTimelineService.js.map +1 -1
- package/build/dist/Server/Services/AlertSeverityService.js +54 -0
- package/build/dist/Server/Services/AlertSeverityService.js.map +1 -1
- package/build/dist/Server/Services/DashboardService.js +10 -9
- package/build/dist/Server/Services/DashboardService.js.map +1 -1
- package/build/dist/Server/Services/DatabaseService.js +24 -2
- package/build/dist/Server/Services/DatabaseService.js.map +1 -1
- package/build/dist/Server/Services/IncidentEpisodeStateTimelineService.js +24 -3
- package/build/dist/Server/Services/IncidentEpisodeStateTimelineService.js.map +1 -1
- package/build/dist/Server/Services/IncidentSeverityService.js +67 -0
- package/build/dist/Server/Services/IncidentSeverityService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +12 -4
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/InventoryItemCustomFieldService.js +9 -0
- package/build/dist/Server/Services/InventoryItemCustomFieldService.js.map +1 -0
- package/build/dist/Server/Services/{TelemetryEntityRelationshipService.js → InventoryItemRelationshipService.js} +9 -6
- package/build/dist/Server/Services/InventoryItemRelationshipService.js.map +1 -0
- package/build/dist/Server/Services/{TelemetryEntityService.js → InventoryItemService.js} +158 -23
- package/build/dist/Server/Services/InventoryItemService.js.map +1 -0
- package/build/dist/Server/Services/LogAggregationService.js +27 -8
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +80 -0
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricService.js +6 -6
- package/build/dist/Server/Services/MetricService.js.map +1 -1
- package/build/dist/Server/Services/NetworkDeviceLinkRuleService.js +9 -0
- package/build/dist/Server/Services/NetworkDeviceLinkRuleService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceLinkService.js +71 -0
- package/build/dist/Server/Services/NetworkDeviceLinkService.js.map +1 -0
- package/build/dist/Server/Services/NetworkDeviceService.js +113 -0
- package/build/dist/Server/Services/NetworkDeviceService.js.map +1 -1
- package/build/dist/Server/Services/NetworkSiteService.js +53 -13
- package/build/dist/Server/Services/NetworkSiteService.js.map +1 -1
- package/build/dist/Server/Services/NetworkTopologySuppressionService.js +85 -0
- package/build/dist/Server/Services/NetworkTopologySuppressionService.js.map +1 -0
- package/build/dist/Server/Services/OnCallDutyPolicyEscalationRuleScheduleService.js +48 -32
- package/build/dist/Server/Services/OnCallDutyPolicyEscalationRuleScheduleService.js.map +1 -1
- package/build/dist/Server/Services/OnCallDutyPolicyExecutionLogService.js +8 -0
- package/build/dist/Server/Services/OnCallDutyPolicyExecutionLogService.js.map +1 -1
- package/build/dist/Server/Services/OnCallDutyPolicyExecutionLogTimelineService.js +51 -12
- package/build/dist/Server/Services/OnCallDutyPolicyExecutionLogTimelineService.js.map +1 -1
- package/build/dist/Server/Services/OnCallDutyPolicyScheduleService.js +57 -13
- package/build/dist/Server/Services/OnCallDutyPolicyScheduleService.js.map +1 -1
- package/build/dist/Server/Services/OnCallNotificationAlertingService.js +548 -0
- package/build/dist/Server/Services/OnCallNotificationAlertingService.js.map +1 -0
- package/build/dist/Server/Services/OnCallReadinessService.js +1961 -0
- package/build/dist/Server/Services/OnCallReadinessService.js.map +1 -0
- package/build/dist/Server/Services/OnCallSetupReminderService.js +738 -0
- package/build/dist/Server/Services/OnCallSetupReminderService.js.map +1 -0
- package/build/dist/Server/Services/ProfileAggregationService.js +68 -4
- package/build/dist/Server/Services/ProfileAggregationService.js.map +1 -1
- package/build/dist/Server/Services/StatusPageService.js +11 -10
- package/build/dist/Server/Services/StatusPageService.js.map +1 -1
- package/build/dist/Server/Services/TeamComplianceService.js +312 -160
- package/build/dist/Server/Services/TeamComplianceService.js.map +1 -1
- package/build/dist/Server/Services/UserCallService.js +24 -1
- package/build/dist/Server/Services/UserCallService.js.map +1 -1
- package/build/dist/Server/Services/UserEmailService.js +24 -1
- package/build/dist/Server/Services/UserEmailService.js.map +1 -1
- package/build/dist/Server/Services/UserNotificationRuleAdminService.js +858 -0
- package/build/dist/Server/Services/UserNotificationRuleAdminService.js.map +1 -0
- package/build/dist/Server/Services/UserNotificationRuleService.js +2830 -175
- package/build/dist/Server/Services/UserNotificationRuleService.js.map +1 -1
- package/build/dist/Server/Services/UserOnCallLogService.js +488 -43
- package/build/dist/Server/Services/UserOnCallLogService.js.map +1 -1
- package/build/dist/Server/Services/UserPushService.js +26 -0
- package/build/dist/Server/Services/UserPushService.js.map +1 -1
- package/build/dist/Server/Services/UserService.js +10 -0
- package/build/dist/Server/Services/UserService.js.map +1 -1
- package/build/dist/Server/Services/UserSmsService.js +24 -1
- package/build/dist/Server/Services/UserSmsService.js.map +1 -1
- package/build/dist/Server/Services/UserTelegramService.js +22 -1
- package/build/dist/Server/Services/UserTelegramService.js.map +1 -1
- package/build/dist/Server/Services/UserWebhookService.js +25 -1
- package/build/dist/Server/Services/UserWebhookService.js.map +1 -1
- package/build/dist/Server/Services/UserWhatsAppService.js +22 -1
- package/build/dist/Server/Services/UserWhatsAppService.js.map +1 -1
- package/build/dist/Server/Types/Database/Permissions/BasePermission.js +12 -1
- package/build/dist/Server/Types/Database/Permissions/BasePermission.js.map +1 -1
- package/build/dist/Server/Types/Database/Permissions/CreatePermission.js +126 -0
- package/build/dist/Server/Types/Database/Permissions/CreatePermission.js.map +1 -1
- package/build/dist/Server/Types/Database/Permissions/OwnerOnlyColumnPermission.js +254 -0
- package/build/dist/Server/Types/Database/Permissions/OwnerOnlyColumnPermission.js.map +1 -0
- package/build/dist/Server/Types/Database/Permissions/QueryPermission.js +47 -2
- package/build/dist/Server/Types/Database/Permissions/QueryPermission.js.map +1 -1
- package/build/dist/Server/Types/Database/Permissions/TenantPermission.js +7 -0
- package/build/dist/Server/Types/Database/Permissions/TenantPermission.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Delete.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Delete.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Get.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Get.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Patch.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Patch.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Post.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Post.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Put.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Put.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/API/Utils.js +28 -0
- package/build/dist/Server/Types/Workflow/Components/API/Utils.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/BaseModel/CreateManyBaseModel.js +21 -5
- package/build/dist/Server/Types/Workflow/Components/BaseModel/CreateManyBaseModel.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/BaseModel/CreateOneBaseModel.js +14 -10
- package/build/dist/Server/Types/Workflow/Components/BaseModel/CreateOneBaseModel.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/BaseModel/ModelArguments.js +31 -0
- package/build/dist/Server/Types/Workflow/Components/BaseModel/ModelArguments.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/Conditions/IfElse.js +3 -9
- package/build/dist/Server/Types/Workflow/Components/Conditions/IfElse.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/Email.js +15 -4
- package/build/dist/Server/Types/Workflow/Components/Email.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/JavaScript.js +7 -2
- package/build/dist/Server/Types/Workflow/Components/JavaScript.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/MicrosoftTeams/SendMessageToChannel.js +1 -1
- package/build/dist/Server/Types/Workflow/Components/MicrosoftTeams/SendMessageToChannel.js.map +1 -1
- package/build/dist/Server/Types/Workflow/TriggerCode.js.map +1 -1
- package/build/dist/Server/Utils/AI/Chat/ChatAgentRunner.js +514 -56
- package/build/dist/Server/Utils/AI/Chat/ChatAgentRunner.js.map +1 -1
- package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js +20 -3
- package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js.map +1 -1
- package/build/dist/Server/Utils/AI/Chat/ObservabilityChatPrompt.js +19 -6
- package/build/dist/Server/Utils/AI/Chat/ObservabilityChatPrompt.js.map +1 -1
- package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js +7 -0
- package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/AIActionTools.js +2 -2
- package/build/dist/Server/Utils/AI/Toolbox/AIActionTools.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/AIMetaTools.js +692 -0
- package/build/dist/Server/Utils/AI/Toolbox/AIMetaTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/AlertTools.js +148 -12
- package/build/dist/Server/Utils/AI/Toolbox/AlertTools.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/IncidentTools.js +157 -10
- package/build/dist/Server/Utils/AI/Toolbox/IncidentTools.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/Index.js +37 -0
- package/build/dist/Server/Utils/AI/Toolbox/Index.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/MonitorTools.js +259 -14
- package/build/dist/Server/Utils/AI/Toolbox/MonitorTools.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/NoteWriteTools.js +235 -0
- package/build/dist/Server/Utils/AI/Toolbox/NoteWriteTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/OnCallTools.js +1000 -0
- package/build/dist/Server/Utils/AI/Toolbox/OnCallTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/RunbookTools.js +356 -0
- package/build/dist/Server/Utils/AI/Toolbox/RunbookTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/SloTools.js +394 -0
- package/build/dist/Server/Utils/AI/Toolbox/SloTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/StatusPageTools.js +465 -0
- package/build/dist/Server/Utils/AI/Toolbox/StatusPageTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/TeamTools.js +280 -0
- package/build/dist/Server/Utils/AI/Toolbox/TeamTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js +527 -0
- package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/WorkflowProbeTools.js +548 -0
- package/build/dist/Server/Utils/AI/Toolbox/WorkflowProbeTools.js.map +1 -0
- package/build/dist/Server/Utils/ClientIp.js +137 -0
- package/build/dist/Server/Utils/ClientIp.js.map +1 -0
- package/build/dist/Server/Utils/Dashboard/PublicDashboardResourceListPolicy.js +38 -0
- package/build/dist/Server/Utils/Dashboard/PublicDashboardResourceListPolicy.js.map +1 -1
- package/build/dist/Server/Utils/Dashboard/PublicDashboardSloHistoryPolicy.js +89 -0
- package/build/dist/Server/Utils/Dashboard/PublicDashboardSloHistoryPolicy.js.map +1 -0
- package/build/dist/Server/Utils/Dashboard/PublicDashboardSloWidget.js +77 -0
- package/build/dist/Server/Utils/Dashboard/PublicDashboardSloWidget.js.map +1 -0
- package/build/dist/Server/Utils/Express.js +12 -12
- package/build/dist/Server/Utils/Express.js.map +1 -1
- package/build/dist/Server/Utils/LLM/LLMService.js +70 -7
- package/build/dist/Server/Utils/LLM/LLMService.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +121 -11
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/SSRFProtection.js +82 -21
- package/build/dist/Server/Utils/SSRFProtection.js.map +1 -1
- package/build/dist/Server/Utils/StartServer.js +12 -4
- package/build/dist/Server/Utils/StartServer.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +165 -18
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/InventoryEntityRegistry.js +507 -0
- package/build/dist/Server/Utils/Telemetry/InventoryEntityRegistry.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js +122 -47
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js.map +1 -1
- package/build/dist/Server/Utils/VM/VMAPI.js +51 -4
- package/build/dist/Server/Utils/VM/VMAPI.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js +7 -3
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js.map +1 -1
- package/build/dist/Types/AI/AIChatMessageStatus.js +8 -1
- package/build/dist/Types/AI/AIChatMessageStatus.js.map +1 -1
- package/build/dist/Types/AI/AIChatTypes.js +12 -0
- package/build/dist/Types/AI/AIChatTypes.js.map +1 -1
- package/build/dist/Types/Database/AccessControl/OwnerOnlyColumn.js +60 -0
- package/build/dist/Types/Database/AccessControl/OwnerOnlyColumn.js.map +1 -0
- package/build/dist/Types/Exception/ExceptionCode.js +2 -0
- package/build/dist/Types/Exception/ExceptionCode.js.map +1 -1
- package/build/dist/Types/Exception/ServiceUnavailableException.js +8 -0
- package/build/dist/Types/Exception/ServiceUnavailableException.js.map +1 -0
- package/build/dist/Types/Exception/TooManyRequestsException.js +8 -0
- package/build/dist/Types/Exception/TooManyRequestsException.js.map +1 -0
- package/build/dist/Types/IP/IP.js +87 -43
- package/build/dist/Types/IP/IP.js.map +1 -1
- package/build/dist/Types/NetworkDevice/NetworkDeviceMonitoringMethod.js +50 -0
- package/build/dist/Types/NetworkDevice/NetworkDeviceMonitoringMethod.js.map +1 -0
- package/build/dist/Types/OnCallDutyPolicy/Layer.js +186 -123
- package/build/dist/Types/OnCallDutyPolicy/Layer.js.map +1 -1
- package/build/dist/Types/OnCallDutyPolicy/OnCallDutyPolicyStatus.js +13 -0
- package/build/dist/Types/OnCallDutyPolicy/OnCallDutyPolicyStatus.js.map +1 -1
- package/build/dist/Types/OnCallDutyPolicy/ScheduleShiftUtil.js +105 -11
- package/build/dist/Types/OnCallDutyPolicy/ScheduleShiftUtil.js.map +1 -1
- package/build/dist/Types/Permission.js +174 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/SerializableObjectDictionary.js +133 -39
- package/build/dist/Types/SerializableObjectDictionary.js.map +1 -1
- package/build/dist/Types/Telemetry/EntityRelationshipType.js +1 -1
- package/build/dist/Types/Telemetry/EntitySource.js +39 -0
- package/build/dist/Types/Telemetry/EntitySource.js.map +1 -0
- package/build/dist/Types/Telemetry/EntityType.js +28 -1
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/EntityTypeGroups.js +57 -0
- package/build/dist/Types/Telemetry/EntityTypeGroups.js.map +1 -0
- package/build/dist/Types/Workflow/Component.js +21 -0
- package/build/dist/Types/Workflow/Component.js.map +1 -1
- package/build/dist/Types/Workflow/Components/API.js +35 -0
- package/build/dist/Types/Workflow/Components/API.js.map +1 -1
- package/build/dist/Types/Workflow/Components/BaseModel.js +68 -26
- package/build/dist/Types/Workflow/Components/BaseModel.js.map +1 -1
- package/build/dist/Types/Workflow/Components/Discord.js +1 -0
- package/build/dist/Types/Workflow/Components/Discord.js.map +1 -1
- package/build/dist/Types/Workflow/Components/Email.js +12 -3
- package/build/dist/Types/Workflow/Components/Email.js.map +1 -1
- package/build/dist/Types/Workflow/Components/JavaScript.js +7 -0
- package/build/dist/Types/Workflow/Components/JavaScript.js.map +1 -1
- package/build/dist/Types/Workflow/Components/MicrosoftTeams.js +3 -2
- package/build/dist/Types/Workflow/Components/MicrosoftTeams.js.map +1 -1
- package/build/dist/Types/Workflow/Components/Slack.js +1 -0
- package/build/dist/Types/Workflow/Components/Slack.js.map +1 -1
- package/build/dist/Types/Workflow/Components/Telegram.js +1 -0
- package/build/dist/Types/Workflow/Components/Telegram.js.map +1 -1
- package/build/dist/Types/Workflow/StepTrace.js +104 -0
- package/build/dist/Types/Workflow/StepTrace.js.map +1 -0
- package/build/dist/Types/Workflow/TemplateSyntax.js +338 -0
- package/build/dist/Types/Workflow/TemplateSyntax.js.map +1 -0
- package/build/dist/Types/Workflow/Templates.js +2111 -0
- package/build/dist/Types/Workflow/Templates.js.map +1 -0
- package/build/dist/UI/Components/Calendar/Calendar.js +1 -1
- package/build/dist/UI/Components/Calendar/Calendar.js.map +1 -1
- package/build/dist/UI/Components/Checkbox/Checkbox.js +1 -1
- package/build/dist/UI/Components/Checkbox/Checkbox.js.map +1 -1
- package/build/dist/UI/Components/Date/CustomTimeRangeModal.js +126 -0
- package/build/dist/UI/Components/Date/CustomTimeRangeModal.js.map +1 -0
- package/build/dist/UI/Components/Date/TimeRangePickerDropdown.js +123 -0
- package/build/dist/UI/Components/Date/TimeRangePickerDropdown.js.map +1 -0
- package/build/dist/UI/Components/Dictionary/Dictionary.js +47 -17
- package/build/dist/UI/Components/Dictionary/Dictionary.js.map +1 -1
- package/build/dist/UI/Components/FormModal/BasicFormModal.js.map +1 -1
- package/build/dist/UI/Components/Forms/Fields/ColorPicker.js +52 -13
- package/build/dist/UI/Components/Forms/Fields/ColorPicker.js.map +1 -1
- package/build/dist/UI/Components/Forms/Fields/IconPicker.js +28 -12
- package/build/dist/UI/Components/Forms/Fields/IconPicker.js.map +1 -1
- package/build/dist/UI/Components/Forms/Validation.js +44 -0
- package/build/dist/UI/Components/Forms/Validation.js.map +1 -1
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js +27 -4
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js.map +1 -1
- package/build/dist/UI/Components/Input/Input.js +13 -4
- package/build/dist/UI/Components/Input/Input.js.map +1 -1
- package/build/dist/UI/Components/KeyboardShortcut/KeyboardKey.js +163 -0
- package/build/dist/UI/Components/KeyboardShortcut/KeyboardKey.js.map +1 -0
- package/build/dist/UI/Components/KeyboardShortcut/KeyboardShortcut.js +47 -0
- package/build/dist/UI/Components/KeyboardShortcut/KeyboardShortcut.js.map +1 -0
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js +4 -4
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js +11 -1
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/KeyboardShortcutsHelp.js +10 -8
- package/build/dist/UI/Components/LogsViewer/components/KeyboardShortcutsHelp.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js +227 -14
- package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogTimeRangePicker.js +5 -108
- package/build/dist/UI/Components/LogsViewer/components/LogTimeRangePicker.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js +5 -0
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsTable.js +69 -5
- package/build/dist/UI/Components/LogsViewer/components/LogsTable.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsViewerToolbar.js +8 -0
- package/build/dist/UI/Components/LogsViewer/components/LogsViewerToolbar.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/types.js.map +1 -1
- package/build/dist/UI/Components/Markdown.tsx/MarkdownEditor.js +9 -2
- package/build/dist/UI/Components/Markdown.tsx/MarkdownEditor.js.map +1 -1
- package/build/dist/UI/Components/Modal/Modal.js +31 -5
- package/build/dist/UI/Components/Modal/Modal.js.map +1 -1
- package/build/dist/UI/Components/Navbar/NavBarMenuModal.js +8 -21
- package/build/dist/UI/Components/Navbar/NavBarMenuModal.js.map +1 -1
- package/build/dist/UI/Components/ProjectInvitations/PendingProjectInvitations.js +251 -0
- package/build/dist/UI/Components/ProjectInvitations/PendingProjectInvitations.js.map +1 -0
- package/build/dist/UI/Components/SimpleLogViewer/SimpleLogViewer.js +9 -2
- package/build/dist/UI/Components/SimpleLogViewer/SimpleLogViewer.js.map +1 -1
- package/build/dist/UI/Components/Table/Table.js +27 -15
- package/build/dist/UI/Components/Table/Table.js.map +1 -1
- package/build/dist/UI/Components/Table/TableBody.js +24 -18
- package/build/dist/UI/Components/Table/TableBody.js.map +1 -1
- package/build/dist/UI/Components/Table/TableHeader.js +9 -1
- package/build/dist/UI/Components/Table/TableHeader.js.map +1 -1
- package/build/dist/UI/Components/Table/TableRow.js +29 -21
- package/build/dist/UI/Components/Table/TableRow.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryTimeRangePicker.js +5 -105
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryTimeRangePicker.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ArgumentsForm.js +261 -14
- package/build/dist/UI/Components/Workflow/ArgumentsForm.js.map +1 -1
- package/build/dist/UI/Components/Workflow/Component.js +20 -19
- package/build/dist/UI/Components/Workflow/Component.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentReturnValueViewer.js +10 -1
- package/build/dist/UI/Components/Workflow/ComponentReturnValueViewer.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentSettingsModal.js +35 -7
- package/build/dist/UI/Components/Workflow/ComponentSettingsModal.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentValuePickerModal.js +57 -7
- package/build/dist/UI/Components/Workflow/ComponentValuePickerModal.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ComponentsModal.js +53 -18
- package/build/dist/UI/Components/Workflow/ComponentsModal.js.map +1 -1
- package/build/dist/UI/Components/Workflow/DocumentationViewer.js +19 -6
- package/build/dist/UI/Components/Workflow/DocumentationViewer.js.map +1 -1
- package/build/dist/UI/Components/Workflow/GraphLint.js +425 -0
- package/build/dist/UI/Components/Workflow/GraphLint.js.map +1 -0
- package/build/dist/UI/Components/Workflow/GraphLintSummary.js +231 -0
- package/build/dist/UI/Components/Workflow/GraphLintSummary.js.map +1 -0
- package/build/dist/UI/Components/Workflow/ModelColumnEditor.js +320 -0
- package/build/dist/UI/Components/Workflow/ModelColumnEditor.js.map +1 -0
- package/build/dist/UI/Components/Workflow/ModelSchema.js +156 -0
- package/build/dist/UI/Components/Workflow/ModelSchema.js.map +1 -0
- package/build/dist/UI/Components/Workflow/RunForm.js +22 -6
- package/build/dist/UI/Components/Workflow/RunForm.js.map +1 -1
- package/build/dist/UI/Components/Workflow/RunStatusWatcher.js +76 -0
- package/build/dist/UI/Components/Workflow/RunStatusWatcher.js.map +1 -0
- package/build/dist/UI/Components/Workflow/StepTraceViewer.js +76 -0
- package/build/dist/UI/Components/Workflow/StepTraceViewer.js.map +1 -0
- package/build/dist/UI/Components/Workflow/UseRunWatch.js +123 -0
- package/build/dist/UI/Components/Workflow/UseRunWatch.js.map +1 -0
- package/build/dist/UI/Components/Workflow/Utils.js +73 -1
- package/build/dist/UI/Components/Workflow/Utils.js.map +1 -1
- package/build/dist/UI/Components/Workflow/VariableModal.js +3 -2
- package/build/dist/UI/Components/Workflow/VariableModal.js.map +1 -1
- package/build/dist/UI/Components/Workflow/Workflow.js +92 -7
- package/build/dist/UI/Components/Workflow/Workflow.js.map +1 -1
- package/build/dist/UI/Components/Workflow/WorkflowIssuesModal.js +99 -0
- package/build/dist/UI/Components/Workflow/WorkflowIssuesModal.js.map +1 -0
- package/build/dist/UI/Components/Workflow/WorkflowLogModal.js +56 -0
- package/build/dist/UI/Components/Workflow/WorkflowLogModal.js.map +1 -0
- package/build/dist/UI/Components/Workflow/WorkflowStatusBar.js +92 -0
- package/build/dist/UI/Components/Workflow/WorkflowStatusBar.js.map +1 -0
- package/build/dist/UI/Types/LayeredDismissal.js +21 -0
- package/build/dist/UI/Types/LayeredDismissal.js.map +1 -0
- package/build/dist/UI/Types/UseAnchoredFieldPopup.js +74 -1
- package/build/dist/UI/Types/UseAnchoredFieldPopup.js.map +1 -1
- package/build/dist/UI/Utils/AIChatExport/ConversationMarkdown.js +9 -0
- package/build/dist/UI/Utils/AIChatExport/ConversationMarkdown.js.map +1 -1
- package/build/dist/UI/Utils/ModelAPI/ModelAPI.js +1 -1
- package/build/dist/UI/Utils/ModelAPI/ModelAPI.js.map +1 -1
- package/build/dist/UI/Utils/Platform.js +118 -0
- package/build/dist/UI/Utils/Platform.js.map +1 -0
- package/build/dist/UI/Utils/ProjectInvitationDisplay.js +106 -0
- package/build/dist/UI/Utils/ProjectInvitationDisplay.js.map +1 -0
- package/build/dist/Utils/Monitor/NetworkDeviceLinkRuleUtil.js +108 -0
- package/build/dist/Utils/Monitor/NetworkDeviceLinkRuleUtil.js.map +1 -0
- package/build/dist/Utils/Monitor/NetworkDeviceRoleUtil.js +386 -0
- package/build/dist/Utils/Monitor/NetworkDeviceRoleUtil.js.map +1 -0
- package/build/dist/Utils/Monitor/NetworkTopologyUtil.js +661 -126
- package/build/dist/Utils/Monitor/NetworkTopologyUtil.js.map +1 -1
- package/build/dist/Utils/Telemetry/CrossSignalScope.js +328 -0
- package/build/dist/Utils/Telemetry/CrossSignalScope.js.map +1 -0
- package/build/dist/Utils/Telemetry/EntityKey.js +57 -5
- package/build/dist/Utils/Telemetry/EntityKey.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityRelationship.js +1 -1
- package/jest.config.json +1 -0
- package/package.json +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryEntity.js.map +0 -1
- package/build/dist/Models/DatabaseModels/TelemetryEntityRelationship.js.map +0 -1
- package/build/dist/Server/Services/TelemetryEntityRelationshipService.js.map +0 -1
- package/build/dist/Server/Services/TelemetryEntityService.js.map +0 -1
|
@@ -15,13 +15,16 @@ import AIChatMessageStatus from "../../Types/AI/AIChatMessageStatus";
|
|
|
15
15
|
import { AIChatPageContextHelper, } from "../../Types/AI/AIChatPageContext";
|
|
16
16
|
import { AIChatPermissionModeHelper, } from "../../Types/AI/AIChatPermissionMode";
|
|
17
17
|
import { AIChatToolActionStatus, } from "../../Types/AI/AIChatTypes";
|
|
18
|
+
import AIRunEventType from "../../Types/AI/AIRunEventType";
|
|
18
19
|
import AIRunStatus from "../../Types/AI/AIRunStatus";
|
|
19
20
|
import AIRunType from "../../Types/AI/AIRunType";
|
|
20
21
|
import AIConversation from "../../Models/DatabaseModels/AIConversation";
|
|
21
|
-
import AIConversationMessage from "../../Models/DatabaseModels/AIConversationMessage";
|
|
22
|
+
import AIConversationMessage, { AIConversationMessageFeedback, } from "../../Models/DatabaseModels/AIConversationMessage";
|
|
22
23
|
import AIRun from "../../Models/DatabaseModels/AIRun";
|
|
24
|
+
import AIRunEvent from "../../Models/DatabaseModels/AIRunEvent";
|
|
23
25
|
import AIConversationService from "../Services/AIConversationService";
|
|
24
26
|
import AIConversationMessageService from "../Services/AIConversationMessageService";
|
|
27
|
+
import AIRunEventService from "../Services/AIRunEventService";
|
|
25
28
|
import AIRunService from "../Services/AIRunService";
|
|
26
29
|
import ProjectService from "../Services/ProjectService";
|
|
27
30
|
import LlmProviderService from "../Services/LlmProviderService";
|
|
@@ -30,6 +33,14 @@ import QueryHelper from "../Types/Database/QueryHelper";
|
|
|
30
33
|
import logger from "../Utils/Logger";
|
|
31
34
|
const MAX_USER_MESSAGE_LENGTH = 8000;
|
|
32
35
|
const MAX_CONCURRENT_RUNS_PER_PROJECT = 3;
|
|
36
|
+
// Final message content and run error for a turn the user stopped.
|
|
37
|
+
const STOPPED_BY_USER_TEXT = "Stopped by user.";
|
|
38
|
+
/*
|
|
39
|
+
* Cancel's terminal event must sort after every progress event the runner
|
|
40
|
+
* emitted — same convention as the runner's own failure finalizer, which
|
|
41
|
+
* starts its event sequence at 100000.
|
|
42
|
+
*/
|
|
43
|
+
const CANCEL_EVENT_SEQUENCE = 100000;
|
|
33
44
|
const router = Express.getRouter();
|
|
34
45
|
/*
|
|
35
46
|
* Starts a chat turn: validates and gates the request, creates the user and
|
|
@@ -503,5 +514,230 @@ router.post("/ai-chat/respond-to-approval", UserMiddleware.getUserMiddleware, as
|
|
|
503
514
|
return;
|
|
504
515
|
}
|
|
505
516
|
});
|
|
517
|
+
/*
|
|
518
|
+
* Stops the conversation's in-flight turn. Flips the active run to Cancelled,
|
|
519
|
+
* finalizes the in-flight assistant message as "Stopped by user." and emits a
|
|
520
|
+
* terminal run event so the polling UI sees closure. Every write is guarded on
|
|
521
|
+
* the row's current status, so racing the runner is safe: whichever side
|
|
522
|
+
* finalizes first wins and the loser's write matches zero rows (the runner
|
|
523
|
+
* also checks for cancellation cooperatively between its steps). Cancelling
|
|
524
|
+
* the run is also what releases the conversation for the next send —
|
|
525
|
+
* send-message's governor only blocks on Running/WaitingForApproval runs.
|
|
526
|
+
*/
|
|
527
|
+
router.post("/ai-chat/cancel-run", UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
528
|
+
try {
|
|
529
|
+
const props = await CommonAPI.getDatabaseCommonInteractionProps(req);
|
|
530
|
+
if (!props.userId) {
|
|
531
|
+
throw new NotAuthorizedException("AI chat requires a logged-in user session.");
|
|
532
|
+
}
|
|
533
|
+
if (!props.tenantId) {
|
|
534
|
+
throw new BadDataException("Project ID is required (tenantid header).");
|
|
535
|
+
}
|
|
536
|
+
const projectId = props.tenantId;
|
|
537
|
+
const userId = props.userId;
|
|
538
|
+
const conversationIdString = req.body["conversationId"];
|
|
539
|
+
if (!conversationIdString) {
|
|
540
|
+
throw new BadDataException("conversationId is required.");
|
|
541
|
+
}
|
|
542
|
+
const conversationId = new ObjectID(conversationIdString);
|
|
543
|
+
// The privacy pin makes this return null for other users' rows.
|
|
544
|
+
const conversation = await AIConversationService.findOneById({
|
|
545
|
+
id: conversationId,
|
|
546
|
+
select: { _id: true },
|
|
547
|
+
props: props,
|
|
548
|
+
});
|
|
549
|
+
if (!conversation) {
|
|
550
|
+
throw new BadDataException("Conversation not found.");
|
|
551
|
+
}
|
|
552
|
+
/*
|
|
553
|
+
* The conversation's live run: actively generating (Running) or paused
|
|
554
|
+
* for the user's approval (WaitingForApproval). The per-conversation
|
|
555
|
+
* governor allows at most one, so no sort is needed.
|
|
556
|
+
*/
|
|
557
|
+
const activeRun = await AIRunService.findOneBy({
|
|
558
|
+
query: {
|
|
559
|
+
conversationId: conversationId,
|
|
560
|
+
projectId: projectId,
|
|
561
|
+
status: QueryHelper.any([
|
|
562
|
+
AIRunStatus.Running,
|
|
563
|
+
AIRunStatus.WaitingForApproval,
|
|
564
|
+
]),
|
|
565
|
+
},
|
|
566
|
+
select: { _id: true },
|
|
567
|
+
props: { isRoot: true },
|
|
568
|
+
});
|
|
569
|
+
if (!activeRun) {
|
|
570
|
+
throw new BadDataException("No response is being generated in this conversation.");
|
|
571
|
+
}
|
|
572
|
+
/*
|
|
573
|
+
* Status-guarded finalization, the same shape as the runner's own
|
|
574
|
+
* finalizer: only a still-in-flight run is flipped, so a run the runner
|
|
575
|
+
* completed (or errored) inside the race window is never overwritten.
|
|
576
|
+
* updateOneBy returns the matched-row count — zero from both guards
|
|
577
|
+
* means the other side won and already wrote the final state.
|
|
578
|
+
*/
|
|
579
|
+
let cancelledRunCount = 0;
|
|
580
|
+
for (const inFlightRunStatus of [
|
|
581
|
+
AIRunStatus.Running,
|
|
582
|
+
AIRunStatus.WaitingForApproval,
|
|
583
|
+
]) {
|
|
584
|
+
cancelledRunCount += await AIRunService.updateOneBy({
|
|
585
|
+
query: {
|
|
586
|
+
_id: activeRun.id.toString(),
|
|
587
|
+
status: inFlightRunStatus,
|
|
588
|
+
},
|
|
589
|
+
data: {
|
|
590
|
+
status: AIRunStatus.Cancelled,
|
|
591
|
+
completedAt: OneUptimeDate.getCurrentDate(),
|
|
592
|
+
errorMessage: STOPPED_BY_USER_TEXT,
|
|
593
|
+
// A cancelled turn must never be resumable.
|
|
594
|
+
pausedState: null,
|
|
595
|
+
},
|
|
596
|
+
props: { isRoot: true },
|
|
597
|
+
});
|
|
598
|
+
}
|
|
599
|
+
/*
|
|
600
|
+
* Finalize the run's in-flight assistant message the same guarded way:
|
|
601
|
+
* a message another path already finalized — completed with its full
|
|
602
|
+
* answer, or errored — keeps what it has.
|
|
603
|
+
*/
|
|
604
|
+
for (const inFlightMessageStatus of [
|
|
605
|
+
AIChatMessageStatus.InProgress,
|
|
606
|
+
AIChatMessageStatus.WaitingForApproval,
|
|
607
|
+
]) {
|
|
608
|
+
await AIConversationMessageService.updateOneBy({
|
|
609
|
+
query: {
|
|
610
|
+
aiRunId: activeRun.id,
|
|
611
|
+
status: inFlightMessageStatus,
|
|
612
|
+
},
|
|
613
|
+
data: {
|
|
614
|
+
status: AIChatMessageStatus.Cancelled,
|
|
615
|
+
contentInMarkdown: STOPPED_BY_USER_TEXT,
|
|
616
|
+
},
|
|
617
|
+
props: { isRoot: true },
|
|
618
|
+
});
|
|
619
|
+
}
|
|
620
|
+
/*
|
|
621
|
+
* Terminal event, only when this request actually took the run —
|
|
622
|
+
* emitting closure over a turn the runner finished would tell the UI a
|
|
623
|
+
* completed answer failed. RunFailed is the event enum's terminal
|
|
624
|
+
* "did not finish" member; the summary carries the human reason.
|
|
625
|
+
*/
|
|
626
|
+
if (cancelledRunCount > 0) {
|
|
627
|
+
try {
|
|
628
|
+
const cancelEvent = new AIRunEvent();
|
|
629
|
+
cancelEvent.projectId = projectId;
|
|
630
|
+
cancelEvent.aiRunId = activeRun.id;
|
|
631
|
+
cancelEvent.userId = userId;
|
|
632
|
+
cancelEvent.sequence = CANCEL_EVENT_SEQUENCE;
|
|
633
|
+
cancelEvent.eventType = AIRunEventType.RunFailed;
|
|
634
|
+
cancelEvent.resultSummary = { errorMessage: STOPPED_BY_USER_TEXT };
|
|
635
|
+
await AIRunEventService.create({
|
|
636
|
+
data: cancelEvent,
|
|
637
|
+
props: { isRoot: true },
|
|
638
|
+
});
|
|
639
|
+
}
|
|
640
|
+
catch (error) {
|
|
641
|
+
// Events are progress telemetry — never fail the cancel over them.
|
|
642
|
+
logger.error(`Failed to emit AI chat cancel event: ${error instanceof Error ? error.message : String(error)}`);
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
Response.sendJsonObjectResponse(req, res, {
|
|
646
|
+
conversationId: conversationId.toString(),
|
|
647
|
+
aiRunId: activeRun.id.toString(),
|
|
648
|
+
cancelled: cancelledRunCount > 0,
|
|
649
|
+
});
|
|
650
|
+
return;
|
|
651
|
+
}
|
|
652
|
+
catch (err) {
|
|
653
|
+
next(err);
|
|
654
|
+
return;
|
|
655
|
+
}
|
|
656
|
+
});
|
|
657
|
+
/*
|
|
658
|
+
* Stores thumbs feedback on an assistant message (or clears it with null).
|
|
659
|
+
* Ownership is enforced the same way as the other routes: the message AND its
|
|
660
|
+
* conversation must resolve under the requesting user's props (the privacy
|
|
661
|
+
* pin returns null for other users' rows), and only assistant-role messages
|
|
662
|
+
* accept feedback. Persistence only — no analytics pipeline yet.
|
|
663
|
+
*/
|
|
664
|
+
router.post("/ai-chat/message-feedback", UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
665
|
+
try {
|
|
666
|
+
const props = await CommonAPI.getDatabaseCommonInteractionProps(req);
|
|
667
|
+
if (!props.userId) {
|
|
668
|
+
throw new NotAuthorizedException("AI chat requires a logged-in user session.");
|
|
669
|
+
}
|
|
670
|
+
if (!props.tenantId) {
|
|
671
|
+
throw new BadDataException("Project ID is required (tenantid header).");
|
|
672
|
+
}
|
|
673
|
+
const messageIdString = req.body["messageId"];
|
|
674
|
+
if (!messageIdString) {
|
|
675
|
+
throw new BadDataException("messageId is required.");
|
|
676
|
+
}
|
|
677
|
+
const messageId = new ObjectID(messageIdString);
|
|
678
|
+
/*
|
|
679
|
+
* Validate before any read: feedback is exactly "Up", "Down" or null
|
|
680
|
+
* (null clears). Anything else — including a missing key — is a bad
|
|
681
|
+
* request, never silently coerced.
|
|
682
|
+
*/
|
|
683
|
+
if (!("feedback" in req.body)) {
|
|
684
|
+
throw new BadDataException('feedback is required: "Up", "Down" or null (null clears feedback).');
|
|
685
|
+
}
|
|
686
|
+
const rawFeedback = req.body["feedback"];
|
|
687
|
+
let feedback = null;
|
|
688
|
+
if (rawFeedback !== null && rawFeedback !== undefined) {
|
|
689
|
+
if (rawFeedback !== AIConversationMessageFeedback.Up &&
|
|
690
|
+
rawFeedback !== AIConversationMessageFeedback.Down) {
|
|
691
|
+
throw new BadDataException('feedback must be "Up", "Down" or null (null clears feedback).');
|
|
692
|
+
}
|
|
693
|
+
feedback = rawFeedback;
|
|
694
|
+
}
|
|
695
|
+
// The privacy pin makes this return null for other users' rows.
|
|
696
|
+
const message = await AIConversationMessageService.findOneById({
|
|
697
|
+
id: messageId,
|
|
698
|
+
select: {
|
|
699
|
+
_id: true,
|
|
700
|
+
conversationId: true,
|
|
701
|
+
role: true,
|
|
702
|
+
},
|
|
703
|
+
props: props,
|
|
704
|
+
});
|
|
705
|
+
if (!message || !message.conversationId) {
|
|
706
|
+
throw new BadDataException("Message not found.");
|
|
707
|
+
}
|
|
708
|
+
/*
|
|
709
|
+
* Belt and braces, matching respond-to-approval: the message's
|
|
710
|
+
* conversation must also resolve under this user's props.
|
|
711
|
+
*/
|
|
712
|
+
const conversation = await AIConversationService.findOneById({
|
|
713
|
+
id: message.conversationId,
|
|
714
|
+
select: { _id: true },
|
|
715
|
+
props: props,
|
|
716
|
+
});
|
|
717
|
+
if (!conversation) {
|
|
718
|
+
throw new BadDataException("Message not found.");
|
|
719
|
+
}
|
|
720
|
+
if (message.role !== AIChatMessageRole.Assistant) {
|
|
721
|
+
throw new BadDataException("Feedback can only be left on assistant messages.");
|
|
722
|
+
}
|
|
723
|
+
// Root write: message columns are deliberately not user-writable.
|
|
724
|
+
await AIConversationMessageService.updateOneById({
|
|
725
|
+
id: messageId,
|
|
726
|
+
data: {
|
|
727
|
+
userFeedback: feedback,
|
|
728
|
+
},
|
|
729
|
+
props: { isRoot: true },
|
|
730
|
+
});
|
|
731
|
+
Response.sendJsonObjectResponse(req, res, {
|
|
732
|
+
messageId: messageId.toString(),
|
|
733
|
+
feedback: feedback,
|
|
734
|
+
});
|
|
735
|
+
return;
|
|
736
|
+
}
|
|
737
|
+
catch (err) {
|
|
738
|
+
next(err);
|
|
739
|
+
return;
|
|
740
|
+
}
|
|
741
|
+
});
|
|
506
742
|
export default router;
|
|
507
743
|
//# sourceMappingURL=AIChatAPI.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AIChatAPI.js","sourceRoot":"","sources":["../../../../Server/API/AIChatAPI.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"AIChatAPI.js","sourceRoot":"","sources":["../../../../Server/API/AIChatAPI.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import UserMiddleware from "../Middleware/UserAuthorization";
|
|
2
|
+
import PublicDashboardRateLimit, { PublicDashboardRateLimitBucket, } from "../Middleware/PublicDashboardRateLimit";
|
|
2
3
|
import DashboardService from "../Services/DashboardService";
|
|
3
4
|
import DashboardDomainService from "../Services/DashboardDomainService";
|
|
4
5
|
import CookieUtil from "../Utils/Cookie";
|
|
@@ -32,6 +33,7 @@ import ProxmoxResource from "../../Models/DatabaseModels/ProxmoxResource";
|
|
|
32
33
|
import CephResource from "../../Models/DatabaseModels/CephResource";
|
|
33
34
|
import DockerSwarmResource from "../../Models/DatabaseModels/DockerSwarmResource";
|
|
34
35
|
import NetworkSite from "../../Models/DatabaseModels/NetworkSite";
|
|
36
|
+
import ServiceLevelObjective from "../../Models/DatabaseModels/ServiceLevelObjective";
|
|
35
37
|
import Span from "../../Models/AnalyticsModels/Span";
|
|
36
38
|
import Log from "../../Models/AnalyticsModels/Log";
|
|
37
39
|
import IncidentService from "../Services/IncidentService";
|
|
@@ -47,13 +49,30 @@ import ProxmoxResourceService from "../Services/ProxmoxResourceService";
|
|
|
47
49
|
import CephResourceService from "../Services/CephResourceService";
|
|
48
50
|
import DockerSwarmResourceService from "../Services/DockerSwarmResourceService";
|
|
49
51
|
import NetworkSiteService from "../Services/NetworkSiteService";
|
|
52
|
+
import ServiceLevelObjectiveService from "../Services/ServiceLevelObjectiveService";
|
|
50
53
|
import SpanService from "../Services/SpanService";
|
|
51
54
|
import LogService from "../Services/LogService";
|
|
55
|
+
import SloHistoryService from "../Services/SloHistoryService";
|
|
52
56
|
import DashboardComponentType from "../../Types/Dashboard/DashboardComponentType";
|
|
53
57
|
import { DashboardVariableType } from "../../Types/Dashboard/DashboardVariable";
|
|
54
58
|
import PublicDashboardResourceListPolicy from "../Utils/Dashboard/PublicDashboardResourceListPolicy";
|
|
59
|
+
import PublicDashboardSloHistoryPolicy from "../Utils/Dashboard/PublicDashboardSloHistoryPolicy";
|
|
60
|
+
import AggregationType from "../../Types/BaseDatabase/AggregationType";
|
|
61
|
+
import InBetween from "../../Types/BaseDatabase/InBetween";
|
|
55
62
|
import { applyIncidentSelfPrivacyFilter } from "../Utils/Incident/IncidentPrivacyFilter";
|
|
56
63
|
import { applyAlertSelfPrivacyFilter } from "../Utils/Alert/AlertPrivacyFilter";
|
|
64
|
+
/*
|
|
65
|
+
* Named rather than inlined below: the SLO history route selects its widget
|
|
66
|
+
* through the same registry entry as the resource-list route, so both must
|
|
67
|
+
* agree on which stored widgets count as "an SLO widget on this dashboard".
|
|
68
|
+
*/
|
|
69
|
+
const PUBLIC_DASHBOARD_SLO_RESOURCE = {
|
|
70
|
+
modelType: ServiceLevelObjective,
|
|
71
|
+
service: ServiceLevelObjectiveService,
|
|
72
|
+
widgets: {
|
|
73
|
+
[DashboardComponentType.Slo]: null,
|
|
74
|
+
},
|
|
75
|
+
};
|
|
57
76
|
const PUBLIC_DASHBOARD_RESOURCES = {
|
|
58
77
|
incident: {
|
|
59
78
|
modelType: Incident,
|
|
@@ -212,6 +231,7 @@ const PUBLIC_DASHBOARD_RESOURCES = {
|
|
|
212
231
|
[DashboardComponentType.LogStream]: null,
|
|
213
232
|
},
|
|
214
233
|
},
|
|
234
|
+
slo: PUBLIC_DASHBOARD_SLO_RESOURCE,
|
|
215
235
|
};
|
|
216
236
|
/*
|
|
217
237
|
* Resolve the :dashboardIdOrDomain route param to a dashboard ID. Accepts
|
|
@@ -254,11 +274,30 @@ const resolveDashboardIdOrThrow = async (dashboardIdOrDomain) => {
|
|
|
254
274
|
};
|
|
255
275
|
export default class DashboardAPI extends BaseAPI {
|
|
256
276
|
constructor() {
|
|
257
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
277
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
258
278
|
super(Dashboard, DashboardService);
|
|
279
|
+
/*
|
|
280
|
+
* Rate limiting for the anonymous public dashboard surface. Nginx exposes
|
|
281
|
+
* every route below under /public-dashboard-api and rewrites it to
|
|
282
|
+
* /api/dashboard before it reaches us, so this router IS that prefix and
|
|
283
|
+
* the limiter goes on all of it uniformly rather than on the handful of
|
|
284
|
+
* routes that happen to be the most expensive today.
|
|
285
|
+
*
|
|
286
|
+
* Registered ahead of UserMiddleware so a flood is rejected before it
|
|
287
|
+
* costs a session lookup. See PublicDashboardRateLimit for the budgets
|
|
288
|
+
* and for why the two buckets fail in opposite directions when Redis is
|
|
289
|
+
* unreachable.
|
|
290
|
+
*/
|
|
291
|
+
const publicDashboardRateLimit = PublicDashboardRateLimit.getMiddleware(PublicDashboardRateLimitBucket.Read);
|
|
292
|
+
/*
|
|
293
|
+
* /master-password verifies a bcrypt hash per request, so unthrottled it
|
|
294
|
+
* is an online password-guessing oracle that also burns a CPU-bound hash
|
|
295
|
+
* per guess. Its own, much tighter bucket.
|
|
296
|
+
*/
|
|
297
|
+
const masterPasswordRateLimit = PublicDashboardRateLimit.getMiddleware(PublicDashboardRateLimitBucket.MasterPassword);
|
|
259
298
|
// SEO endpoint - resolve dashboard by ID or domain
|
|
260
299
|
this.router.get(`${(_a = new this.entityType()
|
|
261
|
-
.getCrudApiPath()) === null || _a === void 0 ? void 0 : _a.toString()}/seo/:dashboardIdOrDomain`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
300
|
+
.getCrudApiPath()) === null || _a === void 0 ? void 0 : _a.toString()}/seo/:dashboardIdOrDomain`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
262
301
|
var _a;
|
|
263
302
|
try {
|
|
264
303
|
const dashboardIdOrDomain = req.params["dashboardIdOrDomain"];
|
|
@@ -384,15 +423,15 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
384
423
|
};
|
|
385
424
|
const overviewApiPath = `${(_b = new this.entityType()
|
|
386
425
|
.getCrudApiPath()) === null || _b === void 0 ? void 0 : _b.toString()}/overview/:dashboardIdOrDomain`;
|
|
387
|
-
this.router.post(overviewApiPath, UserMiddleware.getUserMiddleware, overviewHandler);
|
|
426
|
+
this.router.post(overviewApiPath, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, overviewHandler);
|
|
388
427
|
/*
|
|
389
428
|
* GET variant of the overview endpoint. Same middleware and same handler
|
|
390
429
|
* as the POST route above — non-public dashboards are rejected for
|
|
391
430
|
* unauthenticated callers exactly as they are on POST.
|
|
392
431
|
*/
|
|
393
|
-
this.router.get(overviewApiPath, UserMiddleware.getUserMiddleware, overviewHandler);
|
|
432
|
+
this.router.get(overviewApiPath, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, overviewHandler);
|
|
394
433
|
// Domain resolution endpoint
|
|
395
|
-
this.router.post(`${(_c = new this.entityType().getCrudApiPath()) === null || _c === void 0 ? void 0 : _c.toString()}/domain`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
434
|
+
this.router.post(`${(_c = new this.entityType().getCrudApiPath()) === null || _c === void 0 ? void 0 : _c.toString()}/domain`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
396
435
|
try {
|
|
397
436
|
if (!req.body["domain"]) {
|
|
398
437
|
throw new BadDataException("domain is required in request body");
|
|
@@ -426,7 +465,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
426
465
|
});
|
|
427
466
|
// Metadata endpoint - returns dashboard info for the public viewer
|
|
428
467
|
this.router.post(`${(_d = new this.entityType()
|
|
429
|
-
.getCrudApiPath()) === null || _d === void 0 ? void 0 : _d.toString()}/metadata/:dashboardId`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
468
|
+
.getCrudApiPath()) === null || _d === void 0 ? void 0 : _d.toString()}/metadata/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
430
469
|
var _a;
|
|
431
470
|
try {
|
|
432
471
|
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
@@ -474,7 +513,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
474
513
|
});
|
|
475
514
|
// Public view-config endpoint - returns dashboard view config for the public viewer
|
|
476
515
|
this.router.post(`${(_e = new this.entityType()
|
|
477
|
-
.getCrudApiPath()) === null || _e === void 0 ? void 0 : _e.toString()}/view-config/:dashboardId`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
516
|
+
.getCrudApiPath()) === null || _e === void 0 ? void 0 : _e.toString()}/view-config/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
478
517
|
var _a;
|
|
479
518
|
try {
|
|
480
519
|
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
@@ -554,7 +593,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
554
593
|
* dashboard never renders (GHSA-w332-x78m-vf3v).
|
|
555
594
|
*/
|
|
556
595
|
this.router.post(`${(_f = new this.entityType()
|
|
557
|
-
.getCrudApiPath()) === null || _f === void 0 ? void 0 : _f.toString()}/attribute-values/:dashboardId`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
596
|
+
.getCrudApiPath()) === null || _f === void 0 ? void 0 : _f.toString()}/attribute-values/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
558
597
|
try {
|
|
559
598
|
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
560
599
|
const accessResult = await DashboardService.hasReadAccess({
|
|
@@ -633,7 +672,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
633
672
|
* whitelist, master password) — never falls back to project-wide read.
|
|
634
673
|
*/
|
|
635
674
|
this.router.post(`${(_g = new this.entityType()
|
|
636
|
-
.getCrudApiPath()) === null || _g === void 0 ? void 0 : _g.toString()}/metric-types/:dashboardId`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
675
|
+
.getCrudApiPath()) === null || _g === void 0 ? void 0 : _g.toString()}/metric-types/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
637
676
|
try {
|
|
638
677
|
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
639
678
|
const accessResult = await DashboardService.hasReadAccess({
|
|
@@ -714,7 +753,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
714
753
|
* DashboardService.hasReadAccess.
|
|
715
754
|
*/
|
|
716
755
|
this.router.post(`${(_h = new this.entityType()
|
|
717
|
-
.getCrudApiPath()) === null || _h === void 0 ? void 0 : _h.toString()}/metrics-aggregate/:dashboardId`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
756
|
+
.getCrudApiPath()) === null || _h === void 0 ? void 0 : _h.toString()}/metrics-aggregate/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
718
757
|
try {
|
|
719
758
|
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
720
759
|
const accessResult = await DashboardService.hasReadAccess({
|
|
@@ -891,7 +930,7 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
891
930
|
* project. Authorization reuses DashboardService.hasReadAccess.
|
|
892
931
|
*/
|
|
893
932
|
this.router.post(`${(_j = new this.entityType()
|
|
894
|
-
.getCrudApiPath()) === null || _j === void 0 ? void 0 : _j.toString()}/resource-list/:dashboardId/:resourceType`, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
933
|
+
.getCrudApiPath()) === null || _j === void 0 ? void 0 : _j.toString()}/resource-list/:dashboardId/:resourceType`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
895
934
|
try {
|
|
896
935
|
const resourceType = req.params["resourceType"];
|
|
897
936
|
const config = PUBLIC_DASHBOARD_RESOURCES[resourceType];
|
|
@@ -904,8 +943,108 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
904
943
|
next(err);
|
|
905
944
|
}
|
|
906
945
|
});
|
|
946
|
+
/*
|
|
947
|
+
* Public SLO history aggregation for the SLO widget's Chart display.
|
|
948
|
+
*
|
|
949
|
+
* The SLO's CURRENT numbers come back through /resource-list/.../slo
|
|
950
|
+
* like every other widget's data; this route serves the time SERIES
|
|
951
|
+
* behind them, which lives in ClickHouse and so needs an aggregation
|
|
952
|
+
* rather than a list.
|
|
953
|
+
*
|
|
954
|
+
* Nothing the caller sends selects data. The SLO and the series are
|
|
955
|
+
* read out of the stored widget (identified by componentId), the
|
|
956
|
+
* aggregation columns are fixed, the bucket size is recomputed from the
|
|
957
|
+
* window, and the project is pinned to the dashboard's — so the only
|
|
958
|
+
* caller-supplied input that survives is the time window itself.
|
|
959
|
+
* Authorization reuses DashboardService.hasReadAccess.
|
|
960
|
+
*/
|
|
907
961
|
this.router.post(`${(_k = new this.entityType()
|
|
908
|
-
.getCrudApiPath()) === null || _k === void 0 ? void 0 : _k.toString()}/
|
|
962
|
+
.getCrudApiPath()) === null || _k === void 0 ? void 0 : _k.toString()}/slo-history-aggregate/:dashboardId`, publicDashboardRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
963
|
+
try {
|
|
964
|
+
const dashboardId = new ObjectID(req.params["dashboardId"]);
|
|
965
|
+
const accessResult = await DashboardService.hasReadAccess({
|
|
966
|
+
dashboardId,
|
|
967
|
+
req,
|
|
968
|
+
});
|
|
969
|
+
if (!accessResult.hasReadAccess) {
|
|
970
|
+
throw (accessResult.error ||
|
|
971
|
+
new BadDataException("Access denied to this dashboard."));
|
|
972
|
+
}
|
|
973
|
+
if (!req.body || !req.body["aggregateBy"]) {
|
|
974
|
+
throw new BadDataException("aggregateBy is required.");
|
|
975
|
+
}
|
|
976
|
+
const dashboard = await DashboardService.findOneById({
|
|
977
|
+
id: dashboardId,
|
|
978
|
+
select: {
|
|
979
|
+
_id: true,
|
|
980
|
+
projectId: true,
|
|
981
|
+
dashboardViewConfig: true,
|
|
982
|
+
},
|
|
983
|
+
props: {
|
|
984
|
+
isRoot: true,
|
|
985
|
+
},
|
|
986
|
+
});
|
|
987
|
+
if (!dashboard || !dashboard.projectId) {
|
|
988
|
+
throw new NotFoundException("Dashboard not found");
|
|
989
|
+
}
|
|
990
|
+
const widget = DashboardAPI.selectPublicResourceWidget({
|
|
991
|
+
dashboardViewConfig: dashboard.dashboardViewConfig,
|
|
992
|
+
config: PUBLIC_DASHBOARD_SLO_RESOURCE,
|
|
993
|
+
requestedComponentId: req.body["componentId"],
|
|
994
|
+
});
|
|
995
|
+
const policy = PublicDashboardSloHistoryPolicy.build({
|
|
996
|
+
widget,
|
|
997
|
+
requestedAggregateBy: JSONFunctions.deserialize(req.body["aggregateBy"]),
|
|
998
|
+
});
|
|
999
|
+
const aggregateResult = await SloHistoryService.aggregateBy({
|
|
1000
|
+
/*
|
|
1001
|
+
* Narrow the assertion to `query` alone. Everything else in
|
|
1002
|
+
* this literal is typed against SloHistory — the column names
|
|
1003
|
+
* below are `keyof SloHistory` — so asserting the whole object
|
|
1004
|
+
* would turn off exactly the check that catches a typo or a
|
|
1005
|
+
* renamed column at compile time instead of at runtime.
|
|
1006
|
+
*/
|
|
1007
|
+
query: {
|
|
1008
|
+
projectId: dashboard.projectId,
|
|
1009
|
+
sloId: policy.serviceLevelObjectiveId,
|
|
1010
|
+
metricName: policy.metricName,
|
|
1011
|
+
bucketStart: new InBetween(policy.startDate, policy.endDate),
|
|
1012
|
+
},
|
|
1013
|
+
/*
|
|
1014
|
+
* All three SLO series are instantaneous gauges, so averaging
|
|
1015
|
+
* the raw buckets that fall inside one chart point is the only
|
|
1016
|
+
* roll-up that means anything — same as the authenticated
|
|
1017
|
+
* widget and the SLO detail page.
|
|
1018
|
+
*/
|
|
1019
|
+
aggregationType: AggregationType.Avg,
|
|
1020
|
+
aggregateColumnName: "value",
|
|
1021
|
+
aggregationTimestampColumnName: "bucketStart",
|
|
1022
|
+
aggregationInterval: policy.aggregationInterval,
|
|
1023
|
+
startTimestamp: policy.startDate,
|
|
1024
|
+
endTimestamp: policy.endDate,
|
|
1025
|
+
// Oldest -> newest so the line renders left to right.
|
|
1026
|
+
sort: {
|
|
1027
|
+
bucketStart: SortOrder.Ascending,
|
|
1028
|
+
},
|
|
1029
|
+
limit: policy.limit,
|
|
1030
|
+
skip: 0,
|
|
1031
|
+
/*
|
|
1032
|
+
* Run as root: authorization is already enforced by
|
|
1033
|
+
* hasReadAccess above and the project scope is pinned in the
|
|
1034
|
+
* query.
|
|
1035
|
+
*/
|
|
1036
|
+
props: {
|
|
1037
|
+
isRoot: true,
|
|
1038
|
+
},
|
|
1039
|
+
});
|
|
1040
|
+
return Response.sendJsonObjectResponse(req, res, Object.assign({}, aggregateResult));
|
|
1041
|
+
}
|
|
1042
|
+
catch (err) {
|
|
1043
|
+
next(err);
|
|
1044
|
+
}
|
|
1045
|
+
});
|
|
1046
|
+
this.router.post(`${(_l = new this.entityType()
|
|
1047
|
+
.getCrudApiPath()) === null || _l === void 0 ? void 0 : _l.toString()}/master-password/:dashboardId`, masterPasswordRateLimit, UserMiddleware.getUserMiddleware, async (req, res, next) => {
|
|
909
1048
|
try {
|
|
910
1049
|
if (!req.params["dashboardId"]) {
|
|
911
1050
|
throw new BadDataException("Dashboard ID not found");
|
|
@@ -992,7 +1131,20 @@ export default class DashboardAPI extends BaseAPI {
|
|
|
992
1131
|
componentType: typeof componentObject["componentType"] === "string"
|
|
993
1132
|
? componentObject["componentType"]
|
|
994
1133
|
: "",
|
|
995
|
-
|
|
1134
|
+
/*
|
|
1135
|
+
* Widgets do not agree on where the author's heading lives — each
|
|
1136
|
+
* one's settings form names its own argument (`chartTitle`,
|
|
1137
|
+
* `gaugeTitle`, `tableTitle`, the SLO widget's `widgetTitle`, plain
|
|
1138
|
+
* `title` elsewhere). Read every key that is actually a heading
|
|
1139
|
+
* today, so a summary is not blank for a widget that plainly has a
|
|
1140
|
+
* title on the page. A widget type added later with yet another key
|
|
1141
|
+
* needs adding here too.
|
|
1142
|
+
*/
|
|
1143
|
+
title: getStringArgument("chartTitle") ||
|
|
1144
|
+
getStringArgument("gaugeTitle") ||
|
|
1145
|
+
getStringArgument("tableTitle") ||
|
|
1146
|
+
getStringArgument("widgetTitle") ||
|
|
1147
|
+
getStringArgument("title"),
|
|
996
1148
|
description: getStringArgument("chartDescription"),
|
|
997
1149
|
text: getStringArgument("text"),
|
|
998
1150
|
metricNames: Array.from(DashboardAPI.collectDashboardMetricNames(component)).sort(),
|