├── .cypress ├── .eslintrc.json ├── fixtures │ ├── integration_tests │ │ ├── detector │ │ │ ├── create_dns_detector_data.json │ │ │ ├── create_dns_detector_mappings_data.json │ │ │ ├── create_usb_detector_data.json │ │ │ └── create_usb_detector_mappings_data.json │ │ ├── index │ │ │ ├── add_dns_index_data.json │ │ │ ├── add_windows_index_data.json │ │ │ ├── create_dns_settings.json │ │ │ └── create_windows_settings.json │ │ └── rule │ │ │ ├── create_dns_rule_with_name_selection.json │ │ │ ├── create_dns_rule_with_type_selection.json │ │ │ ├── create_network_rule.json │ │ │ ├── create_windows_usb_rule.json │ │ │ └── sample_dns_field_mappings.json │ ├── sample_alias_mappings.json │ ├── sample_aws_s3_rule_to_import.yml │ ├── sample_detector.json │ ├── sample_dns_index_settings.json │ ├── sample_document.json │ ├── sample_field_mappings.json │ ├── sample_network_index_settings.json │ ├── sample_rule.json │ └── sample_windows_index_settings.json ├── integration │ ├── 1_detectors.spec.js │ ├── 2_rules.spec.js │ ├── 3_alerts.spec.js │ └── 4_findings.spec.js ├── plugins │ └── index.ts └── support │ ├── commands.js │ ├── constants.js │ ├── detectors.js │ ├── helpers.js │ ├── index.d.ts │ ├── index.js │ ├── indexes.js │ ├── rules.js │ └── typings.js ├── .eslintrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation-issue.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── draft-release-notes-config.yml └── workflows │ ├── add-untriaged.yml │ ├── backport.yml │ ├── create-documentation-issue.yml │ ├── cypress-workflow.yml │ ├── unit-tests-workflow.yml │ └── verify-binary-installation.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .opensearch_dashboards-plugin-helpers.json ├── .prettierignore ├── .whitesource ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPER_GUIDE.md ├── LICENSE ├── MAINTAINERS.md ├── NOTICE ├── README.md ├── RELEASING.md ├── SECURITY.md ├── babel.config.js ├── common ├── constants.ts └── helpers.ts ├── config.ts ├── cypress.config.js ├── integtest.sh ├── models └── interfaces.ts ├── opensearch_dashboards.json ├── package.json ├── public ├── app.scss ├── components │ ├── Charts │ │ ├── ChartContainer.scss │ │ └── ChartContainer.tsx │ ├── ContentPanel │ │ ├── ContentPanel.test.tsx │ │ ├── ContentPanel.tsx │ │ ├── ContentPanelActions.test.tsx │ │ ├── ContentPanelActions.tsx │ │ ├── __snapshots__ │ │ │ ├── ContentPanel.test.tsx.snap │ │ │ └── ContentPanelActions.test.tsx.snap │ │ └── index.ts │ ├── DarkMode │ │ ├── DarkMode.tsx │ │ └── index.ts │ ├── DataSourceThreatAlertsCard │ │ └── DataSourceThreatAlertsCard.tsx │ ├── DeleteModal │ │ ├── DeleteModal.test.tsx │ │ ├── DeleteModal.tsx │ │ ├── __snapshots__ │ │ │ └── DeleteModal.test.tsx.snap │ │ └── index.ts │ ├── FormFieldHeader │ │ ├── FormFieldHeader.test.tsx │ │ ├── FormFieldHeader.tsx │ │ ├── __snapshots__ │ │ │ └── FormFieldHeader.test.tsx.snap │ │ └── index.ts │ ├── MDS │ │ └── DataSourceMenuWrapper.tsx │ ├── Modal │ │ ├── Modal.test.tsx │ │ ├── Modal.tsx │ │ ├── ModalRoot.tsx │ │ └── index.ts │ ├── Notifications │ │ └── NotificationForm.tsx │ ├── NotificationsCallOut │ │ ├── NotificationsCallOut.test.tsx │ │ ├── NotificationsCallOut.tsx │ │ ├── __snapshots__ │ │ │ └── NotificationsCallOut.test.tsx.snap │ │ └── index.ts │ ├── PageHeader │ │ └── PageHeader.tsx │ ├── Utility │ │ ├── DescriptionGroup.tsx │ │ ├── LogCategoryOption.tsx │ │ └── StatusWithIndicator.tsx │ └── core_services.ts ├── index.ts ├── metrics │ ├── DetectorMetricsManager.ts │ └── MetricsContext.ts ├── models │ ├── interfaces.ts │ └── types.ts ├── pages │ ├── Alerts │ │ ├── components │ │ │ ├── AlertFlyout │ │ │ │ ├── AlertFlyout.test.tsx │ │ │ │ ├── AlertFlyout.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── AlertFlyout.test.tsx.snap │ │ │ ├── CorrelationAlertFlyout │ │ │ │ └── CorrelationAlertFlyout.tsx │ │ │ ├── ThreatIntelAlertFlyout │ │ │ │ └── ThreatIntelAlertFlyout.tsx │ │ │ └── ThreatIntelAlertsTable │ │ │ │ └── ThreatIntelAlertsTable.tsx │ │ ├── containers │ │ │ └── Alerts │ │ │ │ ├── Alerts.test.tsx │ │ │ │ ├── Alerts.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── Alerts.test.tsx.snap │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── utils │ │ │ └── constants.ts │ ├── Correlations │ │ ├── Correlations.scss │ │ ├── components │ │ │ ├── CorrelationGraph.tsx │ │ │ ├── DeleteModal.tsx │ │ │ ├── ExperimentalBanner.tsx │ │ │ ├── FilterGroup.tsx │ │ │ ├── FindingCard.scss │ │ │ └── FindingCard.tsx │ │ ├── containers │ │ │ ├── CorrelationRuleFormModel.ts │ │ │ ├── CorrelationRules.tsx │ │ │ ├── CorrelationsContainer.tsx │ │ │ ├── CorrelationsTable.tsx │ │ │ ├── CorrelationsTableFlyout.tsx │ │ │ ├── CorrelationsTableView.tsx │ │ │ └── CreateCorrelationRule.tsx │ │ └── utils │ │ │ ├── constants.tsx │ │ │ └── helpers.tsx │ ├── CreateDetector │ │ ├── components │ │ │ ├── ConfigureAlerts │ │ │ │ ├── components │ │ │ │ │ └── AlertCondition │ │ │ │ │ │ ├── AlertConditionPanel.test.tsx │ │ │ │ │ │ ├── AlertConditionPanel.tsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── AlertConditionPanel.test.tsx.snap │ │ │ │ │ │ └── index.ts │ │ │ │ ├── containers │ │ │ │ │ └── ConfigureAlerts.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── helpers.ts │ │ │ ├── ConfigureFieldMapping │ │ │ │ ├── components │ │ │ │ │ └── RequiredFieldMapping │ │ │ │ │ │ ├── FieldMappingsTable.tsx │ │ │ │ │ │ ├── FieldNameSelector.tsx │ │ │ │ │ │ ├── SIEMFieldName.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── containers │ │ │ │ │ └── ConfigureFieldMapping.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── dummyData.ts │ │ │ └── DefineDetector │ │ │ │ ├── components │ │ │ │ ├── DetectionRules │ │ │ │ │ ├── DetectionRules.tsx │ │ │ │ │ ├── DetectionRulesTable.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types │ │ │ │ │ │ └── interfaces.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── constants.tsx │ │ │ │ │ │ └── dummyData.ts │ │ │ │ ├── DetectorDataSource │ │ │ │ │ ├── DetectorDataSource.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DetectorDetails │ │ │ │ │ ├── DetectorBasicDetailsForm.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DetectorSchedule │ │ │ │ │ ├── CustomCron.tsx │ │ │ │ │ ├── Daily.tsx │ │ │ │ │ ├── DetectorSchedule.tsx │ │ │ │ │ ├── Interval.tsx │ │ │ │ │ ├── Monthly.tsx │ │ │ │ │ └── Weekly.tsx │ │ │ │ ├── DetectorType │ │ │ │ │ ├── DetectorType.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── ThreatIntelligence │ │ │ │ │ └── ThreatIntelligence.tsx │ │ │ │ ├── containers │ │ │ │ └── DefineDetector.tsx │ │ │ │ └── index.ts │ │ ├── containers │ │ │ └── CreateDetector.tsx │ │ ├── models │ │ │ ├── interfaces.ts │ │ │ └── types.ts │ │ └── utils │ │ │ └── constants.ts │ ├── Dashboards │ │ ├── containers │ │ │ └── Dashboards │ │ │ │ ├── Dashboards.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── Detectors │ │ ├── components │ │ │ ├── AlertTriggerView │ │ │ │ ├── AlertTriggerView.test.tsx │ │ │ │ ├── AlertTriggerView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── AlertTriggerView.test.tsx.snap │ │ │ ├── DetectorBasicDetailsView │ │ │ │ ├── DetectorBasicDetailsView.test.tsx │ │ │ │ ├── DetectorBasicDetailsView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DetectorBasicDetailsView.test.tsx.snap │ │ │ ├── DetectorRulesView │ │ │ │ ├── DetectorRulesView.test.tsx │ │ │ │ ├── DetectorRulesView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DetectorRulesView.test.tsx.snap │ │ │ ├── FieldMappingsView │ │ │ │ ├── FieldMappingsView.test.tsx │ │ │ │ ├── FieldMappingsView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── FieldMappingsView.test.tsx.snap │ │ │ ├── ReviewFieldMappings │ │ │ │ ├── ReviewFieldMappings.scss │ │ │ │ └── ReviewFieldMappings.tsx │ │ │ ├── UpdateAlertConditions │ │ │ │ ├── UpdateAlertConditions.test.tsx │ │ │ │ ├── UpdateAlertConditions.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── UpdateAlertConditions.test.tsx.snap │ │ │ ├── UpdateBasicDetails │ │ │ │ ├── UpdateBasicDetails.tsx │ │ │ │ ├── UpdateDetectorBasicDetails.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── UpdateDetectorBasicDetails.test.tsx.snap │ │ │ ├── UpdateFieldMappings │ │ │ │ ├── UpdateFieldMappings.test.tsx │ │ │ │ ├── UpdateFieldMappings.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── UpdateFieldMappings.test.tsx.snap │ │ │ └── UpdateRules │ │ │ │ ├── UpdateDetectorRules.test.tsx │ │ │ │ ├── UpdateRules.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── UpdateDetectorRules.test.tsx.snap │ │ ├── containers │ │ │ ├── AlertTriggersView │ │ │ │ ├── AlertTriggersView.test.tsx │ │ │ │ ├── AlertTriggersView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── AlertTriggersView.test.tsx.snap │ │ │ ├── Detector │ │ │ │ ├── DetectorDetails.test.tsx │ │ │ │ ├── DetectorDetails.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DetectorDetails.test.tsx.snap │ │ │ ├── DetectorDetailsView │ │ │ │ ├── DetectorDetailsView.test.tsx │ │ │ │ ├── DetectorDetailsView.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DetectorDetailsView.test.tsx.snap │ │ │ ├── Detectors │ │ │ │ ├── Detectors.test.tsx │ │ │ │ ├── Detectors.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Detectors.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── FieldMappings │ │ │ │ ├── EditFieldMapping.tsx │ │ │ │ ├── EditFieldMappings.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── EditFieldMappings.test.tsx.snap │ │ ├── index.ts │ │ ├── models │ │ │ └── interfaces.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── helpers.ts │ ├── Findings │ │ ├── components │ │ │ ├── CorrelationsTable │ │ │ │ ├── CorrelationsTable.scss │ │ │ │ └── CorrelationsTable.tsx │ │ │ ├── CreateAlertFlyout.tsx │ │ │ ├── CreateIndexPatternForm.tsx │ │ │ ├── FindingDetailsFlyout.tsx │ │ │ ├── FindingsTable │ │ │ │ ├── FindingsTable.tsx │ │ │ │ ├── ThreatIntelFindingsTable.tsx │ │ │ │ └── index.ts │ │ │ └── ThreatIntelFindingDetailsFlyout.tsx │ │ ├── containers │ │ │ └── Findings │ │ │ │ ├── Findings.tsx │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ └── interfaces.ts │ │ └── utils │ │ │ └── constants.ts │ ├── LogTypes │ │ ├── components │ │ │ ├── DeleteLogTypeModal.tsx │ │ │ ├── LogTypeDetails.tsx │ │ │ ├── LogTypeDetailsTab.tsx │ │ │ ├── LogTypeDetectionRules.tsx │ │ │ └── LogTypeForm.tsx │ │ ├── containers │ │ │ ├── CreateLogType.tsx │ │ │ ├── LogType.tsx │ │ │ └── LogTypes.tsx │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── helpers.tsx │ ├── Main │ │ ├── Main.tsx │ │ ├── components │ │ │ ├── Callout.scss │ │ │ └── Callout.tsx │ │ └── index.ts │ ├── Overview │ │ ├── components │ │ │ ├── GettingStarted │ │ │ │ ├── GetStartedStep.tsx │ │ │ │ └── GettingStartedContent.tsx │ │ │ └── Widgets │ │ │ │ ├── DetectorsWidget.tsx │ │ │ │ ├── RecentAlertsWidget.tsx │ │ │ │ ├── RecentFindingsWidget.tsx │ │ │ │ ├── RecentThreatIntelFindingsWidget.tsx │ │ │ │ ├── Summary.tsx │ │ │ │ ├── TableWidget.tsx │ │ │ │ ├── TopRulesWidget.tsx │ │ │ │ ├── WidgetContainer.scss │ │ │ │ └── WidgetContainer.tsx │ │ ├── containers │ │ │ └── Overview │ │ │ │ ├── Overview.tsx │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ └── OverviewViewModel.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── helper.test.ts │ │ │ └── helpers.ts │ ├── Rules │ │ ├── components │ │ │ ├── DeleteModal │ │ │ │ ├── DeleteRuleModal.test.tsx │ │ │ │ ├── DeleteRuleModal.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DeleteRuleModal.test.tsx.snap │ │ │ ├── RuleContentViewer │ │ │ │ ├── RuleContentViewer.test.tsx │ │ │ │ ├── RuleContentViewer.tsx │ │ │ │ ├── RuleContentYamlViewer.test.tsx │ │ │ │ ├── RuleContentYamlViewer.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── RuleContentViewer.test.tsx.snap │ │ │ │ │ └── RuleContentYamlViewer.test.tsx.snap │ │ │ ├── RuleEditor │ │ │ │ ├── DetectionVisualEditor.scss │ │ │ │ ├── DetectionVisualEditor.test.tsx │ │ │ │ ├── DetectionVisualEditor.tsx │ │ │ │ ├── FormSubmissionErrorToastNotification.test.tsx │ │ │ │ ├── FormSubmitionErrorToastNotification.tsx │ │ │ │ ├── RuleEditorContainer.test.tsx │ │ │ │ ├── RuleEditorContainer.tsx │ │ │ │ ├── RuleEditorForm.scss │ │ │ │ ├── RuleEditorForm.test.tsx │ │ │ │ ├── RuleEditorForm.tsx │ │ │ │ ├── RuleEditorFormModel.ts │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── DetectionVisualEditor.test.tsx.snap │ │ │ │ │ ├── FormSubmissionErrorToastNotification.test.tsx.snap │ │ │ │ │ ├── RuleEditorContainer.test.tsx.snap │ │ │ │ │ └── RuleEditorForm.test.tsx.snap │ │ │ │ ├── components │ │ │ │ │ ├── FieldTextArray.test.tsx │ │ │ │ │ ├── FieldTextArray.tsx │ │ │ │ │ ├── SelectionExpField.scss │ │ │ │ │ ├── SelectionExpField.test.tsx │ │ │ │ │ ├── SelectionExpField.tsx │ │ │ │ │ ├── YamlRuleEditorComponent │ │ │ │ │ │ ├── RuleTagsComboBox.tsx │ │ │ │ │ │ ├── YamlRuleEditorComponent.test.tsx │ │ │ │ │ │ ├── YamlRuleEditorComponent.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── YamlRuleEditorComponent.test.tsx.snap │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ ├── FieldTextArray.test.tsx.snap │ │ │ │ │ │ └── SelectionExpField.test.tsx.snap │ │ │ │ └── mappers.ts │ │ │ ├── RuleViewerFlyout │ │ │ │ ├── RuleViewFlyoutHeaderActions.tsx │ │ │ │ └── RuleViewerFlyout.tsx │ │ │ └── RulesTable │ │ │ │ ├── RulesTable.test.tsx │ │ │ │ ├── RulesTable.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── RulesTable.test.tsx.snap │ │ ├── containers │ │ │ ├── CreateRule │ │ │ │ └── CreateRule.tsx │ │ │ ├── DuplicateRule │ │ │ │ └── DuplicateRule.tsx │ │ │ ├── EditRule │ │ │ │ └── EditRule.tsx │ │ │ ├── ImportRule │ │ │ │ └── ImportRule.tsx │ │ │ └── Rules │ │ │ │ ├── Rules.tsx │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── helpers.tsx │ │ │ └── mappers.ts │ └── ThreatIntel │ │ ├── components │ │ ├── ConfigureThreatIntelAlertTriggers │ │ │ └── ConfigureThreatIntelAlertTriggers.tsx │ │ ├── IoCsTable │ │ │ └── IoCsTable.tsx │ │ ├── SelectLogSourcesForm │ │ │ └── SelectThreatIntelLogSourcesForm.tsx │ │ ├── ThreatIntelAlertTriggerForm │ │ │ └── ThreatIntelAlertTriggerForm.tsx │ │ ├── ThreatIntelAlertTriggersFlyout │ │ │ └── ThreatIntelAlertTriggersFlyout.tsx │ │ ├── ThreatIntelLogScanConfig │ │ │ └── ThreatIntelLogScanConfig.tsx │ │ ├── ThreatIntelLogSourcesFlyout │ │ │ └── ThreatIntelLogSourcesFlyout.tsx │ │ ├── ThreatIntelOverviewActions │ │ │ └── ThreatIntelOverviewActions.tsx │ │ ├── ThreatIntelSourceDetails │ │ │ ├── ThreatIntelSourceDetails.tsx │ │ │ └── ThreatIntelSourceDetailsFileUploader.tsx │ │ ├── ThreatIntelSourceFileUploader │ │ │ └── ThreatIntelSourceFileUploader.tsx │ │ ├── ThreatIntelSourcesList │ │ │ └── ThreatIntelSourcesList.tsx │ │ └── Utility │ │ │ └── ConfigActionButton.tsx │ │ ├── containers │ │ ├── AddThreatIntelSource │ │ │ ├── AddThreatIntelSource.scss │ │ │ └── AddThreatIntelSource.tsx │ │ ├── Overview │ │ │ └── ThreatIntelOverview.tsx │ │ ├── ScanConfiguration │ │ │ └── ThreatIntelScanConfigForm.tsx │ │ └── ThreatIntelSource │ │ │ └── ThreatIntelSource.tsx │ │ └── utils │ │ ├── constants.ts │ │ └── helpers.ts ├── plugin.ts ├── react-graph-vis.d.ts ├── security_analytics_app.tsx ├── services │ ├── AlertsService.ts │ ├── CorrelationService.ts │ ├── DataSourceContext.ts │ ├── DetectorService.ts │ ├── FieldMappingService.ts │ ├── FindingsService.ts │ ├── IndexPatternsService.ts │ ├── IndexService.ts │ ├── LogTypeService.ts │ ├── MetricsService.ts │ ├── NotificationsService.ts │ ├── OpenSearchService.ts │ ├── RuleService.ts │ ├── SavedObjectService.ts │ ├── SecurityAnalyticsContext.ts │ ├── ThreatIntelService.ts │ ├── index.ts │ └── utils │ │ └── constants.ts ├── store │ ├── AlertsStore.ts │ ├── CorrelationsStore.ts │ ├── DataStore.ts │ ├── DetectorsStore.test.ts │ ├── DetectorsStore.tsx │ ├── DocumentStore.ts │ ├── FindingsStore.ts │ ├── LogTypeStore.ts │ ├── RulesStore.test.ts │ ├── RulesStore.ts │ ├── ThreatIntelStore.ts │ ├── config │ │ └── savedObjects │ │ │ ├── cloudtrail.ts │ │ │ ├── s3.ts │ │ │ └── vpc-flow-logs.ts │ └── savedObjectsConfig.ts └── utils │ ├── chartUtils.tsx │ ├── constants.ts │ ├── helpers.tsx │ └── validation.ts ├── release-notes ├── opensearch-dashboards-securityAnalyticsDashboards.release-notes-3.2.0.0.md ├── opensearch-security-analytics-dashboards-plugin.release-notes-3.3.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.10.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.11.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.11.1.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.12.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.13.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.14.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.15.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.16.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.17.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.18.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.19.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.4.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.5.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.6.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.7.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.8.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-2.9.0.0.md ├── opensearch-security-analytics-dashboards.release-notes-3.0.0.0-alpha1.md ├── opensearch-security-analytics-dashboards.release-notes-3.0.0.0-beta1.md ├── opensearch-security-analytics-dashboards.release-notes-3.0.0.0.md └── opensearch-security-analytics-dashboards.release-notes-3.1.0.0.md ├── server ├── clusters │ ├── addAlertsMethods.ts │ ├── addCorrelationMethods.ts │ ├── addDetectorMethods.ts │ ├── addFieldMappingMethods.ts │ ├── addFindingsMethods.ts │ ├── addLogTypeMethods.ts │ ├── addNotificationsMethods.ts │ ├── addRuleMethods.ts │ ├── addThreatIntelMethods.ts │ ├── createSecurityAnalyticsCluster.ts │ └── securityAnalyticsPlugin.ts ├── index.ts ├── models │ ├── interfaces │ │ ├── Detectors.ts │ │ ├── FieldMappings.ts │ │ ├── Findings.ts │ │ ├── Rules.ts │ │ └── index.ts │ └── types.ts ├── plugin.ts ├── routes │ ├── AlertRoutes.ts │ ├── CorrelationRoutes.ts │ ├── DetectorRoutes.ts │ ├── FieldMappingRoutes.ts │ ├── FindingsRoutes.ts │ ├── IndexRoutes.ts │ ├── LogTypeRoutes.ts │ ├── MetricsRoutes.ts │ ├── NotificationsRoutes.ts │ ├── OpenSearchRoutes.ts │ ├── RuleRoutes.ts │ ├── ThreatIntel.ts │ └── index.ts ├── services │ ├── AlertService.ts │ ├── CorrelationService.ts │ ├── DetectorService.ts │ ├── FieldMappingService.ts │ ├── FindingsService.ts │ ├── IndexService.ts │ ├── LogTypeService.ts │ ├── MDSEnabledClientService.ts │ ├── MetricsService.ts │ ├── NotificationsService.ts │ ├── OpenSearchService.ts │ ├── RuleService.ts │ ├── ThreatIntelService.ts │ └── index.ts └── utils │ ├── constants.ts │ └── helpers.ts ├── test ├── jest.config.js ├── mocks │ ├── Alerts │ │ ├── AlertItem.mock.ts │ │ ├── Alerts.mock.ts │ │ ├── PeriodSchedule.mock.ts │ │ ├── components │ │ │ └── AlertFlyout │ │ │ │ └── AlertFlyout.mock.ts │ │ └── index.ts │ ├── CreateDetector │ │ ├── components │ │ │ └── ConfigureAlerts │ │ │ │ └── components │ │ │ │ └── AlertCondition │ │ │ │ ├── AlertCondition.mock.ts │ │ │ │ ├── AlertConditionPanel.mock.ts │ │ │ │ └── TriggerAction.mock.ts │ │ └── index.ts │ ├── Detectors │ │ ├── components │ │ │ ├── AlertTriggerView │ │ │ │ └── AlertTriggerView.mock.ts │ │ │ ├── DetectorBasicDetailsView │ │ │ │ └── DetectorBasicDetailsView.mock.ts │ │ │ ├── DetectorRulesView │ │ │ │ └── DetectorRulesView.mock.ts │ │ │ ├── FieldMappingsView │ │ │ │ ├── FieldMapping.mock.ts │ │ │ │ └── FieldMappingsView.mock.ts │ │ │ ├── UpdateAlertConditions │ │ │ │ └── UpdateAlertConditions.mock.ts │ │ │ ├── UpdateDetectorBasicDetails │ │ │ │ └── UpdateDetectorBasicDetails.mock.ts │ │ │ ├── UpdateDetectorRules │ │ │ │ └── UpdateDetectorRules.mock.ts │ │ │ └── UpdateFieldMappings │ │ │ │ └── UpdateFieldMappings.mock.ts │ │ ├── containers │ │ │ ├── AlertTriggersView │ │ │ │ └── AlertTriggersView.mock.ts │ │ │ ├── DetectorDetails │ │ │ │ └── DetectorDetails.mock.ts │ │ │ ├── DetectorDetailsView │ │ │ │ └── DetectorDetailsView.mock.ts │ │ │ ├── Detectors │ │ │ │ ├── Detector.mock.ts │ │ │ │ ├── DetectorHit.mock.ts │ │ │ │ ├── DetectorInput.mock.ts │ │ │ │ ├── DetectorResponse.mock.ts │ │ │ │ └── Detectors.mock.ts │ │ │ └── EditFieldMappings │ │ │ │ └── EditFieldMappings.mock.ts │ │ └── index.ts │ ├── Rules │ │ ├── RuleInfo.mock.ts │ │ ├── RuleOptions.mock.ts │ │ ├── RulePage.mock.ts │ │ ├── RuleSource.mock.ts │ │ ├── components │ │ │ ├── DeleteModal │ │ │ │ └── DeleteRuleModal.mock.ts │ │ │ ├── RuleEditor │ │ │ │ ├── DetectionVisualEditor.mock.ts │ │ │ │ ├── RuleEditorContainer.mock.ts │ │ │ │ ├── RuleEditorForm.mock.ts │ │ │ │ └── components │ │ │ │ │ ├── FieldTextArray.mock.ts │ │ │ │ │ └── SelectionExpField.mock.ts │ │ │ └── RulesTable │ │ │ │ └── RulesTable.mock.ts │ │ └── index.ts │ ├── contentManagementMocks.ts │ ├── index.ts │ ├── services │ │ ├── alertService.mock.ts │ │ ├── browserHistory.mock.ts │ │ ├── detectorService.mock.ts │ │ ├── fieldMappingService.mock.ts │ │ ├── findingsService.mock.ts │ │ ├── httpClient.mock.ts │ │ ├── iLegacyCustomClusterClient.mock.ts │ │ ├── index.ts │ │ ├── indexService.mock.ts │ │ ├── notifications │ │ │ ├── NotificationChannelOption.mock.ts │ │ │ ├── NotificationChannelTypeOptions.mock.ts │ │ │ ├── NotificationsStart.mock.ts │ │ │ ├── index.ts │ │ │ └── notificationsService.mock.ts │ │ ├── ruleService.mock.ts │ │ ├── savedObjectService.mock.ts │ │ └── savedObjectsClient.mock.ts │ ├── styleMock.ts │ └── useContext.mock.ts ├── polyfills.ts ├── polyfills │ └── mutationObserver.js ├── setup.jest.ts ├── setupTests.ts └── utils │ └── helpers.ts ├── tsconfig.json ├── types ├── Alert.ts ├── Correlations.ts ├── DataSource.ts ├── DataSourceContext.ts ├── Detector.ts ├── FieldMapping.ts ├── Finding.ts ├── Indices.ts ├── LogTypes.ts ├── Metrics.ts ├── Notification.ts ├── Overview.ts ├── Rule.ts ├── SavedObjectConfig.ts ├── SecurityAnalyticsContext.ts ├── ThreatIntel.ts ├── index.ts ├── services │ ├── IAlertService.ts │ ├── IBrowserServices.ts │ ├── ICorrelationService.ts │ ├── IDetectorService.ts │ ├── IFieldMappingService.ts │ ├── IFindingService.ts │ ├── IIndexService.ts │ ├── INotificationService.ts │ ├── IOpensearchService.ts │ ├── IRuleService.ts │ ├── ISavedObjectsService.ts │ ├── ServerResponse.ts │ └── index.ts └── shared.ts └── yarn.lock /.cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/.eslintrc.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/detector/create_dns_detector_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/detector/create_dns_detector_data.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/detector/create_dns_detector_mappings_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/detector/create_dns_detector_mappings_data.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/detector/create_usb_detector_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/detector/create_usb_detector_data.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/detector/create_usb_detector_mappings_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/detector/create_usb_detector_mappings_data.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/index/add_dns_index_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/index/add_dns_index_data.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/index/add_windows_index_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "winlog.event_id": "2003" 3 | } 4 | -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/index/create_dns_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/index/create_dns_settings.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/index/create_windows_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/index/create_windows_settings.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/rule/create_dns_rule_with_name_selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/rule/create_dns_rule_with_name_selection.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/rule/create_dns_rule_with_type_selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/rule/create_dns_rule_with_type_selection.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/rule/create_network_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/rule/create_network_rule.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/rule/create_windows_usb_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/rule/create_windows_usb_rule.json -------------------------------------------------------------------------------- /.cypress/fixtures/integration_tests/rule/sample_dns_field_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/integration_tests/rule/sample_dns_field_mappings.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_alias_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_alias_mappings.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_aws_s3_rule_to_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_aws_s3_rule_to_import.yml -------------------------------------------------------------------------------- /.cypress/fixtures/sample_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_detector.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_dns_index_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_dns_index_settings.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_document.json: -------------------------------------------------------------------------------- 1 | { 2 | "winlog.event_id": 2003 3 | } 4 | -------------------------------------------------------------------------------- /.cypress/fixtures/sample_field_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_field_mappings.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_network_index_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_network_index_settings.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_rule.json -------------------------------------------------------------------------------- /.cypress/fixtures/sample_windows_index_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/fixtures/sample_windows_index_settings.json -------------------------------------------------------------------------------- /.cypress/integration/1_detectors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/integration/1_detectors.spec.js -------------------------------------------------------------------------------- /.cypress/integration/2_rules.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/integration/2_rules.spec.js -------------------------------------------------------------------------------- /.cypress/integration/3_alerts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/integration/3_alerts.spec.js -------------------------------------------------------------------------------- /.cypress/integration/4_findings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/integration/4_findings.spec.js -------------------------------------------------------------------------------- /.cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/plugins/index.ts -------------------------------------------------------------------------------- /.cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/commands.js -------------------------------------------------------------------------------- /.cypress/support/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/constants.js -------------------------------------------------------------------------------- /.cypress/support/detectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/detectors.js -------------------------------------------------------------------------------- /.cypress/support/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/helpers.js -------------------------------------------------------------------------------- /.cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/index.d.ts -------------------------------------------------------------------------------- /.cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/index.js -------------------------------------------------------------------------------- /.cypress/support/indexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/indexes.js -------------------------------------------------------------------------------- /.cypress/support/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/rules.js -------------------------------------------------------------------------------- /.cypress/support/typings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.cypress/support/typings.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/draft-release-notes-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/draft-release-notes-config.yml -------------------------------------------------------------------------------- /.github/workflows/add-untriaged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/add-untriaged.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/create-documentation-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/create-documentation-issue.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/cypress-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/unit-tests-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/verify-binary-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.github/workflows/verify-binary-installation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.opensearch_dashboards-plugin-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.opensearch_dashboards-plugin-helpers.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.prettierignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/.whitesource -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/babel.config.js -------------------------------------------------------------------------------- /common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/common/constants.ts -------------------------------------------------------------------------------- /common/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/common/helpers.ts -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/config.ts -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/cypress.config.js -------------------------------------------------------------------------------- /integtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/integtest.sh -------------------------------------------------------------------------------- /models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/models/interfaces.ts -------------------------------------------------------------------------------- /opensearch_dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/opensearch_dashboards.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/package.json -------------------------------------------------------------------------------- /public/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/app.scss -------------------------------------------------------------------------------- /public/components/Charts/ChartContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Charts/ChartContainer.scss -------------------------------------------------------------------------------- /public/components/Charts/ChartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Charts/ChartContainer.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/ContentPanel.test.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/ContentPanel.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanelActions.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/ContentPanelActions.test.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanelActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/ContentPanelActions.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/__snapshots__/ContentPanel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/__snapshots__/ContentPanel.test.tsx.snap -------------------------------------------------------------------------------- /public/components/ContentPanel/__snapshots__/ContentPanelActions.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/__snapshots__/ContentPanelActions.test.tsx.snap -------------------------------------------------------------------------------- /public/components/ContentPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/ContentPanel/index.ts -------------------------------------------------------------------------------- /public/components/DarkMode/DarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DarkMode/DarkMode.tsx -------------------------------------------------------------------------------- /public/components/DarkMode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DarkMode/index.ts -------------------------------------------------------------------------------- /public/components/DataSourceThreatAlertsCard/DataSourceThreatAlertsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DataSourceThreatAlertsCard/DataSourceThreatAlertsCard.tsx -------------------------------------------------------------------------------- /public/components/DeleteModal/DeleteModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DeleteModal/DeleteModal.test.tsx -------------------------------------------------------------------------------- /public/components/DeleteModal/DeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DeleteModal/DeleteModal.tsx -------------------------------------------------------------------------------- /public/components/DeleteModal/__snapshots__/DeleteModal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DeleteModal/__snapshots__/DeleteModal.test.tsx.snap -------------------------------------------------------------------------------- /public/components/DeleteModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/DeleteModal/index.ts -------------------------------------------------------------------------------- /public/components/FormFieldHeader/FormFieldHeader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/FormFieldHeader/FormFieldHeader.test.tsx -------------------------------------------------------------------------------- /public/components/FormFieldHeader/FormFieldHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/FormFieldHeader/FormFieldHeader.tsx -------------------------------------------------------------------------------- /public/components/FormFieldHeader/__snapshots__/FormFieldHeader.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/FormFieldHeader/__snapshots__/FormFieldHeader.test.tsx.snap -------------------------------------------------------------------------------- /public/components/FormFieldHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/FormFieldHeader/index.ts -------------------------------------------------------------------------------- /public/components/MDS/DataSourceMenuWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/MDS/DataSourceMenuWrapper.tsx -------------------------------------------------------------------------------- /public/components/Modal/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Modal/Modal.test.tsx -------------------------------------------------------------------------------- /public/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /public/components/Modal/ModalRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Modal/ModalRoot.tsx -------------------------------------------------------------------------------- /public/components/Modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Modal/index.ts -------------------------------------------------------------------------------- /public/components/Notifications/NotificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Notifications/NotificationForm.tsx -------------------------------------------------------------------------------- /public/components/NotificationsCallOut/NotificationsCallOut.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/NotificationsCallOut/NotificationsCallOut.test.tsx -------------------------------------------------------------------------------- /public/components/NotificationsCallOut/NotificationsCallOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/NotificationsCallOut/NotificationsCallOut.tsx -------------------------------------------------------------------------------- /public/components/NotificationsCallOut/__snapshots__/NotificationsCallOut.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/NotificationsCallOut/__snapshots__/NotificationsCallOut.test.tsx.snap -------------------------------------------------------------------------------- /public/components/NotificationsCallOut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/NotificationsCallOut/index.ts -------------------------------------------------------------------------------- /public/components/PageHeader/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/PageHeader/PageHeader.tsx -------------------------------------------------------------------------------- /public/components/Utility/DescriptionGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Utility/DescriptionGroup.tsx -------------------------------------------------------------------------------- /public/components/Utility/LogCategoryOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Utility/LogCategoryOption.tsx -------------------------------------------------------------------------------- /public/components/Utility/StatusWithIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/Utility/StatusWithIndicator.tsx -------------------------------------------------------------------------------- /public/components/core_services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/components/core_services.ts -------------------------------------------------------------------------------- /public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/index.ts -------------------------------------------------------------------------------- /public/metrics/DetectorMetricsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/metrics/DetectorMetricsManager.ts -------------------------------------------------------------------------------- /public/metrics/MetricsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/metrics/MetricsContext.ts -------------------------------------------------------------------------------- /public/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/models/interfaces.ts -------------------------------------------------------------------------------- /public/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/models/types.ts -------------------------------------------------------------------------------- /public/pages/Alerts/components/AlertFlyout/AlertFlyout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/AlertFlyout/AlertFlyout.test.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/components/AlertFlyout/AlertFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/AlertFlyout/AlertFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/components/AlertFlyout/__snapshots__/AlertFlyout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/AlertFlyout/__snapshots__/AlertFlyout.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Alerts/components/CorrelationAlertFlyout/CorrelationAlertFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/CorrelationAlertFlyout/CorrelationAlertFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/components/ThreatIntelAlertFlyout/ThreatIntelAlertFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/ThreatIntelAlertFlyout/ThreatIntelAlertFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/components/ThreatIntelAlertsTable/ThreatIntelAlertsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/components/ThreatIntelAlertsTable/ThreatIntelAlertsTable.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/containers/Alerts/Alerts.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/containers/Alerts/Alerts.test.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/containers/Alerts/Alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/containers/Alerts/Alerts.tsx -------------------------------------------------------------------------------- /public/pages/Alerts/containers/Alerts/__snapshots__/Alerts.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/containers/Alerts/__snapshots__/Alerts.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Alerts/containers/Alerts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/containers/Alerts/index.ts -------------------------------------------------------------------------------- /public/pages/Alerts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/index.ts -------------------------------------------------------------------------------- /public/pages/Alerts/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Alerts/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Correlations/Correlations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/Correlations.scss -------------------------------------------------------------------------------- /public/pages/Correlations/components/CorrelationGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/CorrelationGraph.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/components/DeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/DeleteModal.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/components/ExperimentalBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/ExperimentalBanner.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/components/FilterGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/FilterGroup.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/components/FindingCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/FindingCard.scss -------------------------------------------------------------------------------- /public/pages/Correlations/components/FindingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/components/FindingCard.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationRuleFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationRuleFormModel.ts -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationRules.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationsContainer.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationsTable.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationsTableFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationsTableFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CorrelationsTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CorrelationsTableView.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/containers/CreateCorrelationRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/containers/CreateCorrelationRule.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/utils/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/utils/constants.tsx -------------------------------------------------------------------------------- /public/pages/Correlations/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Correlations/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/__snapshots__/AlertConditionPanel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/__snapshots__/AlertConditionPanel.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/components/AlertCondition/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/containers/ConfigureAlerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/containers/ConfigureAlerts.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureAlerts/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureAlerts/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/FieldMappingsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/FieldMappingsTable.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/FieldNameSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/FieldNameSelector.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/SIEMFieldName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/SIEMFieldName.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/components/RequiredFieldMapping/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/containers/ConfigureFieldMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/containers/ConfigureFieldMapping.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/ConfigureFieldMapping/utils/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/ConfigureFieldMapping/utils/dummyData.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/DetectionRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/DetectionRules.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/DetectionRulesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/DetectionRulesTable.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/types/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/types/interfaces.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/utils/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/utils/constants.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/utils/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectionRules/utils/dummyData.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorDataSource/DetectorDataSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorDataSource/DetectorDataSource.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorDataSource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorDataSource/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorDetails/DetectorBasicDetailsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorDetails/DetectorBasicDetailsForm.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorDetails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorDetails/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/CustomCron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/CustomCron.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Daily.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Daily.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/DetectorSchedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/DetectorSchedule.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Interval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Interval.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Monthly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Monthly.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Weekly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorSchedule/Weekly.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorType/DetectorType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorType/DetectorType.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/DetectorType/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/DetectorType/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/components/ThreatIntelligence/ThreatIntelligence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/components/ThreatIntelligence/ThreatIntelligence.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/containers/DefineDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/containers/DefineDetector.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/components/DefineDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/components/DefineDetector/index.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/containers/CreateDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/containers/CreateDetector.tsx -------------------------------------------------------------------------------- /public/pages/CreateDetector/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/models/interfaces.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/models/types.ts -------------------------------------------------------------------------------- /public/pages/CreateDetector/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/CreateDetector/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Dashboards/containers/Dashboards/Dashboards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Dashboards/containers/Dashboards/Dashboards.tsx -------------------------------------------------------------------------------- /public/pages/Dashboards/containers/Dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Dashboards/containers/Dashboards/index.ts -------------------------------------------------------------------------------- /public/pages/Dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Dashboards/index.ts -------------------------------------------------------------------------------- /public/pages/Detectors/components/AlertTriggerView/AlertTriggerView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/AlertTriggerView/AlertTriggerView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/AlertTriggerView/AlertTriggerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/AlertTriggerView/AlertTriggerView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/AlertTriggerView/__snapshots__/AlertTriggerView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/AlertTriggerView/__snapshots__/AlertTriggerView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorBasicDetailsView/__snapshots__/DetectorBasicDetailsView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorBasicDetailsView/__snapshots__/DetectorBasicDetailsView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorRulesView/DetectorRulesView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorRulesView/DetectorRulesView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorRulesView/DetectorRulesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorRulesView/DetectorRulesView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/DetectorRulesView/__snapshots__/DetectorRulesView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/DetectorRulesView/__snapshots__/DetectorRulesView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/FieldMappingsView/FieldMappingsView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/FieldMappingsView/FieldMappingsView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/FieldMappingsView/FieldMappingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/FieldMappingsView/FieldMappingsView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/FieldMappingsView/__snapshots__/FieldMappingsView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/FieldMappingsView/__snapshots__/FieldMappingsView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/ReviewFieldMappings/ReviewFieldMappings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/ReviewFieldMappings/ReviewFieldMappings.scss -------------------------------------------------------------------------------- /public/pages/Detectors/components/ReviewFieldMappings/ReviewFieldMappings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/ReviewFieldMappings/ReviewFieldMappings.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateAlertConditions/__snapshots__/UpdateAlertConditions.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateAlertConditions/__snapshots__/UpdateAlertConditions.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateBasicDetails/UpdateBasicDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateBasicDetails/UpdateBasicDetails.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateBasicDetails/UpdateDetectorBasicDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateBasicDetails/UpdateDetectorBasicDetails.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateBasicDetails/__snapshots__/UpdateDetectorBasicDetails.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateBasicDetails/__snapshots__/UpdateDetectorBasicDetails.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateFieldMappings/__snapshots__/UpdateFieldMappings.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateFieldMappings/__snapshots__/UpdateFieldMappings.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateRules/UpdateDetectorRules.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateRules/UpdateDetectorRules.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateRules/UpdateRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateRules/UpdateRules.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/components/UpdateRules/__snapshots__/UpdateDetectorRules.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/components/UpdateRules/__snapshots__/UpdateDetectorRules.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/containers/AlertTriggersView/AlertTriggersView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/AlertTriggersView/AlertTriggersView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/AlertTriggersView/AlertTriggersView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/AlertTriggersView/AlertTriggersView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/AlertTriggersView/__snapshots__/AlertTriggersView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/AlertTriggersView/__snapshots__/AlertTriggersView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detector/DetectorDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detector/DetectorDetails.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detector/DetectorDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detector/DetectorDetails.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detector/__snapshots__/DetectorDetails.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detector/__snapshots__/DetectorDetails.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/containers/DetectorDetailsView/DetectorDetailsView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/DetectorDetailsView/DetectorDetailsView.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/DetectorDetailsView/DetectorDetailsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/DetectorDetailsView/DetectorDetailsView.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/DetectorDetailsView/__snapshots__/DetectorDetailsView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/DetectorDetailsView/__snapshots__/DetectorDetailsView.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detectors/Detectors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detectors/Detectors.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detectors/Detectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detectors/Detectors.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detectors/__snapshots__/Detectors.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detectors/__snapshots__/Detectors.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/containers/Detectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/Detectors/index.ts -------------------------------------------------------------------------------- /public/pages/Detectors/containers/FieldMappings/EditFieldMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/FieldMappings/EditFieldMapping.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/FieldMappings/EditFieldMappings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/FieldMappings/EditFieldMappings.test.tsx -------------------------------------------------------------------------------- /public/pages/Detectors/containers/FieldMappings/__snapshots__/EditFieldMappings.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/containers/FieldMappings/__snapshots__/EditFieldMappings.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Detectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/index.ts -------------------------------------------------------------------------------- /public/pages/Detectors/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/models/interfaces.ts -------------------------------------------------------------------------------- /public/pages/Detectors/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Detectors/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Detectors/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/Findings/components/CorrelationsTable/CorrelationsTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/CorrelationsTable/CorrelationsTable.scss -------------------------------------------------------------------------------- /public/pages/Findings/components/CorrelationsTable/CorrelationsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/CorrelationsTable/CorrelationsTable.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/CreateAlertFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/CreateAlertFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/CreateIndexPatternForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/CreateIndexPatternForm.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/FindingDetailsFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/FindingDetailsFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/FindingsTable/FindingsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/FindingsTable/FindingsTable.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/FindingsTable/ThreatIntelFindingsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/FindingsTable/ThreatIntelFindingsTable.tsx -------------------------------------------------------------------------------- /public/pages/Findings/components/FindingsTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/FindingsTable/index.ts -------------------------------------------------------------------------------- /public/pages/Findings/components/ThreatIntelFindingDetailsFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/components/ThreatIntelFindingDetailsFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Findings/containers/Findings/Findings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/containers/Findings/Findings.tsx -------------------------------------------------------------------------------- /public/pages/Findings/containers/Findings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/containers/Findings/index.ts -------------------------------------------------------------------------------- /public/pages/Findings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/index.ts -------------------------------------------------------------------------------- /public/pages/Findings/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/models/interfaces.ts -------------------------------------------------------------------------------- /public/pages/Findings/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Findings/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/LogTypes/components/DeleteLogTypeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/components/DeleteLogTypeModal.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/components/LogTypeDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/components/LogTypeDetails.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/components/LogTypeDetailsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/components/LogTypeDetailsTab.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/components/LogTypeDetectionRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/components/LogTypeDetectionRules.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/components/LogTypeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/components/LogTypeForm.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/containers/CreateLogType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/containers/CreateLogType.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/containers/LogType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/containers/LogType.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/containers/LogTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/containers/LogTypes.tsx -------------------------------------------------------------------------------- /public/pages/LogTypes/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/LogTypes/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/LogTypes/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/Main/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Main/Main.tsx -------------------------------------------------------------------------------- /public/pages/Main/components/Callout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Main/components/Callout.scss -------------------------------------------------------------------------------- /public/pages/Main/components/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Main/components/Callout.tsx -------------------------------------------------------------------------------- /public/pages/Main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Main/index.ts -------------------------------------------------------------------------------- /public/pages/Overview/components/GettingStarted/GetStartedStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/GettingStarted/GetStartedStep.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/GettingStarted/GettingStartedContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/GettingStarted/GettingStartedContent.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/DetectorsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/DetectorsWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/RecentAlertsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/RecentAlertsWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/RecentFindingsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/RecentFindingsWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/RecentThreatIntelFindingsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/RecentThreatIntelFindingsWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/Summary.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/TableWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/TableWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/TopRulesWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/TopRulesWidget.tsx -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/WidgetContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/WidgetContainer.scss -------------------------------------------------------------------------------- /public/pages/Overview/components/Widgets/WidgetContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/components/Widgets/WidgetContainer.tsx -------------------------------------------------------------------------------- /public/pages/Overview/containers/Overview/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/containers/Overview/Overview.tsx -------------------------------------------------------------------------------- /public/pages/Overview/containers/Overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/containers/Overview/index.ts -------------------------------------------------------------------------------- /public/pages/Overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/index.ts -------------------------------------------------------------------------------- /public/pages/Overview/models/OverviewViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/models/OverviewViewModel.ts -------------------------------------------------------------------------------- /public/pages/Overview/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Overview/utils/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/utils/helper.test.ts -------------------------------------------------------------------------------- /public/pages/Overview/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Overview/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/Rules/components/DeleteModal/DeleteRuleModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/DeleteModal/DeleteRuleModal.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/DeleteModal/DeleteRuleModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/DeleteModal/DeleteRuleModal.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/DeleteModal/__snapshots__/DeleteRuleModal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/DeleteModal/__snapshots__/DeleteRuleModal.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/RuleContentViewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/RuleContentViewer.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/RuleContentViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/RuleContentViewer.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/RuleContentYamlViewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/RuleContentYamlViewer.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/RuleContentYamlViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/RuleContentYamlViewer.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/__snapshots__/RuleContentViewer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/__snapshots__/RuleContentViewer.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleContentViewer/__snapshots__/RuleContentYamlViewer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleContentViewer/__snapshots__/RuleContentYamlViewer.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/DetectionVisualEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/DetectionVisualEditor.scss -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/DetectionVisualEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/DetectionVisualEditor.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/DetectionVisualEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/DetectionVisualEditor.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/FormSubmissionErrorToastNotification.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/FormSubmissionErrorToastNotification.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/FormSubmitionErrorToastNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/FormSubmitionErrorToastNotification.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorContainer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorContainer.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorContainer.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorForm.scss -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorForm.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorForm.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/RuleEditorFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/RuleEditorFormModel.ts -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/__snapshots__/DetectionVisualEditor.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/__snapshots__/DetectionVisualEditor.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/__snapshots__/FormSubmissionErrorToastNotification.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/__snapshots__/FormSubmissionErrorToastNotification.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/__snapshots__/RuleEditorContainer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/__snapshots__/RuleEditorContainer.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/__snapshots__/RuleEditorForm.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/__snapshots__/RuleEditorForm.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/FieldTextArray.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/FieldTextArray.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/FieldTextArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/FieldTextArray.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/SelectionExpField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/SelectionExpField.scss -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/SelectionExpField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/SelectionExpField.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/SelectionExpField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/SelectionExpField.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/RuleTagsComboBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/RuleTagsComboBox.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/YamlRuleEditorComponent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/YamlRuleEditorComponent.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/YamlRuleEditorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/YamlRuleEditorComponent.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/__snapshots__/YamlRuleEditorComponent.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/YamlRuleEditorComponent/__snapshots__/YamlRuleEditorComponent.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/__snapshots__/FieldTextArray.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/__snapshots__/FieldTextArray.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/components/__snapshots__/SelectionExpField.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/components/__snapshots__/SelectionExpField.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleEditor/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleEditor/mappers.ts -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleViewerFlyout/RuleViewFlyoutHeaderActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleViewerFlyout/RuleViewFlyoutHeaderActions.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RuleViewerFlyout/RuleViewerFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RuleViewerFlyout/RuleViewerFlyout.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RulesTable/RulesTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RulesTable/RulesTable.test.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RulesTable/RulesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RulesTable/RulesTable.tsx -------------------------------------------------------------------------------- /public/pages/Rules/components/RulesTable/__snapshots__/RulesTable.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/components/RulesTable/__snapshots__/RulesTable.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Rules/containers/CreateRule/CreateRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/CreateRule/CreateRule.tsx -------------------------------------------------------------------------------- /public/pages/Rules/containers/DuplicateRule/DuplicateRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/DuplicateRule/DuplicateRule.tsx -------------------------------------------------------------------------------- /public/pages/Rules/containers/EditRule/EditRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/EditRule/EditRule.tsx -------------------------------------------------------------------------------- /public/pages/Rules/containers/ImportRule/ImportRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/ImportRule/ImportRule.tsx -------------------------------------------------------------------------------- /public/pages/Rules/containers/Rules/Rules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/Rules/Rules.tsx -------------------------------------------------------------------------------- /public/pages/Rules/containers/Rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/containers/Rules/index.ts -------------------------------------------------------------------------------- /public/pages/Rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/index.ts -------------------------------------------------------------------------------- /public/pages/Rules/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Rules/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/Rules/utils/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/Rules/utils/mappers.ts -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ConfigureThreatIntelAlertTriggers/ConfigureThreatIntelAlertTriggers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ConfigureThreatIntelAlertTriggers/ConfigureThreatIntelAlertTriggers.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/IoCsTable/IoCsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/IoCsTable/IoCsTable.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/SelectLogSourcesForm/SelectThreatIntelLogSourcesForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/SelectLogSourcesForm/SelectThreatIntelLogSourcesForm.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelAlertTriggerForm/ThreatIntelAlertTriggerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelAlertTriggerForm/ThreatIntelAlertTriggerForm.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelAlertTriggersFlyout/ThreatIntelAlertTriggersFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelAlertTriggersFlyout/ThreatIntelAlertTriggersFlyout.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelLogScanConfig/ThreatIntelLogScanConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelLogScanConfig/ThreatIntelLogScanConfig.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelLogSourcesFlyout/ThreatIntelLogSourcesFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelLogSourcesFlyout/ThreatIntelLogSourcesFlyout.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelOverviewActions/ThreatIntelOverviewActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelOverviewActions/ThreatIntelOverviewActions.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelSourceDetails/ThreatIntelSourceDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelSourceDetails/ThreatIntelSourceDetails.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelSourceDetails/ThreatIntelSourceDetailsFileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelSourceDetails/ThreatIntelSourceDetailsFileUploader.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelSourceFileUploader/ThreatIntelSourceFileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelSourceFileUploader/ThreatIntelSourceFileUploader.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/ThreatIntelSourcesList/ThreatIntelSourcesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/ThreatIntelSourcesList/ThreatIntelSourcesList.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/components/Utility/ConfigActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/components/Utility/ConfigActionButton.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/containers/AddThreatIntelSource/AddThreatIntelSource.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/containers/AddThreatIntelSource/AddThreatIntelSource.scss -------------------------------------------------------------------------------- /public/pages/ThreatIntel/containers/AddThreatIntelSource/AddThreatIntelSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/containers/AddThreatIntelSource/AddThreatIntelSource.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/containers/Overview/ThreatIntelOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/containers/Overview/ThreatIntelOverview.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/containers/ScanConfiguration/ThreatIntelScanConfigForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/containers/ScanConfiguration/ThreatIntelScanConfigForm.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/containers/ThreatIntelSource/ThreatIntelSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/containers/ThreatIntelSource/ThreatIntelSource.tsx -------------------------------------------------------------------------------- /public/pages/ThreatIntel/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/ThreatIntel/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/pages/ThreatIntel/utils/helpers.ts -------------------------------------------------------------------------------- /public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/plugin.ts -------------------------------------------------------------------------------- /public/react-graph-vis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/react-graph-vis.d.ts -------------------------------------------------------------------------------- /public/security_analytics_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/security_analytics_app.tsx -------------------------------------------------------------------------------- /public/services/AlertsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/AlertsService.ts -------------------------------------------------------------------------------- /public/services/CorrelationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/CorrelationService.ts -------------------------------------------------------------------------------- /public/services/DataSourceContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/DataSourceContext.ts -------------------------------------------------------------------------------- /public/services/DetectorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/DetectorService.ts -------------------------------------------------------------------------------- /public/services/FieldMappingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/FieldMappingService.ts -------------------------------------------------------------------------------- /public/services/FindingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/FindingsService.ts -------------------------------------------------------------------------------- /public/services/IndexPatternsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/IndexPatternsService.ts -------------------------------------------------------------------------------- /public/services/IndexService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/IndexService.ts -------------------------------------------------------------------------------- /public/services/LogTypeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/LogTypeService.ts -------------------------------------------------------------------------------- /public/services/MetricsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/MetricsService.ts -------------------------------------------------------------------------------- /public/services/NotificationsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/NotificationsService.ts -------------------------------------------------------------------------------- /public/services/OpenSearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/OpenSearchService.ts -------------------------------------------------------------------------------- /public/services/RuleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/RuleService.ts -------------------------------------------------------------------------------- /public/services/SavedObjectService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/SavedObjectService.ts -------------------------------------------------------------------------------- /public/services/SecurityAnalyticsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/SecurityAnalyticsContext.ts -------------------------------------------------------------------------------- /public/services/ThreatIntelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/ThreatIntelService.ts -------------------------------------------------------------------------------- /public/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/index.ts -------------------------------------------------------------------------------- /public/services/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/services/utils/constants.ts -------------------------------------------------------------------------------- /public/store/AlertsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/AlertsStore.ts -------------------------------------------------------------------------------- /public/store/CorrelationsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/CorrelationsStore.ts -------------------------------------------------------------------------------- /public/store/DataStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/DataStore.ts -------------------------------------------------------------------------------- /public/store/DetectorsStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/DetectorsStore.test.ts -------------------------------------------------------------------------------- /public/store/DetectorsStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/DetectorsStore.tsx -------------------------------------------------------------------------------- /public/store/DocumentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/DocumentStore.ts -------------------------------------------------------------------------------- /public/store/FindingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/FindingsStore.ts -------------------------------------------------------------------------------- /public/store/LogTypeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/LogTypeStore.ts -------------------------------------------------------------------------------- /public/store/RulesStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/RulesStore.test.ts -------------------------------------------------------------------------------- /public/store/RulesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/RulesStore.ts -------------------------------------------------------------------------------- /public/store/ThreatIntelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/ThreatIntelStore.ts -------------------------------------------------------------------------------- /public/store/config/savedObjects/cloudtrail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/config/savedObjects/cloudtrail.ts -------------------------------------------------------------------------------- /public/store/config/savedObjects/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/config/savedObjects/s3.ts -------------------------------------------------------------------------------- /public/store/config/savedObjects/vpc-flow-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/config/savedObjects/vpc-flow-logs.ts -------------------------------------------------------------------------------- /public/store/savedObjectsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/store/savedObjectsConfig.ts -------------------------------------------------------------------------------- /public/utils/chartUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/utils/chartUtils.tsx -------------------------------------------------------------------------------- /public/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/utils/constants.ts -------------------------------------------------------------------------------- /public/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/utils/helpers.tsx -------------------------------------------------------------------------------- /public/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/public/utils/validation.ts -------------------------------------------------------------------------------- /release-notes/opensearch-dashboards-securityAnalyticsDashboards.release-notes-3.2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-dashboards-securityAnalyticsDashboards.release-notes-3.2.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards-plugin.release-notes-3.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards-plugin.release-notes-3.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.10.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.10.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.11.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.11.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.11.1.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.13.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.14.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.14.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.15.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.15.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.16.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.16.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.17.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.17.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.18.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.18.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.19.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.19.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.4.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.5.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.5.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.6.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.6.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.7.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.8.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-2.9.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-2.9.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0-alpha1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0-alpha1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0-beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0-beta1.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-3.0.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-security-analytics-dashboards.release-notes-3.1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/release-notes/opensearch-security-analytics-dashboards.release-notes-3.1.0.0.md -------------------------------------------------------------------------------- /server/clusters/addAlertsMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addAlertsMethods.ts -------------------------------------------------------------------------------- /server/clusters/addCorrelationMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addCorrelationMethods.ts -------------------------------------------------------------------------------- /server/clusters/addDetectorMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addDetectorMethods.ts -------------------------------------------------------------------------------- /server/clusters/addFieldMappingMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addFieldMappingMethods.ts -------------------------------------------------------------------------------- /server/clusters/addFindingsMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addFindingsMethods.ts -------------------------------------------------------------------------------- /server/clusters/addLogTypeMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addLogTypeMethods.ts -------------------------------------------------------------------------------- /server/clusters/addNotificationsMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addNotificationsMethods.ts -------------------------------------------------------------------------------- /server/clusters/addRuleMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addRuleMethods.ts -------------------------------------------------------------------------------- /server/clusters/addThreatIntelMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/addThreatIntelMethods.ts -------------------------------------------------------------------------------- /server/clusters/createSecurityAnalyticsCluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/createSecurityAnalyticsCluster.ts -------------------------------------------------------------------------------- /server/clusters/securityAnalyticsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/clusters/securityAnalyticsPlugin.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/models/interfaces/Detectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/interfaces/Detectors.ts -------------------------------------------------------------------------------- /server/models/interfaces/FieldMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/interfaces/FieldMappings.ts -------------------------------------------------------------------------------- /server/models/interfaces/Findings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/interfaces/Findings.ts -------------------------------------------------------------------------------- /server/models/interfaces/Rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/interfaces/Rules.ts -------------------------------------------------------------------------------- /server/models/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/interfaces/index.ts -------------------------------------------------------------------------------- /server/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/models/types.ts -------------------------------------------------------------------------------- /server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/plugin.ts -------------------------------------------------------------------------------- /server/routes/AlertRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/AlertRoutes.ts -------------------------------------------------------------------------------- /server/routes/CorrelationRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/CorrelationRoutes.ts -------------------------------------------------------------------------------- /server/routes/DetectorRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/DetectorRoutes.ts -------------------------------------------------------------------------------- /server/routes/FieldMappingRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/FieldMappingRoutes.ts -------------------------------------------------------------------------------- /server/routes/FindingsRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/FindingsRoutes.ts -------------------------------------------------------------------------------- /server/routes/IndexRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/IndexRoutes.ts -------------------------------------------------------------------------------- /server/routes/LogTypeRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/LogTypeRoutes.ts -------------------------------------------------------------------------------- /server/routes/MetricsRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/MetricsRoutes.ts -------------------------------------------------------------------------------- /server/routes/NotificationsRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/NotificationsRoutes.ts -------------------------------------------------------------------------------- /server/routes/OpenSearchRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/OpenSearchRoutes.ts -------------------------------------------------------------------------------- /server/routes/RuleRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/RuleRoutes.ts -------------------------------------------------------------------------------- /server/routes/ThreatIntel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/ThreatIntel.ts -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/routes/index.ts -------------------------------------------------------------------------------- /server/services/AlertService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/AlertService.ts -------------------------------------------------------------------------------- /server/services/CorrelationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/CorrelationService.ts -------------------------------------------------------------------------------- /server/services/DetectorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/DetectorService.ts -------------------------------------------------------------------------------- /server/services/FieldMappingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/FieldMappingService.ts -------------------------------------------------------------------------------- /server/services/FindingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/FindingsService.ts -------------------------------------------------------------------------------- /server/services/IndexService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/IndexService.ts -------------------------------------------------------------------------------- /server/services/LogTypeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/LogTypeService.ts -------------------------------------------------------------------------------- /server/services/MDSEnabledClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/MDSEnabledClientService.ts -------------------------------------------------------------------------------- /server/services/MetricsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/MetricsService.ts -------------------------------------------------------------------------------- /server/services/NotificationsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/NotificationsService.ts -------------------------------------------------------------------------------- /server/services/OpenSearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/OpenSearchService.ts -------------------------------------------------------------------------------- /server/services/RuleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/RuleService.ts -------------------------------------------------------------------------------- /server/services/ThreatIntelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/ThreatIntelService.ts -------------------------------------------------------------------------------- /server/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/services/index.ts -------------------------------------------------------------------------------- /server/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/utils/constants.ts -------------------------------------------------------------------------------- /server/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/server/utils/helpers.ts -------------------------------------------------------------------------------- /test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/jest.config.js -------------------------------------------------------------------------------- /test/mocks/Alerts/AlertItem.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Alerts/AlertItem.mock.ts -------------------------------------------------------------------------------- /test/mocks/Alerts/Alerts.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Alerts/Alerts.mock.ts -------------------------------------------------------------------------------- /test/mocks/Alerts/PeriodSchedule.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Alerts/PeriodSchedule.mock.ts -------------------------------------------------------------------------------- /test/mocks/Alerts/components/AlertFlyout/AlertFlyout.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Alerts/components/AlertFlyout/AlertFlyout.mock.ts -------------------------------------------------------------------------------- /test/mocks/Alerts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Alerts/index.ts -------------------------------------------------------------------------------- /test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertCondition.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertCondition.mock.ts -------------------------------------------------------------------------------- /test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/AlertConditionPanel.mock.ts -------------------------------------------------------------------------------- /test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/TriggerAction.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/CreateDetector/components/ConfigureAlerts/components/AlertCondition/TriggerAction.mock.ts -------------------------------------------------------------------------------- /test/mocks/CreateDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/CreateDetector/index.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/AlertTriggerView/AlertTriggerView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/AlertTriggerView/AlertTriggerView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/DetectorBasicDetailsView/DetectorBasicDetailsView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/DetectorRulesView/DetectorRulesView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/DetectorRulesView/DetectorRulesView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/FieldMappingsView/FieldMapping.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/FieldMappingsView/FieldMapping.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/FieldMappingsView/FieldMappingsView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/FieldMappingsView/FieldMappingsView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/UpdateAlertConditions/UpdateAlertConditions.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/UpdateDetectorBasicDetails/UpdateDetectorBasicDetails.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/UpdateDetectorBasicDetails/UpdateDetectorBasicDetails.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/UpdateDetectorRules/UpdateDetectorRules.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/UpdateDetectorRules/UpdateDetectorRules.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/components/UpdateFieldMappings/UpdateFieldMappings.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/AlertTriggersView/AlertTriggersView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/AlertTriggersView/AlertTriggersView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/DetectorDetails/DetectorDetails.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/DetectorDetails/DetectorDetails.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/DetectorDetailsView/DetectorDetailsView.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/DetectorDetailsView/DetectorDetailsView.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/Detectors/Detector.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/Detectors/Detector.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/Detectors/DetectorHit.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/Detectors/DetectorHit.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/Detectors/DetectorInput.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/Detectors/DetectorInput.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/Detectors/DetectorResponse.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/Detectors/DetectorResponse.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/Detectors/Detectors.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/Detectors/Detectors.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/containers/EditFieldMappings/EditFieldMappings.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/containers/EditFieldMappings/EditFieldMappings.mock.ts -------------------------------------------------------------------------------- /test/mocks/Detectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Detectors/index.ts -------------------------------------------------------------------------------- /test/mocks/Rules/RuleInfo.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/RuleInfo.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/RuleOptions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/RuleOptions.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/RulePage.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/RulePage.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/RuleSource.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/RuleSource.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/DeleteModal/DeleteRuleModal.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/DeleteModal/DeleteRuleModal.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RuleEditor/DetectionVisualEditor.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RuleEditor/DetectionVisualEditor.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RuleEditor/RuleEditorContainer.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RuleEditor/RuleEditorContainer.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RuleEditor/RuleEditorForm.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RuleEditor/RuleEditorForm.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RuleEditor/components/FieldTextArray.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RuleEditor/components/FieldTextArray.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RuleEditor/components/SelectionExpField.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RuleEditor/components/SelectionExpField.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/components/RulesTable/RulesTable.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/components/RulesTable/RulesTable.mock.ts -------------------------------------------------------------------------------- /test/mocks/Rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/Rules/index.ts -------------------------------------------------------------------------------- /test/mocks/contentManagementMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/contentManagementMocks.ts -------------------------------------------------------------------------------- /test/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/index.ts -------------------------------------------------------------------------------- /test/mocks/services/alertService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/alertService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/browserHistory.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/browserHistory.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/detectorService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/detectorService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/fieldMappingService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/fieldMappingService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/findingsService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/findingsService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/httpClient.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/httpClient.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/iLegacyCustomClusterClient.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/iLegacyCustomClusterClient.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/index.ts -------------------------------------------------------------------------------- /test/mocks/services/indexService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/indexService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/notifications/NotificationChannelOption.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/notifications/NotificationChannelOption.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/notifications/NotificationChannelTypeOptions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/notifications/NotificationChannelTypeOptions.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/notifications/NotificationsStart.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/notifications/NotificationsStart.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/notifications/index.ts -------------------------------------------------------------------------------- /test/mocks/services/notifications/notificationsService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/notifications/notificationsService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/ruleService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/ruleService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/savedObjectService.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/savedObjectService.mock.ts -------------------------------------------------------------------------------- /test/mocks/services/savedObjectsClient.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/services/savedObjectsClient.mock.ts -------------------------------------------------------------------------------- /test/mocks/styleMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/styleMock.ts -------------------------------------------------------------------------------- /test/mocks/useContext.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/mocks/useContext.mock.ts -------------------------------------------------------------------------------- /test/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/polyfills.ts -------------------------------------------------------------------------------- /test/polyfills/mutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/polyfills/mutationObserver.js -------------------------------------------------------------------------------- /test/setup.jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/setup.jest.ts -------------------------------------------------------------------------------- /test/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/setupTests.ts -------------------------------------------------------------------------------- /test/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/test/utils/helpers.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/Alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Alert.ts -------------------------------------------------------------------------------- /types/Correlations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Correlations.ts -------------------------------------------------------------------------------- /types/DataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/DataSource.ts -------------------------------------------------------------------------------- /types/DataSourceContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/DataSourceContext.ts -------------------------------------------------------------------------------- /types/Detector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Detector.ts -------------------------------------------------------------------------------- /types/FieldMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/FieldMapping.ts -------------------------------------------------------------------------------- /types/Finding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Finding.ts -------------------------------------------------------------------------------- /types/Indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Indices.ts -------------------------------------------------------------------------------- /types/LogTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/LogTypes.ts -------------------------------------------------------------------------------- /types/Metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Metrics.ts -------------------------------------------------------------------------------- /types/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Notification.ts -------------------------------------------------------------------------------- /types/Overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Overview.ts -------------------------------------------------------------------------------- /types/Rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/Rule.ts -------------------------------------------------------------------------------- /types/SavedObjectConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/SavedObjectConfig.ts -------------------------------------------------------------------------------- /types/SecurityAnalyticsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/SecurityAnalyticsContext.ts -------------------------------------------------------------------------------- /types/ThreatIntel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/ThreatIntel.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/services/IAlertService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IAlertService.ts -------------------------------------------------------------------------------- /types/services/IBrowserServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IBrowserServices.ts -------------------------------------------------------------------------------- /types/services/ICorrelationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/ICorrelationService.ts -------------------------------------------------------------------------------- /types/services/IDetectorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IDetectorService.ts -------------------------------------------------------------------------------- /types/services/IFieldMappingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IFieldMappingService.ts -------------------------------------------------------------------------------- /types/services/IFindingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IFindingService.ts -------------------------------------------------------------------------------- /types/services/IIndexService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IIndexService.ts -------------------------------------------------------------------------------- /types/services/INotificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/INotificationService.ts -------------------------------------------------------------------------------- /types/services/IOpensearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IOpensearchService.ts -------------------------------------------------------------------------------- /types/services/IRuleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/IRuleService.ts -------------------------------------------------------------------------------- /types/services/ISavedObjectsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/ISavedObjectsService.ts -------------------------------------------------------------------------------- /types/services/ServerResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/ServerResponse.ts -------------------------------------------------------------------------------- /types/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/services/index.ts -------------------------------------------------------------------------------- /types/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/types/shared.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/security-analytics-dashboards-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------