├── .dockerignore ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci-cd.yaml │ └── dependabot_auto_merge.yaml ├── .github_changelog_generator ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── agent ├── agent.go └── discovery │ ├── cloud.go │ ├── cluster.go │ ├── collector │ ├── client.go │ ├── client_test.go │ └── publishing_test.go │ ├── discovery.go │ ├── host.go │ ├── mocks │ ├── discovered_cloud_mock.go │ ├── discovered_cluster_mock.go │ ├── discovered_host_mock.go │ ├── discovered_sap_system_mock.go │ └── discovered_subscription_mock.go │ ├── sapsystem.go │ └── subscription.go ├── api ├── api.go ├── api_test.go ├── clusters_settings.go ├── clusters_settings_test.go └── mocks │ └── TrentoApiService.go ├── cmd ├── agent │ ├── agent.go │ ├── config.go │ └── config_test.go ├── ctl │ ├── ctl.go │ └── ctl_test.go ├── db │ ├── config.go │ └── db.go ├── root.go ├── runner │ ├── config.go │ ├── config_test.go │ └── runner.go ├── version.go └── web │ ├── config.go │ ├── config_test.go │ └── web.go ├── ct.yaml ├── docs ├── _generated_soap_wsdl.go ├── api │ ├── README.md │ ├── docs.go │ ├── swagger.json │ └── swagger.yaml ├── ci-cd-variables.md ├── development │ ├── health-aggregation-matrix.md │ └── how-to-make-a-release.md ├── runner.md ├── scope.md ├── trento-architecture.md ├── trento-architecture.png └── trento-architecture.svg ├── go.mod ├── go.sum ├── hack ├── deploy.sh ├── dump_scenario_from_k8s.sh ├── get_version_from_git.sh ├── gh_release_to_obs_changeset.py ├── helm │ └── trento-dev │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── templates │ │ └── prometheus_loadbalancer.yaml │ │ └── values.yaml └── id_checker.py ├── helmlintconf.yaml ├── install-agent.sh ├── install-server.sh ├── internal ├── cloud │ ├── azure.go │ ├── azure_test.go │ ├── metadata.go │ ├── metadata_test.go │ └── mocks │ │ ├── CustomCommand.go │ │ └── HTTPClient.go ├── cluster │ ├── cib │ │ ├── data.go │ │ ├── parser.go │ │ └── parser_test.go │ ├── cluster.go │ ├── cluster_test.go │ ├── crmmon │ │ ├── data.go │ │ ├── parser.go │ │ └── parser_test.go │ ├── sbd.go │ └── sbd_test.go ├── config.go ├── db │ └── db.go ├── grafana │ ├── grafana.go │ └── node_exporter.json ├── heartbeat.go ├── hosts │ ├── discovered_host.go │ └── metadata.go ├── prometheus │ ├── prometheus.go │ └── prometheus_mock.go ├── sapsystem │ ├── mocks │ │ └── CustomCommand.go │ ├── sapcontrol │ │ ├── mocks │ │ │ └── WebService.go │ │ └── webservice.go │ ├── sapsystem.go │ └── sapsystem_test.go ├── subscription │ ├── mocks │ │ └── CustomCommand.go │ ├── subscription.go │ └── subscription_test.go ├── utils.go └── uuid.go ├── main.go ├── packaging ├── config │ └── agent.yaml ├── helm │ └── trento-server │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── charts │ │ ├── trento-runner │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── privatekey.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ └── trento-web │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── certs.yaml │ │ │ ├── collectorservice.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── prune_checks_cronjob.yaml │ │ │ ├── prune_events_cronjob.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── tests │ │ │ │ ├── test-collector-connection.yaml │ │ │ │ └── test-web-connection.yaml │ │ │ └── webservice.yaml │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── grafana_datasources.yaml │ │ └── prometheus_configmap.yaml │ │ └── values.yaml ├── suse │ ├── _service │ └── trento.spec └── systemd │ └── trento-agent.service ├── requirements.dev.txt ├── runner ├── ansible │ ├── ansible.cfg │ ├── callback_plugins │ │ └── trento.py │ ├── check.yml │ ├── meta.yml │ ├── roles │ │ ├── checks │ │ │ ├── 1.1.1.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.1 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.2.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.3.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.3 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.4.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.4 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.5.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.5 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.6.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.6 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.7 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.8.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.8 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.9.runtime │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.1.9 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.2.1 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.2.2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.1 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.3 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.4 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.5 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.6 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.3.7 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 1.5.2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.1 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.2 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.3.exclude │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.3 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.4 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.5.exclude │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── 2.2.5 │ │ │ │ ├── defaults │ │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── 2.2.7 │ │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── load_facts │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── post-metadata │ │ │ └── tasks │ │ │ │ ├── post.yml │ │ │ │ └── store.yml │ │ └── post-results │ │ │ └── tasks │ │ │ └── main.yml │ └── vars │ │ ├── azure │ │ └── 10-default.yml │ │ └── dev │ │ └── 10-default.yml ├── ansiblerunner.go ├── ansiblerunner_test.go ├── inventory.go ├── inventory_test.go ├── mocks │ └── CustomCommand.go ├── runner.go └── runner_test.go ├── test ├── ansible_test │ ├── ansible │ │ ├── check.yml │ │ └── meta.yml │ └── ansible_hosts ├── authkey ├── azure_metadata ├── certs │ ├── ca-cert.pem │ ├── ca-key.pem │ ├── client-cert.pem │ ├── client-key.pem │ ├── client-req.pem │ ├── server-cert.pem │ ├── server-key.pem │ └── server-req.pem ├── e2e │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── cypress.json │ ├── cypress │ │ ├── fixtures │ │ │ ├── .photofinish.toml │ │ │ ├── about │ │ │ │ └── about.feature │ │ │ ├── checks-catalog │ │ │ │ ├── available_checks.js │ │ │ │ ├── catalog.json │ │ │ │ └── checks_catalog.feature │ │ │ ├── clusters-overview │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SFAIL.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SOK.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SFAIL.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SOK.json │ │ │ │ ├── available_clusters.js │ │ │ │ ├── checks_results_critical.json │ │ │ │ ├── checks_results_passing.json │ │ │ │ ├── checks_results_warning.json │ │ │ │ └── clusters_overview.feature │ │ │ ├── example.json │ │ │ ├── hana-cluster-details │ │ │ │ ├── available_hana_cluster.js │ │ │ │ ├── checks_results.json │ │ │ │ └── hana_cluster_details.feature │ │ │ ├── hana-database-details │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GRAY.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GREEN.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_RED.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_YELLOW.json │ │ │ │ ├── hana_database_details.feature │ │ │ │ ├── newagent_sap_system_discovery_new.json │ │ │ │ └── selected_database.js │ │ │ ├── healthy-27-node-SAP-cluster │ │ │ │ ├── 098fc159-3ed6-58e7-91be-38fda8a833ea_host_discovery.json │ │ │ │ ├── 098fc159-3ed6-58e7-91be-38fda8a833ea_sap_system_discovery.json │ │ │ │ ├── 098fc159-3ed6-58e7-91be-38fda8a833ea_subscription_discovery.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_cloud_discovery.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_ha_cluster_discovery.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_host_discovery.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery.json │ │ │ │ ├── 0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_subscription_discovery.json │ │ │ │ ├── 0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_cloud_discovery.json │ │ │ │ ├── 0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_host_discovery.json │ │ │ │ ├── 0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_sap_system_discovery.json │ │ │ │ ├── 0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_subscription_discovery.json │ │ │ │ ├── 116d49bd-85e1-5e59-b820-83f66db8800c_cloud_discovery.json │ │ │ │ ├── 116d49bd-85e1-5e59-b820-83f66db8800c_ha_cluster_discovery.json │ │ │ │ ├── 116d49bd-85e1-5e59-b820-83f66db8800c_host_discovery.json │ │ │ │ ├── 116d49bd-85e1-5e59-b820-83f66db8800c_sap_system_discovery.json │ │ │ │ ├── 116d49bd-85e1-5e59-b820-83f66db8800c_subscription_discovery.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_cloud_discovery.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_host_discovery.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery.json │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_subscription_discovery.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_cloud_discovery.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_host_discovery.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_subscription_discovery.json │ │ │ │ ├── 21de186a-e38f-5804-b643-7f4ef22fecfd_cloud_discovery.json │ │ │ │ ├── 21de186a-e38f-5804-b643-7f4ef22fecfd_ha_cluster_discovery.json │ │ │ │ ├── 21de186a-e38f-5804-b643-7f4ef22fecfd_host_discovery.json │ │ │ │ ├── 21de186a-e38f-5804-b643-7f4ef22fecfd_sap_system_discovery.json │ │ │ │ ├── 21de186a-e38f-5804-b643-7f4ef22fecfd_subscription_discovery.json │ │ │ │ ├── 240f96b1-8d26-53b7-9e99-ffb0f2e735bf_cloud_discovery.json │ │ │ │ ├── 240f96b1-8d26-53b7-9e99-ffb0f2e735bf_ha_cluster_discovery.json │ │ │ │ ├── 240f96b1-8d26-53b7-9e99-ffb0f2e735bf_host_discovery.json │ │ │ │ ├── 240f96b1-8d26-53b7-9e99-ffb0f2e735bf_sap_system_discovery.json │ │ │ │ ├── 240f96b1-8d26-53b7-9e99-ffb0f2e735bf_subscription_discovery.json │ │ │ │ ├── 25677e37-fd33-5005-896c-9275b1284534_cloud_discovery.json │ │ │ │ ├── 25677e37-fd33-5005-896c-9275b1284534_ha_cluster_discovery.json │ │ │ │ ├── 25677e37-fd33-5005-896c-9275b1284534_host_discovery.json │ │ │ │ ├── 25677e37-fd33-5005-896c-9275b1284534_sap_system_discovery.json │ │ │ │ ├── 25677e37-fd33-5005-896c-9275b1284534_subscription_discovery.json │ │ │ │ ├── 3711ea88-9ccc-5b07-8f9d-042be449d72b_cloud_discovery.json │ │ │ │ ├── 3711ea88-9ccc-5b07-8f9d-042be449d72b_ha_cluster_discovery.json │ │ │ │ ├── 3711ea88-9ccc-5b07-8f9d-042be449d72b_host_discovery.json │ │ │ │ ├── 3711ea88-9ccc-5b07-8f9d-042be449d72b_sap_system_discovery.json │ │ │ │ ├── 3711ea88-9ccc-5b07-8f9d-042be449d72b_subscription_discovery.json │ │ │ │ ├── 422686d6-b2d1-5092-93e8-a744854f5085_cloud_discovery.json │ │ │ │ ├── 422686d6-b2d1-5092-93e8-a744854f5085_ha_cluster_discovery.json │ │ │ │ ├── 422686d6-b2d1-5092-93e8-a744854f5085_host_discovery.json │ │ │ │ ├── 422686d6-b2d1-5092-93e8-a744854f5085_sap_system_discovery.json │ │ │ │ ├── 422686d6-b2d1-5092-93e8-a744854f5085_subscription_discovery.json │ │ │ │ ├── 4b30a6af-4b52-5bda-bccb-f2248a12c992_cloud_discovery.json │ │ │ │ ├── 4b30a6af-4b52-5bda-bccb-f2248a12c992_ha_cluster_discovery.json │ │ │ │ ├── 4b30a6af-4b52-5bda-bccb-f2248a12c992_host_discovery.json │ │ │ │ ├── 4b30a6af-4b52-5bda-bccb-f2248a12c992_sap_system_discovery.json │ │ │ │ ├── 4b30a6af-4b52-5bda-bccb-f2248a12c992_subscription_discovery.json │ │ │ │ ├── 69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_cloud_discovery.json │ │ │ │ ├── 69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_host_discovery.json │ │ │ │ ├── 69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_sap_system_discovery.json │ │ │ │ ├── 69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_subscription_discovery.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_cloud_discovery.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_ha_cluster_discovery.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_host_discovery.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_subscription_discovery.json │ │ │ │ ├── 81e9b629-c1e7-538f-bff1-47d3a6580522_host_discovery.json │ │ │ │ ├── 81e9b629-c1e7-538f-bff1-47d3a6580522_sap_system_discovery.json │ │ │ │ ├── 81e9b629-c1e7-538f-bff1-47d3a6580522_subscription_discovery.json │ │ │ │ ├── 927901fa-2c87-524e-b18c-3ef5187f504f_cloud_discovery.json │ │ │ │ ├── 927901fa-2c87-524e-b18c-3ef5187f504f_ha_cluster_discovery.json │ │ │ │ ├── 927901fa-2c87-524e-b18c-3ef5187f504f_host_discovery.json │ │ │ │ ├── 927901fa-2c87-524e-b18c-3ef5187f504f_sap_system_discovery.json │ │ │ │ ├── 927901fa-2c87-524e-b18c-3ef5187f504f_subscription_discovery.json │ │ │ │ ├── 99cf8a3a-48d6-57a4-b302-6e4482227ab6_cloud_discovery.json │ │ │ │ ├── 99cf8a3a-48d6-57a4-b302-6e4482227ab6_ha_cluster_discovery.json │ │ │ │ ├── 99cf8a3a-48d6-57a4-b302-6e4482227ab6_host_discovery.json │ │ │ │ ├── 99cf8a3a-48d6-57a4-b302-6e4482227ab6_sap_system_discovery.json │ │ │ │ ├── 99cf8a3a-48d6-57a4-b302-6e4482227ab6_subscription_discovery.json │ │ │ │ ├── 9a26b6d0-6e72-597c-9fe5-152a6875f214_cloud_discovery.json │ │ │ │ ├── 9a26b6d0-6e72-597c-9fe5-152a6875f214_host_discovery.json │ │ │ │ ├── 9a26b6d0-6e72-597c-9fe5-152a6875f214_sap_system_discovery.json │ │ │ │ ├── 9a26b6d0-6e72-597c-9fe5-152a6875f214_subscription_discovery.json │ │ │ │ ├── 9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_cloud_discovery.json │ │ │ │ ├── 9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_host_discovery.json │ │ │ │ ├── 9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery.json │ │ │ │ ├── 9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_subscription_discovery.json │ │ │ │ ├── 9cd46919-5f19-59aa-993e-cf3736c71053_cloud_discovery.json │ │ │ │ ├── 9cd46919-5f19-59aa-993e-cf3736c71053_ha_cluster_discovery.json │ │ │ │ ├── 9cd46919-5f19-59aa-993e-cf3736c71053_host_discovery.json │ │ │ │ ├── 9cd46919-5f19-59aa-993e-cf3736c71053_sap_system_discovery.json │ │ │ │ ├── 9cd46919-5f19-59aa-993e-cf3736c71053_subscription_discovery.json │ │ │ │ ├── a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_cloud_discovery.json │ │ │ │ ├── a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_ha_cluster_discovery.json │ │ │ │ ├── a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_host_discovery.json │ │ │ │ ├── a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_sap_system_discovery.json │ │ │ │ ├── a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_subscription_discovery.json │ │ │ │ ├── a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_cloud_discovery.json │ │ │ │ ├── a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_host_discovery.json │ │ │ │ ├── a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_sap_system_discovery.json │ │ │ │ ├── a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_subscription_discovery.json │ │ │ │ ├── b767b3e9-e802-587e-a442-541d093b86b9_cloud_discovery.json │ │ │ │ ├── b767b3e9-e802-587e-a442-541d093b86b9_ha_cluster_discovery.json │ │ │ │ ├── b767b3e9-e802-587e-a442-541d093b86b9_host_discovery.json │ │ │ │ ├── b767b3e9-e802-587e-a442-541d093b86b9_sap_system_discovery.json │ │ │ │ ├── b767b3e9-e802-587e-a442-541d093b86b9_subscription_discovery.json │ │ │ │ ├── ddcb7992-2ffb-5c10-8b39-80685f6eaaba_cloud_discovery.json │ │ │ │ ├── ddcb7992-2ffb-5c10-8b39-80685f6eaaba_ha_cluster_discovery.json │ │ │ │ ├── ddcb7992-2ffb-5c10-8b39-80685f6eaaba_host_discovery.json │ │ │ │ ├── ddcb7992-2ffb-5c10-8b39-80685f6eaaba_sap_system_discovery.json │ │ │ │ ├── ddcb7992-2ffb-5c10-8b39-80685f6eaaba_subscription_discovery.json │ │ │ │ ├── e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_cloud_discovery.json │ │ │ │ ├── e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_ha_cluster_discovery.json │ │ │ │ ├── e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_host_discovery.json │ │ │ │ ├── e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_sap_system_discovery.json │ │ │ │ ├── e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_subscription_discovery.json │ │ │ │ ├── f0c808b3-d869-5192-a944-20f66a6a8449_cloud_discovery.json │ │ │ │ ├── f0c808b3-d869-5192-a944-20f66a6a8449_host_discovery.json │ │ │ │ ├── f0c808b3-d869-5192-a944-20f66a6a8449_sap_system_discovery.json │ │ │ │ ├── f0c808b3-d869-5192-a944-20f66a6a8449_subscription_discovery.json │ │ │ │ ├── fb2c6b8a-9915-5969-a6b7-8b5a42de1971_cloud_discovery.json │ │ │ │ ├── fb2c6b8a-9915-5969-a6b7-8b5a42de1971_ha_cluster_discovery.json │ │ │ │ ├── fb2c6b8a-9915-5969-a6b7-8b5a42de1971_host_discovery.json │ │ │ │ ├── fb2c6b8a-9915-5969-a6b7-8b5a42de1971_sap_system_discovery.json │ │ │ │ └── fb2c6b8a-9915-5969-a6b7-8b5a42de1971_subscription_discovery.json │ │ │ ├── host-details │ │ │ │ ├── host_details.feature │ │ │ │ └── selected_host.js │ │ │ ├── hosts-overview │ │ │ │ ├── available_hosts.js │ │ │ │ └── hosts_overview.feature │ │ │ ├── sap-system-details │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GRAY.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GREEN.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_YELLOW.json │ │ │ │ ├── newagent_sap_system_discovery_new.json │ │ │ │ ├── sap_system_details.feature │ │ │ │ └── selected_system.js │ │ │ └── sap-systems-overview │ │ │ │ ├── 13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery_RED.json │ │ │ │ ├── 1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json │ │ │ │ ├── 2ace860d-38e9-55f4-b051-faf4336e71d6_sap_system_discovery_DAA.json │ │ │ │ ├── 7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery_GRAY.json │ │ │ │ ├── 9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery_YELLOW.json │ │ │ │ ├── available_sap_systems.js │ │ │ │ └── sap_systems_overview.feature │ │ ├── integration │ │ │ ├── about.js │ │ │ ├── checks_catalog.js │ │ │ ├── clusters_overview.js │ │ │ ├── hana_cluster_details.js │ │ │ ├── hana_database_details.js │ │ │ ├── home.js │ │ │ ├── host_details.js │ │ │ ├── hosts_overview.js │ │ │ ├── sap_system_details.js │ │ │ └── sap_systems_overview.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── package-lock.json │ └── package.json ├── fake_cibadmin.sh ├── fake_crm_mon.sh ├── fake_sbd.sh ├── fixtures │ ├── config │ │ ├── agent.yaml │ │ ├── runner.yaml │ │ └── web.yaml │ └── discovery │ │ ├── azure │ │ ├── azure_discovery.json │ │ └── expected_published_cloud_discovery.json │ │ ├── cluster │ │ ├── cluster_discovery_hana_scale_up.json │ │ ├── cluster_discovery_unknown.json │ │ └── expected_published_cluster_discovery.json │ │ ├── host │ │ └── expected_published_host_discovery.json │ │ ├── sap_system │ │ ├── expected_published_sap_system_discovery_application.json │ │ ├── expected_published_sap_system_discovery_database.json │ │ ├── sap_system_discovery_application.json │ │ ├── sap_system_discovery_database.json │ │ └── sap_system_discovery_diagnostics.json │ │ └── subscriptions │ │ ├── expected_published_subscriptions_discovery.json │ │ └── subscriptions_discovery.json ├── hdbnsutil_srstate ├── helpers │ ├── config.go │ ├── db.go │ └── http.go ├── landscape_host_configuration ├── sap_profile_default ├── sbd_config ├── sbd_config_no_device ├── sbd_config_quoted_devices ├── system_replication_status └── testing.go ├── tools └── tools.go ├── version └── version.go └── web ├── about.go ├── about_test.go ├── alert.go ├── api.go ├── api_test.go ├── app.go ├── checks_api.go ├── checks_api_test.go ├── checks_catalog.go ├── checks_catalog_test.go ├── clusters.go ├── clusters_api.go ├── clusters_api_test.go ├── clusters_test.go ├── collector.go ├── collector_test.go ├── datapipeline ├── clusters_projector.go ├── clusters_projector_test.go ├── data_collected_event.go ├── health_projector.go ├── health_projector_test.go ├── host_telemetry_projector.go ├── host_telemetry_projector_test.go ├── hosts_projector.go ├── hosts_projector_test.go ├── projector.go ├── projector_mock.go ├── projector_registry.go ├── projector_test.go ├── sap_systems_projector.go ├── sap_systems_projector_test.go ├── sles_subsciptions_projector.go ├── sles_subsciptions_projector_test.go ├── subscription.go ├── worker_pool.go └── worker_pool_test.go ├── entities ├── check.go ├── check_result.go ├── cluster.go ├── health_state.go ├── host.go ├── host_telemetry.go ├── sap_system.go ├── settings.go └── sles_subscription.go ├── errors.go ├── errors_test.go ├── eula.go ├── eula_test.go ├── frontend ├── .babelrc ├── .eslintrc.js ├── .prettierignore ├── .prettierrc.js ├── components │ ├── Accordion │ │ ├── Accordion.js │ │ ├── Toggle.js │ │ └── index.js │ ├── Checkbox │ │ ├── Checkbox.js │ │ └── index.js │ ├── ChecksTable │ │ ├── CheckResultIcon.js │ │ ├── ChecksTable.js │ │ ├── RowGroup.js │ │ └── index.js │ ├── Dropdown │ │ ├── Dropdown.js │ │ ├── DropdownItem.js │ │ └── index.js │ ├── HealthSummary │ │ ├── HealthSummary.js │ │ └── index.js │ └── Toast │ │ ├── Toast.js │ │ └── index.js ├── images │ ├── favicon.svg │ ├── trento-icon.png │ ├── trento-icon.svg │ ├── trento-logo-horizontal.png │ ├── trento-logo-horizontal.svg │ ├── trento-logo-stacked.png │ └── trento-logo-stacked.svg ├── javascripts │ ├── catalog_anchors.js │ ├── check_results.js │ ├── cluster_check_settings.js │ ├── homepage.js │ ├── layout.js │ ├── tables.js │ └── tags.js ├── lib │ ├── lists │ │ └── index.js │ └── log │ │ └── index.js ├── package-lock.json ├── package.json ├── stylesheets │ ├── override.scss │ └── stylesheets.scss └── webpack.config.js ├── health_container.go ├── home.go ├── home_test.go ├── hosts.go ├── hosts_test.go ├── layout.go ├── layout_test.go ├── logger.go ├── middlewares.go ├── middlewares_test.go ├── models ├── check.go ├── check_result.go ├── check_settings.go ├── cluster.go ├── clusters_settings.go ├── health_summary.go ├── host.go ├── prometheus.go ├── sap_system.go ├── sles_subscription.go └── tag.go ├── pagination.go ├── pagination_test.go ├── prometheus_api.go ├── prometheus_api_test.go ├── sap_systems.go ├── sap_systems_api.go ├── sap_systems_test.go ├── services ├── checks.go ├── checks_mock.go ├── checks_test.go ├── clusters.go ├── clusters_mock.go ├── clusters_test.go ├── collector.go ├── collector_mock.go ├── collector_test.go ├── health_summary_service.go ├── health_summary_service_mock.go ├── health_summary_service_test.go ├── hosts.go ├── hosts_mock.go ├── hosts_test.go ├── pagination.go ├── pagination_test.go ├── premium_detection.go ├── premium_detection_mock.go ├── premium_detection_test.go ├── prometheus.go ├── prometheus_mock.go ├── prometheus_test.go ├── sap_systems.go ├── sap_systems_service_mock.go ├── sap_systems_test.go ├── settings.go ├── settings_mock.go ├── settings_test.go ├── subscriptions.go ├── subscriptions_mock.go ├── subscriptions_test.go ├── tags.go ├── tags_mock.go └── tags_test.go ├── tags_api.go ├── tags_api_test.go ├── telemetry ├── engine.go ├── engine_test.go ├── extractor_mock.go ├── host_telemetry.go ├── host_telemetry_test.go ├── identified_extractor_mock.go ├── installation_id_aware_extractor_mock.go ├── publisher.go ├── publisher_mock.go ├── publisher_test.go └── registry.go ├── templates ├── about.html.tmpl ├── blocks │ ├── alerts.html.tmpl │ ├── cluster_checks_result_modal.html.tmpl │ ├── clusters_table.html.tmpl │ ├── empty_table_body.html.tmpl │ ├── footer.html.tmpl │ ├── header.html.tmpl │ ├── health_container.html.tmpl │ ├── health_filter.html.tmpl │ ├── health_icon.html.tmpl │ ├── hosts_table.html.tmpl │ ├── license.html.tmpl │ ├── node_modal.html.tmpl │ ├── pagination.html.tmpl │ ├── sap_instance.html.tmpl │ ├── sap_system_layout.html.tmpl │ ├── sap_systems_table.html.tmpl │ ├── sbd.html.tmpl │ ├── sidebar.html.tmpl │ ├── sites.html.tmpl │ ├── submenu.html.tmpl │ └── version.html.tmpl ├── checks_catalog.html.tmpl ├── cluster_hana.html.tmpl ├── clusters.html.tmpl ├── error.html.tmpl ├── error404.html.tmpl ├── eula.html.tmpl ├── ha_checks.html.tmpl ├── home.html.tmpl ├── host.html.tmpl ├── hosts.html.tmpl ├── layout.html.tmpl ├── sap_system.html.tmpl └── sap_systems.html.tmpl └── web_test.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.github/workflows/ci-cd.yaml -------------------------------------------------------------------------------- /.github/workflows/dependabot_auto_merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.github/workflows/dependabot_auto_merge.yaml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/README.md -------------------------------------------------------------------------------- /agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/agent.go -------------------------------------------------------------------------------- /agent/discovery/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/cloud.go -------------------------------------------------------------------------------- /agent/discovery/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/cluster.go -------------------------------------------------------------------------------- /agent/discovery/collector/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/collector/client.go -------------------------------------------------------------------------------- /agent/discovery/collector/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/collector/client_test.go -------------------------------------------------------------------------------- /agent/discovery/collector/publishing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/collector/publishing_test.go -------------------------------------------------------------------------------- /agent/discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/discovery.go -------------------------------------------------------------------------------- /agent/discovery/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/host.go -------------------------------------------------------------------------------- /agent/discovery/mocks/discovered_cloud_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/mocks/discovered_cloud_mock.go -------------------------------------------------------------------------------- /agent/discovery/mocks/discovered_cluster_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/mocks/discovered_cluster_mock.go -------------------------------------------------------------------------------- /agent/discovery/mocks/discovered_host_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/mocks/discovered_host_mock.go -------------------------------------------------------------------------------- /agent/discovery/mocks/discovered_sap_system_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/mocks/discovered_sap_system_mock.go -------------------------------------------------------------------------------- /agent/discovery/mocks/discovered_subscription_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/mocks/discovered_subscription_mock.go -------------------------------------------------------------------------------- /agent/discovery/sapsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/sapsystem.go -------------------------------------------------------------------------------- /agent/discovery/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/agent/discovery/subscription.go -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/api/api.go -------------------------------------------------------------------------------- /api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/api/api_test.go -------------------------------------------------------------------------------- /api/clusters_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/api/clusters_settings.go -------------------------------------------------------------------------------- /api/clusters_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/api/clusters_settings_test.go -------------------------------------------------------------------------------- /api/mocks/TrentoApiService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/api/mocks/TrentoApiService.go -------------------------------------------------------------------------------- /cmd/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/agent/agent.go -------------------------------------------------------------------------------- /cmd/agent/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/agent/config.go -------------------------------------------------------------------------------- /cmd/agent/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/agent/config_test.go -------------------------------------------------------------------------------- /cmd/ctl/ctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/ctl/ctl.go -------------------------------------------------------------------------------- /cmd/ctl/ctl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/ctl/ctl_test.go -------------------------------------------------------------------------------- /cmd/db/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/db/config.go -------------------------------------------------------------------------------- /cmd/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/db/db.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/runner/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/runner/config.go -------------------------------------------------------------------------------- /cmd/runner/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/runner/config_test.go -------------------------------------------------------------------------------- /cmd/runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/runner/runner.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/web/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/web/config.go -------------------------------------------------------------------------------- /cmd/web/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/web/config_test.go -------------------------------------------------------------------------------- /cmd/web/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/cmd/web/web.go -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/ct.yaml -------------------------------------------------------------------------------- /docs/_generated_soap_wsdl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/_generated_soap_wsdl.go -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/api/docs.go -------------------------------------------------------------------------------- /docs/api/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/api/swagger.json -------------------------------------------------------------------------------- /docs/api/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/api/swagger.yaml -------------------------------------------------------------------------------- /docs/ci-cd-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/ci-cd-variables.md -------------------------------------------------------------------------------- /docs/development/health-aggregation-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/development/health-aggregation-matrix.md -------------------------------------------------------------------------------- /docs/development/how-to-make-a-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/development/how-to-make-a-release.md -------------------------------------------------------------------------------- /docs/runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/runner.md -------------------------------------------------------------------------------- /docs/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/scope.md -------------------------------------------------------------------------------- /docs/trento-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/trento-architecture.md -------------------------------------------------------------------------------- /docs/trento-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/trento-architecture.png -------------------------------------------------------------------------------- /docs/trento-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/docs/trento-architecture.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/go.sum -------------------------------------------------------------------------------- /hack/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/deploy.sh -------------------------------------------------------------------------------- /hack/dump_scenario_from_k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/dump_scenario_from_k8s.sh -------------------------------------------------------------------------------- /hack/get_version_from_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/get_version_from_git.sh -------------------------------------------------------------------------------- /hack/gh_release_to_obs_changeset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/gh_release_to_obs_changeset.py -------------------------------------------------------------------------------- /hack/helm/trento-dev/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/helm/trento-dev/Chart.lock -------------------------------------------------------------------------------- /hack/helm/trento-dev/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/helm/trento-dev/Chart.yaml -------------------------------------------------------------------------------- /hack/helm/trento-dev/templates/prometheus_loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/helm/trento-dev/templates/prometheus_loadbalancer.yaml -------------------------------------------------------------------------------- /hack/helm/trento-dev/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/helm/trento-dev/values.yaml -------------------------------------------------------------------------------- /hack/id_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/hack/id_checker.py -------------------------------------------------------------------------------- /helmlintconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/helmlintconf.yaml -------------------------------------------------------------------------------- /install-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/install-agent.sh -------------------------------------------------------------------------------- /install-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/install-server.sh -------------------------------------------------------------------------------- /internal/cloud/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/azure.go -------------------------------------------------------------------------------- /internal/cloud/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/azure_test.go -------------------------------------------------------------------------------- /internal/cloud/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/metadata.go -------------------------------------------------------------------------------- /internal/cloud/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/metadata_test.go -------------------------------------------------------------------------------- /internal/cloud/mocks/CustomCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/mocks/CustomCommand.go -------------------------------------------------------------------------------- /internal/cloud/mocks/HTTPClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cloud/mocks/HTTPClient.go -------------------------------------------------------------------------------- /internal/cluster/cib/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/cib/data.go -------------------------------------------------------------------------------- /internal/cluster/cib/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/cib/parser.go -------------------------------------------------------------------------------- /internal/cluster/cib/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/cib/parser_test.go -------------------------------------------------------------------------------- /internal/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/cluster.go -------------------------------------------------------------------------------- /internal/cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/cluster_test.go -------------------------------------------------------------------------------- /internal/cluster/crmmon/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/crmmon/data.go -------------------------------------------------------------------------------- /internal/cluster/crmmon/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/crmmon/parser.go -------------------------------------------------------------------------------- /internal/cluster/crmmon/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/crmmon/parser_test.go -------------------------------------------------------------------------------- /internal/cluster/sbd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/sbd.go -------------------------------------------------------------------------------- /internal/cluster/sbd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/cluster/sbd_test.go -------------------------------------------------------------------------------- /internal/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/config.go -------------------------------------------------------------------------------- /internal/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/db/db.go -------------------------------------------------------------------------------- /internal/grafana/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/grafana/grafana.go -------------------------------------------------------------------------------- /internal/grafana/node_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/grafana/node_exporter.json -------------------------------------------------------------------------------- /internal/heartbeat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/heartbeat.go -------------------------------------------------------------------------------- /internal/hosts/discovered_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/hosts/discovered_host.go -------------------------------------------------------------------------------- /internal/hosts/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/hosts/metadata.go -------------------------------------------------------------------------------- /internal/prometheus/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/prometheus/prometheus.go -------------------------------------------------------------------------------- /internal/prometheus/prometheus_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/prometheus/prometheus_mock.go -------------------------------------------------------------------------------- /internal/sapsystem/mocks/CustomCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/sapsystem/mocks/CustomCommand.go -------------------------------------------------------------------------------- /internal/sapsystem/sapcontrol/mocks/WebService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/sapsystem/sapcontrol/mocks/WebService.go -------------------------------------------------------------------------------- /internal/sapsystem/sapcontrol/webservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/sapsystem/sapcontrol/webservice.go -------------------------------------------------------------------------------- /internal/sapsystem/sapsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/sapsystem/sapsystem.go -------------------------------------------------------------------------------- /internal/sapsystem/sapsystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/sapsystem/sapsystem_test.go -------------------------------------------------------------------------------- /internal/subscription/mocks/CustomCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/subscription/mocks/CustomCommand.go -------------------------------------------------------------------------------- /internal/subscription/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/subscription/subscription.go -------------------------------------------------------------------------------- /internal/subscription/subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/subscription/subscription_test.go -------------------------------------------------------------------------------- /internal/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/utils.go -------------------------------------------------------------------------------- /internal/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/internal/uuid.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/main.go -------------------------------------------------------------------------------- /packaging/config/agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/config/agent.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/Chart.lock -------------------------------------------------------------------------------- /packaging/helm/trento-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/Chart.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/.helmignore -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/Chart.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Trento (runner) installed! -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/templates/_helpers.tpl -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/templates/deployment.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/templates/hpa.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/privatekey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/templates/privatekey.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-runner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-runner/values.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/.helmignore -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/Chart.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/NOTES.txt -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/_helpers.tpl -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/certs.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/collectorservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/collectorservice.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/deployment.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/hpa.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/ingress.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/prune_checks_cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/prune_checks_cronjob.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/prune_events_cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/prune_events_cronjob.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/tests/test-collector-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/tests/test-collector-connection.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/tests/test-web-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/tests/test-web-connection.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/templates/webservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/templates/webservice.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/charts/trento-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/charts/trento-web/values.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/templates/NOTES.txt -------------------------------------------------------------------------------- /packaging/helm/trento-server/templates/grafana_datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/templates/grafana_datasources.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/templates/prometheus_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/templates/prometheus_configmap.yaml -------------------------------------------------------------------------------- /packaging/helm/trento-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/helm/trento-server/values.yaml -------------------------------------------------------------------------------- /packaging/suse/_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/suse/_service -------------------------------------------------------------------------------- /packaging/suse/trento.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/suse/trento.spec -------------------------------------------------------------------------------- /packaging/systemd/trento-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/packaging/systemd/trento-agent.service -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /runner/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/ansible.cfg -------------------------------------------------------------------------------- /runner/ansible/callback_plugins/trento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/callback_plugins/trento.py -------------------------------------------------------------------------------- /runner/ansible/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/check.yml -------------------------------------------------------------------------------- /runner/ansible/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/meta.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.1.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.1.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.1.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.1.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.1/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.1/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.1/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.2.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.2.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.2.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.2.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.2/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.2/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.3.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.3.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.3.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.3.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.3/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.3/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.3/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.3/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.4.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.4.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.4.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.4.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.4/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.4/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.4/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.4/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.5.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.5.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.5.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.5.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.5/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.5/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.5/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.5/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.6.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.6.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.6.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.6.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.6/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.6/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.6/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.6/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.7/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.7/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.7/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.7/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.8.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.8.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.8.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.8.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.8/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.8/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.8/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.8/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.9.runtime/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.9.runtime/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.9.runtime/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.9.runtime/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.9/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.9/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.1.9/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.1.9/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.2.1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.2.1/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.2.1/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.2.1/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.2.2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.2.2/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.2.2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.2.2/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.1/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.1/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.1/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.2/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.2/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.3/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.3/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.3/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.3/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.4/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.4/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.4/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.4/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.5/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.5/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.5/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.5/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.6/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.6/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.6/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.6/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.7/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.7/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.3.7/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.3.7/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.5.2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.5.2/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/1.5.2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/1.5.2/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.1/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.1/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.1/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.2/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.2/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.2/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.2/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.3.exclude/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.3.exclude/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.3.exclude/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.3.exclude/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.3/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.3/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.3/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.3/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.4/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.4/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.4/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.4/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.5.exclude/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.5.exclude/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.5.exclude/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.5.exclude/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.5/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.5/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.5/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.5/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.7/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.7/defaults/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/checks/2.2.7/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/checks/2.2.7/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/load_facts/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/load_facts/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/roles/post-metadata/tasks/post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/post-metadata/tasks/post.yml -------------------------------------------------------------------------------- /runner/ansible/roles/post-metadata/tasks/store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/post-metadata/tasks/store.yml -------------------------------------------------------------------------------- /runner/ansible/roles/post-results/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/roles/post-results/tasks/main.yml -------------------------------------------------------------------------------- /runner/ansible/vars/azure/10-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/vars/azure/10-default.yml -------------------------------------------------------------------------------- /runner/ansible/vars/dev/10-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansible/vars/dev/10-default.yml -------------------------------------------------------------------------------- /runner/ansiblerunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansiblerunner.go -------------------------------------------------------------------------------- /runner/ansiblerunner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/ansiblerunner_test.go -------------------------------------------------------------------------------- /runner/inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/inventory.go -------------------------------------------------------------------------------- /runner/inventory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/inventory_test.go -------------------------------------------------------------------------------- /runner/mocks/CustomCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/mocks/CustomCommand.go -------------------------------------------------------------------------------- /runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/runner.go -------------------------------------------------------------------------------- /runner/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/runner/runner_test.go -------------------------------------------------------------------------------- /test/ansible_test/ansible/check.yml: -------------------------------------------------------------------------------- 1 | Dummy check.yml for UT purpose 2 | -------------------------------------------------------------------------------- /test/ansible_test/ansible/meta.yml: -------------------------------------------------------------------------------- 1 | Dummy meta.yml for UT purpose 2 | -------------------------------------------------------------------------------- /test/ansible_test/ansible_hosts: -------------------------------------------------------------------------------- 1 | Dummy ansible_hosts for UT purpose 2 | -------------------------------------------------------------------------------- /test/authkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/authkey -------------------------------------------------------------------------------- /test/azure_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/azure_metadata -------------------------------------------------------------------------------- /test/certs/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/ca-cert.pem -------------------------------------------------------------------------------- /test/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/ca-key.pem -------------------------------------------------------------------------------- /test/certs/client-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/client-cert.pem -------------------------------------------------------------------------------- /test/certs/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/client-key.pem -------------------------------------------------------------------------------- /test/certs/client-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/client-req.pem -------------------------------------------------------------------------------- /test/certs/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/server-cert.pem -------------------------------------------------------------------------------- /test/certs/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/server-key.pem -------------------------------------------------------------------------------- /test/certs/server-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/certs/server-req.pem -------------------------------------------------------------------------------- /test/e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/.eslintrc.js -------------------------------------------------------------------------------- /test/e2e/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /test/e2e/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/.prettierrc.js -------------------------------------------------------------------------------- /test/e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/.photofinish.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/.photofinish.toml -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/about/about.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/about/about.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/checks-catalog/available_checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/checks-catalog/available_checks.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/checks-catalog/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/checks-catalog/catalog.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/checks-catalog/checks_catalog.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/checks-catalog/checks_catalog.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SFAIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SFAIL.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SOK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_1_SOK.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SFAIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SFAIL.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SOK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery_4_SOK.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/available_clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/available_clusters.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/checks_results_critical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/checks_results_critical.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/checks_results_passing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/checks_results_passing.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/checks_results_warning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/checks_results_warning.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/clusters-overview/clusters_overview.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/clusters-overview/clusters_overview.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-cluster-details/available_hana_cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-cluster-details/available_hana_cluster.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-cluster-details/checks_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-cluster-details/checks_results.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-cluster-details/hana_cluster_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-cluster-details/hana_cluster_details.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GRAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GRAY.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GREEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_GREEN.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_RED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_RED.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_YELLOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery_YELLOW.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/hana_database_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/hana_database_details.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/newagent_sap_system_discovery_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/newagent_sap_system_discovery_new.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hana-database-details/selected_database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hana-database-details/selected_database.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/098fc159-3ed6-58e7-91be-38fda8a833ea_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0a055c90-4cb6-54ce-ac9c-ae3fedaf40d4_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/0fc07435-7ee2-54ca-b0de-fb27ffdc5deb_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/116d49bd-85e1-5e59-b820-83f66db8800c_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/1b0e9297-97dd-55d6-9874-8efde4d84c90_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/21de186a-e38f-5804-b643-7f4ef22fecfd_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/240f96b1-8d26-53b7-9e99-ffb0f2e735bf_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/25677e37-fd33-5005-896c-9275b1284534_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/3711ea88-9ccc-5b07-8f9d-042be449d72b_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/422686d6-b2d1-5092-93e8-a744854f5085_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/4b30a6af-4b52-5bda-bccb-f2248a12c992_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/69f4dcbb-efa2-5a16-8bc8-01df7dbb7384_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/81e9b629-c1e7-538f-bff1-47d3a6580522_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/927901fa-2c87-524e-b18c-3ef5187f504f_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/99cf8a3a-48d6-57a4-b302-6e4482227ab6_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a26b6d0-6e72-597c-9fe5-152a6875f214_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/9cd46919-5f19-59aa-993e-cf3736c71053_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a09d9cf3-46c1-505c-8fb8-4b0a71a9114e_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/a3297d85-5e8b-5ac5-b8a3-55eebc2b8d12_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/b767b3e9-e802-587e-a442-541d093b86b9_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/ddcb7992-2ffb-5c10-8b39-80685f6eaaba_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/e0c182db-32ff-55c6-a9eb-2b82dd21bc8b_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/f0c808b3-d869-5192-a944-20f66a6a8449_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_cloud_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_ha_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_ha_cluster_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_host_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_sap_system_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_sap_system_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_subscription_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/healthy-27-node-SAP-cluster/fb2c6b8a-9915-5969-a6b7-8b5a42de1971_subscription_discovery.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/host-details/host_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/host-details/host_details.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/host-details/selected_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/host-details/selected_host.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hosts-overview/available_hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hosts-overview/available_hosts.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/hosts-overview/hosts_overview.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/hosts-overview/hosts_overview.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GRAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GRAY.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GREEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_GREEN.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_YELLOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_YELLOW.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/newagent_sap_system_discovery_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/newagent_sap_system_discovery_new.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/sap_system_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/sap_system_details.feature -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-system-details/selected_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-system-details/selected_system.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery_RED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/13e8c25c-3180-5a9a-95c8-51ec38e50cfc_sap_system_discovery_RED.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/1b0e9297-97dd-55d6-9874-8efde4d84c90_sap_system_discovery_RED.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/2ace860d-38e9-55f4-b051-faf4336e71d6_sap_system_discovery_DAA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/2ace860d-38e9-55f4-b051-faf4336e71d6_sap_system_discovery_DAA.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery_GRAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/7269ee51-5007-5849-aaa7-7c4a98b0c9ce_sap_system_discovery_GRAY.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery_YELLOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/9a3ec76a-dd4f-5013-9cf0-5eb4cf89898f_sap_system_discovery_YELLOW.json -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/available_sap_systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/available_sap_systems.js -------------------------------------------------------------------------------- /test/e2e/cypress/fixtures/sap-systems-overview/sap_systems_overview.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/fixtures/sap-systems-overview/sap_systems_overview.feature -------------------------------------------------------------------------------- /test/e2e/cypress/integration/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/about.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/checks_catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/checks_catalog.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/clusters_overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/clusters_overview.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/hana_cluster_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/hana_cluster_details.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/hana_database_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/hana_database_details.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/home.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/host_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/host_details.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/hosts_overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/hosts_overview.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/sap_system_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/sap_system_details.js -------------------------------------------------------------------------------- /test/e2e/cypress/integration/sap_systems_overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/integration/sap_systems_overview.js -------------------------------------------------------------------------------- /test/e2e/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/plugins/index.js -------------------------------------------------------------------------------- /test/e2e/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/support/commands.js -------------------------------------------------------------------------------- /test/e2e/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/cypress/support/index.js -------------------------------------------------------------------------------- /test/e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/package-lock.json -------------------------------------------------------------------------------- /test/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/e2e/package.json -------------------------------------------------------------------------------- /test/fake_cibadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fake_cibadmin.sh -------------------------------------------------------------------------------- /test/fake_crm_mon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fake_crm_mon.sh -------------------------------------------------------------------------------- /test/fake_sbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fake_sbd.sh -------------------------------------------------------------------------------- /test/fixtures/config/agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/config/agent.yaml -------------------------------------------------------------------------------- /test/fixtures/config/runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/config/runner.yaml -------------------------------------------------------------------------------- /test/fixtures/config/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/config/web.yaml -------------------------------------------------------------------------------- /test/fixtures/discovery/azure/azure_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/azure/azure_discovery.json -------------------------------------------------------------------------------- /test/fixtures/discovery/azure/expected_published_cloud_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/azure/expected_published_cloud_discovery.json -------------------------------------------------------------------------------- /test/fixtures/discovery/cluster/cluster_discovery_hana_scale_up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/cluster/cluster_discovery_hana_scale_up.json -------------------------------------------------------------------------------- /test/fixtures/discovery/cluster/cluster_discovery_unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/cluster/cluster_discovery_unknown.json -------------------------------------------------------------------------------- /test/fixtures/discovery/cluster/expected_published_cluster_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/cluster/expected_published_cluster_discovery.json -------------------------------------------------------------------------------- /test/fixtures/discovery/host/expected_published_host_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/host/expected_published_host_discovery.json -------------------------------------------------------------------------------- /test/fixtures/discovery/sap_system/expected_published_sap_system_discovery_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/sap_system/expected_published_sap_system_discovery_application.json -------------------------------------------------------------------------------- /test/fixtures/discovery/sap_system/expected_published_sap_system_discovery_database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/sap_system/expected_published_sap_system_discovery_database.json -------------------------------------------------------------------------------- /test/fixtures/discovery/sap_system/sap_system_discovery_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/sap_system/sap_system_discovery_application.json -------------------------------------------------------------------------------- /test/fixtures/discovery/sap_system/sap_system_discovery_database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/sap_system/sap_system_discovery_database.json -------------------------------------------------------------------------------- /test/fixtures/discovery/sap_system/sap_system_discovery_diagnostics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/sap_system/sap_system_discovery_diagnostics.json -------------------------------------------------------------------------------- /test/fixtures/discovery/subscriptions/expected_published_subscriptions_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/subscriptions/expected_published_subscriptions_discovery.json -------------------------------------------------------------------------------- /test/fixtures/discovery/subscriptions/subscriptions_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/fixtures/discovery/subscriptions/subscriptions_discovery.json -------------------------------------------------------------------------------- /test/hdbnsutil_srstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/hdbnsutil_srstate -------------------------------------------------------------------------------- /test/helpers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/helpers/config.go -------------------------------------------------------------------------------- /test/helpers/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/helpers/db.go -------------------------------------------------------------------------------- /test/helpers/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/helpers/http.go -------------------------------------------------------------------------------- /test/landscape_host_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/landscape_host_configuration -------------------------------------------------------------------------------- /test/sap_profile_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/sap_profile_default -------------------------------------------------------------------------------- /test/sbd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/sbd_config -------------------------------------------------------------------------------- /test/sbd_config_no_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/sbd_config_no_device -------------------------------------------------------------------------------- /test/sbd_config_quoted_devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/sbd_config_quoted_devices -------------------------------------------------------------------------------- /test/system_replication_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/system_replication_status -------------------------------------------------------------------------------- /test/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/test/testing.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/tools/tools.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/version/version.go -------------------------------------------------------------------------------- /web/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/about.go -------------------------------------------------------------------------------- /web/about_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/about_test.go -------------------------------------------------------------------------------- /web/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/alert.go -------------------------------------------------------------------------------- /web/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/api.go -------------------------------------------------------------------------------- /web/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/api_test.go -------------------------------------------------------------------------------- /web/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/app.go -------------------------------------------------------------------------------- /web/checks_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/checks_api.go -------------------------------------------------------------------------------- /web/checks_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/checks_api_test.go -------------------------------------------------------------------------------- /web/checks_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/checks_catalog.go -------------------------------------------------------------------------------- /web/checks_catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/checks_catalog_test.go -------------------------------------------------------------------------------- /web/clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/clusters.go -------------------------------------------------------------------------------- /web/clusters_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/clusters_api.go -------------------------------------------------------------------------------- /web/clusters_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/clusters_api_test.go -------------------------------------------------------------------------------- /web/clusters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/clusters_test.go -------------------------------------------------------------------------------- /web/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/collector.go -------------------------------------------------------------------------------- /web/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/collector_test.go -------------------------------------------------------------------------------- /web/datapipeline/clusters_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/clusters_projector.go -------------------------------------------------------------------------------- /web/datapipeline/clusters_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/clusters_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/data_collected_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/data_collected_event.go -------------------------------------------------------------------------------- /web/datapipeline/health_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/health_projector.go -------------------------------------------------------------------------------- /web/datapipeline/health_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/health_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/host_telemetry_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/host_telemetry_projector.go -------------------------------------------------------------------------------- /web/datapipeline/host_telemetry_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/host_telemetry_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/hosts_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/hosts_projector.go -------------------------------------------------------------------------------- /web/datapipeline/hosts_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/hosts_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/projector.go -------------------------------------------------------------------------------- /web/datapipeline/projector_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/projector_mock.go -------------------------------------------------------------------------------- /web/datapipeline/projector_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/projector_registry.go -------------------------------------------------------------------------------- /web/datapipeline/projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/sap_systems_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/sap_systems_projector.go -------------------------------------------------------------------------------- /web/datapipeline/sap_systems_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/sap_systems_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/sles_subsciptions_projector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/sles_subsciptions_projector.go -------------------------------------------------------------------------------- /web/datapipeline/sles_subsciptions_projector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/sles_subsciptions_projector_test.go -------------------------------------------------------------------------------- /web/datapipeline/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/subscription.go -------------------------------------------------------------------------------- /web/datapipeline/worker_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/worker_pool.go -------------------------------------------------------------------------------- /web/datapipeline/worker_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/datapipeline/worker_pool_test.go -------------------------------------------------------------------------------- /web/entities/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/check.go -------------------------------------------------------------------------------- /web/entities/check_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/check_result.go -------------------------------------------------------------------------------- /web/entities/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/cluster.go -------------------------------------------------------------------------------- /web/entities/health_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/health_state.go -------------------------------------------------------------------------------- /web/entities/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/host.go -------------------------------------------------------------------------------- /web/entities/host_telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/host_telemetry.go -------------------------------------------------------------------------------- /web/entities/sap_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/sap_system.go -------------------------------------------------------------------------------- /web/entities/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/settings.go -------------------------------------------------------------------------------- /web/entities/sles_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/entities/sles_subscription.go -------------------------------------------------------------------------------- /web/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/errors.go -------------------------------------------------------------------------------- /web/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/errors_test.go -------------------------------------------------------------------------------- /web/eula.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/eula.go -------------------------------------------------------------------------------- /web/eula_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/eula_test.go -------------------------------------------------------------------------------- /web/frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/.babelrc -------------------------------------------------------------------------------- /web/frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/.eslintrc.js -------------------------------------------------------------------------------- /web/frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | assets 2 | -------------------------------------------------------------------------------- /web/frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/.prettierrc.js -------------------------------------------------------------------------------- /web/frontend/components/Accordion/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Accordion/Accordion.js -------------------------------------------------------------------------------- /web/frontend/components/Accordion/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Accordion/Toggle.js -------------------------------------------------------------------------------- /web/frontend/components/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Accordion/index.js -------------------------------------------------------------------------------- /web/frontend/components/Checkbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Checkbox/Checkbox.js -------------------------------------------------------------------------------- /web/frontend/components/Checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Checkbox/index.js -------------------------------------------------------------------------------- /web/frontend/components/ChecksTable/CheckResultIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/ChecksTable/CheckResultIcon.js -------------------------------------------------------------------------------- /web/frontend/components/ChecksTable/ChecksTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/ChecksTable/ChecksTable.js -------------------------------------------------------------------------------- /web/frontend/components/ChecksTable/RowGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/ChecksTable/RowGroup.js -------------------------------------------------------------------------------- /web/frontend/components/ChecksTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/ChecksTable/index.js -------------------------------------------------------------------------------- /web/frontend/components/Dropdown/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Dropdown/Dropdown.js -------------------------------------------------------------------------------- /web/frontend/components/Dropdown/DropdownItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Dropdown/DropdownItem.js -------------------------------------------------------------------------------- /web/frontend/components/Dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Dropdown/index.js -------------------------------------------------------------------------------- /web/frontend/components/HealthSummary/HealthSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/HealthSummary/HealthSummary.js -------------------------------------------------------------------------------- /web/frontend/components/HealthSummary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/HealthSummary/index.js -------------------------------------------------------------------------------- /web/frontend/components/Toast/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Toast/Toast.js -------------------------------------------------------------------------------- /web/frontend/components/Toast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/components/Toast/index.js -------------------------------------------------------------------------------- /web/frontend/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/favicon.svg -------------------------------------------------------------------------------- /web/frontend/images/trento-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-icon.png -------------------------------------------------------------------------------- /web/frontend/images/trento-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-icon.svg -------------------------------------------------------------------------------- /web/frontend/images/trento-logo-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-logo-horizontal.png -------------------------------------------------------------------------------- /web/frontend/images/trento-logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-logo-horizontal.svg -------------------------------------------------------------------------------- /web/frontend/images/trento-logo-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-logo-stacked.png -------------------------------------------------------------------------------- /web/frontend/images/trento-logo-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/images/trento-logo-stacked.svg -------------------------------------------------------------------------------- /web/frontend/javascripts/catalog_anchors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/catalog_anchors.js -------------------------------------------------------------------------------- /web/frontend/javascripts/check_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/check_results.js -------------------------------------------------------------------------------- /web/frontend/javascripts/cluster_check_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/cluster_check_settings.js -------------------------------------------------------------------------------- /web/frontend/javascripts/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/homepage.js -------------------------------------------------------------------------------- /web/frontend/javascripts/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/layout.js -------------------------------------------------------------------------------- /web/frontend/javascripts/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/tables.js -------------------------------------------------------------------------------- /web/frontend/javascripts/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/javascripts/tags.js -------------------------------------------------------------------------------- /web/frontend/lib/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/lib/lists/index.js -------------------------------------------------------------------------------- /web/frontend/lib/log/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/lib/log/index.js -------------------------------------------------------------------------------- /web/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/package-lock.json -------------------------------------------------------------------------------- /web/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/package.json -------------------------------------------------------------------------------- /web/frontend/stylesheets/override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/stylesheets/override.scss -------------------------------------------------------------------------------- /web/frontend/stylesheets/stylesheets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/stylesheets/stylesheets.scss -------------------------------------------------------------------------------- /web/frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/frontend/webpack.config.js -------------------------------------------------------------------------------- /web/health_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/health_container.go -------------------------------------------------------------------------------- /web/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/home.go -------------------------------------------------------------------------------- /web/home_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/home_test.go -------------------------------------------------------------------------------- /web/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/hosts.go -------------------------------------------------------------------------------- /web/hosts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/hosts_test.go -------------------------------------------------------------------------------- /web/layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/layout.go -------------------------------------------------------------------------------- /web/layout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/layout_test.go -------------------------------------------------------------------------------- /web/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/logger.go -------------------------------------------------------------------------------- /web/middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/middlewares.go -------------------------------------------------------------------------------- /web/middlewares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/middlewares_test.go -------------------------------------------------------------------------------- /web/models/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/check.go -------------------------------------------------------------------------------- /web/models/check_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/check_result.go -------------------------------------------------------------------------------- /web/models/check_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/check_settings.go -------------------------------------------------------------------------------- /web/models/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/cluster.go -------------------------------------------------------------------------------- /web/models/clusters_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/clusters_settings.go -------------------------------------------------------------------------------- /web/models/health_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/health_summary.go -------------------------------------------------------------------------------- /web/models/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/host.go -------------------------------------------------------------------------------- /web/models/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/prometheus.go -------------------------------------------------------------------------------- /web/models/sap_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/sap_system.go -------------------------------------------------------------------------------- /web/models/sles_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/sles_subscription.go -------------------------------------------------------------------------------- /web/models/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/models/tag.go -------------------------------------------------------------------------------- /web/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/pagination.go -------------------------------------------------------------------------------- /web/pagination_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/pagination_test.go -------------------------------------------------------------------------------- /web/prometheus_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/prometheus_api.go -------------------------------------------------------------------------------- /web/prometheus_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/prometheus_api_test.go -------------------------------------------------------------------------------- /web/sap_systems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/sap_systems.go -------------------------------------------------------------------------------- /web/sap_systems_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/sap_systems_api.go -------------------------------------------------------------------------------- /web/sap_systems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/sap_systems_test.go -------------------------------------------------------------------------------- /web/services/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/checks.go -------------------------------------------------------------------------------- /web/services/checks_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/checks_mock.go -------------------------------------------------------------------------------- /web/services/checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/checks_test.go -------------------------------------------------------------------------------- /web/services/clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/clusters.go -------------------------------------------------------------------------------- /web/services/clusters_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/clusters_mock.go -------------------------------------------------------------------------------- /web/services/clusters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/clusters_test.go -------------------------------------------------------------------------------- /web/services/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/collector.go -------------------------------------------------------------------------------- /web/services/collector_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/collector_mock.go -------------------------------------------------------------------------------- /web/services/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/collector_test.go -------------------------------------------------------------------------------- /web/services/health_summary_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/health_summary_service.go -------------------------------------------------------------------------------- /web/services/health_summary_service_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/health_summary_service_mock.go -------------------------------------------------------------------------------- /web/services/health_summary_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/health_summary_service_test.go -------------------------------------------------------------------------------- /web/services/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/hosts.go -------------------------------------------------------------------------------- /web/services/hosts_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/hosts_mock.go -------------------------------------------------------------------------------- /web/services/hosts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/hosts_test.go -------------------------------------------------------------------------------- /web/services/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/pagination.go -------------------------------------------------------------------------------- /web/services/pagination_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/pagination_test.go -------------------------------------------------------------------------------- /web/services/premium_detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/premium_detection.go -------------------------------------------------------------------------------- /web/services/premium_detection_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/premium_detection_mock.go -------------------------------------------------------------------------------- /web/services/premium_detection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/premium_detection_test.go -------------------------------------------------------------------------------- /web/services/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/prometheus.go -------------------------------------------------------------------------------- /web/services/prometheus_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/prometheus_mock.go -------------------------------------------------------------------------------- /web/services/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/prometheus_test.go -------------------------------------------------------------------------------- /web/services/sap_systems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/sap_systems.go -------------------------------------------------------------------------------- /web/services/sap_systems_service_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/sap_systems_service_mock.go -------------------------------------------------------------------------------- /web/services/sap_systems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/sap_systems_test.go -------------------------------------------------------------------------------- /web/services/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/settings.go -------------------------------------------------------------------------------- /web/services/settings_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/settings_mock.go -------------------------------------------------------------------------------- /web/services/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/settings_test.go -------------------------------------------------------------------------------- /web/services/subscriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/subscriptions.go -------------------------------------------------------------------------------- /web/services/subscriptions_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/subscriptions_mock.go -------------------------------------------------------------------------------- /web/services/subscriptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/subscriptions_test.go -------------------------------------------------------------------------------- /web/services/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/tags.go -------------------------------------------------------------------------------- /web/services/tags_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/tags_mock.go -------------------------------------------------------------------------------- /web/services/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/services/tags_test.go -------------------------------------------------------------------------------- /web/tags_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/tags_api.go -------------------------------------------------------------------------------- /web/tags_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/tags_api_test.go -------------------------------------------------------------------------------- /web/telemetry/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/engine.go -------------------------------------------------------------------------------- /web/telemetry/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/engine_test.go -------------------------------------------------------------------------------- /web/telemetry/extractor_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/extractor_mock.go -------------------------------------------------------------------------------- /web/telemetry/host_telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/host_telemetry.go -------------------------------------------------------------------------------- /web/telemetry/host_telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/host_telemetry_test.go -------------------------------------------------------------------------------- /web/telemetry/identified_extractor_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/identified_extractor_mock.go -------------------------------------------------------------------------------- /web/telemetry/installation_id_aware_extractor_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/installation_id_aware_extractor_mock.go -------------------------------------------------------------------------------- /web/telemetry/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/publisher.go -------------------------------------------------------------------------------- /web/telemetry/publisher_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/publisher_mock.go -------------------------------------------------------------------------------- /web/telemetry/publisher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/publisher_test.go -------------------------------------------------------------------------------- /web/telemetry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/telemetry/registry.go -------------------------------------------------------------------------------- /web/templates/about.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/about.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/alerts.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/alerts.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/cluster_checks_result_modal.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/cluster_checks_result_modal.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/clusters_table.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/clusters_table.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/empty_table_body.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/empty_table_body.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/footer.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/footer.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/header.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/header.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/health_container.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/health_container.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/health_filter.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/health_filter.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/health_icon.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/health_icon.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/hosts_table.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/hosts_table.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/license.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/license.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/node_modal.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/node_modal.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/pagination.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/pagination.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sap_instance.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sap_instance.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sap_system_layout.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sap_system_layout.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sap_systems_table.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sap_systems_table.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sbd.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sbd.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sidebar.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sidebar.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/sites.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/sites.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/submenu.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/submenu.html.tmpl -------------------------------------------------------------------------------- /web/templates/blocks/version.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/blocks/version.html.tmpl -------------------------------------------------------------------------------- /web/templates/checks_catalog.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/checks_catalog.html.tmpl -------------------------------------------------------------------------------- /web/templates/cluster_hana.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/cluster_hana.html.tmpl -------------------------------------------------------------------------------- /web/templates/clusters.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/clusters.html.tmpl -------------------------------------------------------------------------------- /web/templates/error.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/error.html.tmpl -------------------------------------------------------------------------------- /web/templates/error404.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/error404.html.tmpl -------------------------------------------------------------------------------- /web/templates/eula.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/eula.html.tmpl -------------------------------------------------------------------------------- /web/templates/ha_checks.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/ha_checks.html.tmpl -------------------------------------------------------------------------------- /web/templates/home.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/home.html.tmpl -------------------------------------------------------------------------------- /web/templates/host.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/host.html.tmpl -------------------------------------------------------------------------------- /web/templates/hosts.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/hosts.html.tmpl -------------------------------------------------------------------------------- /web/templates/layout.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/layout.html.tmpl -------------------------------------------------------------------------------- /web/templates/sap_system.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/sap_system.html.tmpl -------------------------------------------------------------------------------- /web/templates/sap_systems.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/templates/sap_systems.html.tmpl -------------------------------------------------------------------------------- /web/web_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trento-project/trento/HEAD/web/web_test.go --------------------------------------------------------------------------------