├── .cypress ├── .eslintrc.json ├── fixtures │ ├── delete_detector_response.json │ ├── empty_detector_index_response.json │ ├── index_mapping_response.json │ ├── multiple_detectors_response.json │ ├── no_detector_index_response.json │ ├── post_detector_response.json │ ├── search_index_response.json │ ├── single_running_detector_response.json │ ├── single_stopped_detector_response.json │ ├── start_detector_response.json │ └── stop_detector_response.json ├── integration │ └── ad │ │ ├── dashboard │ │ └── ad_dashboard.spec.ts │ │ ├── detectorList │ │ └── detector_list.spec.ts │ │ └── workflow │ │ └── create_detector.spec.ts ├── plugins │ └── index.js ├── support │ ├── commands.ts │ ├── index.d.ts │ └── index.js ├── tsconfig.json └── utils │ ├── constants.ts │ └── helpers.ts ├── .eslintrc ├── .github ├── configurations │ └── docker-compose.yml ├── draft-release-notes-config.yml └── workflows │ ├── CD.yml │ ├── draft-release-notes-workflow.yml │ ├── e2e-tests-workflow.yml │ └── unit-tests-workflow.yml ├── .gitignore ├── .kibana-plugin-helpers.json ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE.txt ├── NOTICE.txt ├── OWNERS ├── README.md ├── THIRD-PARTY ├── babel.config.js ├── cypress.json ├── kibana.json ├── package.json ├── public ├── anomaly_detection_app.tsx ├── app.scss ├── components │ ├── ContentPanel │ │ ├── ContentPanel.test.tsx │ │ ├── ContentPanel.tsx │ │ ├── __snapshots__ │ │ │ └── ContentPanel.test.tsx.snap │ │ └── index.scss │ ├── CoreServices │ │ └── CoreServices.tsx │ └── CreateDetectorButtons │ │ └── CreateDetectorButtons.tsx ├── hooks │ ├── useDelayedLoader.ts │ └── useSticky.ts ├── images │ └── anomaly_detection_icon.svg ├── index.ts ├── models │ └── interfaces.ts ├── pages │ ├── AnomalyCharts │ │ ├── components │ │ │ ├── AlertsButton │ │ │ │ ├── AlertsButton.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── AlertsButton.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── AlertsButton.test.tsx.snap │ │ │ ├── AlertsFlyout │ │ │ │ ├── AlertsFlyout.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── AlertsFlyout.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── AlertsFlyout.test.tsx.snap │ │ │ │ └── alertsFlyout.scss │ │ │ ├── AnomaliesStat │ │ │ │ ├── AnomalyStat.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── AnomalyStat.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── AnomalyStat.test.tsx.snap │ │ │ └── FeatureChart │ │ │ │ ├── FeatureChart.tsx │ │ │ │ └── NoFeaturePrompt.tsx │ │ ├── containers │ │ │ ├── AnomaliesChart.tsx │ │ │ ├── AnomalyDetailsChart.tsx │ │ │ ├── AnomalyHeatmapChart.tsx │ │ │ ├── AnomalyOccurrenceChart.tsx │ │ │ ├── FeatureBreakDown.tsx │ │ │ └── __tests__ │ │ │ │ ├── AnomaliesChart.test.tsx │ │ │ │ ├── AnomalyDetailsChart.test.tsx │ │ │ │ ├── AnomalyHeatmapChart.test.tsx │ │ │ │ ├── AnomalyOccurrenceChart.test.tsx │ │ │ │ ├── FeatureBreakDown.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ ├── AnomalyHeatmapChart.test.tsx.snap │ │ │ │ └── FeatureBreakDown.test.tsx.snap │ │ ├── index.scss │ │ └── utils │ │ │ ├── __tests__ │ │ │ └── anomalyChartUtils.test.ts │ │ │ ├── anomalyChartUtils.ts │ │ │ └── constants.ts │ ├── CreateHistoricalDetector │ │ ├── components │ │ │ ├── Configuration │ │ │ │ ├── Configuration.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── Configuration.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── Configuration.test.tsx.snap │ │ │ │ └── components │ │ │ │ │ ├── ExistingDetectors │ │ │ │ │ ├── ExistingDetectors.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ └── helpers.tsx │ │ │ │ │ ├── Features │ │ │ │ │ └── Features.tsx │ │ │ │ │ ├── OperationSettings │ │ │ │ │ └── OperationSettings.tsx │ │ │ │ │ ├── Timestamp │ │ │ │ │ └── Timestamp.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── ExistingDetectors.test.tsx │ │ │ │ │ ├── Features.test.tsx │ │ │ │ │ ├── OperationSettings.test.tsx │ │ │ │ │ ├── Timestamp.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── ExistingDetectors.test.tsx.snap │ │ │ │ │ ├── Features.test.tsx.snap │ │ │ │ │ ├── OperationSettings.test.tsx.snap │ │ │ │ │ └── Timestamp.test.tsx.snap │ │ │ ├── IndexChooser │ │ │ │ ├── IndexChooser.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── IndexChooser.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── IndexChooser.test.tsx.snap │ │ │ ├── Info │ │ │ │ ├── Info.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── Info.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Info.test.tsx.snap │ │ │ └── TimeRange │ │ │ │ ├── TimeRange.tsx │ │ │ │ └── __tests__ │ │ │ │ └── TimeRange.test.tsx │ │ ├── containers │ │ │ ├── CreateHistoricalDetector.tsx │ │ │ └── __tests__ │ │ │ │ ├── CreateHistoricalDetector.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── CreateHistoricalDetector.test.tsx.snap │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── helpers.ts │ ├── Dashboard │ │ ├── Components │ │ │ ├── AnomaliesDistribution.tsx │ │ │ ├── AnomaliesLiveChart.tsx │ │ │ ├── AnomalousDetectorsList.tsx │ │ │ ├── EmptyDashboard │ │ │ │ ├── EmptyDashboard.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── EmptyDashboard.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── EmptyDashboard.test.tsx.snap │ │ │ └── utils │ │ │ │ └── DashboardHeader.tsx │ │ ├── Container │ │ │ └── DashboardOverview.tsx │ │ ├── index.scss │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── utils.tsx │ ├── DetectorConfig │ │ ├── DetectorConfig.scss │ │ ├── components │ │ │ ├── AdditionalSettings │ │ │ │ └── AdditionalSettings.tsx │ │ │ └── CodeModal │ │ │ │ ├── CodeModal.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── CodeModal.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── CodeModal.test.tsx.snap │ │ ├── containers │ │ │ ├── DetectorConfig.tsx │ │ │ ├── Features.tsx │ │ │ ├── MetaData.tsx │ │ │ ├── __mocks__ │ │ │ │ └── ui │ │ │ │ │ └── chrome.js │ │ │ └── __tests__ │ │ │ │ ├── DetectorConfig.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── DetectorConfig.test.tsx.snap │ │ └── index.scss │ ├── DetectorDetail │ │ ├── components │ │ │ ├── ConfirmModal │ │ │ │ ├── ConfirmModal.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── ConfirmModal.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ConfirmModal.test.tsx.snap │ │ │ ├── DetectorControls │ │ │ │ ├── DetectorControls.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── DetectorControls.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── DetectorControls.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── MonitorCallout │ │ │ │ ├── MonitorCallout.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── MonitorCallout.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── MonitorCallout.test.tsx.snap │ │ ├── containers │ │ │ ├── DetectorDetail.tsx │ │ │ └── __tests__ │ │ │ │ ├── DetectorDetail.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── DetectorDetail.test.tsx.snap │ │ ├── hooks │ │ │ ├── __mocks__ │ │ │ │ └── useFetchMonitorInfo.ts │ │ │ └── useFetchMonitorInfo.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── helpers.ts │ ├── DetectorResults │ │ ├── components │ │ │ ├── DetectorState │ │ │ │ ├── DetectorFeatureRequired.tsx │ │ │ │ ├── DetectorStopped.tsx │ │ │ │ └── DetectorUnknownState.tsx │ │ │ └── ListControls │ │ │ │ ├── ListControls.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── ListControls.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── ListControls.test.tsx.snap │ │ ├── containers │ │ │ ├── AnomalyHistory.tsx │ │ │ ├── AnomalyResults.tsx │ │ │ ├── AnomalyResultsLiveChart.tsx │ │ │ ├── AnomalyResultsTable.tsx │ │ │ └── DetectorStateDetails.tsx │ │ ├── hooks │ │ │ └── useFetchMonitorInfo.ts │ │ ├── index.scss │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── tableUtils.ts │ │ │ └── utils.ts │ ├── DetectorsList │ │ ├── components │ │ │ ├── EmptyMessage │ │ │ │ ├── EmptyMessage.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── EmptyMessage.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── EmptyMessage.test.tsx.snap │ │ │ ├── ListActions │ │ │ │ ├── ListActions.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── ListActions.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ListActions.test.tsx.snap │ │ │ └── ListFilters │ │ │ │ ├── ListFilters.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── ListFilters.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── ListFilters.test.tsx.snap │ │ ├── containers │ │ │ ├── ConfirmActionModals │ │ │ │ ├── ConfirmDeleteDetectorsModal.tsx │ │ │ │ ├── ConfirmStartDetectorsModal.tsx │ │ │ │ ├── ConfirmStopDetectorsModal.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── ConfirmDeleteDetectorsModal.test.tsx │ │ │ │ │ ├── ConfirmStartDetectorsModal.test.tsx │ │ │ │ │ └── ConfirmStopDetectorsModal.test.tsx │ │ │ │ └── utils │ │ │ │ │ └── helpers.tsx │ │ │ └── List │ │ │ │ ├── List.tsx │ │ │ │ └── __tests__ │ │ │ │ └── List.test.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── helpers.test.ts │ │ │ └── tableUtils.test.tsx │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ └── tableUtils.tsx │ ├── EditFeatures │ │ ├── components │ │ │ ├── AggregationSelector │ │ │ │ ├── AggregationSelector.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── AggregationSelector.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── AggregationSelector.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── CategoryField │ │ │ │ ├── CategoryField.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── CategoryField.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── CategoryField.test.tsx.snap │ │ │ ├── ConfirmModal │ │ │ │ ├── SaveFeaturesConfirmModal.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── SaveFeaturesConfirmModal.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── SaveFeaturesConfirmModal.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── CustomAggregation │ │ │ │ ├── CustomAggregation.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── CustomAggregation.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── CustomAggregation.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── FeatureAccordion │ │ │ │ ├── FeatureAccordion.tsx │ │ │ │ └── index.ts │ │ ├── containers │ │ │ ├── EditFeatures.tsx │ │ │ ├── SampleAnomalies.tsx │ │ │ └── utils │ │ │ │ ├── __tests__ │ │ │ │ └── formikToFeatures.test.ts │ │ │ │ └── formikToFeatures.ts │ │ ├── models │ │ │ └── types.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ └── helpers.ts │ ├── HistoricalDetectorDetail │ │ ├── components │ │ │ ├── HistoricalDetectorConfig │ │ │ │ └── HistoricalDetectorConfig.tsx │ │ │ ├── HistoricalDetectorControls │ │ │ │ └── HistoricalDetectorControls.tsx │ │ │ └── __tests__ │ │ │ │ ├── HistoricalDetectorConfig.test.tsx │ │ │ │ ├── HistoricalDetectorControls.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── HistoricalDetectorControls.test.tsx.snap │ │ ├── containers │ │ │ ├── ActionModals │ │ │ │ ├── DeleteHistoricalDetectorModal │ │ │ │ │ └── DeleteHistoricalDetectorModal.tsx │ │ │ │ ├── EditHistoricalDetectorModal │ │ │ │ │ └── EditHistoricalDetectorModal.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── DeleteHistoricalDetectorModal.test.tsx │ │ │ │ │ └── EditHistoricalDetectorModal.test.tsx │ │ │ └── HistoricalDetectorDetail │ │ │ │ ├── HistoricalDetectorDetail.tsx │ │ │ │ └── __tests__ │ │ │ │ └── HistoricalDetectorDetail.test.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.tsx │ │ │ └── helpers.tsx │ ├── HistoricalDetectorList │ │ ├── components │ │ │ ├── EmptyHistoricalDetectorMessage │ │ │ │ └── EmptyHistoricalDetectorMessage.tsx │ │ │ └── HistoricalDetectorFilters │ │ │ │ └── HistoricalDetectorFilters.tsx │ │ ├── containers │ │ │ ├── HistoricalDetectorList.tsx │ │ │ └── __tests__ │ │ │ │ └── HistoricalDetectorList.test.tsx │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.tsx │ │ │ └── helpers.tsx │ ├── SampleData │ │ ├── components │ │ │ ├── SampleDataBox │ │ │ │ ├── SampleDataBox.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── SampleDataBox.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── SampleDataBox.test.tsx.snap │ │ │ ├── SampleDataCallout │ │ │ │ ├── SampleDataCallout.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── SampleDataCallout.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── SampleDataCallout.test.tsx.snap │ │ │ ├── SampleDetailsFlyout │ │ │ │ └── SampleDetailsFlyout.tsx │ │ │ └── SampleIndexDetailsCallout │ │ │ │ └── SampleIndexDetailsCallout.tsx │ │ ├── containers │ │ │ └── SampleData │ │ │ │ ├── SampleData.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── SampleData.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── SampleData.test.tsx.snap │ │ ├── index.ts │ │ └── utils │ │ │ ├── constants.tsx │ │ │ └── helpers.tsx │ ├── createDetector │ │ ├── components │ │ │ ├── DataFilters │ │ │ │ ├── AddFilterButton.tsx │ │ │ │ ├── DataFilter.tsx │ │ │ │ ├── FilterValue.tsx │ │ │ │ ├── QueryDataFilter.tsx │ │ │ │ ├── SimpleFilter.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── AddFilterButton.test.tsx │ │ │ │ │ └── DataFilters.test.tsx │ │ │ │ ├── dataFilter.scss │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── helper.test.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── helpers.ts │ │ │ ├── Datasource │ │ │ │ ├── IndexOption.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── IndexOption.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── IndexOption.test.tsx.snap │ │ │ ├── DetectorInfo │ │ │ │ ├── DetectorInfo.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── DetectorInfo.test.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── DetectorInfo.test.tsx.snap │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── validation.test.ts │ │ │ │ │ └── validation.ts │ │ │ ├── FormattedFormRow │ │ │ │ └── FormattedFormRow.tsx │ │ │ ├── Settings │ │ │ │ └── Settings.tsx │ │ │ └── createDetector.scss │ │ ├── containers │ │ │ ├── CreateDetector.tsx │ │ │ ├── DataSource │ │ │ │ ├── DataSource.tsx │ │ │ │ └── index.ts │ │ │ ├── __tests__ │ │ │ │ ├── CreateDetector.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── CreateDetector.test.tsx.snap │ │ │ ├── models │ │ │ │ └── interfaces.ts │ │ │ └── utils │ │ │ │ ├── __tests__ │ │ │ │ ├── detectorToFormik.test.ts │ │ │ │ └── formikToDetector.test.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── detectorToFormik.ts │ │ │ │ ├── formikToDetector.ts │ │ │ │ ├── helpers.tsx │ │ │ │ └── whereFilters.ts │ │ ├── hooks │ │ │ ├── __mocks__ │ │ │ │ └── useFetchDetectorInfo.ts │ │ │ └── useFetchDetectorInfo.ts │ │ ├── index.scss │ │ └── index.ts │ ├── main │ │ ├── Main.tsx │ │ ├── hooks │ │ │ └── useHideSideNavBar.ts │ │ └── index.ts │ └── utils │ │ ├── SideBar.tsx │ │ ├── __tests__ │ │ ├── constants.ts │ │ ├── helpers.test.ts │ │ └── validate.test.ts │ │ ├── anomalyResultUtils.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ └── validate.ts ├── plugin.ts ├── redux │ ├── configureStore.ts │ ├── middleware │ │ ├── __tests__ │ │ │ └── clientMiddleware.test.ts │ │ ├── clientMiddleware.ts │ │ ├── index.ts │ │ └── types.ts │ ├── reducers │ │ ├── __tests__ │ │ │ ├── ad.test.ts │ │ │ ├── anomalyResults.test.ts │ │ │ ├── elasticsearch.test.ts │ │ │ ├── mapper.test.ts │ │ │ └── utils.ts │ │ ├── ad.ts │ │ ├── adAppReducer.ts │ │ ├── alerting.ts │ │ ├── anomalyResults.ts │ │ ├── elasticsearch.ts │ │ ├── index.ts │ │ ├── liveAnomalyResults.ts │ │ ├── mapper.ts │ │ ├── previewAnomalies.ts │ │ └── sampleData.ts │ ├── selectors │ │ └── elasticsearch.ts │ └── utils │ │ ├── __tests__ │ │ └── handleActions.test.ts │ │ ├── handleActions.ts │ │ ├── index.ts │ │ └── testUtils.ts └── utils │ ├── __tests__ │ └── utils.test.ts │ ├── constants.ts │ ├── kibanaUtils.ts │ └── utils.tsx ├── release-notes ├── opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.10.1.0.md ├── opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.11.0.0.md ├── opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.12.0.0.md ├── opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.13.0.0.md ├── opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.7.0.0.md ├── opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.8.0.0.md └── opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.9.0.0.md ├── server ├── cluster │ ├── ad │ │ ├── adPlugin.ts │ │ ├── alertingPlugin.ts │ │ └── createAdCluster.ts │ └── index.ts ├── index.ts ├── models │ ├── interfaces.ts │ └── types.ts ├── plugin.ts ├── router.ts ├── routes │ ├── ad.ts │ ├── alerting.ts │ ├── elasticsearch.ts │ ├── sampleData.ts │ └── utils │ │ ├── __tests__ │ │ └── adHelpers.test.ts │ │ └── adHelpers.ts ├── sampleData │ ├── rawData │ │ ├── ecommerce.json.gz │ │ ├── hostHealth.json.gz │ │ └── httpResponses.json.gz │ └── utils │ │ └── helpers.ts └── utils │ ├── __tests__ │ └── helpers.test.ts │ ├── constants.ts │ └── helpers.ts ├── test ├── jest.config.js ├── mocks │ ├── coreServicesMock.ts │ ├── httpClientMock.ts │ ├── index.ts │ └── styleMock.ts ├── polyfills.ts ├── polyfills │ └── mutationObserver.js ├── setup.jest.ts └── setupTests.ts ├── tsconfig.json ├── utils └── constants.ts └── yarn.lock /.cypress/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["plugin:cypress/recommended"] 3 | } 4 | -------------------------------------------------------------------------------- /.cypress/fixtures/delete_detector_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/delete_detector_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/empty_detector_index_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/empty_detector_index_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/index_mapping_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/index_mapping_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/multiple_detectors_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/multiple_detectors_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/no_detector_index_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/no_detector_index_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/post_detector_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/post_detector_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/search_index_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/search_index_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/single_running_detector_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/single_running_detector_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/single_stopped_detector_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/single_stopped_detector_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/start_detector_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/fixtures/start_detector_response.json -------------------------------------------------------------------------------- /.cypress/fixtures/stop_detector_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "Stopped detector": "ulgqpXEBqtadYz9j2MHG" 3 | } 4 | -------------------------------------------------------------------------------- /.cypress/integration/ad/dashboard/ad_dashboard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/integration/ad/dashboard/ad_dashboard.spec.ts -------------------------------------------------------------------------------- /.cypress/integration/ad/detectorList/detector_list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/integration/ad/detectorList/detector_list.spec.ts -------------------------------------------------------------------------------- /.cypress/integration/ad/workflow/create_detector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/integration/ad/workflow/create_detector.spec.ts -------------------------------------------------------------------------------- /.cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/plugins/index.js -------------------------------------------------------------------------------- /.cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/support/commands.ts -------------------------------------------------------------------------------- /.cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/support/index.d.ts -------------------------------------------------------------------------------- /.cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/support/index.js -------------------------------------------------------------------------------- /.cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/tsconfig.json -------------------------------------------------------------------------------- /.cypress/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/utils/constants.ts -------------------------------------------------------------------------------- /.cypress/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.cypress/utils/helpers.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/configurations/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/configurations/docker-compose.yml -------------------------------------------------------------------------------- /.github/draft-release-notes-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/draft-release-notes-config.yml -------------------------------------------------------------------------------- /.github/workflows/CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/workflows/CD.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release-notes-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/workflows/draft-release-notes-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/workflows/e2e-tests-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.github/workflows/unit-tests-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.kibana-plugin-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.kibana-plugin-helpers.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/babel.config.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/cypress.json -------------------------------------------------------------------------------- /kibana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/kibana.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/package.json -------------------------------------------------------------------------------- /public/anomaly_detection_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/anomaly_detection_app.tsx -------------------------------------------------------------------------------- /public/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/app.scss -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/ContentPanel/ContentPanel.test.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/ContentPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/ContentPanel/ContentPanel.tsx -------------------------------------------------------------------------------- /public/components/ContentPanel/__snapshots__/ContentPanel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/ContentPanel/__snapshots__/ContentPanel.test.tsx.snap -------------------------------------------------------------------------------- /public/components/ContentPanel/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/ContentPanel/index.scss -------------------------------------------------------------------------------- /public/components/CoreServices/CoreServices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/CoreServices/CoreServices.tsx -------------------------------------------------------------------------------- /public/components/CreateDetectorButtons/CreateDetectorButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/components/CreateDetectorButtons/CreateDetectorButtons.tsx -------------------------------------------------------------------------------- /public/hooks/useDelayedLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/hooks/useDelayedLoader.ts -------------------------------------------------------------------------------- /public/hooks/useSticky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/hooks/useSticky.ts -------------------------------------------------------------------------------- /public/images/anomaly_detection_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/images/anomaly_detection_icon.svg -------------------------------------------------------------------------------- /public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/index.ts -------------------------------------------------------------------------------- /public/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/models/interfaces.ts -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsButton/AlertsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsButton/AlertsButton.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsButton/__tests__/AlertsButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsButton/__tests__/AlertsButton.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsButton/__tests__/__snapshots__/AlertsButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsButton/__tests__/__snapshots__/AlertsButton.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsFlyout/AlertsFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsFlyout/AlertsFlyout.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsFlyout/__tests__/AlertsFlyout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsFlyout/__tests__/AlertsFlyout.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsFlyout/__tests__/__snapshots__/AlertsFlyout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsFlyout/__tests__/__snapshots__/AlertsFlyout.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AlertsFlyout/alertsFlyout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AlertsFlyout/alertsFlyout.scss -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AnomaliesStat/AnomalyStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AnomaliesStat/AnomalyStat.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AnomaliesStat/__tests__/AnomalyStat.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AnomaliesStat/__tests__/AnomalyStat.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/AnomaliesStat/__tests__/__snapshots__/AnomalyStat.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/AnomaliesStat/__tests__/__snapshots__/AnomalyStat.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/FeatureChart/FeatureChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/FeatureChart/FeatureChart.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/components/FeatureChart/NoFeaturePrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/components/FeatureChart/NoFeaturePrompt.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/AnomaliesChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/AnomaliesChart.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/AnomalyDetailsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/AnomalyDetailsChart.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/AnomalyHeatmapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/AnomalyHeatmapChart.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/AnomalyOccurrenceChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/AnomalyOccurrenceChart.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/FeatureBreakDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/FeatureBreakDown.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/AnomaliesChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/AnomaliesChart.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/AnomalyDetailsChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/AnomalyDetailsChart.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/AnomalyHeatmapChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/AnomalyHeatmapChart.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/AnomalyOccurrenceChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/AnomalyOccurrenceChart.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/FeatureBreakDown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/FeatureBreakDown.test.tsx -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/__snapshots__/AnomalyHeatmapChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/__snapshots__/AnomalyHeatmapChart.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/containers/__tests__/__snapshots__/FeatureBreakDown.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/containers/__tests__/__snapshots__/FeatureBreakDown.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/index.scss -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/utils/__tests__/anomalyChartUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/utils/__tests__/anomalyChartUtils.test.ts -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/utils/anomalyChartUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/utils/anomalyChartUtils.ts -------------------------------------------------------------------------------- /public/pages/AnomalyCharts/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/AnomalyCharts/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/Configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/Configuration.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/__tests__/Configuration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/__tests__/Configuration.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/__tests__/__snapshots__/Configuration.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/__tests__/__snapshots__/Configuration.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/ExistingDetectors/ExistingDetectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/ExistingDetectors/ExistingDetectors.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/ExistingDetectors/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/ExistingDetectors/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/Features/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/Features/Features.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/OperationSettings/OperationSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/OperationSettings/OperationSettings.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/Timestamp/Timestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/Timestamp/Timestamp.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/ExistingDetectors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/ExistingDetectors.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/Features.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/Features.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/OperationSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/OperationSettings.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/Timestamp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/Timestamp.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/ExistingDetectors.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/ExistingDetectors.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/Features.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/Features.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/OperationSettings.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/OperationSettings.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/Timestamp.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Configuration/components/__tests__/__snapshots__/Timestamp.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/IndexChooser/IndexChooser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/IndexChooser/IndexChooser.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/IndexChooser/__tests__/IndexChooser.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/IndexChooser/__tests__/IndexChooser.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/IndexChooser/__tests__/__snapshots__/IndexChooser.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/IndexChooser/__tests__/__snapshots__/IndexChooser.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Info/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Info/Info.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Info/__tests__/Info.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Info/__tests__/Info.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/Info/__tests__/__snapshots__/Info.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/Info/__tests__/__snapshots__/Info.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/TimeRange/TimeRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/TimeRange/TimeRange.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/components/TimeRange/__tests__/TimeRange.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/components/TimeRange/__tests__/TimeRange.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/containers/CreateHistoricalDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/containers/CreateHistoricalDetector.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/containers/__tests__/CreateHistoricalDetector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/containers/__tests__/CreateHistoricalDetector.test.tsx -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/containers/__tests__/__snapshots__/CreateHistoricalDetector.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/containers/__tests__/__snapshots__/CreateHistoricalDetector.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/index.ts -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/CreateHistoricalDetector/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/CreateHistoricalDetector/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/AnomaliesDistribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/AnomaliesDistribution.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/AnomaliesLiveChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/AnomaliesLiveChart.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/AnomalousDetectorsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/AnomalousDetectorsList.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/EmptyDashboard/EmptyDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/EmptyDashboard/EmptyDashboard.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/EmptyDashboard/__tests__/EmptyDashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/EmptyDashboard/__tests__/EmptyDashboard.test.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/EmptyDashboard/__tests__/__snapshots__/EmptyDashboard.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/EmptyDashboard/__tests__/__snapshots__/EmptyDashboard.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/Dashboard/Components/utils/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Components/utils/DashboardHeader.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/Container/DashboardOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/Container/DashboardOverview.tsx -------------------------------------------------------------------------------- /public/pages/Dashboard/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/index.scss -------------------------------------------------------------------------------- /public/pages/Dashboard/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/Dashboard/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/Dashboard/utils/utils.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/DetectorConfig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/DetectorConfig.scss -------------------------------------------------------------------------------- /public/pages/DetectorConfig/components/AdditionalSettings/AdditionalSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/components/AdditionalSettings/AdditionalSettings.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/components/CodeModal/CodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/components/CodeModal/CodeModal.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/components/CodeModal/__tests__/CodeModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/components/CodeModal/__tests__/CodeModal.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/components/CodeModal/__tests__/__snapshots__/CodeModal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/components/CodeModal/__tests__/__snapshots__/CodeModal.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/DetectorConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/DetectorConfig.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/Features.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/MetaData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/MetaData.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/__mocks__/ui/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/__mocks__/ui/chrome.js -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/__tests__/DetectorConfig.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/__tests__/DetectorConfig.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorConfig/containers/__tests__/__snapshots__/DetectorConfig.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/containers/__tests__/__snapshots__/DetectorConfig.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorConfig/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorConfig/index.scss -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/ConfirmModal/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/ConfirmModal/ConfirmModal.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/ConfirmModal/__tests__/ConfirmModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/ConfirmModal/__tests__/ConfirmModal.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/ConfirmModal/__tests__/__snapshots__/ConfirmModal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/ConfirmModal/__tests__/__snapshots__/ConfirmModal.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/DetectorControls/DetectorControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/DetectorControls/DetectorControls.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/DetectorControls/__tests__/DetectorControls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/DetectorControls/__tests__/DetectorControls.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/DetectorControls/__tests__/__snapshots__/DetectorControls.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/DetectorControls/__tests__/__snapshots__/DetectorControls.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/DetectorControls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/DetectorControls/index.ts -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/MonitorCallout/MonitorCallout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/MonitorCallout/MonitorCallout.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/MonitorCallout/__tests__/MonitorCallout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/MonitorCallout/__tests__/MonitorCallout.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/components/MonitorCallout/__tests__/__snapshots__/MonitorCallout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/components/MonitorCallout/__tests__/__snapshots__/MonitorCallout.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorDetail/containers/DetectorDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/containers/DetectorDetail.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/containers/__tests__/DetectorDetail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/containers/__tests__/DetectorDetail.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorDetail/containers/__tests__/__snapshots__/DetectorDetail.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/containers/__tests__/__snapshots__/DetectorDetail.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorDetail/hooks/__mocks__/useFetchMonitorInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/hooks/__mocks__/useFetchMonitorInfo.ts -------------------------------------------------------------------------------- /public/pages/DetectorDetail/hooks/useFetchMonitorInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/hooks/useFetchMonitorInfo.ts -------------------------------------------------------------------------------- /public/pages/DetectorDetail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/index.ts -------------------------------------------------------------------------------- /public/pages/DetectorDetail/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/DetectorDetail/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorDetail/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/DetectorState/DetectorFeatureRequired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/DetectorState/DetectorFeatureRequired.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/DetectorState/DetectorStopped.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/DetectorState/DetectorStopped.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/DetectorState/DetectorUnknownState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/DetectorState/DetectorUnknownState.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/ListControls/ListControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/ListControls/ListControls.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/ListControls/__tests__/ListControls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/ListControls/__tests__/ListControls.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/components/ListControls/__tests__/__snapshots__/ListControls.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/components/ListControls/__tests__/__snapshots__/ListControls.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorResults/containers/AnomalyHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/containers/AnomalyHistory.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/containers/AnomalyResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/containers/AnomalyResults.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/containers/AnomalyResultsLiveChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/containers/AnomalyResultsLiveChart.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/containers/AnomalyResultsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/containers/AnomalyResultsTable.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/containers/DetectorStateDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/containers/DetectorStateDetails.tsx -------------------------------------------------------------------------------- /public/pages/DetectorResults/hooks/useFetchMonitorInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/hooks/useFetchMonitorInfo.ts -------------------------------------------------------------------------------- /public/pages/DetectorResults/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/index.scss -------------------------------------------------------------------------------- /public/pages/DetectorResults/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/index.ts -------------------------------------------------------------------------------- /public/pages/DetectorResults/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/DetectorResults/utils/tableUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/utils/tableUtils.ts -------------------------------------------------------------------------------- /public/pages/DetectorResults/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorResults/utils/utils.ts -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/EmptyMessage/EmptyMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/EmptyMessage/EmptyMessage.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/EmptyMessage/__tests__/EmptyMessage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/EmptyMessage/__tests__/EmptyMessage.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/EmptyMessage/__tests__/__snapshots__/EmptyMessage.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/EmptyMessage/__tests__/__snapshots__/EmptyMessage.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListActions/ListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListActions/ListActions.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListActions/__tests__/ListActions.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListActions/__tests__/ListActions.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListActions/__tests__/__snapshots__/ListActions.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListActions/__tests__/__snapshots__/ListActions.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListFilters/ListFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListFilters/ListFilters.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListFilters/__tests__/ListFilters.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListFilters/__tests__/ListFilters.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/components/ListFilters/__tests__/__snapshots__/ListFilters.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/components/ListFilters/__tests__/__snapshots__/ListFilters.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmDeleteDetectorsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmDeleteDetectorsModal.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmStartDetectorsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmStartDetectorsModal.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmStopDetectorsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/ConfirmStopDetectorsModal.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmDeleteDetectorsModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmDeleteDetectorsModal.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmStartDetectorsModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmStartDetectorsModal.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmStopDetectorsModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/__tests__/ConfirmStopDetectorsModal.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/ConfirmActionModals/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/List/List.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/containers/List/__tests__/List.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/containers/List/__tests__/List.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/index.ts -------------------------------------------------------------------------------- /public/pages/DetectorsList/utils/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/utils/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /public/pages/DetectorsList/utils/__tests__/tableUtils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/utils/__tests__/tableUtils.test.tsx -------------------------------------------------------------------------------- /public/pages/DetectorsList/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/DetectorsList/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/DetectorsList/utils/tableUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/DetectorsList/utils/tableUtils.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/AggregationSelector/AggregationSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/AggregationSelector/AggregationSelector.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/AggregationSelector/__tests__/AggregationSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/AggregationSelector/__tests__/AggregationSelector.test.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/AggregationSelector/__tests__/__snapshots__/AggregationSelector.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/AggregationSelector/__tests__/__snapshots__/AggregationSelector.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/AggregationSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/AggregationSelector/index.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CategoryField/CategoryField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CategoryField/CategoryField.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CategoryField/__tests__/CategoryField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CategoryField/__tests__/CategoryField.test.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CategoryField/__tests__/__snapshots__/CategoryField.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CategoryField/__tests__/__snapshots__/CategoryField.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/ConfirmModal/SaveFeaturesConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/ConfirmModal/SaveFeaturesConfirmModal.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/ConfirmModal/__tests__/SaveFeaturesConfirmModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/ConfirmModal/__tests__/SaveFeaturesConfirmModal.test.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/ConfirmModal/__tests__/__snapshots__/SaveFeaturesConfirmModal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/ConfirmModal/__tests__/__snapshots__/SaveFeaturesConfirmModal.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/ConfirmModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/ConfirmModal/index.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CustomAggregation/CustomAggregation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CustomAggregation/CustomAggregation.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CustomAggregation/__tests__/CustomAggregation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CustomAggregation/__tests__/CustomAggregation.test.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CustomAggregation/__tests__/__snapshots__/CustomAggregation.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CustomAggregation/__tests__/__snapshots__/CustomAggregation.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/CustomAggregation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/CustomAggregation/index.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/FeatureAccordion/FeatureAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/FeatureAccordion/FeatureAccordion.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/components/FeatureAccordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/components/FeatureAccordion/index.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/containers/EditFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/containers/EditFeatures.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/containers/SampleAnomalies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/containers/SampleAnomalies.tsx -------------------------------------------------------------------------------- /public/pages/EditFeatures/containers/utils/__tests__/formikToFeatures.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/containers/utils/__tests__/formikToFeatures.test.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/containers/utils/formikToFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/containers/utils/formikToFeatures.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/models/types.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/EditFeatures/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/EditFeatures/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/components/HistoricalDetectorConfig/HistoricalDetectorConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/components/HistoricalDetectorConfig/HistoricalDetectorConfig.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/components/HistoricalDetectorControls/HistoricalDetectorControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/components/HistoricalDetectorControls/HistoricalDetectorControls.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/components/__tests__/HistoricalDetectorConfig.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/components/__tests__/HistoricalDetectorConfig.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/components/__tests__/HistoricalDetectorControls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/components/__tests__/HistoricalDetectorControls.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/components/__tests__/__snapshots__/HistoricalDetectorControls.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/components/__tests__/__snapshots__/HistoricalDetectorControls.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/ActionModals/DeleteHistoricalDetectorModal/DeleteHistoricalDetectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/ActionModals/DeleteHistoricalDetectorModal/DeleteHistoricalDetectorModal.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/ActionModals/EditHistoricalDetectorModal/EditHistoricalDetectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/ActionModals/EditHistoricalDetectorModal/EditHistoricalDetectorModal.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/ActionModals/__tests__/DeleteHistoricalDetectorModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/ActionModals/__tests__/DeleteHistoricalDetectorModal.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/ActionModals/__tests__/EditHistoricalDetectorModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/ActionModals/__tests__/EditHistoricalDetectorModal.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/HistoricalDetectorDetail/HistoricalDetectorDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/HistoricalDetectorDetail/HistoricalDetectorDetail.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/containers/HistoricalDetectorDetail/__tests__/HistoricalDetectorDetail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/containers/HistoricalDetectorDetail/__tests__/HistoricalDetectorDetail.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/index.ts -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/utils/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/utils/constants.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorDetail/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorDetail/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/components/EmptyHistoricalDetectorMessage/EmptyHistoricalDetectorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/components/EmptyHistoricalDetectorMessage/EmptyHistoricalDetectorMessage.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/components/HistoricalDetectorFilters/HistoricalDetectorFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/components/HistoricalDetectorFilters/HistoricalDetectorFilters.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/containers/HistoricalDetectorList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/containers/HistoricalDetectorList.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/containers/__tests__/HistoricalDetectorList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/containers/__tests__/HistoricalDetectorList.test.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/index.ts -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/utils/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/utils/constants.tsx -------------------------------------------------------------------------------- /public/pages/HistoricalDetectorList/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/HistoricalDetectorList/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataBox/SampleDataBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataBox/SampleDataBox.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataBox/__tests__/SampleDataBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataBox/__tests__/SampleDataBox.test.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataBox/__tests__/__snapshots__/SampleDataBox.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataBox/__tests__/__snapshots__/SampleDataBox.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataCallout/SampleDataCallout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataCallout/SampleDataCallout.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataCallout/__tests__/SampleDataCallout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataCallout/__tests__/SampleDataCallout.test.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDataCallout/__tests__/__snapshots__/SampleDataCallout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDataCallout/__tests__/__snapshots__/SampleDataCallout.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleDetailsFlyout/SampleDetailsFlyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleDetailsFlyout/SampleDetailsFlyout.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/components/SampleIndexDetailsCallout/SampleIndexDetailsCallout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/components/SampleIndexDetailsCallout/SampleIndexDetailsCallout.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/containers/SampleData/SampleData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/containers/SampleData/SampleData.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/containers/SampleData/__tests__/SampleData.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/containers/SampleData/__tests__/SampleData.test.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/containers/SampleData/__tests__/__snapshots__/SampleData.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/containers/SampleData/__tests__/__snapshots__/SampleData.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/SampleData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/index.ts -------------------------------------------------------------------------------- /public/pages/SampleData/utils/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/utils/constants.tsx -------------------------------------------------------------------------------- /public/pages/SampleData/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/SampleData/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/AddFilterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/AddFilterButton.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/DataFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/DataFilter.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/FilterValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/FilterValue.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/QueryDataFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/QueryDataFilter.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/SimpleFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/SimpleFilter.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/__tests__/AddFilterButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/__tests__/AddFilterButton.test.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/__tests__/DataFilters.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/__tests__/DataFilters.test.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/dataFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/dataFilter.scss -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/index.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/utils/__tests__/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/utils/__tests__/helper.test.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/utils/constant.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/DataFilters/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DataFilters/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/Datasource/IndexOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/Datasource/IndexOption.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/Datasource/__tests__/IndexOption.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/Datasource/__tests__/IndexOption.test.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/Datasource/__tests__/__snapshots__/IndexOption.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/Datasource/__tests__/__snapshots__/IndexOption.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/DetectorInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/DetectorInfo.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/__tests__/DetectorInfo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/__tests__/DetectorInfo.test.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/__tests__/__snapshots__/DetectorInfo.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/__tests__/__snapshots__/DetectorInfo.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/index.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/utils/__tests__/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/utils/__tests__/validation.test.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/DetectorInfo/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/DetectorInfo/utils/validation.ts -------------------------------------------------------------------------------- /public/pages/createDetector/components/FormattedFormRow/FormattedFormRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/FormattedFormRow/FormattedFormRow.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/Settings/Settings.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/components/createDetector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/components/createDetector.scss -------------------------------------------------------------------------------- /public/pages/createDetector/containers/CreateDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/CreateDetector.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/containers/DataSource/DataSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/DataSource/DataSource.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/containers/DataSource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/DataSource/index.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/__tests__/CreateDetector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/__tests__/CreateDetector.test.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/containers/__tests__/__snapshots__/CreateDetector.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/__tests__/__snapshots__/CreateDetector.test.tsx.snap -------------------------------------------------------------------------------- /public/pages/createDetector/containers/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/models/interfaces.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/__tests__/detectorToFormik.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/__tests__/detectorToFormik.test.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/__tests__/formikToDetector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/__tests__/formikToDetector.test.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/constant.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/detectorToFormik.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/detectorToFormik.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/formikToDetector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/formikToDetector.ts -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/helpers.tsx -------------------------------------------------------------------------------- /public/pages/createDetector/containers/utils/whereFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/containers/utils/whereFilters.ts -------------------------------------------------------------------------------- /public/pages/createDetector/hooks/__mocks__/useFetchDetectorInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/hooks/__mocks__/useFetchDetectorInfo.ts -------------------------------------------------------------------------------- /public/pages/createDetector/hooks/useFetchDetectorInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/hooks/useFetchDetectorInfo.ts -------------------------------------------------------------------------------- /public/pages/createDetector/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/index.scss -------------------------------------------------------------------------------- /public/pages/createDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/createDetector/index.ts -------------------------------------------------------------------------------- /public/pages/main/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/main/Main.tsx -------------------------------------------------------------------------------- /public/pages/main/hooks/useHideSideNavBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/main/hooks/useHideSideNavBar.ts -------------------------------------------------------------------------------- /public/pages/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/main/index.ts -------------------------------------------------------------------------------- /public/pages/utils/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/SideBar.tsx -------------------------------------------------------------------------------- /public/pages/utils/__tests__/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/__tests__/constants.ts -------------------------------------------------------------------------------- /public/pages/utils/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /public/pages/utils/__tests__/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/__tests__/validate.test.ts -------------------------------------------------------------------------------- /public/pages/utils/anomalyResultUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/anomalyResultUtils.ts -------------------------------------------------------------------------------- /public/pages/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/constants.ts -------------------------------------------------------------------------------- /public/pages/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/helpers.ts -------------------------------------------------------------------------------- /public/pages/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/pages/utils/validate.ts -------------------------------------------------------------------------------- /public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/plugin.ts -------------------------------------------------------------------------------- /public/redux/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/configureStore.ts -------------------------------------------------------------------------------- /public/redux/middleware/__tests__/clientMiddleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/middleware/__tests__/clientMiddleware.test.ts -------------------------------------------------------------------------------- /public/redux/middleware/clientMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/middleware/clientMiddleware.ts -------------------------------------------------------------------------------- /public/redux/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/middleware/index.ts -------------------------------------------------------------------------------- /public/redux/middleware/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/middleware/types.ts -------------------------------------------------------------------------------- /public/redux/reducers/__tests__/ad.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/__tests__/ad.test.ts -------------------------------------------------------------------------------- /public/redux/reducers/__tests__/anomalyResults.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/__tests__/anomalyResults.test.ts -------------------------------------------------------------------------------- /public/redux/reducers/__tests__/elasticsearch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/__tests__/elasticsearch.test.ts -------------------------------------------------------------------------------- /public/redux/reducers/__tests__/mapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/__tests__/mapper.test.ts -------------------------------------------------------------------------------- /public/redux/reducers/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/__tests__/utils.ts -------------------------------------------------------------------------------- /public/redux/reducers/ad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/ad.ts -------------------------------------------------------------------------------- /public/redux/reducers/adAppReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/adAppReducer.ts -------------------------------------------------------------------------------- /public/redux/reducers/alerting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/alerting.ts -------------------------------------------------------------------------------- /public/redux/reducers/anomalyResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/anomalyResults.ts -------------------------------------------------------------------------------- /public/redux/reducers/elasticsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/elasticsearch.ts -------------------------------------------------------------------------------- /public/redux/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/index.ts -------------------------------------------------------------------------------- /public/redux/reducers/liveAnomalyResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/liveAnomalyResults.ts -------------------------------------------------------------------------------- /public/redux/reducers/mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/mapper.ts -------------------------------------------------------------------------------- /public/redux/reducers/previewAnomalies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/previewAnomalies.ts -------------------------------------------------------------------------------- /public/redux/reducers/sampleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/reducers/sampleData.ts -------------------------------------------------------------------------------- /public/redux/selectors/elasticsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/selectors/elasticsearch.ts -------------------------------------------------------------------------------- /public/redux/utils/__tests__/handleActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/utils/__tests__/handleActions.test.ts -------------------------------------------------------------------------------- /public/redux/utils/handleActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/utils/handleActions.ts -------------------------------------------------------------------------------- /public/redux/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/utils/index.ts -------------------------------------------------------------------------------- /public/redux/utils/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/redux/utils/testUtils.ts -------------------------------------------------------------------------------- /public/utils/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/utils/__tests__/utils.test.ts -------------------------------------------------------------------------------- /public/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/utils/constants.ts -------------------------------------------------------------------------------- /public/utils/kibanaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/utils/kibanaUtils.ts -------------------------------------------------------------------------------- /public/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/public/utils/utils.tsx -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.10.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.10.1.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.11.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch-anomaly-detection-kibana-plugin.release-notes-1.13.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.7.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.8.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.9.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/release-notes/opendistro-for-elasticsearch.anomaly-detection-kibana-plugin.release-notes-1.9.0.0.md -------------------------------------------------------------------------------- /server/cluster/ad/adPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/cluster/ad/adPlugin.ts -------------------------------------------------------------------------------- /server/cluster/ad/alertingPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/cluster/ad/alertingPlugin.ts -------------------------------------------------------------------------------- /server/cluster/ad/createAdCluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/cluster/ad/createAdCluster.ts -------------------------------------------------------------------------------- /server/cluster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/cluster/index.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/models/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/models/interfaces.ts -------------------------------------------------------------------------------- /server/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/models/types.ts -------------------------------------------------------------------------------- /server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/plugin.ts -------------------------------------------------------------------------------- /server/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/router.ts -------------------------------------------------------------------------------- /server/routes/ad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/ad.ts -------------------------------------------------------------------------------- /server/routes/alerting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/alerting.ts -------------------------------------------------------------------------------- /server/routes/elasticsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/elasticsearch.ts -------------------------------------------------------------------------------- /server/routes/sampleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/sampleData.ts -------------------------------------------------------------------------------- /server/routes/utils/__tests__/adHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/utils/__tests__/adHelpers.test.ts -------------------------------------------------------------------------------- /server/routes/utils/adHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/routes/utils/adHelpers.ts -------------------------------------------------------------------------------- /server/sampleData/rawData/ecommerce.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/sampleData/rawData/ecommerce.json.gz -------------------------------------------------------------------------------- /server/sampleData/rawData/hostHealth.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/sampleData/rawData/hostHealth.json.gz -------------------------------------------------------------------------------- /server/sampleData/rawData/httpResponses.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/sampleData/rawData/httpResponses.json.gz -------------------------------------------------------------------------------- /server/sampleData/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/sampleData/utils/helpers.ts -------------------------------------------------------------------------------- /server/utils/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/utils/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /server/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/utils/constants.ts -------------------------------------------------------------------------------- /server/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/server/utils/helpers.ts -------------------------------------------------------------------------------- /test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/jest.config.js -------------------------------------------------------------------------------- /test/mocks/coreServicesMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/mocks/coreServicesMock.ts -------------------------------------------------------------------------------- /test/mocks/httpClientMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/mocks/httpClientMock.ts -------------------------------------------------------------------------------- /test/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/mocks/index.ts -------------------------------------------------------------------------------- /test/mocks/styleMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/mocks/styleMock.ts -------------------------------------------------------------------------------- /test/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/polyfills.ts -------------------------------------------------------------------------------- /test/polyfills/mutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/polyfills/mutationObserver.js -------------------------------------------------------------------------------- /test/setup.jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/setup.jest.ts -------------------------------------------------------------------------------- /test/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/test/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/utils/constants.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/anomaly-detection-kibana-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------