@oneuptime/common 13.0.3 → 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.
- package/Models/DatabaseModels/Index.ts +4 -0
- package/Models/DatabaseModels/RumApplication.ts +1 -1
- package/Models/DatabaseModels/SecurityEventConnection.ts +457 -0
- package/Models/DatabaseModels/SecurityEventConnectionRun.ts +263 -0
- package/Models/DatabaseModels/TelemetryIngestionKey.ts +2 -2
- package/Server/API/AIInvestigationAPI.ts +484 -24
- package/Server/API/GoogleSecOpsConnectionAPI.ts +249 -8
- package/Server/API/SecurityEventConnectionAPI.ts +250 -0
- package/Server/API/TelemetryAPI.ts +402 -265
- package/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.ts +99 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +2 -0
- package/Server/Middleware/TelemetryIngest.ts +101 -6
- package/Server/Services/ExceptionAggregationService.ts +7 -16
- package/Server/Services/GoogleSecOpsConnectionService.ts +15 -0
- package/Server/Services/Index.ts +4 -0
- package/Server/Services/InventoryItemService.ts +28 -0
- package/Server/Services/LogAggregationService.ts +17 -23
- package/Server/Services/MetricAggregationService.ts +4 -14
- package/Server/Services/SecurityEventConnectionRunService.ts +10 -0
- package/Server/Services/SecurityEventConnectionService.ts +538 -0
- package/Server/Services/TraceAggregationService.ts +77 -28
- package/Server/Types/AnalyticsDatabase/ModelPermission.ts +9 -0
- package/Server/Utils/AI/Chat/ObservabilityAssistant.ts +13 -1
- package/Server/Utils/AI/SRE/AIInvestigationEngine.ts +15 -1
- package/Server/Utils/AI/SRE/InvestigationEvidence.ts +658 -0
- package/Server/Utils/AI/SRE/InvestigationReferences.ts +324 -0
- package/Server/Utils/AI/Toolbox/Index.ts +38 -0
- package/Server/Utils/AI/Toolbox/TimelineTools.ts +9 -2
- package/Server/Utils/AnalyticsDatabase/StatementGenerator.ts +80 -0
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +5 -3
- package/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.ts +1108 -0
- package/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.ts +732 -0
- package/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.ts +495 -0
- package/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.ts +689 -0
- package/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.ts +767 -0
- package/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.ts +571 -0
- package/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.ts +827 -0
- package/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.ts +610 -0
- package/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.ts +549 -0
- package/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.ts +830 -0
- package/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.ts +684 -0
- package/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.ts +487 -0
- package/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.ts +778 -0
- package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.ts +1002 -0
- package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.ts +556 -0
- package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.ts +275 -0
- package/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.ts +53 -0
- package/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.ts +709 -0
- package/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.ts +596 -0
- package/Server/Utils/SecurityEvent/Connectors/Types.ts +191 -0
- package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.ts +353 -65
- package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.ts +777 -0
- package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.ts +747 -148
- package/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.ts +48 -2
- package/Server/Utils/SecurityEvent/SecurityEventDedupe.ts +81 -0
- package/Server/Utils/SessionReplay/SessionReplayReadService.ts +741 -40
- package/Server/Utils/StartServer.ts +10 -0
- package/Server/Utils/Telemetry/EntityRegistry.ts +8 -0
- package/Server/Utils/Telemetry/KubernetesResourceAttributes.ts +108 -0
- package/Server/Utils/Telemetry/ResourceEntityFilter.ts +174 -93
- package/Server/Utils/Telemetry/ResourceFacetPlanner.ts +251 -0
- package/Server/Utils/Telemetry/ResourceFacetResolver.ts +248 -413
- package/Server/Utils/Telemetry/ServiceDependencyDiscovery.ts +668 -0
- package/Server/Utils/Telemetry/TraceContextPropagation.ts +348 -0
- package/Server/Utils/Telemetry.ts +18 -0
- package/Tests/App/Dashboard/AIInvestigationHeaderStatus.test.tsx +413 -0
- package/Tests/App/Dashboard/AIRootCauseFeedItem.test.tsx +285 -0
- package/Tests/App/Dashboard/AffectedResourcesDisplay.test.tsx +242 -0
- package/Tests/App/Dashboard/AlertEpisodeViewFields.test.tsx +601 -15
- package/Tests/App/Dashboard/ChangeAlertStateAIHeader.test.tsx +835 -0
- package/Tests/App/Dashboard/CloudResourceTelemetryScope.test.ts +41 -0
- package/Tests/App/Dashboard/ConnectionTestModal.test.tsx +604 -0
- package/Tests/App/Dashboard/ConnectorTestReportView.test.tsx +738 -0
- package/Tests/App/Dashboard/DashboardLazyPages.test.tsx +153 -6
- package/Tests/App/Dashboard/EntityDetailPanel.test.tsx +165 -0
- package/Tests/App/Dashboard/EpisodeChangeState.test.tsx +1069 -0
- package/Tests/App/Dashboard/EpisodeMembersCard.test.tsx +772 -0
- package/Tests/App/Dashboard/EventOverviewPages.test.tsx +2354 -0
- package/Tests/App/Dashboard/EventOverviewSkeleton.test.tsx +210 -0
- package/Tests/App/Dashboard/EventStatBar.test.tsx +392 -0
- package/Tests/App/Dashboard/EventStatusPanel.test.tsx +247 -0
- package/Tests/App/Dashboard/ExceptionAIAssistance.test.tsx +606 -0
- package/Tests/App/Dashboard/ExceptionBreadcrumbTimeline.test.tsx +273 -0
- package/Tests/App/Dashboard/ExceptionDetailSideMenu.test.tsx +176 -0
- package/Tests/App/Dashboard/ExceptionOverviewCards.test.tsx +366 -0
- package/Tests/App/Dashboard/ExceptionSignalPages.test.tsx +371 -0
- package/Tests/App/Dashboard/ExceptionStackFrameViewer.test.tsx +440 -0
- package/Tests/App/Dashboard/ExceptionSummary.test.tsx +381 -0
- package/Tests/App/Dashboard/ExceptionTriage.test.tsx +306 -0
- package/Tests/App/Dashboard/ExceptionsResourceFacets.test.tsx +604 -0
- package/Tests/App/Dashboard/ExceptionsViewerEntityChips.test.tsx +706 -0
- package/Tests/App/Dashboard/FeedOrdering.test.ts +32 -0
- package/Tests/App/Dashboard/GoogleSecOpsConnectionForm.test.tsx +838 -0
- package/Tests/App/Dashboard/GoogleSecOpsConnectionsErrors.test.tsx +18 -0
- package/Tests/App/Dashboard/GoogleSecOpsDiagnostics.test.tsx +297 -20
- package/Tests/App/Dashboard/IncidentEpisodeViewFields.test.tsx +618 -13
- package/Tests/App/Dashboard/InfrastructureExplorer.test.tsx +254 -207
- package/Tests/App/Dashboard/InfrastructureGraph.test.tsx +303 -135
- package/Tests/App/Dashboard/InvestigationEvidenceList.test.tsx +1251 -0
- package/Tests/App/Dashboard/InvestigationFeedRefresh.test.tsx +303 -0
- package/Tests/App/Dashboard/InvestigationPanel.test.tsx +876 -8
- package/Tests/App/Dashboard/InvestigationPanelStatus.test.tsx +35 -0
- package/Tests/App/Dashboard/InvestigationReferenceLink.test.tsx +177 -0
- package/Tests/App/Dashboard/InvestigationReportView.test.tsx +1295 -0
- package/Tests/App/Dashboard/KubernetesImageReferenceView.test.tsx +114 -0
- package/Tests/App/Dashboard/KubernetesLogsTabChips.test.tsx +285 -0
- package/Tests/App/Dashboard/LogsEntityChipNames.test.tsx +316 -0
- package/Tests/App/Dashboard/LogsResourceFacetChips.test.tsx +361 -0
- package/Tests/App/Dashboard/ProfileTableEntityNames.test.tsx +432 -0
- package/Tests/App/Dashboard/ProfileViewEntityName.test.tsx +250 -0
- package/Tests/App/Dashboard/ResourceArchiveSettings.test.tsx +10 -0
- package/Tests/App/Dashboard/ResourceLogsTabsBareLayout.test.tsx +700 -0
- package/Tests/App/Dashboard/ResourcePageEntityNameProps.test.tsx +803 -0
- package/Tests/App/Dashboard/RumSessionReplaySideMenu.test.tsx +11 -1
- package/Tests/App/Dashboard/ScheduledMaintenanceChangeState.test.tsx +1026 -0
- package/Tests/App/Dashboard/ScheduledMaintenanceFeedRefresh.test.tsx +436 -0
- package/Tests/App/Dashboard/ScheduledMaintenanceOverviewPage.test.tsx +1195 -0
- package/Tests/App/Dashboard/SecurityEventConnectionFormModal.test.tsx +1022 -0
- package/Tests/App/Dashboard/SecurityEventConnectionsTable.test.tsx +905 -0
- package/Tests/App/Dashboard/SecurityEventsSideMenu.test.tsx +247 -0
- package/Tests/App/Dashboard/ServiceMapGraph.test.tsx +375 -274
- package/Tests/App/Dashboard/SessionReplayAuditTable.test.tsx +410 -0
- package/Tests/App/Dashboard/TelemetryResourceRetentionSettings.test.tsx +774 -0
- package/Tests/App/Dashboard/TopErrorsPanelResourceNames.test.tsx +316 -0
- package/Tests/App/Dashboard/TopologyDataLoading.test.tsx +30 -0
- package/Tests/App/Dashboard/TopologyPageNavigation.test.tsx +88 -24
- package/Tests/App/Dashboard/TraceExplorer.test.tsx +1590 -0
- package/Tests/App/Dashboard/TraceWaterfall.test.tsx +488 -0
- package/Tests/App/Dashboard/TracesAnalyticsSeriesLabels.test.tsx +367 -0
- package/Tests/App/Dashboard/TracesEntityNames.test.tsx +585 -0
- package/Tests/App/Dashboard/TracesResourceFacets.test.tsx +613 -0
- package/Tests/App/Dashboard/UseServiceNames.test.tsx +359 -0
- package/Tests/Models/DatabaseModels/DomainRoleTierCoverage.test.ts +7 -0
- package/Tests/Models/InventoryItemNaming.test.ts +132 -16
- package/Tests/Models/SecurityDomainAccessControl.test.ts +61 -17
- package/Tests/Server/API/AIInvestigationAPI.test.ts +611 -2
- package/Tests/Server/API/AIInvestigationEvidenceAPI.test.ts +1098 -0
- package/Tests/Server/API/GoogleSecOpsConnectionAPI.test.ts +409 -0
- package/Tests/Server/API/SecurityEventConnectionAPI.test.ts +856 -0
- package/Tests/Server/API/SessionReplayAPI.test.ts +528 -1
- package/Tests/Server/API/TelemetryFacetsAPI.test.ts +810 -0
- package/Tests/Server/Infrastructure/E2EClickHouseFixtureAccess.test.ts +240 -0
- package/Tests/Server/Middleware/TelemetryIngestBrowserKey.test.ts +229 -0
- package/Tests/Server/Services/InventoryItemDisplayName.test.ts +66 -0
- package/Tests/Server/Services/OpenTelemetryResourceRetentionMemo.test.ts +28 -1
- package/Tests/Server/Services/SecurityEventConnectionService.test.ts +1233 -0
- package/Tests/Server/Services/TelemetryIngestionKeyValidation.test.ts +53 -0
- package/Tests/Server/Services/TelemetryResourceFacetCounting.test.ts +218 -0
- package/Tests/Server/Services/TelemetryResourceFacetFilters.test.ts +155 -1
- package/Tests/Server/Services/TraceAggregationExceptionScope.test.ts +142 -0
- package/Tests/Server/Services/TraceAnalyticsResourceDisplayNames.test.ts +85 -24
- package/Tests/Server/Types/Database/Permissions/SecurityRoleAccess.test.ts +33 -0
- package/Tests/Server/Utils/AI/InvestigationEvidence.test.ts +1395 -0
- package/Tests/Server/Utils/AI/InvestigationReferences.test.ts +616 -0
- package/Tests/Server/Utils/AI/TimelineTools.test.ts +119 -0
- package/Tests/Server/Utils/AI/Toolbox/AIToolbox.test.ts +151 -0
- package/Tests/Server/Utils/AnalyticsDatabase/StatementGenerator.test.ts +65 -0
- package/Tests/Server/Utils/AnalyticsDatabase/StatementGeneratorExceptionScope.test.ts +224 -0
- package/Tests/Server/Utils/LoggerCore.test.ts +597 -0
- package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluatorPerSeriesFanout.test.ts +55 -2
- package/Tests/Server/Utils/Monitor/MonitorTemplateUtil.test.ts +1109 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.test.ts +1240 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.test.ts +1853 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.test.ts +1129 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.test.ts +1066 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.test.ts +1568 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.test.ts +930 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.test.ts +1409 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.test.ts +763 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.test.ts +1296 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.test.ts +1102 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.test.ts +1174 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.test.ts +1032 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.test.ts +1558 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.test.ts +3041 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.test.ts +1168 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.test.ts +906 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.test.ts +1068 -0
- package/Tests/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.test.ts +1004 -0
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.test.ts +784 -0
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.test.ts +113 -1
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsClient.test.ts +5 -1
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsDiagnostics.test.ts +93 -13
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsHttpIntegration.test.ts +23 -1
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPoller.test.ts +25 -3
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPollerFailureTaxonomy.test.ts +22 -8
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsPollerHardening.test.ts +82 -16
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsSearchDetections.test.ts +730 -0
- package/Tests/Server/Utils/SecurityEvent/GoogleSecOpsThreePassPoller.test.ts +1577 -0
- package/Tests/Server/Utils/SessionReplay/SessionReplayOriginAllowlist.test.ts +41 -0
- package/Tests/Server/Utils/SessionReplay/SessionReplayReadServiceQueries.test.ts +1453 -18
- package/Tests/Server/Utils/Telemetry/EntityRegistry.test.ts +711 -0
- package/Tests/Server/Utils/Telemetry/KubernetesResourceAttributes.test.ts +162 -0
- package/Tests/Server/Utils/Telemetry/ResourceEntityFilter.test.ts +460 -13
- package/Tests/Server/Utils/Telemetry/ResourceFacetPlanner.test.ts +678 -0
- package/Tests/Server/Utils/Telemetry/ResourceFacetResolver.test.ts +868 -0
- package/Tests/Server/Utils/Telemetry/ServiceDependencyDiscovery.test.ts +525 -0
- package/Tests/Server/Utils/Telemetry/TraceContextPropagation.test.ts +420 -0
- package/Tests/Types/OnCallDutyPolicy/LayerUtilCorePaths.test.ts +1014 -0
- package/Tests/Types/OnCallDutyPolicy/LayerUtilExhaustiveRotation.test.ts +9 -6
- package/Tests/Types/Rules/RuleCriteriaFieldRegistry.test.ts +276 -0
- package/Tests/Types/Rum/SessionReplayApiContracts.test.ts +73 -0
- package/Tests/Types/Rum/SessionReplayTransportContracts.test.ts +95 -0
- package/Tests/Types/SecurityEvent/Connectors/ConnectorDiagnostics.test.ts +82 -0
- package/Tests/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.test.ts +314 -0
- package/Tests/Types/Telemetry/ExceptionSpanScope.test.ts +89 -0
- package/Tests/Types/Telemetry/LlmConventions.test.ts +495 -0
- package/Tests/Types/Telemetry/ResourceEntityFacet.test.ts +96 -0
- package/Tests/Types/Telemetry/ResourceFacetCatalog.test.ts +304 -0
- package/Tests/UI/Components/ActiveFilterChipsLockedFilters.test.tsx +357 -0
- package/Tests/UI/Components/Card.test.tsx +312 -1
- package/Tests/UI/Components/CardModelDetailHeaderLayout.test.tsx +253 -0
- package/Tests/UI/Components/CardModelDetailRefresher.test.tsx +342 -0
- package/Tests/UI/Components/Checkbox.test.tsx +79 -0
- package/Tests/UI/Components/CopyTextButton.test.tsx +142 -0
- package/Tests/UI/Components/DetailCompactStyle.test.tsx +621 -0
- package/Tests/UI/Components/ErrorBoundary.test.tsx +60 -0
- package/Tests/UI/Components/FacetSections.test.tsx +581 -0
- package/Tests/UI/Components/FacetSidebarControls.test.tsx +812 -0
- package/Tests/UI/Components/FacetVisibility.test.ts +429 -0
- package/Tests/UI/Components/LockedFilterActions.test.tsx +396 -0
- package/Tests/UI/Components/LockedFilterChip.test.tsx +651 -0
- package/Tests/UI/Components/LogsEntityNames.test.ts +1769 -0
- package/Tests/UI/Components/LogsEntityNamesComponents.test.tsx +696 -0
- package/Tests/UI/Components/LogsFacetSidebarHiddenFacets.test.tsx +600 -0
- package/Tests/UI/Components/LogsViewerEntityNames.test.tsx +713 -0
- package/Tests/UI/Components/MarkdownInlineReferences.test.tsx +2079 -0
- package/Tests/UI/Components/MemberRoleAssignment.test.tsx +446 -0
- package/Tests/UI/Components/ModelDetailRefetch.test.tsx +397 -0
- package/Tests/UI/Components/ModelListRefetch.test.tsx +233 -0
- package/Tests/UI/Components/ModelPageModelChange.test.tsx +409 -0
- package/Tests/UI/Components/PaginationIntegration.test.tsx +25 -0
- package/Tests/UI/Components/ResourceFacetConfigs.test.ts +172 -0
- package/Tests/UI/Components/SavedViewsSidebarIntegration.test.tsx +32 -14
- package/Tests/UI/Components/TableSortAndMobileColumns.test.tsx +44 -1
- package/Tests/UI/Components/TelemetryActiveFilterChipsLockedFilters.test.tsx +304 -0
- package/Tests/UI/Components/TelemetryFacetSidebarHiddenFacets.test.tsx +718 -0
- package/Tests/UI/Monitor/EvaluationLogList.test.tsx +303 -0
- package/Tests/UI/Monitor/MonitorSummarySnapshotRender.test.tsx +55 -1
- package/Tests/UI/Rum/FidelityNotices.test.ts +22 -0
- package/Tests/UI/Rum/RecordingHealthCard.test.tsx +120 -136
- package/Tests/UI/Rum/RecordingHealthDashboard.test.tsx +988 -0
- package/Tests/UI/Rum/ReplayCard.test.tsx +32 -0
- package/Tests/UI/Rum/ReplayCorrelationPanel.test.tsx +709 -12
- package/Tests/UI/Rum/ReplayHeader.test.tsx +50 -1
- package/Tests/UI/Rum/ReplayPinControl.test.tsx +67 -10
- package/Tests/UI/Rum/ReplayPlayerChrome.test.tsx +41 -12
- package/Tests/UI/Rum/ReplayStage.test.tsx +663 -1
- package/Tests/UI/Rum/ReplayStageOverlays.test.tsx +173 -0
- package/Tests/UI/Rum/ReplayUi.test.tsx +189 -2
- package/Tests/UI/Rum/ReplayUserSessionsMenu.test.tsx +91 -0
- package/Tests/UI/Rum/SessionReplayEmptyState.test.tsx +1 -1
- package/Tests/UI/Rum/SessionReplaySettingsPolicyLoading.test.tsx +585 -0
- package/Tests/UI/Rum/SessionReplayTable.test.tsx +844 -51
- package/Tests/UI/Rum/SessionReplayUsersTable.test.tsx +29 -1
- package/Tests/UI/Telemetry/TelemetryDetailPanel.test.tsx +288 -0
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealBreadcrumbTrails.ts +31 -1
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealRoutePatterns.ts +6 -0
- package/Tests/UI/Utils/Clipboard.test.ts +154 -0
- package/Tests/UI/Utils/Navigation.test.ts +24 -0
- package/Tests/UI/Utils/Telemetry/TelemetryEntityNames.test.ts +2205 -0
- package/Tests/UI/Utils/Telemetry/UseTelemetryEntityNames.test.tsx +844 -0
- package/Tests/Utils/AI/InvestigationReport.test.ts +2430 -0
- package/Tests/Utils/APIOutgoingRequestTracer.test.ts +137 -0
- package/Tests/Utils/Rum/SessionReplayHealth.test.ts +884 -0
- package/Tests/Utils/Rum/SessionReplayHealthDiagnosis.test.ts +40 -0
- package/Tests/Utils/Rum/SessionReplayRecordingEnded.test.ts +619 -0
- package/Tests/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.test.ts +631 -0
- package/Tests/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.test.ts +479 -0
- package/Tests/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.test.ts +507 -0
- package/Tests/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.test.ts +686 -0
- package/Tests/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.test.ts +474 -0
- package/Tests/Utils/SecurityEvent/Connectors/OktaNormalizer.test.ts +736 -0
- package/Tests/Utils/SecurityEvent/Connectors/SplunkNormalizer.test.ts +407 -0
- package/Tests/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.test.ts +129 -0
- package/Tests/Utils/Telemetry/CrossSignalScope.test.ts +57 -1
- package/Tests/Utils/Telemetry/EntityRelationship.test.ts +36 -0
- package/Tests/Utils/Telemetry/LockedFilterSearch.test.ts +600 -0
- package/Tests/Utils/Telemetry/NetworkHost.test.ts +48 -0
- package/Tests/Utils/Telemetry/OriginAllowList.test.ts +154 -0
- package/Tests/Utils/Traces/CriticalPath.test.ts +25 -0
- package/Types/AI/AIChatTypes.ts +8 -0
- package/Types/AI/InvestigationEvidence.ts +96 -0
- package/Types/Monitor/MonitorEvaluationSummary.ts +5 -0
- package/Types/OnCallDutyPolicy/Layer.ts +12 -0
- package/Types/Permission.ts +2 -2
- package/Types/Rules/RuleCriteriaFieldRegistry.ts +12 -0
- package/Types/Rum/SessionReplay.ts +109 -0
- package/Types/Rum/SessionReplayApi.ts +31 -0
- package/Types/SecurityEvent/Connectors/ConnectorDiagnostics.ts +111 -0
- package/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.ts +87 -0
- package/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.ts +492 -0
- package/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.ts +41 -0
- package/Types/SecurityEvent/GoogleSecOpsDiagnostics.ts +56 -1
- package/Types/SecurityEvent/GoogleSecOpsRegion.ts +34 -0
- package/Types/Telemetry/EntityType.ts +14 -0
- package/Types/Telemetry/ExceptionSpanScope.ts +83 -0
- package/Types/Telemetry/LockedFilterDetail.ts +46 -0
- package/Types/Telemetry/ResourceEntityFacet.ts +17 -10
- package/Types/Telemetry/ResourceFacetCatalog.ts +171 -0
- package/UI/Components/Card/Card.tsx +118 -83
- package/UI/Components/Checkbox/Checkbox.tsx +8 -5
- package/UI/Components/CopyTextButton/CopyTextButton.tsx +7 -1
- package/UI/Components/CustomFields/CustomFieldsDetail.tsx +4 -1
- package/UI/Components/Detail/Detail.tsx +137 -22
- package/UI/Components/ErrorBoundary.tsx +38 -0
- package/UI/Components/LogsViewer/LogsEntityNames.ts +912 -0
- package/UI/Components/LogsViewer/LogsViewer.tsx +156 -77
- package/UI/Components/LogsViewer/components/ActiveFilterChips.tsx +28 -11
- package/UI/Components/LogsViewer/components/FacetSection.tsx +66 -79
- package/UI/Components/LogsViewer/components/FacetValueRow.tsx +17 -2
- package/UI/Components/LogsViewer/components/LogDetailsPanel.tsx +45 -5
- package/UI/Components/LogsViewer/components/LogsAnalyticsView.tsx +100 -19
- package/UI/Components/LogsViewer/components/LogsFacetSidebar.tsx +156 -39
- package/UI/Components/LogsViewer/components/LogsTable.tsx +30 -8
- package/UI/Components/LogsViewer/types.ts +6 -0
- package/UI/Components/Markdown.tsx/InlineReferences.tsx +628 -0
- package/UI/Components/Markdown.tsx/MarkdownViewer.tsx +385 -312
- package/UI/Components/MemberRoleAssignment/MemberRoleAssignment.tsx +50 -22
- package/UI/Components/ModelDetail/CardModelDetail.tsx +15 -0
- package/UI/Components/ModelDetail/ModelDetail.tsx +64 -19
- package/UI/Components/ModelList/ModelList.tsx +33 -8
- package/UI/Components/Page/ModelPage.tsx +119 -54
- package/UI/Components/Table/Table.tsx +8 -0
- package/UI/Components/Table/TableRow.tsx +13 -5
- package/UI/Components/TelemetryViewer/FacetVisibility.ts +229 -0
- package/UI/Components/TelemetryViewer/ResourceFacetConfigs.ts +46 -0
- package/UI/Components/TelemetryViewer/TelemetryViewer.tsx +11 -0
- package/UI/Components/TelemetryViewer/components/FacetSearchInput.tsx +79 -0
- package/UI/Components/TelemetryViewer/components/FacetSectionHeader.tsx +69 -0
- package/UI/Components/TelemetryViewer/components/FacetShowMoreButton.tsx +36 -0
- package/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.tsx +88 -0
- package/UI/Components/TelemetryViewer/components/LockedFilterActions.tsx +205 -0
- package/UI/Components/TelemetryViewer/components/LockedFilterChip.tsx +496 -0
- package/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.tsx +30 -10
- package/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.tsx +203 -10
- package/UI/Components/TelemetryViewer/components/TelemetryFacetSection.tsx +60 -73
- package/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.tsx +94 -7
- package/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.tsx +17 -2
- package/UI/Components/TelemetryViewer/types.ts +19 -0
- package/UI/Components/TelemetryViewer/useFacetSearchExemptions.ts +158 -0
- package/UI/Components/TelemetryViewer/useFacetSectionSearch.ts +102 -0
- package/UI/Utils/Clipboard.ts +68 -2
- package/UI/Utils/Navigation.ts +17 -2
- package/UI/Utils/Telemetry/TelemetryEntityNames.ts +620 -0
- package/UI/Utils/Telemetry/UseTelemetryEntityNames.ts +151 -0
- package/Utils/AI/InvestigationReport.ts +1789 -0
- package/Utils/API.ts +90 -1
- package/Utils/Rum/SessionReplayHealth.ts +11 -0
- package/Utils/Rum/SessionReplayRecordingEnded.ts +134 -0
- package/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.ts +427 -0
- package/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.ts +197 -0
- package/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.ts +464 -0
- package/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.ts +567 -0
- package/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.ts +299 -0
- package/Utils/SecurityEvent/Connectors/OktaNormalizer.ts +467 -0
- package/Utils/SecurityEvent/Connectors/SplunkNormalizer.ts +439 -0
- package/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.ts +124 -12
- package/Utils/Telemetry/CrossSignalScope.ts +22 -8
- package/Utils/Telemetry/EntityRelationship.ts +8 -0
- package/Utils/Telemetry/LockedFilterSearch.ts +412 -0
- package/Utils/Telemetry/NetworkHost.ts +43 -0
- package/Utils/Telemetry/OriginAllowList.ts +139 -4
- package/Utils/Traces/CriticalPath.ts +10 -4
- package/build/dist/Models/DatabaseModels/Index.js +4 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/RumApplication.js +1 -1
- package/build/dist/Models/DatabaseModels/RumApplication.js.map +1 -1
- package/build/dist/Models/DatabaseModels/SecurityEventConnection.js +490 -0
- package/build/dist/Models/DatabaseModels/SecurityEventConnection.js.map +1 -0
- package/build/dist/Models/DatabaseModels/SecurityEventConnectionRun.js +287 -0
- package/build/dist/Models/DatabaseModels/SecurityEventConnectionRun.js.map +1 -0
- package/build/dist/Models/DatabaseModels/TelemetryIngestionKey.js +2 -2
- package/build/dist/Models/DatabaseModels/TelemetryIngestionKey.js.map +1 -1
- package/build/dist/Server/API/AIInvestigationAPI.js +336 -27
- package/build/dist/Server/API/AIInvestigationAPI.js.map +1 -1
- package/build/dist/Server/API/GoogleSecOpsConnectionAPI.js +182 -7
- package/build/dist/Server/API/GoogleSecOpsConnectionAPI.js.map +1 -1
- package/build/dist/Server/API/SecurityEventConnectionAPI.js +171 -0
- package/build/dist/Server/API/SecurityEventConnectionAPI.js.map +1 -0
- package/build/dist/Server/API/TelemetryAPI.js +248 -170
- package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.js +40 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1792700000000-AddSecurityEventConnections.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +2 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Middleware/TelemetryIngest.js +57 -4
- package/build/dist/Server/Middleware/TelemetryIngest.js.map +1 -1
- package/build/dist/Server/Services/ExceptionAggregationService.js +7 -16
- package/build/dist/Server/Services/ExceptionAggregationService.js.map +1 -1
- package/build/dist/Server/Services/GoogleSecOpsConnectionService.js +8 -0
- package/build/dist/Server/Services/GoogleSecOpsConnectionService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +4 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/InventoryItemService.js +22 -0
- package/build/dist/Server/Services/InventoryItemService.js.map +1 -1
- package/build/dist/Server/Services/LogAggregationService.js +8 -17
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +4 -14
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/SecurityEventConnectionRunService.js +9 -0
- package/build/dist/Server/Services/SecurityEventConnectionRunService.js.map +1 -0
- package/build/dist/Server/Services/SecurityEventConnectionService.js +356 -0
- package/build/dist/Server/Services/SecurityEventConnectionService.js.map +1 -0
- package/build/dist/Server/Services/TraceAggregationService.js +51 -25
- package/build/dist/Server/Services/TraceAggregationService.js.map +1 -1
- package/build/dist/Server/Types/AnalyticsDatabase/ModelPermission.js +9 -0
- package/build/dist/Server/Types/AnalyticsDatabase/ModelPermission.js.map +1 -1
- package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js +3 -0
- package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js.map +1 -1
- package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js +14 -7
- package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js.map +1 -1
- package/build/dist/Server/Utils/AI/SRE/InvestigationEvidence.js +468 -0
- package/build/dist/Server/Utils/AI/SRE/InvestigationEvidence.js.map +1 -0
- package/build/dist/Server/Utils/AI/SRE/InvestigationReferences.js +230 -0
- package/build/dist/Server/Utils/AI/SRE/InvestigationReferences.js.map +1 -0
- package/build/dist/Server/Utils/AI/Toolbox/Index.js +32 -0
- package/build/dist/Server/Utils/AI/Toolbox/Index.js.map +1 -1
- package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js +6 -2
- package/build/dist/Server/Utils/AI/Toolbox/TimelineTools.js.map +1 -1
- package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js +59 -0
- package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +5 -3
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.js +752 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.js +493 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/AwsSecurityHub/AwsSecurityHubConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.js +352 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ConnectorPlatformHealth.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.js +405 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.js +466 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/CrowdStrikeFalcon/CrowdStrikeFalconConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.js +344 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.js +511 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/ElasticSecurity/ElasticSecurityConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.js +406 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.js +336 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdr/MicrosoftDefenderXdrConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.js +474 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.js +417 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/MicrosoftSentinel/MicrosoftSentinelConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.js +314 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.js +494 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Okta/OktaConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.js +719 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionPoller.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.js +404 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionRunExecutor.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.js +209 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectionTester.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.js +40 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/SecurityEventConnectorRegistry.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.js +494 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkClient.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.js +379 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Splunk/SplunkConnector.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Types.js +27 -0
- package/build/dist/Server/Utils/SecurityEvent/Connectors/Types.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.js +234 -61
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsClient.js.map +1 -1
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.js +537 -0
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsConnectionTester.js.map +1 -0
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.js +572 -115
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsPoller.js.map +1 -1
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.js +35 -1
- package/build/dist/Server/Utils/SecurityEvent/GoogleSecOps/GoogleSecOpsRunExecutor.js.map +1 -1
- package/build/dist/Server/Utils/SecurityEvent/SecurityEventDedupe.js +52 -0
- package/build/dist/Server/Utils/SecurityEvent/SecurityEventDedupe.js.map +1 -0
- package/build/dist/Server/Utils/SessionReplay/SessionReplayReadService.js +521 -32
- package/build/dist/Server/Utils/SessionReplay/SessionReplayReadService.js.map +1 -1
- package/build/dist/Server/Utils/StartServer.js +10 -0
- package/build/dist/Server/Utils/StartServer.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +8 -0
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/KubernetesResourceAttributes.js +80 -0
- package/build/dist/Server/Utils/Telemetry/KubernetesResourceAttributes.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/ResourceEntityFilter.js +122 -67
- package/build/dist/Server/Utils/Telemetry/ResourceEntityFilter.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/ResourceFacetPlanner.js +146 -0
- package/build/dist/Server/Utils/Telemetry/ResourceFacetPlanner.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js +174 -248
- package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/ServiceDependencyDiscovery.js +492 -0
- package/build/dist/Server/Utils/Telemetry/ServiceDependencyDiscovery.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TraceContextPropagation.js +259 -0
- package/build/dist/Server/Utils/Telemetry/TraceContextPropagation.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry.js +11 -5
- package/build/dist/Server/Utils/Telemetry.js.map +1 -1
- package/build/dist/Types/AI/InvestigationEvidence.js +2 -0
- package/build/dist/Types/AI/InvestigationEvidence.js.map +1 -0
- package/build/dist/Types/OnCallDutyPolicy/Layer.js +11 -0
- package/build/dist/Types/OnCallDutyPolicy/Layer.js.map +1 -1
- package/build/dist/Types/Permission.js +2 -2
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Rules/RuleCriteriaFieldRegistry.js +9 -0
- package/build/dist/Types/Rules/RuleCriteriaFieldRegistry.js.map +1 -1
- package/build/dist/Types/Rum/SessionReplay.js +95 -0
- package/build/dist/Types/Rum/SessionReplay.js.map +1 -1
- package/build/dist/Types/Rum/SessionReplayApi.js.map +1 -1
- package/build/dist/Types/SecurityEvent/Connectors/ConnectorDiagnostics.js +18 -0
- package/build/dist/Types/SecurityEvent/Connectors/ConnectorDiagnostics.js.map +1 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.js +2 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectionDiagnostics.js.map +1 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.js +374 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorCatalog.js.map +1 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.js +35 -0
- package/build/dist/Types/SecurityEvent/Connectors/SecurityEventConnectorProvider.js.map +1 -0
- package/build/dist/Types/SecurityEvent/GoogleSecOpsRegion.js +35 -0
- package/build/dist/Types/SecurityEvent/GoogleSecOpsRegion.js.map +1 -0
- package/build/dist/Types/Telemetry/EntityType.js +14 -0
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/ExceptionSpanScope.js +59 -0
- package/build/dist/Types/Telemetry/ExceptionSpanScope.js.map +1 -0
- package/build/dist/Types/Telemetry/LockedFilterDetail.js +16 -0
- package/build/dist/Types/Telemetry/LockedFilterDetail.js.map +1 -0
- package/build/dist/Types/Telemetry/ResourceEntityFacet.js +16 -10
- package/build/dist/Types/Telemetry/ResourceEntityFacet.js.map +1 -1
- package/build/dist/Types/Telemetry/ResourceFacetCatalog.js +119 -0
- package/build/dist/Types/Telemetry/ResourceFacetCatalog.js.map +1 -0
- package/build/dist/UI/Components/Card/Card.js +34 -17
- package/build/dist/UI/Components/Card/Card.js.map +1 -1
- package/build/dist/UI/Components/Checkbox/Checkbox.js +6 -4
- package/build/dist/UI/Components/Checkbox/Checkbox.js.map +1 -1
- package/build/dist/UI/Components/CopyTextButton/CopyTextButton.js +5 -1
- package/build/dist/UI/Components/CopyTextButton/CopyTextButton.js.map +1 -1
- package/build/dist/UI/Components/CustomFields/CustomFieldsDetail.js +1 -1
- package/build/dist/UI/Components/CustomFields/CustomFieldsDetail.js.map +1 -1
- package/build/dist/UI/Components/Detail/Detail.js +63 -13
- package/build/dist/UI/Components/Detail/Detail.js.map +1 -1
- package/build/dist/UI/Components/ErrorBoundary.js +34 -0
- package/build/dist/UI/Components/ErrorBoundary.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/LogsEntityNames.js +535 -0
- package/build/dist/UI/Components/LogsViewer/LogsEntityNames.js.map +1 -0
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js +117 -57
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js +5 -7
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/FacetSection.js +31 -44
- package/build/dist/UI/Components/LogsViewer/components/FacetSection.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/FacetValueRow.js +17 -3
- package/build/dist/UI/Components/LogsViewer/components/FacetValueRow.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js +19 -3
- package/build/dist/UI/Components/LogsViewer/components/LogDetailsPanel.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js +64 -18
- package/build/dist/UI/Components/LogsViewer/components/LogsAnalyticsView.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js +100 -41
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsTable.js +13 -5
- package/build/dist/UI/Components/LogsViewer/components/LogsTable.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/types.js.map +1 -1
- package/build/dist/UI/Components/Markdown.tsx/InlineReferences.js +403 -0
- package/build/dist/UI/Components/Markdown.tsx/InlineReferences.js.map +1 -0
- package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js +197 -179
- package/build/dist/UI/Components/Markdown.tsx/MarkdownViewer.js.map +1 -1
- package/build/dist/UI/Components/MemberRoleAssignment/MemberRoleAssignment.js +30 -21
- package/build/dist/UI/Components/MemberRoleAssignment/MemberRoleAssignment.js.map +1 -1
- package/build/dist/UI/Components/ModelDetail/CardModelDetail.js +12 -0
- package/build/dist/UI/Components/ModelDetail/CardModelDetail.js.map +1 -1
- package/build/dist/UI/Components/ModelDetail/ModelDetail.js +46 -12
- package/build/dist/UI/Components/ModelDetail/ModelDetail.js.map +1 -1
- package/build/dist/UI/Components/ModelList/ModelList.js +26 -7
- package/build/dist/UI/Components/ModelList/ModelList.js.map +1 -1
- package/build/dist/UI/Components/Page/ModelPage.js +62 -34
- package/build/dist/UI/Components/Page/ModelPage.js.map +1 -1
- package/build/dist/UI/Components/Table/Table.js +3 -1
- package/build/dist/UI/Components/Table/Table.js.map +1 -1
- package/build/dist/UI/Components/Table/TableRow.js +8 -1
- package/build/dist/UI/Components/Table/TableRow.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/FacetVisibility.js +111 -0
- package/build/dist/UI/Components/TelemetryViewer/FacetVisibility.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/ResourceFacetConfigs.js +22 -0
- package/build/dist/UI/Components/TelemetryViewer/ResourceFacetConfigs.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js +1 -1
- package/build/dist/UI/Components/TelemetryViewer/TelemetryViewer.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/FacetSearchInput.js +36 -0
- package/build/dist/UI/Components/TelemetryViewer/components/FacetSearchInput.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/FacetSectionHeader.js +21 -0
- package/build/dist/UI/Components/TelemetryViewer/components/FacetSectionHeader.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/FacetShowMoreButton.js +14 -0
- package/build/dist/UI/Components/TelemetryViewer/components/FacetShowMoreButton.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.js +27 -0
- package/build/dist/UI/Components/TelemetryViewer/components/HiddenFacetsFooter.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterActions.js +88 -0
- package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterActions.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterChip.js +228 -0
- package/build/dist/UI/Components/TelemetryViewer/components/LockedFilterChip.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.js +6 -6
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryActiveFilterChips.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.js +111 -12
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryDetailPanel.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSection.js +27 -40
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSection.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.js +70 -10
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetSidebar.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.js +17 -3
- package/build/dist/UI/Components/TelemetryViewer/components/TelemetryFacetValueRow.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/types.js +0 -4
- package/build/dist/UI/Components/TelemetryViewer/types.js.map +1 -1
- package/build/dist/UI/Components/TelemetryViewer/useFacetSearchExemptions.js +70 -0
- package/build/dist/UI/Components/TelemetryViewer/useFacetSearchExemptions.js.map +1 -0
- package/build/dist/UI/Components/TelemetryViewer/useFacetSectionSearch.js +52 -0
- package/build/dist/UI/Components/TelemetryViewer/useFacetSectionSearch.js.map +1 -0
- package/build/dist/UI/Utils/Clipboard.js +59 -2
- package/build/dist/UI/Utils/Clipboard.js.map +1 -1
- package/build/dist/UI/Utils/Navigation.js +11 -2
- package/build/dist/UI/Utils/Navigation.js.map +1 -1
- package/build/dist/UI/Utils/Telemetry/TelemetryEntityNames.js +471 -0
- package/build/dist/UI/Utils/Telemetry/TelemetryEntityNames.js.map +1 -0
- package/build/dist/UI/Utils/Telemetry/UseTelemetryEntityNames.js +113 -0
- package/build/dist/UI/Utils/Telemetry/UseTelemetryEntityNames.js.map +1 -0
- package/build/dist/Utils/AI/InvestigationReport.js +1241 -0
- package/build/dist/Utils/AI/InvestigationReport.js.map +1 -0
- package/build/dist/Utils/API.js +25 -0
- package/build/dist/Utils/API.js.map +1 -1
- package/build/dist/Utils/Rum/SessionReplayHealth.js +10 -0
- package/build/dist/Utils/Rum/SessionReplayHealth.js.map +1 -1
- package/build/dist/Utils/Rum/SessionReplayRecordingEnded.js +54 -0
- package/build/dist/Utils/Rum/SessionReplayRecordingEnded.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.js +311 -0
- package/build/dist/Utils/SecurityEvent/Connectors/AwsSecurityHubNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.js +150 -0
- package/build/dist/Utils/SecurityEvent/Connectors/CrowdStrikeFalconNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.js +328 -0
- package/build/dist/Utils/SecurityEvent/Connectors/ElasticSecurityNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.js +405 -0
- package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftDefenderXdrNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.js +212 -0
- package/build/dist/Utils/SecurityEvent/Connectors/MicrosoftSentinelNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/OktaNormalizer.js +351 -0
- package/build/dist/Utils/SecurityEvent/Connectors/OktaNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/Connectors/SplunkNormalizer.js +348 -0
- package/build/dist/Utils/SecurityEvent/Connectors/SplunkNormalizer.js.map +1 -0
- package/build/dist/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.js +103 -10
- package/build/dist/Utils/SecurityEvent/GoogleSecOpsAlertNormalizer.js.map +1 -1
- package/build/dist/Utils/Telemetry/CrossSignalScope.js +16 -5
- package/build/dist/Utils/Telemetry/CrossSignalScope.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityRelationship.js +7 -0
- package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
- package/build/dist/Utils/Telemetry/LockedFilterSearch.js +277 -0
- package/build/dist/Utils/Telemetry/LockedFilterSearch.js.map +1 -0
- package/build/dist/Utils/Telemetry/NetworkHost.js +39 -0
- package/build/dist/Utils/Telemetry/NetworkHost.js.map +1 -0
- package/build/dist/Utils/Telemetry/OriginAllowList.js +105 -4
- package/build/dist/Utils/Telemetry/OriginAllowList.js.map +1 -1
- package/build/dist/Utils/Traces/CriticalPath.js +9 -4
- package/build/dist/Utils/Traces/CriticalPath.js.map +1 -1
- package/package.json +1 -1
- package/Tests/UI/Rum/RecordingHealthStrip.test.tsx +0 -600
- package/UI/Components/GanttChart/Bar/BarLabel.tsx +0 -17
- package/UI/Components/GanttChart/Bar/Index.tsx +0 -149
- package/UI/Components/GanttChart/ChartContainer.tsx +0 -50
- package/UI/Components/GanttChart/Index.tsx +0 -90
- package/UI/Components/GanttChart/Row/Index.tsx +0 -22
- package/UI/Components/GanttChart/Row/Row.tsx +0 -231
- package/UI/Components/GanttChart/Row/RowLabel.tsx +0 -30
- package/UI/Components/GanttChart/Rows.tsx +0 -59
- package/UI/Components/GanttChart/Timeline/Index.tsx +0 -46
- package/UI/Components/GanttChart/Timeline/TimelineInterval.tsx +0 -33
- package/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.tsx +0 -43
- package/build/dist/UI/Components/GanttChart/Bar/BarLabel.js +0 -8
- package/build/dist/UI/Components/GanttChart/Bar/BarLabel.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Bar/Index.js +0 -77
- package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/ChartContainer.js +0 -33
- package/build/dist/UI/Components/GanttChart/ChartContainer.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Index.js +0 -39
- package/build/dist/UI/Components/GanttChart/Index.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Row/Index.js +0 -7
- package/build/dist/UI/Components/GanttChart/Row/Index.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Row/Row.js +0 -106
- package/build/dist/UI/Components/GanttChart/Row/Row.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Row/RowLabel.js +0 -10
- package/build/dist/UI/Components/GanttChart/Row/RowLabel.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Rows.js +0 -19
- package/build/dist/UI/Components/GanttChart/Rows.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Timeline/Index.js +0 -16
- package/build/dist/UI/Components/GanttChart/Timeline/Index.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Timeline/TimelineInterval.js +0 -13
- package/build/dist/UI/Components/GanttChart/Timeline/TimelineInterval.js.map +0 -1
- package/build/dist/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.js +0 -13
- package/build/dist/UI/Components/GanttChart/Timeline/TimelineIntervalMarks.js.map +0 -1
|
@@ -420,6 +420,15 @@ export const RULE_CRITERIA_FIELDS_BY_MODEL = {
|
|
|
420
420
|
};
|
|
421
421
|
const RULE_CRITERIA_FIELD_LOOKUP = RULE_CRITERIA_FIELDS_BY_MODEL;
|
|
422
422
|
export function getRuleCriteriaFieldsForModel(modelName) {
|
|
423
|
+
/*
|
|
424
|
+
* Own properties only: a plain index would answer inherited
|
|
425
|
+
* Object.prototype members ("constructor", "toString", "__proto__") with
|
|
426
|
+
* a function or object instead of undefined, turning an unregistered name
|
|
427
|
+
* into a non-array allowlist that callers then call .includes() on.
|
|
428
|
+
*/
|
|
429
|
+
if (!Object.prototype.hasOwnProperty.call(RULE_CRITERIA_FIELD_LOOKUP, modelName)) {
|
|
430
|
+
return undefined;
|
|
431
|
+
}
|
|
423
432
|
return RULE_CRITERIA_FIELD_LOOKUP[modelName];
|
|
424
433
|
}
|
|
425
434
|
export default RULE_CRITERIA_FIELDS_BY_MODEL;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RuleCriteriaFieldRegistry.js","sourceRoot":"","sources":["../../../../Types/Rules/RuleCriteriaFieldRegistry.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"RuleCriteriaFieldRegistry.js","sourceRoot":"","sources":["../../../../Types/Rules/RuleCriteriaFieldRegistry.ts"],"names":[],"mappings":"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"}
|
|
@@ -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":"AA2CA,MAAM,CAAC,MAAM,6BAA6B,GACxC,CAAC,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;
|
|
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 @@
|
|
|
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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"}
|