├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── kibana-reports-release-workflow.yml │ ├── kibana-reports-test-and-build-workflow.yml │ ├── reports-scheduler-release-workflow.yml │ └── reports-scheduler-test-and-build-workflow.yml ├── .gitignore ├── README.md ├── kibana-reports ├── .babelrc ├── .cypress │ ├── integration │ │ ├── 01-create.spec.ts │ │ ├── 02-edit.spec.ts │ │ ├── 03-details.spec.ts │ │ └── 04-download.spec.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ ├── constants.js │ │ └── index.js │ └── tsconfig.json ├── .eslintrc ├── .gitignore ├── .i18nrc.json ├── .kibana-plugin-helpers.json ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── THIRD-PARTY ├── common │ └── index.ts ├── cypress.json ├── docs │ ├── dev │ │ ├── Kibana-Reporting-Design-Proposal.md │ │ ├── img │ │ │ ├── SQL_query_report.png │ │ │ ├── arch_1.png │ │ │ ├── arch_2.png │ │ │ ├── arch_3.png │ │ │ ├── dashboard_reports.png │ │ │ ├── data_model.png │ │ │ ├── delivery.png │ │ │ ├── matrix.png │ │ │ └── workflows.png │ │ └── resources │ │ │ ├── SQL_query_report.drawio │ │ │ ├── arch_1.drawio │ │ │ ├── arch_2.drawio │ │ │ ├── arch_3.drawio │ │ │ ├── dashboard_reports.drawio │ │ │ ├── data_model.drawio │ │ │ ├── delivery.drawio │ │ │ └── workflows.drawio │ └── ux │ │ ├── Kibana-Reporting-UX-documentation.md │ │ └── img │ │ ├── flows │ │ ├── 0.0.1_key-user-flows.png │ │ ├── 0.0.1_key-user-flows@2x.png │ │ ├── 0.0.2_key-screens.png │ │ └── 0.0.2_key-screens@2x.png │ │ ├── screens │ │ ├── 0.1.01_dashboard-download.png │ │ ├── 0.1.01_dashboard-download@2x.png │ │ ├── 0.1.02_dashboard-share.png │ │ ├── 0.1.02_dashboard-share@2x.png │ │ ├── 0.1.03_dashboard-toasts.png │ │ ├── 0.1.03_dashboard-toasts@2x.png │ │ ├── 0.1.0_dashboard.png │ │ ├── 0.1.0_dashboard@2x.png │ │ ├── 0.2.0_reporting_empty-state.png │ │ ├── 0.2.0_reporting_empty-state@2x.png │ │ ├── 0.2.1_reporting.png │ │ ├── 0.2.1_reporting@2x.png │ │ ├── 0.3.0_report.png │ │ ├── 0.3.0_report@2x.png │ │ ├── 0.3.1_report_share.png │ │ ├── 0.3.1_report_share@2x.png │ │ ├── 0.4.0_report-definition.png │ │ ├── 0.4.0_report-definition@2x.png │ │ ├── 0.5.0_create-report-definition.png │ │ ├── 0.5.0_create-report-definition@2x.png │ │ ├── 0.6.0_edit-report-definition.png │ │ └── 0.6.0_edit-report-definition@2x.png │ │ └── supporting │ │ ├── 0.1.04_modals_generating-downloading.png │ │ ├── 0.1.04_modals_generating-downloading@2x.png │ │ ├── 0.5.1_report-settings.png │ │ ├── 0.5.1_report-settings@2x.png │ │ ├── 0.5.2_report-trigger.png │ │ ├── 0.5.2_report-trigger@2x.png │ │ ├── 0.5.3_delivery-settings.png │ │ └── 0.5.3_delivery-settings@2x.png ├── kibana.json ├── package.json ├── public │ ├── app.scss │ ├── application.tsx │ ├── components │ │ ├── app.tsx │ │ ├── context_menu │ │ │ ├── context_menu.js │ │ │ ├── context_menu_helpers.js │ │ │ └── context_menu_ui.js │ │ ├── main │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── main.test.tsx.snap │ │ │ │ │ ├── report_definitions_table.test.tsx.snap │ │ │ │ │ └── reports_table.test.tsx.snap │ │ │ │ ├── __utils__ │ │ │ │ │ └── main_utils_test_utils.tsx │ │ │ │ ├── main.test.tsx │ │ │ │ ├── main_utils.test.tsx │ │ │ │ ├── report_definitions_table.test.tsx │ │ │ │ └── reports_table.test.tsx │ │ │ ├── index.ts │ │ │ ├── loading_modal │ │ │ │ ├── index.ts │ │ │ │ └── loading_modal.tsx │ │ │ ├── main.tsx │ │ │ ├── main_utils.tsx │ │ │ ├── report_definition_details │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── report_definition_details.test.tsx.snap │ │ │ │ │ └── report_definition_details.test.tsx │ │ │ │ └── report_definition_details.tsx │ │ │ ├── report_definitions_table.tsx │ │ │ ├── report_details │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── report_details.test.tsx.snap │ │ │ │ │ └── report_details.test.tsx │ │ │ │ └── report_details.tsx │ │ │ └── reports_table.tsx │ │ ├── report_definitions │ │ │ ├── create │ │ │ │ ├── create_report_definition.tsx │ │ │ │ └── index.ts │ │ │ ├── delivery │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── delivery.test.tsx.snap │ │ │ │ │ │ └── email.test.tsx.snap │ │ │ │ │ ├── delivery.test.tsx │ │ │ │ │ └── email.test.tsx │ │ │ │ ├── delivery.tsx │ │ │ │ ├── delivery_constants.tsx │ │ │ │ ├── email.tsx │ │ │ │ ├── index.ts │ │ │ │ └── kibana_user.tsx │ │ │ ├── edit │ │ │ │ ├── edit_report_definition.tsx │ │ │ │ └── index.ts │ │ │ ├── report_settings │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── report_settings.test.tsx.snap │ │ │ │ │ ├── report_settings.test.tsx │ │ │ │ │ └── report_settings_helpers.test.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── report_settings.tsx │ │ │ │ ├── report_settings_constants.tsx │ │ │ │ ├── report_settings_helpers.tsx │ │ │ │ └── time_range.tsx │ │ │ ├── report_trigger │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── report_trigger.test.tsx.snap │ │ │ │ │ └── report_trigger.test.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── report_trigger.tsx │ │ │ │ ├── report_trigger_constants.tsx │ │ │ │ └── timezone.tsx │ │ │ └── utils │ │ │ │ ├── index.ts │ │ │ │ └── utils.tsx │ │ └── utils │ │ │ └── utils.tsx │ ├── hack.js │ ├── index.scss │ ├── index.ts │ ├── plugin.ts │ └── types.ts ├── rendering-engine │ └── headless-chrome │ │ ├── README.md │ │ └── build_headless_chrome.sh ├── server │ ├── backend │ │ ├── opendistro-es-reports-plugin.ts │ │ └── opendistro-notification-plugin.ts │ ├── executor │ │ ├── createScheduledReport.ts │ │ └── executor.ts │ ├── index.ts │ ├── model │ │ ├── backendModel.ts │ │ └── index.ts │ ├── plugin.ts │ ├── routes │ │ ├── index.ts │ │ ├── lib │ │ │ ├── createReport.ts │ │ │ ├── createReportDefinition.ts │ │ │ ├── deliverReport.ts │ │ │ ├── saveReport.ts │ │ │ ├── updateReportDefinition.ts │ │ │ └── updateReportState.ts │ │ ├── metric.ts │ │ ├── report.ts │ │ ├── reportDefinition.ts │ │ ├── reportSource.ts │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── metricHelper.test.ts │ │ │ ├── savedSearchReportHelper.test.ts │ │ │ └── visualReportHelper.test.ts │ │ │ ├── constants.ts │ │ │ ├── converters │ │ │ ├── __tests__ │ │ │ │ ├── backendToUi.test.ts │ │ │ │ └── uiToBackend.test.ts │ │ │ ├── backendToUi.ts │ │ │ └── uiToBackend.ts │ │ │ ├── dataReportHelpers.ts │ │ │ ├── helpers.ts │ │ │ ├── metricHelper.ts │ │ │ ├── notification │ │ │ ├── deliveryContentHelper.ts │ │ │ └── notification_content_template │ │ │ │ ├── email_content_template.html │ │ │ │ └── logo.png │ │ │ ├── savedSearchReportHelper.ts │ │ │ ├── types.ts │ │ │ └── visual_report │ │ │ ├── footer_template.html │ │ │ ├── header_template.html │ │ │ ├── style.css │ │ │ └── visualReportHelper.ts │ ├── types.ts │ └── utils │ │ ├── __tests__ │ │ └── validationHelper.test.ts │ │ ├── constants.ts │ │ └── validationHelper.ts ├── test │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── httpMockClient.js │ ├── jest.config.js │ ├── propsMock.js │ ├── setup.jest.ts │ └── setupTests.ts ├── translations │ ├── pl.json │ └── zh-CN.json ├── tsconfig.json └── yarn.lock ├── release-notes ├── opendistro-for-elasticsearch-kibana-reports.release-notes-1.12.0.0.md └── opendistro-for-elasticsearch-kibana-reports.release-notes-1.13.0.0.md └── reports-scheduler ├── .editorconfig ├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── LICENSE.txt ├── NOTICE ├── build-tools ├── esplugin-coverage.gradle └── pkgbuild.gradle ├── build.gradle ├── config └── checkstyle │ ├── checkstyle.xml │ ├── google_checks.xml │ └── suppressions.xml ├── detekt.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── release-notes └── create_release_notes.py ├── settings.gradle └── src ├── main ├── config │ └── reports-scheduler.yml ├── java │ └── com │ │ └── amazon │ │ └── opendistroforelasticsearch │ │ └── reportsscheduler │ │ └── metrics │ │ ├── BasicCounter.java │ │ ├── Counter.java │ │ ├── Metrics.java │ │ └── RollingCounter.java ├── kotlin │ └── com │ │ └── amazon │ │ └── opendistroforelasticsearch │ │ └── reportsscheduler │ │ ├── ReportsSchedulerPlugin.kt │ │ ├── action │ │ ├── CreateReportDefinitionAction.kt │ │ ├── DeleteReportDefinitionAction.kt │ │ ├── GetAllReportDefinitionsAction.kt │ │ ├── GetAllReportInstancesAction.kt │ │ ├── GetReportDefinitionAction.kt │ │ ├── GetReportInstanceAction.kt │ │ ├── InContextReportCreateAction.kt │ │ ├── OnDemandReportCreateAction.kt │ │ ├── PluginBaseAction.kt │ │ ├── PollReportInstanceAction.kt │ │ ├── ReportDefinitionActions.kt │ │ ├── ReportInstanceActions.kt │ │ ├── UpdateReportDefinitionAction.kt │ │ └── UpdateReportInstanceStatusAction.kt │ │ ├── index │ │ ├── ReportDefinitionsIndex.kt │ │ └── ReportInstancesIndex.kt │ │ ├── model │ │ ├── BaseResponse.kt │ │ ├── CreateReportDefinitionRequest.kt │ │ ├── CreateReportDefinitionResponse.kt │ │ ├── DeleteReportDefinitionRequest.kt │ │ ├── DeleteReportDefinitionResponse.kt │ │ ├── GetAllReportDefinitionsRequest.kt │ │ ├── GetAllReportDefinitionsResponse.kt │ │ ├── GetAllReportInstancesRequest.kt │ │ ├── GetAllReportInstancesResponse.kt │ │ ├── GetReportDefinitionRequest.kt │ │ ├── GetReportDefinitionResponse.kt │ │ ├── GetReportInstanceRequest.kt │ │ ├── GetReportInstanceResponse.kt │ │ ├── InContextReportCreateRequest.kt │ │ ├── InContextReportCreateResponse.kt │ │ ├── OnDemandReportCreateRequest.kt │ │ ├── OnDemandReportCreateResponse.kt │ │ ├── PollReportInstanceRequest.kt │ │ ├── PollReportInstanceResponse.kt │ │ ├── ReportDefinition.kt │ │ ├── ReportDefinitionDetails.kt │ │ ├── ReportDefinitionDetailsDoc.kt │ │ ├── ReportDefinitionDetailsSearchResults.kt │ │ ├── ReportInstance.kt │ │ ├── ReportInstanceDoc.kt │ │ ├── ReportInstanceSearchResults.kt │ │ ├── RestTag.kt │ │ ├── SearchResults.kt │ │ ├── UpdateReportDefinitionRequest.kt │ │ ├── UpdateReportDefinitionResponse.kt │ │ ├── UpdateReportInstanceStatusRequest.kt │ │ └── UpdateReportInstanceStatusResponse.kt │ │ ├── resthandler │ │ ├── OnDemandReportRestHandler.kt │ │ ├── PluginBaseHandler.kt │ │ ├── ReportDefinitionListRestHandler.kt │ │ ├── ReportDefinitionRestHandler.kt │ │ ├── ReportInstanceListRestHandler.kt │ │ ├── ReportInstancePollRestHandler.kt │ │ ├── ReportInstanceRestHandler.kt │ │ ├── ReportStatsRestHandler.kt │ │ └── RestResponseToXContentListener.kt │ │ ├── scheduler │ │ ├── ReportDefinitionJobParser.kt │ │ └── ReportDefinitionJobRunner.kt │ │ ├── security │ │ ├── SecurityAccess.kt │ │ └── UserAccessManager.kt │ │ ├── settings │ │ └── PluginSettings.kt │ │ └── util │ │ ├── Helpers.kt │ │ ├── OpenForTesting.kt │ │ └── SecureIndexClient.kt ├── plugin-metadata │ └── plugin-security.policy └── resources │ ├── META-INF │ └── services │ │ └── com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension │ ├── report-definitions-mapping.yml │ ├── report-definitions-settings.yml │ ├── report-instances-mapping.yml │ └── report-instances-settings.yml └── test ├── java └── com │ └── amazon │ └── opendistroforelasticsearch │ └── reportsscheduler │ └── metrics │ ├── BasicCounterTest.java │ └── RollingCounterTest.java ├── kotlin └── com │ └── amazon │ └── opendistroforelasticsearch │ └── reportsscheduler │ ├── PluginRestTestCase.kt │ ├── ReportSchedularPluginTests.kt │ ├── ReportsSchedulerPluginIT.kt │ ├── TestHelpers.kt │ └── rest │ ├── InContextMenuReportGenerationIT.kt │ ├── OnDemandReportGenerationIT.kt │ ├── ReportDefinitionIT.kt │ └── ReportInstanceIT.kt └── resources └── job-scheduler └── opendistro-job-scheduler-1.13.0.0.zip /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/kibana-reports-release-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.github/workflows/kibana-reports-release-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/kibana-reports-test-and-build-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.github/workflows/kibana-reports-test-and-build-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/reports-scheduler-release-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.github/workflows/reports-scheduler-release-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/reports-scheduler-test-and-build-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.github/workflows/reports-scheduler-test-and-build-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/README.md -------------------------------------------------------------------------------- /kibana-reports/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.babelrc -------------------------------------------------------------------------------- /kibana-reports/.cypress/integration/01-create.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/integration/01-create.spec.ts -------------------------------------------------------------------------------- /kibana-reports/.cypress/integration/02-edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/integration/02-edit.spec.ts -------------------------------------------------------------------------------- /kibana-reports/.cypress/integration/03-details.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/integration/03-details.spec.ts -------------------------------------------------------------------------------- /kibana-reports/.cypress/integration/04-download.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/integration/04-download.spec.ts -------------------------------------------------------------------------------- /kibana-reports/.cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/plugins/index.js -------------------------------------------------------------------------------- /kibana-reports/.cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/support/commands.js -------------------------------------------------------------------------------- /kibana-reports/.cypress/support/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/support/constants.js -------------------------------------------------------------------------------- /kibana-reports/.cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/support/index.js -------------------------------------------------------------------------------- /kibana-reports/.cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.cypress/tsconfig.json -------------------------------------------------------------------------------- /kibana-reports/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.eslintrc -------------------------------------------------------------------------------- /kibana-reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.gitignore -------------------------------------------------------------------------------- /kibana-reports/.i18nrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.i18nrc.json -------------------------------------------------------------------------------- /kibana-reports/.kibana-plugin-helpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.kibana-plugin-helpers.json -------------------------------------------------------------------------------- /kibana-reports/.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.lintstagedrc -------------------------------------------------------------------------------- /kibana-reports/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.prettierignore -------------------------------------------------------------------------------- /kibana-reports/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/.prettierrc -------------------------------------------------------------------------------- /kibana-reports/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /kibana-reports/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/CONTRIBUTING.md -------------------------------------------------------------------------------- /kibana-reports/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/LICENSE.txt -------------------------------------------------------------------------------- /kibana-reports/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/NOTICE.txt -------------------------------------------------------------------------------- /kibana-reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/README.md -------------------------------------------------------------------------------- /kibana-reports/THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/THIRD-PARTY -------------------------------------------------------------------------------- /kibana-reports/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/common/index.ts -------------------------------------------------------------------------------- /kibana-reports/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/cypress.json -------------------------------------------------------------------------------- /kibana-reports/docs/dev/Kibana-Reporting-Design-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/Kibana-Reporting-Design-Proposal.md -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/SQL_query_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/SQL_query_report.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/arch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/arch_1.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/arch_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/arch_2.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/arch_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/arch_3.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/dashboard_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/dashboard_reports.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/data_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/data_model.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/delivery.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/matrix.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/img/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/img/workflows.png -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/SQL_query_report.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/SQL_query_report.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/arch_1.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/arch_1.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/arch_2.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/arch_2.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/arch_3.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/arch_3.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/dashboard_reports.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/dashboard_reports.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/data_model.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/data_model.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/delivery.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/delivery.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/dev/resources/workflows.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/dev/resources/workflows.drawio -------------------------------------------------------------------------------- /kibana-reports/docs/ux/Kibana-Reporting-UX-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/Kibana-Reporting-UX-documentation.md -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/flows/0.0.1_key-user-flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/flows/0.0.1_key-user-flows.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/flows/0.0.1_key-user-flows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/flows/0.0.1_key-user-flows@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/flows/0.0.2_key-screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/flows/0.0.2_key-screens.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/flows/0.0.2_key-screens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/flows/0.0.2_key-screens@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.01_dashboard-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.01_dashboard-download.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.01_dashboard-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.01_dashboard-download@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.02_dashboard-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.02_dashboard-share.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.02_dashboard-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.02_dashboard-share@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.03_dashboard-toasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.03_dashboard-toasts.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.03_dashboard-toasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.03_dashboard-toasts@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.0_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.0_dashboard.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.1.0_dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.1.0_dashboard@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.2.0_reporting_empty-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.2.0_reporting_empty-state.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.2.0_reporting_empty-state@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.2.0_reporting_empty-state@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.2.1_reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.2.1_reporting.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.2.1_reporting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.2.1_reporting@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.3.0_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.3.0_report.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.3.0_report@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.3.0_report@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.3.1_report_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.3.1_report_share.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.3.1_report_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.3.1_report_share@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.4.0_report-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.4.0_report-definition.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.4.0_report-definition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.4.0_report-definition@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.5.0_create-report-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.5.0_create-report-definition.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.5.0_create-report-definition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.5.0_create-report-definition@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.6.0_edit-report-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.6.0_edit-report-definition.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/screens/0.6.0_edit-report-definition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/screens/0.6.0_edit-report-definition@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.1.04_modals_generating-downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.1.04_modals_generating-downloading.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.1.04_modals_generating-downloading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.1.04_modals_generating-downloading@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.1_report-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.1_report-settings.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.1_report-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.1_report-settings@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.2_report-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.2_report-trigger.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.2_report-trigger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.2_report-trigger@2x.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.3_delivery-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.3_delivery-settings.png -------------------------------------------------------------------------------- /kibana-reports/docs/ux/img/supporting/0.5.3_delivery-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/docs/ux/img/supporting/0.5.3_delivery-settings@2x.png -------------------------------------------------------------------------------- /kibana-reports/kibana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/kibana.json -------------------------------------------------------------------------------- /kibana-reports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/package.json -------------------------------------------------------------------------------- /kibana-reports/public/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kibana-reports/public/application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/application.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/app.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/context_menu/context_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/context_menu/context_menu.js -------------------------------------------------------------------------------- /kibana-reports/public/components/context_menu/context_menu_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/context_menu/context_menu_helpers.js -------------------------------------------------------------------------------- /kibana-reports/public/components/context_menu/context_menu_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/context_menu/context_menu_ui.js -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/__snapshots__/main.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/__snapshots__/main.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/__snapshots__/report_definitions_table.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/__snapshots__/report_definitions_table.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/__snapshots__/reports_table.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/__snapshots__/reports_table.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/__utils__/main_utils_test_utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/__utils__/main_utils_test_utils.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/main.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/main.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/main_utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/main_utils.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/report_definitions_table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/report_definitions_table.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/__tests__/reports_table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/__tests__/reports_table.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/main/loading_modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/loading_modal/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/main/loading_modal/loading_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/loading_modal/loading_modal.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/main.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/main_utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/main_utils.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_definition_details/__tests__/__snapshots__/report_definition_details.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_definition_details/__tests__/__snapshots__/report_definition_details.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_definition_details/__tests__/report_definition_details.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_definition_details/__tests__/report_definition_details.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_definition_details/report_definition_details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_definition_details/report_definition_details.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_definitions_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_definitions_table.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_details/__tests__/__snapshots__/report_details.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_details/__tests__/__snapshots__/report_details.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_details/__tests__/report_details.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_details/__tests__/report_details.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/report_details/report_details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/report_details/report_details.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/main/reports_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/main/reports_table.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/create/create_report_definition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/create/create_report_definition.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/create/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/create/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/__tests__/__snapshots__/delivery.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/__tests__/__snapshots__/delivery.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/__tests__/__snapshots__/email.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/__tests__/__snapshots__/email.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/__tests__/delivery.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/__tests__/delivery.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/__tests__/email.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/__tests__/email.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/delivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/delivery.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/delivery_constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/delivery_constants.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/email.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/delivery/kibana_user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/delivery/kibana_user.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/edit/edit_report_definition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/edit/edit_report_definition.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/edit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/edit/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/__tests__/__snapshots__/report_settings.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/__tests__/__snapshots__/report_settings.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/__tests__/report_settings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/__tests__/report_settings.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/__tests__/report_settings_helpers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/__tests__/report_settings_helpers.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/report_settings_constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/report_settings_constants.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/report_settings_helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/report_settings_helpers.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_settings/time_range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_settings/time_range.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/__tests__/__snapshots__/report_trigger.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/__tests__/__snapshots__/report_trigger.test.tsx.snap -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/__tests__/report_trigger.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/__tests__/report_trigger.test.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/report_trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/report_trigger.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/report_trigger_constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/report_trigger_constants.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/report_trigger/timezone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/report_trigger/timezone.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/utils/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/components/report_definitions/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/report_definitions/utils/utils.tsx -------------------------------------------------------------------------------- /kibana-reports/public/components/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/components/utils/utils.tsx -------------------------------------------------------------------------------- /kibana-reports/public/hack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/hack.js -------------------------------------------------------------------------------- /kibana-reports/public/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/index.scss -------------------------------------------------------------------------------- /kibana-reports/public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/index.ts -------------------------------------------------------------------------------- /kibana-reports/public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/plugin.ts -------------------------------------------------------------------------------- /kibana-reports/public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/public/types.ts -------------------------------------------------------------------------------- /kibana-reports/rendering-engine/headless-chrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/rendering-engine/headless-chrome/README.md -------------------------------------------------------------------------------- /kibana-reports/rendering-engine/headless-chrome/build_headless_chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/rendering-engine/headless-chrome/build_headless_chrome.sh -------------------------------------------------------------------------------- /kibana-reports/server/backend/opendistro-es-reports-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/backend/opendistro-es-reports-plugin.ts -------------------------------------------------------------------------------- /kibana-reports/server/backend/opendistro-notification-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/backend/opendistro-notification-plugin.ts -------------------------------------------------------------------------------- /kibana-reports/server/executor/createScheduledReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/executor/createScheduledReport.ts -------------------------------------------------------------------------------- /kibana-reports/server/executor/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/executor/executor.ts -------------------------------------------------------------------------------- /kibana-reports/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/index.ts -------------------------------------------------------------------------------- /kibana-reports/server/model/backendModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/model/backendModel.ts -------------------------------------------------------------------------------- /kibana-reports/server/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/model/index.ts -------------------------------------------------------------------------------- /kibana-reports/server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/plugin.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/index.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/createReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/createReport.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/createReportDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/createReportDefinition.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/deliverReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/deliverReport.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/saveReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/saveReport.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/updateReportDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/updateReportDefinition.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/lib/updateReportState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/lib/updateReportState.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/metric.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/report.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/reportDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/reportDefinition.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/reportSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/reportSource.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/__tests__/metricHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/__tests__/metricHelper.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/__tests__/savedSearchReportHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/__tests__/savedSearchReportHelper.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/constants.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/converters/__tests__/backendToUi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/converters/__tests__/backendToUi.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/converters/__tests__/uiToBackend.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/converters/__tests__/uiToBackend.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/converters/backendToUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/converters/backendToUi.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/converters/uiToBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/converters/uiToBackend.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/dataReportHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/dataReportHelpers.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/helpers.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/metricHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/metricHelper.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/notification/deliveryContentHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/notification/deliveryContentHelper.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/notification/notification_content_template/email_content_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/notification/notification_content_template/email_content_template.html -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/notification/notification_content_template/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/notification/notification_content_template/logo.png -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/savedSearchReportHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/savedSearchReportHelper.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/types.ts -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/visual_report/footer_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/visual_report/footer_template.html -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/visual_report/header_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/visual_report/header_template.html -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/visual_report/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/visual_report/style.css -------------------------------------------------------------------------------- /kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts -------------------------------------------------------------------------------- /kibana-reports/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/types.ts -------------------------------------------------------------------------------- /kibana-reports/server/utils/__tests__/validationHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/utils/__tests__/validationHelper.test.ts -------------------------------------------------------------------------------- /kibana-reports/server/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/utils/constants.ts -------------------------------------------------------------------------------- /kibana-reports/server/utils/validationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/server/utils/validationHelper.ts -------------------------------------------------------------------------------- /kibana-reports/test/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'react-mde-all'; 2 | -------------------------------------------------------------------------------- /kibana-reports/test/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /kibana-reports/test/httpMockClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/test/httpMockClient.js -------------------------------------------------------------------------------- /kibana-reports/test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/test/jest.config.js -------------------------------------------------------------------------------- /kibana-reports/test/propsMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/test/propsMock.js -------------------------------------------------------------------------------- /kibana-reports/test/setup.jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/test/setup.jest.ts -------------------------------------------------------------------------------- /kibana-reports/test/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/test/setupTests.ts -------------------------------------------------------------------------------- /kibana-reports/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/translations/pl.json -------------------------------------------------------------------------------- /kibana-reports/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/translations/zh-CN.json -------------------------------------------------------------------------------- /kibana-reports/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/tsconfig.json -------------------------------------------------------------------------------- /kibana-reports/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/kibana-reports/yarn.lock -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-kibana-reports.release-notes-1.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/release-notes/opendistro-for-elasticsearch-kibana-reports.release-notes-1.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-kibana-reports.release-notes-1.13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/release-notes/opendistro-for-elasticsearch-kibana-reports.release-notes-1.13.0.0.md -------------------------------------------------------------------------------- /reports-scheduler/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.editorconfig -------------------------------------------------------------------------------- /reports-scheduler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.gitignore -------------------------------------------------------------------------------- /reports-scheduler/.idea/.name: -------------------------------------------------------------------------------- 1 | opendistro-reports-scheduler -------------------------------------------------------------------------------- /reports-scheduler/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /reports-scheduler/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /reports-scheduler/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.idea/kotlinc.xml -------------------------------------------------------------------------------- /reports-scheduler/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.idea/misc.xml -------------------------------------------------------------------------------- /reports-scheduler/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/.idea/vcs.xml -------------------------------------------------------------------------------- /reports-scheduler/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/LICENSE.txt -------------------------------------------------------------------------------- /reports-scheduler/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/NOTICE -------------------------------------------------------------------------------- /reports-scheduler/build-tools/esplugin-coverage.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/build-tools/esplugin-coverage.gradle -------------------------------------------------------------------------------- /reports-scheduler/build-tools/pkgbuild.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/build-tools/pkgbuild.gradle -------------------------------------------------------------------------------- /reports-scheduler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/build.gradle -------------------------------------------------------------------------------- /reports-scheduler/config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /reports-scheduler/config/checkstyle/google_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/config/checkstyle/google_checks.xml -------------------------------------------------------------------------------- /reports-scheduler/config/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/config/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /reports-scheduler/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/detekt.yml -------------------------------------------------------------------------------- /reports-scheduler/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/gradle.properties -------------------------------------------------------------------------------- /reports-scheduler/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /reports-scheduler/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /reports-scheduler/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/gradlew -------------------------------------------------------------------------------- /reports-scheduler/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/gradlew.bat -------------------------------------------------------------------------------- /reports-scheduler/release-notes/create_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/release-notes/create_release_notes.py -------------------------------------------------------------------------------- /reports-scheduler/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/settings.gradle -------------------------------------------------------------------------------- /reports-scheduler/src/main/config/reports-scheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/config/reports-scheduler.yml -------------------------------------------------------------------------------- /reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/BasicCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/BasicCounter.java -------------------------------------------------------------------------------- /reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/Counter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/Counter.java -------------------------------------------------------------------------------- /reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/Metrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/Metrics.java -------------------------------------------------------------------------------- /reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/RollingCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/RollingCounter.java -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportsSchedulerPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportsSchedulerPlugin.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/CreateReportDefinitionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/CreateReportDefinitionAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/DeleteReportDefinitionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/DeleteReportDefinitionAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetAllReportDefinitionsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetAllReportDefinitionsAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetAllReportInstancesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetAllReportInstancesAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetReportDefinitionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetReportDefinitionAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetReportInstanceAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/GetReportInstanceAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/InContextReportCreateAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/InContextReportCreateAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/OnDemandReportCreateAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/OnDemandReportCreateAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/PluginBaseAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/PluginBaseAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/PollReportInstanceAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/PollReportInstanceAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/ReportDefinitionActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/ReportDefinitionActions.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/ReportInstanceActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/ReportInstanceActions.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/UpdateReportDefinitionAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/UpdateReportDefinitionAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/UpdateReportInstanceStatusAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/action/UpdateReportInstanceStatusAction.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/index/ReportDefinitionsIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/index/ReportDefinitionsIndex.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/index/ReportInstancesIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/index/ReportInstancesIndex.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/BaseResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/BaseResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/CreateReportDefinitionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/CreateReportDefinitionRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/CreateReportDefinitionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/CreateReportDefinitionResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/DeleteReportDefinitionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/DeleteReportDefinitionRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/DeleteReportDefinitionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/DeleteReportDefinitionResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportDefinitionsRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportDefinitionsRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportDefinitionsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportDefinitionsResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportInstancesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportInstancesRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportInstancesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetAllReportInstancesResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportDefinitionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportDefinitionRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportDefinitionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportDefinitionResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportInstanceRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportInstanceRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportInstanceResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/GetReportInstanceResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/InContextReportCreateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/InContextReportCreateRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/InContextReportCreateResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/InContextReportCreateResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/OnDemandReportCreateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/OnDemandReportCreateRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/OnDemandReportCreateResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/OnDemandReportCreateResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/PollReportInstanceRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/PollReportInstanceRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/PollReportInstanceResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/PollReportInstanceResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinition.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetails.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetailsDoc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetailsDoc.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetailsSearchResults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportDefinitionDetailsSearchResults.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstance.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstanceDoc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstanceDoc.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstanceSearchResults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/ReportInstanceSearchResults.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/RestTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/RestTag.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/SearchResults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/SearchResults.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportDefinitionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportDefinitionRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportDefinitionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportDefinitionResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportInstanceStatusRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportInstanceStatusRequest.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportInstanceStatusResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/model/UpdateReportInstanceStatusResponse.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/OnDemandReportRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/OnDemandReportRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/PluginBaseHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/PluginBaseHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportDefinitionListRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportDefinitionListRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportDefinitionRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportDefinitionRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstanceListRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstanceListRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstancePollRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstancePollRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstanceRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportInstanceRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportStatsRestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/ReportStatsRestHandler.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/RestResponseToXContentListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/resthandler/RestResponseToXContentListener.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/scheduler/ReportDefinitionJobParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/scheduler/ReportDefinitionJobParser.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/scheduler/ReportDefinitionJobRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/scheduler/ReportDefinitionJobRunner.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/security/SecurityAccess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/security/SecurityAccess.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/security/UserAccessManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/security/UserAccessManager.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/settings/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/settings/PluginSettings.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/Helpers.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/OpenForTesting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/OpenForTesting.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/SecureIndexClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/util/SecureIndexClient.kt -------------------------------------------------------------------------------- /reports-scheduler/src/main/plugin-metadata/plugin-security.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/plugin-metadata/plugin-security.policy -------------------------------------------------------------------------------- /reports-scheduler/src/main/resources/META-INF/services/com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/resources/META-INF/services/com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension -------------------------------------------------------------------------------- /reports-scheduler/src/main/resources/report-definitions-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/resources/report-definitions-mapping.yml -------------------------------------------------------------------------------- /reports-scheduler/src/main/resources/report-definitions-settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/resources/report-definitions-settings.yml -------------------------------------------------------------------------------- /reports-scheduler/src/main/resources/report-instances-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/resources/report-instances-mapping.yml -------------------------------------------------------------------------------- /reports-scheduler/src/main/resources/report-instances-settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/main/resources/report-instances-settings.yml -------------------------------------------------------------------------------- /reports-scheduler/src/test/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/BasicCounterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/BasicCounterTest.java -------------------------------------------------------------------------------- /reports-scheduler/src/test/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/RollingCounterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/java/com/amazon/opendistroforelasticsearch/reportsscheduler/metrics/RollingCounterTest.java -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/PluginRestTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/PluginRestTestCase.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportSchedularPluginTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportSchedularPluginTests.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportsSchedulerPluginIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/ReportsSchedulerPluginIT.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/TestHelpers.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/InContextMenuReportGenerationIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/InContextMenuReportGenerationIT.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/OnDemandReportGenerationIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/OnDemandReportGenerationIT.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/ReportDefinitionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/ReportDefinitionIT.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/ReportInstanceIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/kotlin/com/amazon/opendistroforelasticsearch/reportsscheduler/rest/ReportInstanceIT.kt -------------------------------------------------------------------------------- /reports-scheduler/src/test/resources/job-scheduler/opendistro-job-scheduler-1.13.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/kibana-reports/HEAD/reports-scheduler/src/test/resources/job-scheduler/opendistro-job-scheduler-1.13.0.0.zip --------------------------------------------------------------------------------