@oneuptime/common 13.0.4 → 13.0.5

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.
Files changed (673) hide show
  1. package/Models/DatabaseModels/Index.ts +4 -0
  2. package/Models/DatabaseModels/RumApplication.ts +1 -1
  3. package/Models/DatabaseModels/SecurityEventConnection.ts +457 -0
  4. package/Models/DatabaseModels/SecurityEventConnectionRun.ts +263 -0
  5. package/Models/DatabaseModels/TelemetryIngestionKey.ts +2 -2
  6. package/Server/API/AIInvestigationAPI.ts +484 -24
  7. package/Server/API/GoogleSecOpsConnectionAPI.ts +249 -8
  8. package/Server/API/SecurityEventConnectionAPI.ts +250 -0
  9. package/Server/API/TelemetryAPI.ts +402 -265
  10. package/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.ts +99 -0
  11. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +2 -0
  12. package/Server/Middleware/TelemetryIngest.ts +101 -6
  13. package/Server/Services/ExceptionAggregationService.ts +7 -16
  14. package/Server/Services/GoogleSecOpsConnectionService.ts +15 -0
  15. package/Server/Services/Index.ts +4 -0
  16. package/Server/Services/InventoryItemService.ts +28 -0
  17. package/Server/Services/LogAggregationService.ts +17 -23
  18. package/Server/Services/MetricAggregationService.ts +4 -14
  19. package/Server/Services/SecurityEventConnectionRunService.ts +10 -0
  20. package/Server/Services/SecurityEventConnectionService.ts +538 -0
  21. package/Server/Services/TraceAggregationService.ts +77 -28
  22. package/Server/Types/AnalyticsDatabase/ModelPermission.ts +9 -0
  23. package/Server/Utils/AI/Chat/ObservabilityAssistant.ts +13 -1
  24. package/Server/Utils/AI/SRE/AIInvestigationEngine.ts +15 -1
  25. package/Server/Utils/AI/SRE/InvestigationEvidence.ts +658 -0
  26. package/Server/Utils/AI/SRE/InvestigationReferences.ts +324 -0
  27. package/Server/Utils/AI/Toolbox/Index.ts +38 -0
  28. package/Server/Utils/AI/Toolbox/TimelineTools.ts +9 -2
  29. package/Server/Utils/AnalyticsDatabase/StatementGenerator.ts +80 -0
  30. package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +5 -3
  31. package/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.ts +1108 -0
  32. package/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.ts +732 -0
  33. package/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.ts +495 -0
  34. package/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.ts +689 -0
  35. package/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.ts +767 -0
  36. package/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.ts +571 -0
  37. package/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.ts +827 -0
  38. package/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.ts +610 -0
  39. package/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.ts +549 -0
  40. package/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.ts +830 -0
  41. package/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.ts +684 -0
  42. package/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.ts +487 -0
  43. package/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.ts +778 -0
  44. package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.ts +1002 -0
  45. package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.ts +556 -0
  46. package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.ts +275 -0
  47. package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.ts +53 -0
  48. package/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.ts +709 -0
  49. package/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.ts +596 -0
  50. package/Server/Utils/SecurityEvent/Connectors/Types.ts +191 -0
  51. package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.ts +353 -65
  52. package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.ts +777 -0
  53. package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.ts +747 -148
  54. package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.ts +48 -2
  55. package/Server/Utils/SecurityEvent/SecurityEventDedupe.ts +81 -0
  56. package/Server/Utils/SessionReplay/SessionReplayReadService.ts +741 -40
  57. package/Server/Utils/StartServer.ts +10 -0
  58. package/Server/Utils/Telemetry/EntityRegistry.ts +8 -0
  59. package/Server/Utils/Telemetry/KubernetesResourceAttributes.ts +108 -0
  60. package/Server/Utils/Telemetry/ResourceEntityFilter.ts +174 -93
  61. package/Server/Utils/Telemetry/ResourceFacetPlanner.ts +251 -0
  62. package/Server/Utils/Telemetry/ResourceFacetResolver.ts +248 -413
  63. package/Server/Utils/Telemetry/ServiceDependencyDiscovery.ts +668 -0
  64. package/Server/Utils/Telemetry/TraceContextPropagation.ts +348 -0
  65. package/Server/Utils/Telemetry.ts +18 -0
  66. package/Tests/App/Dashboard/AIInvestigationHeaderStatus.test.tsx +413 -0
  67. package/Tests/App/Dashboard/AIRootCauseFeedItem.test.tsx +285 -0
  68. package/Tests/App/Dashboard/AffectedResourcesDisplay.test.tsx +242 -0
  69. package/Tests/App/Dashboard/AlertEpisodeViewFields.test.tsx +601 -15
  70. package/Tests/App/Dashboard/ChangeAlertStateAIHeader.test.tsx +835 -0
  71. package/Tests/App/Dashboard/CloudResourceTelemetryScope.test.ts +41 -0
  72. package/Tests/App/Dashboard/ConnectionTestModal.test.tsx +604 -0
  73. package/Tests/App/Dashboard/ConnectorTestReportView.test.tsx +738 -0
  74. package/Tests/App/Dashboard/DashboardLazyPages.test.tsx +153 -6
  75. package/Tests/App/Dashboard/EntityDetailPanel.test.tsx +165 -0
  76. package/Tests/App/Dashboard/EpisodeChangeState.test.tsx +1069 -0
  77. package/Tests/App/Dashboard/EpisodeMembersCard.test.tsx +772 -0
  78. package/Tests/App/Dashboard/EventOverviewPages.test.tsx +2354 -0
  79. package/Tests/App/Dashboard/EventOverviewSkeleton.test.tsx +210 -0
  80. package/Tests/App/Dashboard/EventStatBar.test.tsx +392 -0
  81. package/Tests/App/Dashboard/EventStatusPanel.test.tsx +247 -0
  82. package/Tests/App/Dashboard/ExceptionAIAssistance.test.tsx +606 -0
  83. package/Tests/App/Dashboard/ExceptionBreadcrumbTimeline.test.tsx +273 -0
  84. package/Tests/App/Dashboard/ExceptionDetailSideMenu.test.tsx +176 -0
  85. package/Tests/App/Dashboard/ExceptionOverviewCards.test.tsx +366 -0
  86. package/Tests/App/Dashboard/ExceptionSignalPages.test.tsx +371 -0
  87. package/Tests/App/Dashboard/ExceptionStackFrameViewer.test.tsx +440 -0
  88. package/Tests/App/Dashboard/ExceptionSummary.test.tsx +381 -0
  89. package/Tests/App/Dashboard/ExceptionTriage.test.tsx +306 -0
  90. package/Tests/App/Dashboard/ExceptionsResourceFacets.test.tsx +604 -0
  91. package/Tests/App/Dashboard/ExceptionsViewerEntityChips.test.tsx +706 -0
  92. package/Tests/App/Dashboard/FeedOrdering.test.ts +32 -0
  93. package/Tests/App/Dashboard/GoogleSecOpsConnectionForm.test.tsx +838 -0
  94. package/Tests/App/Dashboard/GoogleSecOpsConnectionsErrors.test.tsx +18 -0
  95. package/Tests/App/Dashboard/GoogleSecOpsDiagnostics.test.tsx +297 -20
  96. package/Tests/App/Dashboard/IncidentEpisodeViewFields.test.tsx +618 -13
  97. package/Tests/App/Dashboard/InfrastructureExplorer.test.tsx +254 -207
  98. package/Tests/App/Dashboard/InfrastructureGraph.test.tsx +303 -135
  99. package/Tests/App/Dashboard/InvestigationEvidenceList.test.tsx +1251 -0
  100. package/Tests/App/Dashboard/InvestigationFeedRefresh.test.tsx +303 -0
  101. package/Tests/App/Dashboard/InvestigationPanel.test.tsx +876 -8
  102. package/Tests/App/Dashboard/InvestigationPanelStatus.test.tsx +35 -0
  103. package/Tests/App/Dashboard/InvestigationReferenceLink.test.tsx +177 -0
  104. package/Tests/App/Dashboard/InvestigationReportView.test.tsx +1295 -0
  105. package/Tests/App/Dashboard/KubernetesImageReferenceView.test.tsx +114 -0
  106. package/Tests/App/Dashboard/KubernetesLogsTabChips.test.tsx +285 -0
  107. package/Tests/App/Dashboard/LogsEntityChipNames.test.tsx +316 -0
  108. package/Tests/App/Dashboard/LogsResourceFacetChips.test.tsx +361 -0
  109. package/Tests/App/Dashboard/ProfileTableEntityNames.test.tsx +432 -0
  110. package/Tests/App/Dashboard/ProfileViewEntityName.test.tsx +250 -0
  111. package/Tests/App/Dashboard/ResourceArchiveSettings.test.tsx +10 -0
  112. package/Tests/App/Dashboard/ResourceLogsTabsBareLayout.test.tsx +700 -0
  113. package/Tests/App/Dashboard/ResourcePageEntityNameProps.test.tsx +803 -0
  114. package/Tests/App/Dashboard/RumSessionReplaySideMenu.test.tsx +11 -1
  115. package/Tests/App/Dashboard/ScheduledMaintenanceChangeState.test.tsx +1026 -0
  116. package/Tests/App/Dashboard/ScheduledMaintenanceFeedRefresh.test.tsx +436 -0
  117. package/Tests/App/Dashboard/ScheduledMaintenanceOverviewPage.test.tsx +1195 -0
  118. package/Tests/App/Dashboard/SecurityEventConnectionFormModal.test.tsx +1022 -0
  119. package/Tests/App/Dashboard/SecurityEventConnectionsTable.test.tsx +905 -0
  120. package/Tests/App/Dashboard/SecurityEventsSideMenu.test.tsx +247 -0
  121. package/Tests/App/Dashboard/ServiceMapGraph.test.tsx +375 -274
  122. package/Tests/App/Dashboard/SessionReplayAuditTable.test.tsx +410 -0
  123. package/Tests/App/Dashboard/TelemetryResourceRetentionSettings.test.tsx +774 -0
  124. package/Tests/App/Dashboard/TopErrorsPanelResourceNames.test.tsx +316 -0
  125. package/Tests/App/Dashboard/TopologyDataLoading.test.tsx +30 -0
  126. package/Tests/App/Dashboard/TopologyPageNavigation.test.tsx +88 -24
  127. package/Tests/App/Dashboard/TraceExplorer.test.tsx +1590 -0
  128. package/Tests/App/Dashboard/TraceWaterfall.test.tsx +488 -0
  129. package/Tests/App/Dashboard/TracesAnalyticsSeriesLabels.test.tsx +367 -0
  130. package/Tests/App/Dashboard/TracesEntityNames.test.tsx +585 -0
  131. package/Tests/App/Dashboard/TracesResourceFacets.test.tsx +613 -0
  132. package/Tests/App/Dashboard/UseServiceNames.test.tsx +359 -0
  133. package/Tests/Models/DatabaseModels/DomainRoleTierCoverage.test.ts +7 -0
  134. package/Tests/Models/InventoryItemNaming.test.ts +132 -16
  135. package/Tests/Models/SecurityDomainAccessControl.test.ts +61 -17
  136. package/Tests/Server/API/AIInvestigationAPI.test.ts +611 -2
  137. package/Tests/Server/API/AIInvestigationEvidenceAPI.test.ts +1098 -0
  138. package/Tests/Server/API/GoogleSecOpsConnectionAPI.test.ts +409 -0
  139. package/Tests/Server/API/SecurityEventConnectionAPI.test.ts +856 -0
  140. package/Tests/Server/API/SessionReplayAPI.test.ts +528 -1
  141. package/Tests/Server/API/TelemetryFacetsAPI.test.ts +810 -0
  142. package/Tests/Server/Infrastructure/E2EClickHouseFixtureAccess.test.ts +240 -0
  143. package/Tests/Server/Middleware/TelemetryIngestBrowserKey.test.ts +229 -0
  144. package/Tests/Server/Services/InventoryItemDisplayName.test.ts +66 -0
  145. package/Tests/Server/Services/OpenTelemetryResourceRetentionMemo.test.ts +28 -1
  146. package/Tests/Server/Services/SecurityEventConnectionService.test.ts +1233 -0
  147. package/Tests/Server/Services/TelemetryIngestionKeyValidation.test.ts +53 -0
  148. package/Tests/Server/Services/TelemetryResourceFacetCounting.test.ts +218 -0
  149. package/Tests/Server/Services/TelemetryResourceFacetFilters.test.ts +155 -1
  150. package/Tests/Server/Services/TraceAggregationExceptionScope.test.ts +142 -0
  151. package/Tests/Server/Services/TraceAnalyticsResourceDisplayNames.test.ts +85 -24
  152. package/Tests/Server/Types/Database/Permissions/SecurityRoleAccess.test.ts +33 -0
  153. package/Tests/Server/Utils/AI/InvestigationEvidence.test.ts +1395 -0
  154. package/Tests/Server/Utils/AI/InvestigationReferences.test.ts +616 -0
  155. package/Tests/Server/Utils/AI/TimelineTools.test.ts +119 -0
  156. package/Tests/Server/Utils/AI/Toolbox/AIToolbox.test.ts +151 -0
  157. package/Tests/Server/Utils/AnalyticsDatabase/StatementGenerator.test.ts +65 -0
  158. package/Tests/Server/Utils/AnalyticsDatabase/StatementGeneratorExceptionScope.test.ts +224 -0
  159. package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluatorPerSeriesFanout.test.ts +55 -2
  160. package/Tests/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.test.ts +1240 -0
  161. package/Tests/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.test.ts +1853 -0
  162. package/Tests/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.test.ts +1129 -0
  163. package/Tests/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.test.ts +1066 -0
  164. package/Tests/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.test.ts +1568 -0
  165. package/Tests/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.test.ts +930 -0
  166. package/Tests/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.test.ts +1409 -0
  167. package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.test.ts +763 -0
  168. package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.test.ts +1296 -0
  169. package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.test.ts +1102 -0
  170. package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.test.ts +1174 -0
  171. package/Tests/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.test.ts +1032 -0
  172. package/Tests/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.test.ts +1558 -0
  173. package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.test.ts +3041 -0
  174. package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.test.ts +1168 -0
  175. package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.test.ts +906 -0
  176. package/Tests/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.test.ts +1068 -0
  177. package/Tests/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.test.ts +1004 -0
  178. package/Tests/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.test.ts +784 -0
  179. package/Tests/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.test.ts +113 -1
  180. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsClient.test.ts +5 -1
  181. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsDiagnostics.test.ts +93 -13
  182. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsHttpIntegration.test.ts +23 -1
  183. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPoller.test.ts +25 -3
  184. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPollerFailureTaxonomy.test.ts +22 -8
  185. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPollerHardening.test.ts +82 -16
  186. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsSearchDetections.test.ts +730 -0
  187. package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsThreePassPoller.test.ts +1577 -0
  188. package/Tests/Server/Utils/SessionReplay/SessionReplayOriginAllowlist.test.ts +41 -0
  189. package/Tests/Server/Utils/SessionReplay/SessionReplayReadServiceQueries.test.ts +1453 -18
  190. package/Tests/Server/Utils/Telemetry/KubernetesResourceAttributes.test.ts +162 -0
  191. package/Tests/Server/Utils/Telemetry/ResourceEntityFilter.test.ts +460 -13
  192. package/Tests/Server/Utils/Telemetry/ResourceFacetPlanner.test.ts +678 -0
  193. package/Tests/Server/Utils/Telemetry/ResourceFacetResolver.test.ts +348 -2
  194. package/Tests/Server/Utils/Telemetry/ServiceDependencyDiscovery.test.ts +525 -0
  195. package/Tests/Server/Utils/Telemetry/TraceContextPropagation.test.ts +420 -0
  196. package/Tests/Types/Rum/SessionReplayApiContracts.test.ts +73 -0
  197. package/Tests/Types/Rum/SessionReplayTransportContracts.test.ts +95 -0
  198. package/Tests/Types/SecurityEvent/Connectors/ConnectorDiagnostics.test.ts +82 -0
  199. package/Tests/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.test.ts +314 -0
  200. package/Tests/Types/Telemetry/ExceptionSpanScope.test.ts +89 -0
  201. package/Tests/Types/Telemetry/ResourceEntityFacet.test.ts +96 -0
  202. package/Tests/Types/Telemetry/ResourceFacetCatalog.test.ts +304 -0
  203. package/Tests/UI/Components/ActiveFilterChipsLockedFilters.test.tsx +357 -0
  204. package/Tests/UI/Components/Card.test.tsx +312 -1
  205. package/Tests/UI/Components/CardModelDetailHeaderLayout.test.tsx +253 -0
  206. package/Tests/UI/Components/CardModelDetailRefresher.test.tsx +342 -0
  207. package/Tests/UI/Components/Checkbox.test.tsx +79 -0
  208. package/Tests/UI/Components/CopyTextButton.test.tsx +142 -0
  209. package/Tests/UI/Components/DetailCompactStyle.test.tsx +621 -0
  210. package/Tests/UI/Components/ErrorBoundary.test.tsx +60 -0
  211. package/Tests/UI/Components/FacetSections.test.tsx +581 -0
  212. package/Tests/UI/Components/FacetSidebarControls.test.tsx +812 -0
  213. package/Tests/UI/Components/FacetVisibility.test.ts +429 -0
  214. package/Tests/UI/Components/LockedFilterActions.test.tsx +396 -0
  215. package/Tests/UI/Components/LockedFilterChip.test.tsx +651 -0
  216. package/Tests/UI/Components/LogsEntityNames.test.ts +1769 -0
  217. package/Tests/UI/Components/LogsEntityNamesComponents.test.tsx +696 -0
  218. package/Tests/UI/Components/LogsFacetSidebarHiddenFacets.test.tsx +600 -0
  219. package/Tests/UI/Components/LogsViewerEntityNames.test.tsx +713 -0
  220. package/Tests/UI/Components/MarkdownInlineReferences.test.tsx +2079 -0
  221. package/Tests/UI/Components/MemberRoleAssignment.test.tsx +446 -0
  222. package/Tests/UI/Components/ModelDetailRefetch.test.tsx +397 -0
  223. package/Tests/UI/Components/ModelListRefetch.test.tsx +233 -0
  224. package/Tests/UI/Components/ModelPageModelChange.test.tsx +409 -0
  225. package/Tests/UI/Components/PaginationIntegration.test.tsx +25 -0
  226. package/Tests/UI/Components/ResourceFacetConfigs.test.ts +172 -0
  227. package/Tests/UI/Components/SavedViewsSidebarIntegration.test.tsx +32 -14
  228. package/Tests/UI/Components/TableSortAndMobileColumns.test.tsx +44 -1
  229. package/Tests/UI/Components/TelemetryActiveFilterChipsLockedFilters.test.tsx +304 -0
  230. package/Tests/UI/Components/TelemetryFacetSidebarHiddenFacets.test.tsx +718 -0
  231. package/Tests/UI/Monitor/EvaluationLogList.test.tsx +303 -0
  232. package/Tests/UI/Monitor/MonitorSummarySnapshotRender.test.tsx +55 -1
  233. package/Tests/UI/Rum/FidelityNotices.test.ts +22 -0
  234. package/Tests/UI/Rum/RecordingHealthCard.test.tsx +120 -136
  235. package/Tests/UI/Rum/RecordingHealthDashboard.test.tsx +988 -0
  236. package/Tests/UI/Rum/ReplayCard.test.tsx +32 -0
  237. package/Tests/UI/Rum/ReplayCorrelationPanel.test.tsx +709 -12
  238. package/Tests/UI/Rum/ReplayHeader.test.tsx +50 -1
  239. package/Tests/UI/Rum/ReplayPinControl.test.tsx +67 -10
  240. package/Tests/UI/Rum/ReplayPlayerChrome.test.tsx +41 -12
  241. package/Tests/UI/Rum/ReplayStage.test.tsx +663 -1
  242. package/Tests/UI/Rum/ReplayStageOverlays.test.tsx +173 -0
  243. package/Tests/UI/Rum/ReplayUi.test.tsx +189 -2
  244. package/Tests/UI/Rum/ReplayUserSessionsMenu.test.tsx +91 -0
  245. package/Tests/UI/Rum/SessionReplayEmptyState.test.tsx +1 -1
  246. package/Tests/UI/Rum/SessionReplaySettingsPolicyLoading.test.tsx +585 -0
  247. package/Tests/UI/Rum/SessionReplayTable.test.tsx +844 -51
  248. package/Tests/UI/Rum/SessionReplayUsersTable.test.tsx +29 -1
  249. package/Tests/UI/Telemetry/TelemetryDetailPanel.test.tsx +288 -0
  250. package/Tests/UI/Utils/Breadcrumb/fixtures/RealBreadcrumbTrails.ts +31 -1
  251. package/Tests/UI/Utils/Breadcrumb/fixtures/RealRoutePatterns.ts +6 -0
  252. package/Tests/UI/Utils/Clipboard.test.ts +154 -0
  253. package/Tests/UI/Utils/Navigation.test.ts +24 -0
  254. package/Tests/UI/Utils/Telemetry/TelemetryEntityNames.test.ts +2205 -0
  255. package/Tests/UI/Utils/Telemetry/UseTelemetryEntityNames.test.tsx +844 -0
  256. package/Tests/Utils/AI/InvestigationReport.test.ts +2430 -0
  257. package/Tests/Utils/APIOutgoingRequestTracer.test.ts +137 -0
  258. package/Tests/Utils/Rum/SessionReplayHealthDiagnosis.test.ts +40 -0
  259. package/Tests/Utils/Rum/SessionReplayRecordingEnded.test.ts +619 -0
  260. package/Tests/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.test.ts +631 -0
  261. package/Tests/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.test.ts +479 -0
  262. package/Tests/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.test.ts +507 -0
  263. package/Tests/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.test.ts +686 -0
  264. package/Tests/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.test.ts +474 -0
  265. package/Tests/Utils/SecurityEvent/Connectors/OktaNormalizer.test.ts +736 -0
  266. package/Tests/Utils/SecurityEvent/Connectors/SplunkNormalizer.test.ts +407 -0
  267. package/Tests/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.test.ts +129 -0
  268. package/Tests/Utils/Telemetry/CrossSignalScope.test.ts +57 -1
  269. package/Tests/Utils/Telemetry/EntityRelationship.test.ts +36 -0
  270. package/Tests/Utils/Telemetry/LockedFilterSearch.test.ts +600 -0
  271. package/Tests/Utils/Telemetry/NetworkHost.test.ts +48 -0
  272. package/Tests/Utils/Telemetry/OriginAllowList.test.ts +154 -0
  273. package/Tests/Utils/Traces/CriticalPath.test.ts +25 -0
  274. package/Types/AI/AIChatTypes.ts +8 -0
  275. package/Types/AI/InvestigationEvidence.ts +96 -0
  276. package/Types/Monitor/MonitorEvaluationSummary.ts +5 -0
  277. package/Types/Permission.ts +2 -2
  278. package/Types/Rum/SessionReplay.ts +109 -0
  279. package/Types/Rum/SessionReplayApi.ts +31 -0
  280. package/Types/SecurityEvent/Connectors/ConnectorDiagnostics.ts +111 -0
  281. package/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.ts +87 -0
  282. package/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.ts +492 -0
  283. package/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.ts +41 -0
  284. package/Types/SecurityEvent/GoogleSecOpsDiagnostics.ts +56 -1
  285. package/Types/SecurityEvent/GoogleSecOpsRegion.ts +34 -0
  286. package/Types/Telemetry/EntityType.ts +14 -0
  287. package/Types/Telemetry/ExceptionSpanScope.ts +83 -0
  288. package/Types/Telemetry/LockedFilterDetail.ts +46 -0
  289. package/Types/Telemetry/ResourceEntityFacet.ts +17 -10
  290. package/Types/Telemetry/ResourceFacetCatalog.ts +171 -0
  291. package/UI/Components/Card/Card.tsx +118 -83
  292. package/UI/Components/Checkbox/Checkbox.tsx +8 -5
  293. package/UI/Components/CopyTextButton/CopyTextButton.tsx +7 -1
  294. package/UI/Components/CustomFields/CustomFieldsDetail.tsx +4 -1
  295. package/UI/Components/Detail/Detail.tsx +137 -22
  296. package/UI/Components/ErrorBoundary.tsx +38 -0
  297. package/UI/Components/LogsViewer/LogsEntityNames.ts +912 -0
  298. package/UI/Components/LogsViewer/LogsViewer.tsx +156 -77
  299. package/UI/Components/LogsViewer/components/ActiveFilterChips.tsx +28 -11
  300. package/UI/Components/LogsViewer/components/FacetSection.tsx +66 -79
  301. package/UI/Components/LogsViewer/components/FacetValueRow.tsx +17 -2
  302. package/UI/Components/LogsViewer/components/LogDetailsPanel.tsx +45 -5
  303. package/UI/Components/LogsViewer/components/LogsAnalyticsView.tsx +100 -19
  304. package/UI/Components/LogsViewer/components/LogsFacetSidebar.tsx +156 -39
  305. package/UI/Components/LogsViewer/components/LogsTable.tsx +30 -8
  306. package/UI/Components/LogsViewer/types.ts +6 -0
  307. package/UI/Components/Markdown.tsx/InlineReferences.tsx +628 -0
  308. package/UI/Components/Markdown.tsx/MarkdownViewer.tsx +385 -312
  309. package/UI/Components/MemberRoleAssignment/MemberRoleAssignment.tsx +50 -22
  310. package/UI/Components/ModelDetail/CardModelDetail.tsx +15 -0
  311. package/UI/Components/ModelDetail/ModelDetail.tsx +64 -19
  312. package/UI/Components/ModelList/ModelList.tsx +33 -8
  313. package/UI/Components/Page/ModelPage.tsx +119 -54
  314. package/UI/Components/Table/Table.tsx +8 -0
  315. package/UI/Components/Table/TableRow.tsx +13 -5
  316. package/UI/Components/TelemetryViewer/FacetVisibility.ts +229 -0
  317. package/UI/Components/TelemetryViewer/ResourceFacetConfigs.ts +46 -0
  318. package/UI/Components/TelemetryViewer/TelemetryViewer.tsx +11 -0
  319. package/UI/Components/TelemetryViewer/components/FacetSearchInput.tsx +79 -0
  320. package/UI/Components/TelemetryViewer/components/FacetSectionHeader.tsx +69 -0
  321. package/UI/Components/TelemetryViewer/components/FacetShowMoreButton.tsx +36 -0
  322. package/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.tsx +88 -0
  323. package/UI/Components/TelemetryViewer/components/LockedFilterActions.tsx +205 -0
  324. package/UI/Components/TelemetryViewer/components/LockedFilterChip.tsx +496 -0
  325. package/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.tsx +30 -10
  326. package/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.tsx +203 -10
  327. package/UI/Components/TelemetryViewer/components/TelemetryFacetSection.tsx +60 -73
  328. package/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.tsx +94 -7
  329. package/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.tsx +17 -2
  330. package/UI/Components/TelemetryViewer/types.ts +19 -0
  331. package/UI/Components/TelemetryViewer/useFacetSearchExemptions.ts +158 -0
  332. package/UI/Components/TelemetryViewer/useFacetSectionSearch.ts +102 -0
  333. package/UI/Utils/Clipboard.ts +68 -2
  334. package/UI/Utils/Navigation.ts +17 -2
  335. package/UI/Utils/Telemetry/TelemetryEntityNames.ts +620 -0
  336. package/UI/Utils/Telemetry/UseTelemetryEntityNames.ts +151 -0
  337. package/Utils/AI/InvestigationReport.ts +1789 -0
  338. package/Utils/API.ts +90 -1
  339. package/Utils/Rum/SessionReplayHealth.ts +11 -0
  340. package/Utils/Rum/SessionReplayRecordingEnded.ts +134 -0
  341. package/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.ts +427 -0
  342. package/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.ts +197 -0
  343. package/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.ts +464 -0
  344. package/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.ts +567 -0
  345. package/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.ts +299 -0
  346. package/Utils/SecurityEvent/Connectors/OktaNormalizer.ts +467 -0
  347. package/Utils/SecurityEvent/Connectors/SplunkNormalizer.ts +439 -0
  348. package/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.ts +124 -12
  349. package/Utils/Telemetry/CrossSignalScope.ts +22 -8
  350. package/Utils/Telemetry/EntityRelationship.ts +8 -0
  351. package/Utils/Telemetry/LockedFilterSearch.ts +412 -0
  352. package/Utils/Telemetry/NetworkHost.ts +43 -0
  353. package/Utils/Telemetry/OriginAllowList.ts +139 -4
  354. package/Utils/Traces/CriticalPath.ts +10 -4
  355. package/build/dist/Models/DatabaseModels/Index.js +4 -0
  356. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  357. package/build/dist/Models/DatabaseModels/RumApplication.js +1 -1
  358. package/build/dist/Models/DatabaseModels/RumApplication.js.map +1 -1
  359. package/build/dist/Models/DatabaseModels/SecurityEventConnection.js +490 -0
  360. package/build/dist/Models/DatabaseModels/SecurityEventConnection.js.map +1 -0
  361. package/build/dist/Models/DatabaseModels/SecurityEventConnectionRun.js +287 -0
  362. package/build/dist/Models/DatabaseModels/SecurityEventConnectionRun.js.map +1 -0
  363. package/build/dist/Models/DatabaseModels/TelemetryIngestionKey.js +2 -2
  364. package/build/dist/Models/DatabaseModels/TelemetryIngestionKey.js.map +1 -1
  365. package/build/dist/Server/API/AIInvestigationAPI.js +336 -27
  366. package/build/dist/Server/API/AIInvestigationAPI.js.map +1 -1
  367. package/build/dist/Server/API/GoogleSecOpsConnectionAPI.js +182 -7
  368. package/build/dist/Server/API/GoogleSecOpsConnectionAPI.js.map +1 -1
  369. package/build/dist/Server/API/SecurityEventConnectionAPI.js +171 -0
  370. package/build/dist/Server/API/SecurityEventConnectionAPI.js.map +1 -0
  371. package/build/dist/Server/API/TelemetryAPI.js +248 -170
  372. package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
  373. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.js +40 -0
  374. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.js.map +1 -0
  375. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +2 -0
  376. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  377. package/build/dist/Server/Middleware/TelemetryIngest.js +57 -4
  378. package/build/dist/Server/Middleware/TelemetryIngest.js.map +1 -1
  379. package/build/dist/Server/Services/ExceptionAggregationService.js +7 -16
  380. package/build/dist/Server/Services/ExceptionAggregationService.js.map +1 -1
  381. package/build/dist/Server/Services/GoogleSecOpsConnectionService.js +8 -0
  382. package/build/dist/Server/Services/GoogleSecOpsConnectionService.js.map +1 -1
  383. package/build/dist/Server/Services/Index.js +4 -0
  384. package/build/dist/Server/Services/Index.js.map +1 -1
  385. package/build/dist/Server/Services/InventoryItemService.js +22 -0
  386. package/build/dist/Server/Services/InventoryItemService.js.map +1 -1
  387. package/build/dist/Server/Services/LogAggregationService.js +8 -17
  388. package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
  389. package/build/dist/Server/Services/MetricAggregationService.js +4 -14
  390. package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
  391. package/build/dist/Server/Services/SecurityEventConnectionRunService.js +9 -0
  392. package/build/dist/Server/Services/SecurityEventConnectionRunService.js.map +1 -0
  393. package/build/dist/Server/Services/SecurityEventConnectionService.js +356 -0
  394. package/build/dist/Server/Services/SecurityEventConnectionService.js.map +1 -0
  395. package/build/dist/Server/Services/TraceAggregationService.js +51 -25
  396. package/build/dist/Server/Services/TraceAggregationService.js.map +1 -1
  397. package/build/dist/Server/Types/AnalyticsDatabase/ModelPermission.js +9 -0
  398. package/build/dist/Server/Types/AnalyticsDatabase/ModelPermission.js.map +1 -1
  399. package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js +3 -0
  400. package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js.map +1 -1
  401. package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js +14 -7
  402. package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js.map +1 -1
  403. package/build/dist/Server/Utils/AI/SRE/InvestigationEvidence.js +468 -0
  404. package/build/dist/Server/Utils/AI/SRE/InvestigationEvidence.js.map +1 -0
  405. package/build/dist/Server/Utils/AI/SRE/InvestigationReferences.js +230 -0
  406. package/build/dist/Server/Utils/AI/SRE/InvestigationReferences.js.map +1 -0
  407. package/build/dist/Server/Utils/AI/Toolbox/Index.js +32 -0
  408. package/build/dist/Server/Utils/AI/Toolbox/Index.js.map +1 -1
  409. package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js +6 -2
  410. package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js.map +1 -1
  411. package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js +59 -0
  412. package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js.map +1 -1
  413. package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +5 -3
  414. package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
  415. package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.js +752 -0
  416. package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.js.map +1 -0
  417. package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.js +493 -0
  418. package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.js.map +1 -0
  419. package/build/dist/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.js +352 -0
  420. package/build/dist/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.js.map +1 -0
  421. package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.js +405 -0
  422. package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.js.map +1 -0
  423. package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.js +466 -0
  424. package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.js.map +1 -0
  425. package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.js +344 -0
  426. package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.js.map +1 -0
  427. package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.js +511 -0
  428. package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.js.map +1 -0
  429. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.js +406 -0
  430. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.js.map +1 -0
  431. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.js +336 -0
  432. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.js.map +1 -0
  433. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.js +474 -0
  434. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.js.map +1 -0
  435. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.js +417 -0
  436. package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.js.map +1 -0
  437. package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.js +314 -0
  438. package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.js.map +1 -0
  439. package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.js +494 -0
  440. package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.js.map +1 -0
  441. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.js +719 -0
  442. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.js.map +1 -0
  443. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.js +404 -0
  444. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.js.map +1 -0
  445. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.js +209 -0
  446. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.js.map +1 -0
  447. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.js +40 -0
  448. package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.js.map +1 -0
  449. package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.js +494 -0
  450. package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.js.map +1 -0
  451. package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.js +379 -0
  452. package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.js.map +1 -0
  453. package/build/dist/Server/Utils/SecurityEvent/Connectors/Types.js +27 -0
  454. package/build/dist/Server/Utils/SecurityEvent/Connectors/Types.js.map +1 -0
  455. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.js +234 -61
  456. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.js.map +1 -1
  457. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.js +537 -0
  458. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.js.map +1 -0
  459. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.js +572 -115
  460. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.js.map +1 -1
  461. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.js +35 -1
  462. package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.js.map +1 -1
  463. package/build/dist/Server/Utils/SecurityEvent/SecurityEventDedupe.js +52 -0
  464. package/build/dist/Server/Utils/SecurityEvent/SecurityEventDedupe.js.map +1 -0
  465. package/build/dist/Server/Utils/SessionReplay/SessionReplayReadService.js +521 -32
  466. package/build/dist/Server/Utils/SessionReplay/SessionReplayReadService.js.map +1 -1
  467. package/build/dist/Server/Utils/StartServer.js +10 -0
  468. package/build/dist/Server/Utils/StartServer.js.map +1 -1
  469. package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +8 -0
  470. package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
  471. package/build/dist/Server/Utils/Telemetry/KubernetesResourceAttributes.js +80 -0
  472. package/build/dist/Server/Utils/Telemetry/KubernetesResourceAttributes.js.map +1 -0
  473. package/build/dist/Server/Utils/Telemetry/ResourceEntityFilter.js +122 -67
  474. package/build/dist/Server/Utils/Telemetry/ResourceEntityFilter.js.map +1 -1
  475. package/build/dist/Server/Utils/Telemetry/ResourceFacetPlanner.js +146 -0
  476. package/build/dist/Server/Utils/Telemetry/ResourceFacetPlanner.js.map +1 -0
  477. package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js +174 -248
  478. package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js.map +1 -1
  479. package/build/dist/Server/Utils/Telemetry/ServiceDependencyDiscovery.js +492 -0
  480. package/build/dist/Server/Utils/Telemetry/ServiceDependencyDiscovery.js.map +1 -0
  481. package/build/dist/Server/Utils/Telemetry/TraceContextPropagation.js +259 -0
  482. package/build/dist/Server/Utils/Telemetry/TraceContextPropagation.js.map +1 -0
  483. package/build/dist/Server/Utils/Telemetry.js +11 -5
  484. package/build/dist/Server/Utils/Telemetry.js.map +1 -1
  485. package/build/dist/Types/AI/InvestigationEvidence.js +2 -0
  486. package/build/dist/Types/AI/InvestigationEvidence.js.map +1 -0
  487. package/build/dist/Types/Permission.js +2 -2
  488. package/build/dist/Types/Permission.js.map +1 -1
  489. package/build/dist/Types/Rum/SessionReplay.js +95 -0
  490. package/build/dist/Types/Rum/SessionReplay.js.map +1 -1
  491. package/build/dist/Types/Rum/SessionReplayApi.js.map +1 -1
  492. package/build/dist/Types/SecurityEvent/Connectors/ConnectorDiagnostics.js +18 -0
  493. package/build/dist/Types/SecurityEvent/Connectors/ConnectorDiagnostics.js.map +1 -0
  494. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.js +2 -0
  495. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.js.map +1 -0
  496. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.js +374 -0
  497. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.js.map +1 -0
  498. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.js +35 -0
  499. package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.js.map +1 -0
  500. package/build/dist/Types/SecurityEvent/GoogleSecOpsRegion.js +35 -0
  501. package/build/dist/Types/SecurityEvent/GoogleSecOpsRegion.js.map +1 -0
  502. package/build/dist/Types/Telemetry/EntityType.js +14 -0
  503. package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
  504. package/build/dist/Types/Telemetry/ExceptionSpanScope.js +59 -0
  505. package/build/dist/Types/Telemetry/ExceptionSpanScope.js.map +1 -0
  506. package/build/dist/Types/Telemetry/LockedFilterDetail.js +16 -0
  507. package/build/dist/Types/Telemetry/LockedFilterDetail.js.map +1 -0
  508. package/build/dist/Types/Telemetry/ResourceEntityFacet.js +16 -10
  509. package/build/dist/Types/Telemetry/ResourceEntityFacet.js.map +1 -1
  510. package/build/dist/Types/Telemetry/ResourceFacetCatalog.js +119 -0
  511. package/build/dist/Types/Telemetry/ResourceFacetCatalog.js.map +1 -0
  512. package/build/dist/UI/Components/Card/Card.js +34 -17
  513. package/build/dist/UI/Components/Card/Card.js.map +1 -1
  514. package/build/dist/UI/Components/Checkbox/Checkbox.js +6 -4
  515. package/build/dist/UI/Components/Checkbox/Checkbox.js.map +1 -1
  516. package/build/dist/UI/Components/CopyTextButton/CopyTextButton.js +5 -1
  517. package/build/dist/UI/Components/CopyTextButton/CopyTextButton.js.map +1 -1
  518. package/build/dist/UI/Components/CustomFields/CustomFieldsDetail.js +1 -1
  519. package/build/dist/UI/Components/CustomFields/CustomFieldsDetail.js.map +1 -1
  520. package/build/dist/UI/Components/Detail/Detail.js +63 -13
  521. package/build/dist/UI/Components/Detail/Detail.js.map +1 -1
  522. package/build/dist/UI/Components/ErrorBoundary.js +34 -0
  523. package/build/dist/UI/Components/ErrorBoundary.js.map +1 -1
  524. package/build/dist/UI/Components/LogsViewer/LogsEntityNames.js +535 -0
  525. package/build/dist/UI/Components/LogsViewer/LogsEntityNames.js.map +1 -0
  526. package/build/dist/UI/Components/LogsViewer/LogsViewer.js +117 -57
  527. package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
  528. package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js +5 -7
  529. package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js.map +1 -1
  530. package/build/dist/UI/Components/LogsViewer/components/FacetSection.js +31 -44
  531. package/build/dist/UI/Components/LogsViewer/components/FacetSection.js.map +1 -1
  532. package/build/dist/UI/Components/LogsViewer/components/FacetValueRow.js +17 -3
  533. package/build/dist/UI/Components/LogsViewer/components/FacetValueRow.js.map +1 -1
  534. package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js +19 -3
  535. package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js.map +1 -1
  536. package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js +64 -18
  537. package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js.map +1 -1
  538. package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js +100 -41
  539. package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js.map +1 -1
  540. package/build/dist/UI/Components/LogsViewer/components/LogsTable.js +13 -5
  541. package/build/dist/UI/Components/LogsViewer/components/LogsTable.js.map +1 -1
  542. package/build/dist/UI/Components/LogsViewer/types.js.map +1 -1
  543. package/build/dist/UI/Components/Markdown.tsx/InlineReferences.js +403 -0
  544. package/build/dist/UI/Components/Markdown.tsx/InlineReferences.js.map +1 -0
  545. package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js +197 -179
  546. package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js.map +1 -1
  547. package/build/dist/UI/Components/MemberRoleAssignment/MemberRoleAssignment.js +30 -21
  548. package/build/dist/UI/Components/MemberRoleAssignment/MemberRoleAssignment.js.map +1 -1
  549. package/build/dist/UI/Components/ModelDetail/CardModelDetail.js +12 -0
  550. package/build/dist/UI/Components/ModelDetail/CardModelDetail.js.map +1 -1
  551. package/build/dist/UI/Components/ModelDetail/ModelDetail.js +46 -12
  552. package/build/dist/UI/Components/ModelDetail/ModelDetail.js.map +1 -1
  553. package/build/dist/UI/Components/ModelList/ModelList.js +26 -7
  554. package/build/dist/UI/Components/ModelList/ModelList.js.map +1 -1
  555. package/build/dist/UI/Components/Page/ModelPage.js +62 -34
  556. package/build/dist/UI/Components/Page/ModelPage.js.map +1 -1
  557. package/build/dist/UI/Components/Table/Table.js +3 -1
  558. package/build/dist/UI/Components/Table/Table.js.map +1 -1
  559. package/build/dist/UI/Components/Table/TableRow.js +8 -1
  560. package/build/dist/UI/Components/Table/TableRow.js.map +1 -1
  561. package/build/dist/UI/Components/TelemetryViewer/FacetVisibility.js +111 -0
  562. package/build/dist/UI/Components/TelemetryViewer/FacetVisibility.js.map +1 -0
  563. package/build/dist/UI/Components/TelemetryViewer/ResourceFacetConfigs.js +22 -0
  564. package/build/dist/UI/Components/TelemetryViewer/ResourceFacetConfigs.js.map +1 -0
  565. package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js +1 -1
  566. package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js.map +1 -1
  567. package/build/dist/UI/Components/TelemetryViewer/components/FacetSearchInput.js +36 -0
  568. package/build/dist/UI/Components/TelemetryViewer/components/FacetSearchInput.js.map +1 -0
  569. package/build/dist/UI/Components/TelemetryViewer/components/FacetSectionHeader.js +21 -0
  570. package/build/dist/UI/Components/TelemetryViewer/components/FacetSectionHeader.js.map +1 -0
  571. package/build/dist/UI/Components/TelemetryViewer/components/FacetShowMoreButton.js +14 -0
  572. package/build/dist/UI/Components/TelemetryViewer/components/FacetShowMoreButton.js.map +1 -0
  573. package/build/dist/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.js +27 -0
  574. package/build/dist/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.js.map +1 -0
  575. package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterActions.js +88 -0
  576. package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterActions.js.map +1 -0
  577. package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterChip.js +228 -0
  578. package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterChip.js.map +1 -0
  579. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.js +6 -6
  580. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.js.map +1 -1
  581. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.js +111 -12
  582. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.js.map +1 -1
  583. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSection.js +27 -40
  584. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSection.js.map +1 -1
  585. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.js +70 -10
  586. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.js.map +1 -1
  587. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.js +17 -3
  588. package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.js.map +1 -1
  589. package/build/dist/UI/Components/TelemetryViewer/types.js +0 -4
  590. package/build/dist/UI/Components/TelemetryViewer/types.js.map +1 -1
  591. package/build/dist/UI/Components/TelemetryViewer/useFacetSearchExemptions.js +70 -0
  592. package/build/dist/UI/Components/TelemetryViewer/useFacetSearchExemptions.js.map +1 -0
  593. package/build/dist/UI/Components/TelemetryViewer/useFacetSectionSearch.js +52 -0
  594. package/build/dist/UI/Components/TelemetryViewer/useFacetSectionSearch.js.map +1 -0
  595. package/build/dist/UI/Utils/Clipboard.js +59 -2
  596. package/build/dist/UI/Utils/Clipboard.js.map +1 -1
  597. package/build/dist/UI/Utils/Navigation.js +11 -2
  598. package/build/dist/UI/Utils/Navigation.js.map +1 -1
  599. package/build/dist/UI/Utils/Telemetry/TelemetryEntityNames.js +471 -0
  600. package/build/dist/UI/Utils/Telemetry/TelemetryEntityNames.js.map +1 -0
  601. package/build/dist/UI/Utils/Telemetry/UseTelemetryEntityNames.js +113 -0
  602. package/build/dist/UI/Utils/Telemetry/UseTelemetryEntityNames.js.map +1 -0
  603. package/build/dist/Utils/AI/InvestigationReport.js +1241 -0
  604. package/build/dist/Utils/AI/InvestigationReport.js.map +1 -0
  605. package/build/dist/Utils/API.js +25 -0
  606. package/build/dist/Utils/API.js.map +1 -1
  607. package/build/dist/Utils/Rum/SessionReplayHealth.js +10 -0
  608. package/build/dist/Utils/Rum/SessionReplayHealth.js.map +1 -1
  609. package/build/dist/Utils/Rum/SessionReplayRecordingEnded.js +54 -0
  610. package/build/dist/Utils/Rum/SessionReplayRecordingEnded.js.map +1 -0
  611. package/build/dist/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.js +311 -0
  612. package/build/dist/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.js.map +1 -0
  613. package/build/dist/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.js +150 -0
  614. package/build/dist/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.js.map +1 -0
  615. package/build/dist/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.js +328 -0
  616. package/build/dist/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.js.map +1 -0
  617. package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.js +405 -0
  618. package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.js.map +1 -0
  619. package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.js +212 -0
  620. package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.js.map +1 -0
  621. package/build/dist/Utils/SecurityEvent/Connectors/OktaNormalizer.js +351 -0
  622. package/build/dist/Utils/SecurityEvent/Connectors/OktaNormalizer.js.map +1 -0
  623. package/build/dist/Utils/SecurityEvent/Connectors/SplunkNormalizer.js +348 -0
  624. package/build/dist/Utils/SecurityEvent/Connectors/SplunkNormalizer.js.map +1 -0
  625. package/build/dist/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.js +103 -10
  626. package/build/dist/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.js.map +1 -1
  627. package/build/dist/Utils/Telemetry/CrossSignalScope.js +16 -5
  628. package/build/dist/Utils/Telemetry/CrossSignalScope.js.map +1 -1
  629. package/build/dist/Utils/Telemetry/EntityRelationship.js +7 -0
  630. package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
  631. package/build/dist/Utils/Telemetry/LockedFilterSearch.js +277 -0
  632. package/build/dist/Utils/Telemetry/LockedFilterSearch.js.map +1 -0
  633. package/build/dist/Utils/Telemetry/NetworkHost.js +39 -0
  634. package/build/dist/Utils/Telemetry/NetworkHost.js.map +1 -0
  635. package/build/dist/Utils/Telemetry/OriginAllowList.js +105 -4
  636. package/build/dist/Utils/Telemetry/OriginAllowList.js.map +1 -1
  637. package/build/dist/Utils/Traces/CriticalPath.js +9 -4
  638. package/build/dist/Utils/Traces/CriticalPath.js.map +1 -1
  639. package/package.json +1 -1
  640. package/Tests/UI/Rum/RecordingHealthStrip.test.tsx +0 -600
  641. package/UI/Components/GanttChart/Bar/BarLabel.tsx +0 -17
  642. package/UI/Components/GanttChart/Bar/Index.tsx +0 -149
  643. package/UI/Components/GanttChart/ChartContainer.tsx +0 -50
  644. package/UI/Components/GanttChart/Index.tsx +0 -90
  645. package/UI/Components/GanttChart/Row/Index.tsx +0 -22
  646. package/UI/Components/GanttChart/Row/Row.tsx +0 -231
  647. package/UI/Components/GanttChart/Row/RowLabel.tsx +0 -30
  648. package/UI/Components/GanttChart/Rows.tsx +0 -59
  649. package/UI/Components/GanttChart/Timeline/Index.tsx +0 -46
  650. package/UI/Components/GanttChart/Timeline/TimelineInterval.tsx +0 -33
  651. package/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.tsx +0 -43
  652. package/build/dist/UI/Components/GanttChart/Bar/BarLabel.js +0 -8
  653. package/build/dist/UI/Components/GanttChart/Bar/BarLabel.js.map +0 -1
  654. package/build/dist/UI/Components/GanttChart/Bar/Index.js +0 -77
  655. package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +0 -1
  656. package/build/dist/UI/Components/GanttChart/ChartContainer.js +0 -33
  657. package/build/dist/UI/Components/GanttChart/ChartContainer.js.map +0 -1
  658. package/build/dist/UI/Components/GanttChart/Index.js +0 -39
  659. package/build/dist/UI/Components/GanttChart/Index.js.map +0 -1
  660. package/build/dist/UI/Components/GanttChart/Row/Index.js +0 -7
  661. package/build/dist/UI/Components/GanttChart/Row/Index.js.map +0 -1
  662. package/build/dist/UI/Components/GanttChart/Row/Row.js +0 -106
  663. package/build/dist/UI/Components/GanttChart/Row/Row.js.map +0 -1
  664. package/build/dist/UI/Components/GanttChart/Row/RowLabel.js +0 -10
  665. package/build/dist/UI/Components/GanttChart/Row/RowLabel.js.map +0 -1
  666. package/build/dist/UI/Components/GanttChart/Rows.js +0 -19
  667. package/build/dist/UI/Components/GanttChart/Rows.js.map +0 -1
  668. package/build/dist/UI/Components/GanttChart/Timeline/Index.js +0 -16
  669. package/build/dist/UI/Components/GanttChart/Timeline/Index.js.map +0 -1
  670. package/build/dist/UI/Components/GanttChart/Timeline/TimelineInterval.js +0 -13
  671. package/build/dist/UI/Components/GanttChart/Timeline/TimelineInterval.js.map +0 -1
  672. package/build/dist/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.js +0 -13
  673. package/build/dist/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.js.map +0 -1
@@ -111,6 +111,45 @@ export const SESSION_REPLAY_ROLLING_BUFFER_BYTES = 2 * 1024 * 1024;
111
111
  /* Session identity lifetimes. */
112
112
  export const SESSION_REPLAY_IDLE_ROLLOVER_MS = 30 * 60 * 1000;
113
113
  export const SESSION_REPLAY_MAX_SESSION_MS = 4 * 60 * 60 * 1000;
114
+ /*
115
+ * When a recording counts as over.
116
+ *
117
+ * A session is finalized - its aggregates counted and its "Recording now"
118
+ * badge dropped - either when no chunk has arrived for
119
+ * SESSION_REPLAY_IDLE_FINALIZE_MS, or, much sooner, once every tab of it
120
+ * has ended (see Common/Utils/Rum/SessionReplayRecordingEnded.ts: the
121
+ * recorder seals a tab on pagehide) and SESSION_REPLAY_ENDED_FINALIZE_GRACE_MS
122
+ * has passed since the server stored the newest chunk of any of those tabs.
123
+ * The Dashboard applies the same grace before it calls a session "ended",
124
+ * so the list, the player and the finalizer agree.
125
+ *
126
+ * The idle window stays long because a live tab can be silent for minutes:
127
+ * the recorder only flushes when something happened. The grace is short
128
+ * because a final chunk says the tab is gone; it only has to cover the next
129
+ * page of a multi-page app registering its first chunk under the same
130
+ * session id (up to one flush interval after it loads), and a queue backlog
131
+ * between the two.
132
+ */
133
+ export const SESSION_REPLAY_IDLE_FINALIZE_MS = 10 * 60 * 1000;
134
+ export const SESSION_REPLAY_ENDED_FINALIZE_GRACE_MS = 60 * 1000;
135
+ /*
136
+ * How long after its final chunk's END a tab may still have started a chunk
137
+ * and be counted as ended.
138
+ *
139
+ * Older recorders, which stay cached on customer pages for as long as the
140
+ * pinned artifact lives, can post one more non-final chunk after the final
141
+ * one: on a visible tab the browser fires pagehide BEFORE visibilitychange,
142
+ * and their hidden handler flushed the visibility event it had just
143
+ * recorded. That trailing chunk starts at pagehide, but a chunk's end is
144
+ * its LAST BUFFERED EVENT, which can be up to one flush interval before
145
+ * pagehide when the user sat still before closing the tab. Hence one flush
146
+ * interval plus a margin for timer throttling.
147
+ *
148
+ * Nothing legitimate records under the same (session, tab) after a seal
149
+ * other than a back/forward-cache restore, and current recorders give a
150
+ * restored page a new tab id, so a wider bound cannot hide a live tab.
151
+ */
152
+ export const SESSION_REPLAY_ENDED_TRAILING_CHUNK_TOLERANCE_MS = SESSION_REPLAY_FLUSH_INTERVAL_MS + 10 * 1000;
114
153
  /*
115
154
  * fetch(keepalive) quota is 64KB combined per origin across all in-flight
116
155
  * keepalive requests, so the terminal flush gets one request under this
@@ -128,6 +167,23 @@ export const SESSION_REPLAY_MAX_FLUSH_FAILURES = 3;
128
167
  export const SESSION_REPLAY_CONTENT_TYPE = "application/vnd.oneuptime.session-replay.v1";
129
168
  /* Header carrying the RUM application identifier, needed pre-decode. */
130
169
  export const SESSION_REPLAY_APP_IDENTIFIER_HEADER = "x-oneuptime-app-identifier";
170
+ /*
171
+ * The transport surface that is asking for replay policy. This is separate
172
+ * from the recorderKind inside a chunk envelope because authentication runs
173
+ * before the request body is read. Absence deliberately means the historic
174
+ * DOM recorder; only the exact `rn-view-tree` value selects the mobile
175
+ * contract.
176
+ */
177
+ export const SESSION_REPLAY_RECORDER_KIND_HEADER = "x-oneuptime-replay-recorder-kind";
178
+ /*
179
+ * Native applications have no browser-controlled Origin header. The mobile
180
+ * recorder sends its Android package name / iOS bundle identifier here and
181
+ * the ingest guard maps it to an exact app:// origin for allowlist matching.
182
+ * It is not the RUM application identifier above: several app binaries may
183
+ * intentionally report to one configured RUM application.
184
+ */
185
+ export const SESSION_REPLAY_MOBILE_APP_IDENTIFIER_HEADER = "x-oneuptime-mobile-app-identifier";
186
+ export const SESSION_REPLAY_MAX_MOBILE_APP_IDENTIFIER_LENGTH = 255;
131
187
  /*
132
188
  * Header carrying the host page's end-user reference on the CONFIG fetch,
133
189
  * URI-component-encoded so a non-ASCII reference cannot make fetch() throw
@@ -288,6 +344,37 @@ export const SESSION_REPLAY_RECORDER_CAPABILITIES = [
288
344
  */
289
345
  "mousemove-50ms",
290
346
  ];
347
+ /*
348
+ * Capabilities emitted by the React Native recorder on its first chunk.
349
+ * Kept separate from the DOM baseline above: otherwise every perfectly
350
+ * healthy web recording would appear to be missing mobile-only features.
351
+ */
352
+ export const SESSION_REPLAY_MOBILE_RECORDER_CAPABILITIES = [
353
+ "mobile-view-tree",
354
+ "mobile-touch-events",
355
+ "custom-events",
356
+ "traits",
357
+ "tags",
358
+ "visibility",
359
+ "visitor-id",
360
+ "route-events",
361
+ "js-errors",
362
+ ];
363
+ /*
364
+ * Strict parser for the recorder-kind REQUEST header. The wire envelope has
365
+ * a backwards-compatible fallback for old stored chunks, but a config fetch
366
+ * must never silently reinterpret a typo as web policy. Header absence is
367
+ * the only legacy fallback.
368
+ */
369
+ export function parseSessionReplayRecorderKindHeader(value) {
370
+ if (value === undefined || value === null) {
371
+ return "dom";
372
+ }
373
+ if (value === "dom" || value === "rn-view-tree") {
374
+ return value;
375
+ }
376
+ return null;
377
+ }
291
378
  /*
292
379
  * Machine-readable disclosures of what the recorder could not capture.
293
380
  * Surfaced on the player so a viewer sees "this region was not recorded"
@@ -327,6 +414,14 @@ export var SessionReplayFidelityNotice;
327
414
  * footage recovers, but playback may skip or freeze around those points.
328
415
  */
329
416
  SessionReplayFidelityNotice["RecorderError"] = "recorder-error";
417
+ /* Native Image pixels are represented by an opaque placeholder. */
418
+ SessionReplayFidelityNotice["MobileImagesOpaque"] = "mobile-images-opaque";
419
+ /* WebView contents cannot be inspected from the React Native view tree. */
420
+ SessionReplayFidelityNotice["MobileWebViewOpaque"] = "mobile-webview-opaque";
421
+ /* Native canvas / drawing surfaces are represented as opaque regions. */
422
+ SessionReplayFidelityNotice["MobileCanvasOpaque"] = "mobile-canvas-opaque";
423
+ /* Animation state is sampled at snapshots rather than reproduced framewise. */
424
+ SessionReplayFidelityNotice["MobileAnimationSampled"] = "mobile-animation-sampled";
330
425
  })(SessionReplayFidelityNotice || (SessionReplayFidelityNotice = {}));
331
426
  /* Why a session stopped accumulating chunks. */
332
427
  export var SessionReplaySealedReason;
@@ -1 +1 @@
1
- {"version":3,"file":"SessionReplay.js","sourceRoot":"","sources":["../../../../Types/Rum/SessionReplay.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SessionReplay.js","sourceRoot":"","sources":["../../../../Types/Rum/SessionReplay.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"SessionReplayApi.js","sourceRoot":"","sources":["../../../../Types/Rum/SessionReplayApi.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SessionReplayApi.js","sourceRoot":"","sources":["../../../../Types/Rum/SessionReplayApi.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ /*
2
+ * Fold check statuses into the report verdict: any failure fails the
3
+ * report; otherwise any warning makes it a warning; skips are neutral.
4
+ */
5
+ export function summarizeCheckStatuses(checks) {
6
+ if (checks.some((check) => {
7
+ return check.status === "fail";
8
+ })) {
9
+ return "fail";
10
+ }
11
+ if (checks.some((check) => {
12
+ return check.status === "warn";
13
+ })) {
14
+ return "warn";
15
+ }
16
+ return "pass";
17
+ }
18
+ //# sourceMappingURL=ConnectorDiagnostics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConnectorDiagnostics.js","sourceRoot":"","sources":["../../../../../Types/SecurityEvent/Connectors/ConnectorDiagnostics.ts"],"names":[],"mappings":"AAsFA;;;GAGG;AACH,MAAM,UAAU,sBAAsB,CACpC,MAAqC;IAErC,IACE,MAAM,CAAC,IAAI,CAAC,CAAC,KAA6B,EAAW,EAAE;QACrD,OAAO,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC;IACjC,CAAC,CAAC,EACF,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IACE,MAAM,CAAC,IAAI,CAAC,CAAC,KAA6B,EAAW,EAAE;QACrD,OAAO,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC;IACjC,CAAC,CAAC,EACF,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=SecurityEventConnectionDiagnostics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SecurityEventConnectionDiagnostics.js","sourceRoot":"","sources":["../../../../../Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.ts"],"names":[],"mappings":""}
@@ -0,0 +1,374 @@
1
+ import IconProp from "../../Icon/IconProp";
2
+ import SecurityEventConnectorProvider from "./SecurityEventConnectorProvider";
3
+ export const SecurityEventConnectorCategories = ["SIEM", "EDR / XDR", "Cloud security", "Identity"];
4
+ const MICROSOFT_CLOUD_OPTIONS = [
5
+ { label: "Azure public cloud", value: "public" },
6
+ { label: "Azure Government (US)", value: "usgov" },
7
+ ];
8
+ export const SecurityEventConnectorCatalog = [
9
+ {
10
+ provider: SecurityEventConnectorProvider.MicrosoftSentinel,
11
+ title: "Microsoft Sentinel",
12
+ vendorName: "Microsoft",
13
+ productName: "Microsoft Sentinel",
14
+ description: "Import Sentinel incidents from a Log Analytics workspace as Incident Finding events.",
15
+ category: "SIEM",
16
+ icon: IconProp.ShieldCheck,
17
+ docsPath: "/docs/integrations/microsoft-sentinel",
18
+ defaultPollIntervalInMinutes: 5,
19
+ supportsAlertingOnlyToggle: false,
20
+ importedRecordName: "incident",
21
+ cursorOverlapInMinutes: 1,
22
+ configFields: [
23
+ {
24
+ key: "tenantId",
25
+ title: "Directory (tenant) ID",
26
+ description: "The Microsoft Entra tenant that owns the app registration.",
27
+ type: "text",
28
+ required: true,
29
+ placeholder: "00000000-0000-0000-0000-000000000000",
30
+ },
31
+ {
32
+ key: "clientId",
33
+ title: "Application (client) ID",
34
+ description: "The app registration granted the Microsoft Sentinel Reader role on the workspace.",
35
+ type: "text",
36
+ required: true,
37
+ placeholder: "00000000-0000-0000-0000-000000000000",
38
+ },
39
+ {
40
+ key: "subscriptionId",
41
+ title: "Subscription ID",
42
+ description: "The Azure subscription that contains the workspace.",
43
+ type: "text",
44
+ required: true,
45
+ },
46
+ {
47
+ key: "resourceGroup",
48
+ title: "Resource group",
49
+ description: "The resource group of the Log Analytics workspace.",
50
+ type: "text",
51
+ required: true,
52
+ },
53
+ {
54
+ key: "workspaceName",
55
+ title: "Workspace name",
56
+ description: "The Log Analytics workspace Microsoft Sentinel is enabled on.",
57
+ type: "text",
58
+ required: true,
59
+ },
60
+ {
61
+ key: "cloud",
62
+ title: "Cloud",
63
+ description: "Which Azure cloud hosts the tenant and workspace.",
64
+ type: "dropdown",
65
+ required: true,
66
+ options: MICROSOFT_CLOUD_OPTIONS,
67
+ defaultValue: "public",
68
+ },
69
+ ],
70
+ secretFields: [
71
+ {
72
+ key: "clientSecret",
73
+ title: "Client secret",
74
+ description: "A client secret of the app registration. Encrypted at rest and never returned by the API.",
75
+ type: "password",
76
+ required: true,
77
+ },
78
+ ],
79
+ },
80
+ {
81
+ provider: SecurityEventConnectorProvider.MicrosoftDefenderXdr,
82
+ title: "Microsoft Defender XDR",
83
+ vendorName: "Microsoft",
84
+ productName: "Microsoft Defender XDR",
85
+ description: "Import Defender XDR alerts through the Microsoft Graph security API as Detection Finding events.",
86
+ category: "EDR / XDR",
87
+ icon: IconProp.ShieldExclamation,
88
+ docsPath: "/docs/integrations/microsoft-defender-xdr",
89
+ defaultPollIntervalInMinutes: 5,
90
+ supportsAlertingOnlyToggle: false,
91
+ importedRecordName: "alert",
92
+ cursorOverlapInMinutes: 1,
93
+ configFields: [
94
+ {
95
+ key: "tenantId",
96
+ title: "Directory (tenant) ID",
97
+ description: "The Microsoft Entra tenant that owns the app registration.",
98
+ type: "text",
99
+ required: true,
100
+ placeholder: "00000000-0000-0000-0000-000000000000",
101
+ },
102
+ {
103
+ key: "clientId",
104
+ title: "Application (client) ID",
105
+ description: "The app registration granted the SecurityAlert.Read.All application permission.",
106
+ type: "text",
107
+ required: true,
108
+ placeholder: "00000000-0000-0000-0000-000000000000",
109
+ },
110
+ {
111
+ key: "cloud",
112
+ title: "Cloud",
113
+ description: "Which Azure cloud hosts the tenant.",
114
+ type: "dropdown",
115
+ required: true,
116
+ options: MICROSOFT_CLOUD_OPTIONS,
117
+ defaultValue: "public",
118
+ },
119
+ ],
120
+ secretFields: [
121
+ {
122
+ key: "clientSecret",
123
+ title: "Client secret",
124
+ description: "A client secret of the app registration. Encrypted at rest and never returned by the API.",
125
+ type: "password",
126
+ required: true,
127
+ },
128
+ ],
129
+ },
130
+ {
131
+ provider: SecurityEventConnectorProvider.CrowdStrikeFalcon,
132
+ title: "CrowdStrike Falcon",
133
+ vendorName: "CrowdStrike",
134
+ productName: "Falcon",
135
+ description: "Import Falcon alerts (endpoint, identity and cloud detections) as Detection Finding events.",
136
+ category: "EDR / XDR",
137
+ icon: IconProp.Bolt,
138
+ docsPath: "/docs/integrations/crowdstrike-falcon",
139
+ defaultPollIntervalInMinutes: 5,
140
+ supportsAlertingOnlyToggle: false,
141
+ importedRecordName: "alert",
142
+ cursorOverlapInMinutes: 1,
143
+ configFields: [
144
+ {
145
+ key: "clientId",
146
+ title: "Client ID",
147
+ description: "The Falcon API client ID. The client needs the Alerts: Read scope.",
148
+ type: "text",
149
+ required: true,
150
+ },
151
+ {
152
+ key: "cloud",
153
+ title: "Falcon cloud",
154
+ description: "The CrowdStrike cloud your customer ID (CID) is hosted in; it decides the API hostname.",
155
+ type: "dropdown",
156
+ required: true,
157
+ options: [
158
+ { label: "US-1 (api.crowdstrike.com)", value: "us-1" },
159
+ { label: "US-2 (api.us-2.crowdstrike.com)", value: "us-2" },
160
+ { label: "EU-1 (api.eu-1.crowdstrike.com)", value: "eu-1" },
161
+ {
162
+ label: "US-GOV-1 (api.laggar.gcw.crowdstrike.com)",
163
+ value: "us-gov-1",
164
+ },
165
+ ],
166
+ defaultValue: "us-1",
167
+ },
168
+ ],
169
+ secretFields: [
170
+ {
171
+ key: "clientSecret",
172
+ title: "Client secret",
173
+ description: "The Falcon API client secret. Encrypted at rest and never returned by the API.",
174
+ type: "password",
175
+ required: true,
176
+ },
177
+ ],
178
+ },
179
+ {
180
+ provider: SecurityEventConnectorProvider.SplunkEnterpriseSecurity,
181
+ title: "Splunk Enterprise Security",
182
+ vendorName: "Splunk",
183
+ productName: "Splunk Enterprise Security",
184
+ description: "Import notable events from Splunk Enterprise Security (or any saved search) as Detection Finding events.",
185
+ category: "SIEM",
186
+ icon: IconProp.Search,
187
+ docsPath: "/docs/integrations/splunk",
188
+ defaultPollIntervalInMinutes: 5,
189
+ supportsAlertingOnlyToggle: false,
190
+ importedRecordName: "notable event",
191
+ cursorOverlapInMinutes: 1,
192
+ configFields: [
193
+ {
194
+ key: "url",
195
+ title: "Splunk management URL",
196
+ description: "The REST API base URL of the search head, usually on port 8089.",
197
+ type: "url",
198
+ required: true,
199
+ placeholder: "https://splunk.example.com:8089",
200
+ },
201
+ {
202
+ key: "searchString",
203
+ title: "Search",
204
+ description: "The SPL that selects the events to import. The connector adds the time range itself; do not include earliest or latest.",
205
+ type: "text",
206
+ required: false,
207
+ placeholder: "index=notable",
208
+ defaultValue: "index=notable",
209
+ },
210
+ {
211
+ key: "username",
212
+ title: "Username",
213
+ description: "Only when authenticating with a password instead of an authentication token.",
214
+ type: "text",
215
+ required: false,
216
+ },
217
+ ],
218
+ secretFields: [
219
+ {
220
+ key: "apiToken",
221
+ title: "Authentication token",
222
+ description: "A Splunk authentication token (Settings > Tokens). Leave empty when using username and password.",
223
+ type: "password",
224
+ required: false,
225
+ },
226
+ {
227
+ key: "password",
228
+ title: "Password",
229
+ description: "The password for the username above. Leave empty when using an authentication token.",
230
+ type: "password",
231
+ required: false,
232
+ },
233
+ ],
234
+ },
235
+ {
236
+ provider: SecurityEventConnectorProvider.ElasticSecurity,
237
+ title: "Elastic Security",
238
+ vendorName: "Elastic",
239
+ productName: "Elastic Security",
240
+ description: "Import detection alerts from Elastic Security through the Kibana detections API as Detection Finding events.",
241
+ category: "SIEM",
242
+ icon: IconProp.ShieldCheck,
243
+ docsPath: "/docs/integrations/elastic-security",
244
+ defaultPollIntervalInMinutes: 5,
245
+ supportsAlertingOnlyToggle: false,
246
+ importedRecordName: "alert",
247
+ cursorOverlapInMinutes: 1,
248
+ configFields: [
249
+ {
250
+ key: "kibanaUrl",
251
+ title: "Kibana URL",
252
+ description: "The base URL of Kibana, without a trailing path.",
253
+ type: "url",
254
+ required: true,
255
+ placeholder: "https://kibana.example.com",
256
+ },
257
+ {
258
+ key: "space",
259
+ title: "Kibana space",
260
+ description: "The space that holds the detection rules. Leave empty for the default space.",
261
+ type: "text",
262
+ required: false,
263
+ },
264
+ ],
265
+ secretFields: [
266
+ {
267
+ key: "apiKey",
268
+ title: "API key",
269
+ description: "A Kibana API key (the base64 encoded id:key value) with read access to detection alerts. Encrypted at rest and never returned by the API.",
270
+ type: "password",
271
+ required: true,
272
+ },
273
+ ],
274
+ },
275
+ {
276
+ provider: SecurityEventConnectorProvider.AwsSecurityHub,
277
+ title: "AWS Security Hub",
278
+ vendorName: "Amazon Web Services",
279
+ productName: "AWS Security Hub",
280
+ description: "Import Security Hub findings (GuardDuty, Inspector, Macie, IAM Access Analyzer and partner products) as Detection and Compliance Finding events.",
281
+ category: "Cloud security",
282
+ icon: IconProp.Cloud,
283
+ docsPath: "/docs/integrations/aws-security-hub",
284
+ defaultPollIntervalInMinutes: 5,
285
+ supportsAlertingOnlyToggle: false,
286
+ importedRecordName: "finding",
287
+ cursorOverlapInMinutes: 30,
288
+ configFields: [
289
+ {
290
+ key: "region",
291
+ title: "Region",
292
+ description: "The AWS region of the Security Hub administrator or aggregation account.",
293
+ type: "text",
294
+ required: true,
295
+ placeholder: "us-east-1",
296
+ },
297
+ {
298
+ key: "accessKeyId",
299
+ title: "Access key ID",
300
+ description: "An IAM access key with the securityhub:GetFindings permission.",
301
+ type: "text",
302
+ required: true,
303
+ placeholder: "AKIA...",
304
+ },
305
+ ],
306
+ secretFields: [
307
+ {
308
+ key: "secretAccessKey",
309
+ title: "Secret access key",
310
+ description: "The secret access key for the access key ID above. Encrypted at rest and never returned by the API.",
311
+ type: "password",
312
+ required: true,
313
+ },
314
+ {
315
+ key: "sessionToken",
316
+ title: "Session token",
317
+ description: "Only for temporary credentials. Leave empty for a long-lived access key.",
318
+ type: "password",
319
+ required: false,
320
+ },
321
+ ],
322
+ },
323
+ {
324
+ provider: SecurityEventConnectorProvider.OktaSystemLog,
325
+ title: "Okta System Log",
326
+ vendorName: "Okta",
327
+ productName: "Okta System Log",
328
+ description: "Import authentication, MFA, account and policy events from the Okta System Log as OCSF identity events.",
329
+ category: "Identity",
330
+ icon: IconProp.Key,
331
+ docsPath: "/docs/integrations/okta",
332
+ defaultPollIntervalInMinutes: 5,
333
+ supportsAlertingOnlyToggle: false,
334
+ importedRecordName: "log event",
335
+ cursorOverlapInMinutes: 15,
336
+ configFields: [
337
+ {
338
+ key: "orgUrl",
339
+ title: "Okta organization URL",
340
+ description: "Your Okta org URL, without a trailing path.",
341
+ type: "url",
342
+ required: true,
343
+ placeholder: "https://acme.okta.com",
344
+ },
345
+ {
346
+ key: "filter",
347
+ title: "Event filter",
348
+ description: "Optional Okta System Log filter expression. Leave empty to import the security-relevant event families the connector selects by default.",
349
+ type: "text",
350
+ required: false,
351
+ placeholder: 'eventType sw "user.session" or eventType sw "security"',
352
+ },
353
+ ],
354
+ secretFields: [
355
+ {
356
+ key: "apiToken",
357
+ title: "API token",
358
+ description: "An Okta API token (SSWS) for a read-only administrator. Encrypted at rest and never returned by the API.",
359
+ type: "password",
360
+ required: true,
361
+ },
362
+ ],
363
+ },
364
+ ];
365
+ export function getSecurityEventConnectorDefinition(provider) {
366
+ return SecurityEventConnectorCatalog.find((definition) => {
367
+ return definition.provider === provider;
368
+ });
369
+ }
370
+ export function getSecurityEventConnectorTitle(provider) {
371
+ var _a;
372
+ return ((_a = getSecurityEventConnectorDefinition(provider)) === null || _a === void 0 ? void 0 : _a.title) || provider || "";
373
+ }
374
+ //# sourceMappingURL=SecurityEventConnectorCatalog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SecurityEventConnectorCatalog.js","sourceRoot":"","sources":["../../../../../Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,35 @@
1
+ /*
2
+ * The security sources OneUptime can poll through the managed
3
+ * Security Event Connections framework. Each value is the stable
4
+ * identifier stored on SecurityEventConnection.provider, used to look up
5
+ * the server-side connector in SecurityEventConnectorRegistry and the
6
+ * form/help metadata in SecurityEventConnectorCatalog.
7
+ *
8
+ * Google SecOps predates this framework and keeps its own model
9
+ * (GoogleSecOpsConnection) and poller; it is deliberately not listed here.
10
+ */
11
+ var SecurityEventConnectorProvider;
12
+ (function (SecurityEventConnectorProvider) {
13
+ SecurityEventConnectorProvider["MicrosoftSentinel"] = "microsoft-sentinel";
14
+ SecurityEventConnectorProvider["MicrosoftDefenderXdr"] = "microsoft-defender-xdr";
15
+ SecurityEventConnectorProvider["CrowdStrikeFalcon"] = "crowdstrike-falcon";
16
+ SecurityEventConnectorProvider["SplunkEnterpriseSecurity"] = "splunk";
17
+ SecurityEventConnectorProvider["ElasticSecurity"] = "elastic-security";
18
+ SecurityEventConnectorProvider["AwsSecurityHub"] = "aws-security-hub";
19
+ SecurityEventConnectorProvider["OktaSystemLog"] = "okta";
20
+ })(SecurityEventConnectorProvider || (SecurityEventConnectorProvider = {}));
21
+ export default SecurityEventConnectorProvider;
22
+ export const AllSecurityEventConnectorProviders = [
23
+ SecurityEventConnectorProvider.MicrosoftSentinel,
24
+ SecurityEventConnectorProvider.MicrosoftDefenderXdr,
25
+ SecurityEventConnectorProvider.CrowdStrikeFalcon,
26
+ SecurityEventConnectorProvider.SplunkEnterpriseSecurity,
27
+ SecurityEventConnectorProvider.ElasticSecurity,
28
+ SecurityEventConnectorProvider.AwsSecurityHub,
29
+ SecurityEventConnectorProvider.OktaSystemLog,
30
+ ];
31
+ export function isSecurityEventConnectorProvider(value) {
32
+ return (typeof value === "string" &&
33
+ AllSecurityEventConnectorProviders.includes(value));
34
+ }
35
+ //# sourceMappingURL=SecurityEventConnectorProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SecurityEventConnectorProvider.js","sourceRoot":"","sources":["../../../../../Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,IAAK,8BAQJ;AARD,WAAK,8BAA8B;IACjC,0EAAwC,CAAA;IACxC,iFAA+C,CAAA;IAC/C,0EAAwC,CAAA;IACxC,qEAAmC,CAAA;IACnC,sEAAoC,CAAA;IACpC,qEAAmC,CAAA;IACnC,wDAAsB,CAAA;AACxB,CAAC,EARI,8BAA8B,KAA9B,8BAA8B,QAQlC;AAED,eAAe,8BAA8B,CAAC;AAE9C,MAAM,CAAC,MAAM,kCAAkC,GAC7C;IACE,8BAA8B,CAAC,iBAAiB;IAChD,8BAA8B,CAAC,oBAAoB;IACnD,8BAA8B,CAAC,iBAAiB;IAChD,8BAA8B,CAAC,wBAAwB;IACvD,8BAA8B,CAAC,eAAe;IAC9C,8BAA8B,CAAC,cAAc;IAC7C,8BAA8B,CAAC,aAAa;CAC7C,CAAC;AAEJ,MAAM,UAAU,gCAAgC,CAC9C,KAAc;IAEd,OAAO,CACL,OAAO,KAAK,KAAK,QAAQ;QACxB,kCAAoD,CAAC,QAAQ,CAAC,KAAK,CAAC,CACtE,CAAC;AACJ,CAAC"}