├── .github ├── CODEOWNERS └── workflows │ └── tests.yml ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.rst ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── Makefile ├── README.rst ├── consumer ├── definitions.json ├── kafka_consumer │ ├── __init__.py │ └── utils.py ├── main.py └── schemas.json ├── depc.example.yml ├── depc ├── __init__.py ├── admin.py ├── apiv1 │ ├── __init__.py │ ├── checks.py │ ├── configs.py │ ├── dependencies.py │ ├── errors.py │ ├── news.py │ ├── qos.py │ ├── rules.py │ ├── sources.py │ ├── statistics.py │ ├── teams.py │ ├── users.py │ └── variables.py ├── commands │ ├── __init__.py │ ├── config.py │ ├── key.py │ └── user.py ├── context.py ├── controllers │ ├── __init__.py │ ├── checks.py │ ├── configs.py │ ├── dependencies.py │ ├── grants.py │ ├── news.py │ ├── qos.py │ ├── rules.py │ ├── sources.py │ ├── statistics.py │ ├── teams.py │ ├── users.py │ ├── variables.py │ └── worst.py ├── extensions │ ├── __init__.py │ ├── encrypted_dict.py │ └── flask_redis_cache.py ├── logs │ ├── __init__.py │ ├── handlers.py │ └── sinks.py ├── models │ ├── __init__.py │ ├── checks.py │ ├── configs.py │ ├── news.py │ ├── rules.py │ ├── sources.py │ ├── teams.py │ ├── users.py │ ├── variables.py │ └── worst.py ├── queries.py ├── schemas │ ├── v1_check.json │ ├── v1_config.json │ ├── v1_label.json │ ├── v1_rule.json │ ├── v1_source.json │ ├── v1_team.json │ ├── v1_variable.json │ └── v1_warp.json ├── sources │ ├── __init__.py │ ├── exceptions.py │ ├── fake │ │ ├── __init__.py │ │ └── metrics.py │ ├── opentsdb │ │ └── __init__.py │ └── warp │ │ └── __init__.py ├── static │ ├── grafana_details_dashboard.json │ └── grafana_summary_dashboard.json ├── tasks.py ├── templates.py ├── templates │ └── admin │ │ └── cache.html ├── users.py └── utils │ ├── __init__.py │ ├── neo4j.py │ ├── qos.py │ ├── redis_cache.py │ └── warp10.py ├── depc_dependencies.png ├── depc_logo.png ├── depc_qos.png ├── depc_screenshots.gif ├── depc_screenshots_small.gif ├── docker-entrypoint.sh ├── docs ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ ├── custom.css │ └── images │ │ ├── architecture.png │ │ ├── architecture.svg │ │ ├── depc-logo.png │ │ ├── depc-logo.svg │ │ ├── depc_screenshots.gif │ │ ├── guides │ │ ├── grafana │ │ │ ├── details.png │ │ │ ├── export_button.png │ │ │ ├── export_modal.png │ │ │ ├── import_json.png │ │ │ ├── import_json_2.png │ │ │ └── summary.png │ │ ├── indicators │ │ │ ├── interval.png │ │ │ └── simple_threshold.png │ │ └── variables │ │ │ ├── builtins_variables.png │ │ │ ├── indicator_variable.png │ │ │ ├── jinja_condition_1.png │ │ │ ├── jinja_condition_2.png │ │ │ └── jinja_condition_3.png │ │ ├── installation │ │ ├── airflow_webserver.png │ │ ├── airflow_webserver_config.png │ │ ├── create_team.png │ │ └── empty_homepage.png │ │ ├── logo.png │ │ ├── neo4j-logo.png │ │ ├── qos_dependencies.png │ │ └── tutorial │ │ ├── acme_team.png │ │ ├── all_fake_checks.png │ │ ├── associate_filer_servers.png │ │ ├── attach_server_ping_check.png │ │ ├── attach_servers_checks.png │ │ ├── check_server_ping.png │ │ ├── dashboard1.png │ │ ├── dashboard2.png │ │ ├── dashboard3.png │ │ ├── dependencies.png │ │ ├── dependencies_association.png │ │ ├── dependencies_qos.png │ │ ├── dependencies_website_filer.png │ │ ├── empty_dashboard.png │ │ ├── graph_api.png │ │ ├── kafka1.png │ │ ├── kafka2.png │ │ ├── kafka3.png │ │ ├── new_fake_source.png │ │ ├── new_filers_rule.png │ │ ├── qos_evolution_all_labels.png │ │ ├── qos_evolution_specific_label.png │ │ ├── qos_evolution_specific_node.png │ │ ├── qos_evolution_specific_node_details1.png │ │ ├── qos_evolution_specific_node_details2.png │ │ ├── rule_details_http_status_code.png │ │ ├── rule_details_max_dbconnections.png │ │ ├── rule_details_server_oco.png │ │ ├── rule_details_server_ping.png │ │ ├── rule_filers_result.png │ │ ├── rule_launched_summary.png │ │ ├── rule_range_yesterday.png │ │ ├── team_id.png │ │ ├── update_configuration.png │ │ └── website_dependencies.png ├── api │ ├── checks.rst │ ├── configs.rst │ ├── dependencies.rst │ ├── index.rst │ ├── news.rst │ ├── qos.rst │ ├── rules.rst │ ├── sources.rst │ ├── statistics.rst │ ├── teams.rst │ ├── users.rst │ └── variables.rst ├── conf.py ├── guides │ ├── difference-qos-sla.rst │ ├── grafana.rst │ ├── index.rst │ ├── indicators.rst │ ├── kafka.rst │ ├── queries.rst │ ├── sources.rst │ └── variables.rst ├── index.rst ├── installation.rst ├── make.bat └── tutorial.rst ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 30126831f6eb_init_database.py │ ├── 48570234e11c_add_the_news_table.py │ ├── 88c2ab34728c_rename_check_parameters.py │ ├── 956e9a3dd287_add_metas_column_to_teams_table.py │ └── d2dc7ff020a0_remove_logs_table.py ├── pytest.ini ├── requirements.txt ├── scheduler ├── __init__.py └── dags │ ├── __init__.py │ ├── decoder.py │ ├── generate_dags.py │ ├── operators │ ├── __init__.py │ ├── after_subdag_operator.py │ ├── aggregation_operator.py │ ├── average_operator.py │ ├── before_subdag_operator.py │ ├── daily_worst_operator.py │ ├── operation_operator.py │ └── rule_operator.py │ └── save_config.py ├── tests ├── __init__.py ├── apiv1 │ ├── __init__.py │ ├── test_checks.py │ ├── test_dependencies.py │ ├── test_news.py │ ├── test_ping.py │ ├── test_rules.py │ ├── test_sources.py │ └── test_teams.py ├── conftest.py ├── consumer │ ├── __init__.py │ └── test_utils.py ├── controllers │ ├── __init__.py │ ├── test_configs.py │ ├── test_dependencies.py │ └── test_teams.py ├── data │ ├── available_sources.json │ ├── opentsdb_checks.json │ ├── opentsdb_source.json │ └── opentsdb_threshold_check.json └── utils │ ├── __init__.py │ └── test_qos.py └── ui ├── .bowerrc ├── .editorconfig ├── .npmrc ├── Dockerfile ├── Gruntfile.js ├── README.md ├── app ├── 404.html ├── favicon.ico ├── images │ ├── alert.png │ ├── bg.gif │ ├── empty.png │ ├── fake.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── gray-line-bg.gif │ ├── loading.gif │ ├── logo.png │ ├── opentsdb.png │ ├── panel-critical.png │ ├── panel-ok.png │ ├── panel-unknown.png │ ├── panel-warning.png │ └── warp10.png ├── index.html ├── robots.txt ├── scripts │ ├── app.js │ ├── controllers │ │ ├── display_check_parameters.js │ │ ├── modal_associate_checks.js │ │ ├── modal_display_check_result.js │ │ ├── modal_display_config.js │ │ ├── modal_display_json.js │ │ ├── modal_edit_rule.js │ │ ├── modal_edit_source.js │ │ ├── modal_new_config.js │ │ ├── modal_new_rule.js │ │ ├── modal_new_source.js │ │ ├── modal_news.js │ │ ├── modal_relationship_periods.js │ │ ├── navbar.js │ │ ├── team │ │ │ ├── checks.js │ │ │ ├── configuration.js │ │ │ ├── dashboard.js │ │ │ ├── dependencies.js │ │ │ ├── item.js │ │ │ ├── label.js │ │ │ ├── permissions.js │ │ │ ├── rules.js │ │ │ ├── statistics.js │ │ │ └── variables.js │ │ └── teams.js │ ├── filters │ │ ├── numberTrunc.js │ │ └── slugify.js │ └── services │ │ ├── breadcrumbs.js │ │ ├── charts.js │ │ ├── checks.js │ │ ├── config.js │ │ ├── configurations.js │ │ ├── dependencies.js │ │ ├── httpinterceptor.js │ │ ├── modal.js │ │ ├── news.js │ │ ├── qos.js │ │ ├── rules.js │ │ ├── sources.js │ │ ├── statistics.js │ │ ├── teams.js │ │ ├── users.js │ │ └── variables.js ├── styles │ └── main.css └── views │ ├── modals │ ├── associate_checks.html │ ├── confirm.html │ ├── display_check_parameters.html │ ├── display_check_result.html │ ├── display_config.html │ ├── display_json.html │ ├── edit_rule.html │ ├── edit_source.html │ ├── new_config.html │ ├── new_rule.html │ ├── new_source.html │ ├── news.html │ └── relationship_periods.html │ ├── navbar.html │ ├── team │ ├── checks.html │ ├── configuration.html │ ├── dashboard.html │ ├── dependencies.html │ ├── item.html │ ├── label.html │ ├── navbar.html │ ├── permissions.html │ ├── rules.html │ ├── statistics.html │ └── variables.html │ └── teams.html ├── bower.json ├── nginx └── default └── package.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/README.rst -------------------------------------------------------------------------------- /consumer/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/consumer/definitions.json -------------------------------------------------------------------------------- /consumer/kafka_consumer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/consumer/kafka_consumer/__init__.py -------------------------------------------------------------------------------- /consumer/kafka_consumer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/consumer/kafka_consumer/utils.py -------------------------------------------------------------------------------- /consumer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/consumer/main.py -------------------------------------------------------------------------------- /consumer/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/consumer/schemas.json -------------------------------------------------------------------------------- /depc.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc.example.yml -------------------------------------------------------------------------------- /depc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/__init__.py -------------------------------------------------------------------------------- /depc/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/admin.py -------------------------------------------------------------------------------- /depc/apiv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/__init__.py -------------------------------------------------------------------------------- /depc/apiv1/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/checks.py -------------------------------------------------------------------------------- /depc/apiv1/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/configs.py -------------------------------------------------------------------------------- /depc/apiv1/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/dependencies.py -------------------------------------------------------------------------------- /depc/apiv1/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/errors.py -------------------------------------------------------------------------------- /depc/apiv1/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/news.py -------------------------------------------------------------------------------- /depc/apiv1/qos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/qos.py -------------------------------------------------------------------------------- /depc/apiv1/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/rules.py -------------------------------------------------------------------------------- /depc/apiv1/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/sources.py -------------------------------------------------------------------------------- /depc/apiv1/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/statistics.py -------------------------------------------------------------------------------- /depc/apiv1/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/teams.py -------------------------------------------------------------------------------- /depc/apiv1/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/users.py -------------------------------------------------------------------------------- /depc/apiv1/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/apiv1/variables.py -------------------------------------------------------------------------------- /depc/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depc/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/commands/config.py -------------------------------------------------------------------------------- /depc/commands/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/commands/key.py -------------------------------------------------------------------------------- /depc/commands/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/commands/user.py -------------------------------------------------------------------------------- /depc/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/context.py -------------------------------------------------------------------------------- /depc/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/__init__.py -------------------------------------------------------------------------------- /depc/controllers/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/checks.py -------------------------------------------------------------------------------- /depc/controllers/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/configs.py -------------------------------------------------------------------------------- /depc/controllers/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/dependencies.py -------------------------------------------------------------------------------- /depc/controllers/grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/grants.py -------------------------------------------------------------------------------- /depc/controllers/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/news.py -------------------------------------------------------------------------------- /depc/controllers/qos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/qos.py -------------------------------------------------------------------------------- /depc/controllers/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/rules.py -------------------------------------------------------------------------------- /depc/controllers/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/sources.py -------------------------------------------------------------------------------- /depc/controllers/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/statistics.py -------------------------------------------------------------------------------- /depc/controllers/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/teams.py -------------------------------------------------------------------------------- /depc/controllers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/users.py -------------------------------------------------------------------------------- /depc/controllers/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/variables.py -------------------------------------------------------------------------------- /depc/controllers/worst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/controllers/worst.py -------------------------------------------------------------------------------- /depc/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/extensions/__init__.py -------------------------------------------------------------------------------- /depc/extensions/encrypted_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/extensions/encrypted_dict.py -------------------------------------------------------------------------------- /depc/extensions/flask_redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/extensions/flask_redis_cache.py -------------------------------------------------------------------------------- /depc/logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/logs/__init__.py -------------------------------------------------------------------------------- /depc/logs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/logs/handlers.py -------------------------------------------------------------------------------- /depc/logs/sinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/logs/sinks.py -------------------------------------------------------------------------------- /depc/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/__init__.py -------------------------------------------------------------------------------- /depc/models/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/checks.py -------------------------------------------------------------------------------- /depc/models/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/configs.py -------------------------------------------------------------------------------- /depc/models/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/news.py -------------------------------------------------------------------------------- /depc/models/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/rules.py -------------------------------------------------------------------------------- /depc/models/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/sources.py -------------------------------------------------------------------------------- /depc/models/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/teams.py -------------------------------------------------------------------------------- /depc/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/users.py -------------------------------------------------------------------------------- /depc/models/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/variables.py -------------------------------------------------------------------------------- /depc/models/worst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/models/worst.py -------------------------------------------------------------------------------- /depc/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/queries.py -------------------------------------------------------------------------------- /depc/schemas/v1_check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_check.json -------------------------------------------------------------------------------- /depc/schemas/v1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_config.json -------------------------------------------------------------------------------- /depc/schemas/v1_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_label.json -------------------------------------------------------------------------------- /depc/schemas/v1_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_rule.json -------------------------------------------------------------------------------- /depc/schemas/v1_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_source.json -------------------------------------------------------------------------------- /depc/schemas/v1_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_team.json -------------------------------------------------------------------------------- /depc/schemas/v1_variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_variable.json -------------------------------------------------------------------------------- /depc/schemas/v1_warp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/schemas/v1_warp.json -------------------------------------------------------------------------------- /depc/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/__init__.py -------------------------------------------------------------------------------- /depc/sources/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/exceptions.py -------------------------------------------------------------------------------- /depc/sources/fake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/fake/__init__.py -------------------------------------------------------------------------------- /depc/sources/fake/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/fake/metrics.py -------------------------------------------------------------------------------- /depc/sources/opentsdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/opentsdb/__init__.py -------------------------------------------------------------------------------- /depc/sources/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/sources/warp/__init__.py -------------------------------------------------------------------------------- /depc/static/grafana_details_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/static/grafana_details_dashboard.json -------------------------------------------------------------------------------- /depc/static/grafana_summary_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/static/grafana_summary_dashboard.json -------------------------------------------------------------------------------- /depc/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/tasks.py -------------------------------------------------------------------------------- /depc/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/templates.py -------------------------------------------------------------------------------- /depc/templates/admin/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/templates/admin/cache.html -------------------------------------------------------------------------------- /depc/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/users.py -------------------------------------------------------------------------------- /depc/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/utils/__init__.py -------------------------------------------------------------------------------- /depc/utils/neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/utils/neo4j.py -------------------------------------------------------------------------------- /depc/utils/qos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/utils/qos.py -------------------------------------------------------------------------------- /depc/utils/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/utils/redis_cache.py -------------------------------------------------------------------------------- /depc/utils/warp10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc/utils/warp10.py -------------------------------------------------------------------------------- /depc_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc_dependencies.png -------------------------------------------------------------------------------- /depc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc_logo.png -------------------------------------------------------------------------------- /depc_qos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc_qos.png -------------------------------------------------------------------------------- /depc_screenshots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc_screenshots.gif -------------------------------------------------------------------------------- /depc_screenshots_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/depc_screenshots_small.gif -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .wy-side-nav-search { 2 | background-color: #2c475b; 3 | } -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | .wy-side-nav-search { 2 | background-color: red !important; 3 | } -------------------------------------------------------------------------------- /docs/_static/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/architecture.png -------------------------------------------------------------------------------- /docs/_static/images/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/architecture.svg -------------------------------------------------------------------------------- /docs/_static/images/depc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/depc-logo.png -------------------------------------------------------------------------------- /docs/_static/images/depc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/depc-logo.svg -------------------------------------------------------------------------------- /docs/_static/images/depc_screenshots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/depc_screenshots.gif -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/details.png -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/export_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/export_button.png -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/export_modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/export_modal.png -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/import_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/import_json.png -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/import_json_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/import_json_2.png -------------------------------------------------------------------------------- /docs/_static/images/guides/grafana/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/grafana/summary.png -------------------------------------------------------------------------------- /docs/_static/images/guides/indicators/interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/indicators/interval.png -------------------------------------------------------------------------------- /docs/_static/images/guides/indicators/simple_threshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/indicators/simple_threshold.png -------------------------------------------------------------------------------- /docs/_static/images/guides/variables/builtins_variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/variables/builtins_variables.png -------------------------------------------------------------------------------- /docs/_static/images/guides/variables/indicator_variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/variables/indicator_variable.png -------------------------------------------------------------------------------- /docs/_static/images/guides/variables/jinja_condition_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/variables/jinja_condition_1.png -------------------------------------------------------------------------------- /docs/_static/images/guides/variables/jinja_condition_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/variables/jinja_condition_2.png -------------------------------------------------------------------------------- /docs/_static/images/guides/variables/jinja_condition_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/guides/variables/jinja_condition_3.png -------------------------------------------------------------------------------- /docs/_static/images/installation/airflow_webserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/installation/airflow_webserver.png -------------------------------------------------------------------------------- /docs/_static/images/installation/airflow_webserver_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/installation/airflow_webserver_config.png -------------------------------------------------------------------------------- /docs/_static/images/installation/create_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/installation/create_team.png -------------------------------------------------------------------------------- /docs/_static/images/installation/empty_homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/installation/empty_homepage.png -------------------------------------------------------------------------------- /docs/_static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/logo.png -------------------------------------------------------------------------------- /docs/_static/images/neo4j-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/neo4j-logo.png -------------------------------------------------------------------------------- /docs/_static/images/qos_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/qos_dependencies.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/acme_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/acme_team.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/all_fake_checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/all_fake_checks.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/associate_filer_servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/associate_filer_servers.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/attach_server_ping_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/attach_server_ping_check.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/attach_servers_checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/attach_servers_checks.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/check_server_ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/check_server_ping.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dashboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dashboard1.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dashboard2.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dashboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dashboard3.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dependencies.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dependencies_association.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dependencies_association.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dependencies_qos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dependencies_qos.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/dependencies_website_filer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/dependencies_website_filer.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/empty_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/empty_dashboard.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/graph_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/graph_api.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/kafka1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/kafka1.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/kafka2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/kafka2.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/kafka3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/kafka3.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/new_fake_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/new_fake_source.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/new_filers_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/new_filers_rule.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/qos_evolution_all_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/qos_evolution_all_labels.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/qos_evolution_specific_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/qos_evolution_specific_label.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/qos_evolution_specific_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/qos_evolution_specific_node.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/qos_evolution_specific_node_details1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/qos_evolution_specific_node_details1.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/qos_evolution_specific_node_details2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/qos_evolution_specific_node_details2.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_details_http_status_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_details_http_status_code.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_details_max_dbconnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_details_max_dbconnections.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_details_server_oco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_details_server_oco.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_details_server_ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_details_server_ping.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_filers_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_filers_result.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_launched_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_launched_summary.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/rule_range_yesterday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/rule_range_yesterday.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/team_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/team_id.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/update_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/update_configuration.png -------------------------------------------------------------------------------- /docs/_static/images/tutorial/website_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/_static/images/tutorial/website_dependencies.png -------------------------------------------------------------------------------- /docs/api/checks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/checks.rst -------------------------------------------------------------------------------- /docs/api/configs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/configs.rst -------------------------------------------------------------------------------- /docs/api/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/dependencies.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/news.rst -------------------------------------------------------------------------------- /docs/api/qos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/qos.rst -------------------------------------------------------------------------------- /docs/api/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/rules.rst -------------------------------------------------------------------------------- /docs/api/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/sources.rst -------------------------------------------------------------------------------- /docs/api/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/statistics.rst -------------------------------------------------------------------------------- /docs/api/teams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/teams.rst -------------------------------------------------------------------------------- /docs/api/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/users.rst -------------------------------------------------------------------------------- /docs/api/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/api/variables.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/guides/difference-qos-sla.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/difference-qos-sla.rst -------------------------------------------------------------------------------- /docs/guides/grafana.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/grafana.rst -------------------------------------------------------------------------------- /docs/guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/index.rst -------------------------------------------------------------------------------- /docs/guides/indicators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/indicators.rst -------------------------------------------------------------------------------- /docs/guides/kafka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/kafka.rst -------------------------------------------------------------------------------- /docs/guides/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/queries.rst -------------------------------------------------------------------------------- /docs/guides/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/sources.rst -------------------------------------------------------------------------------- /docs/guides/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/guides/variables.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/30126831f6eb_init_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/versions/30126831f6eb_init_database.py -------------------------------------------------------------------------------- /migrations/versions/48570234e11c_add_the_news_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/versions/48570234e11c_add_the_news_table.py -------------------------------------------------------------------------------- /migrations/versions/88c2ab34728c_rename_check_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/versions/88c2ab34728c_rename_check_parameters.py -------------------------------------------------------------------------------- /migrations/versions/956e9a3dd287_add_metas_column_to_teams_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/versions/956e9a3dd287_add_metas_column_to_teams_table.py -------------------------------------------------------------------------------- /migrations/versions/d2dc7ff020a0_remove_logs_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/migrations/versions/d2dc7ff020a0_remove_logs_table.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/requirements.txt -------------------------------------------------------------------------------- /scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scheduler/dags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/__init__.py -------------------------------------------------------------------------------- /scheduler/dags/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/decoder.py -------------------------------------------------------------------------------- /scheduler/dags/generate_dags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/generate_dags.py -------------------------------------------------------------------------------- /scheduler/dags/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/__init__.py -------------------------------------------------------------------------------- /scheduler/dags/operators/after_subdag_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/after_subdag_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/aggregation_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/aggregation_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/average_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/average_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/before_subdag_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/before_subdag_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/daily_worst_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/daily_worst_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/operation_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/operation_operator.py -------------------------------------------------------------------------------- /scheduler/dags/operators/rule_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/operators/rule_operator.py -------------------------------------------------------------------------------- /scheduler/dags/save_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/scheduler/dags/save_config.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apiv1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apiv1/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_checks.py -------------------------------------------------------------------------------- /tests/apiv1/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_dependencies.py -------------------------------------------------------------------------------- /tests/apiv1/test_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_news.py -------------------------------------------------------------------------------- /tests/apiv1/test_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_ping.py -------------------------------------------------------------------------------- /tests/apiv1/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_rules.py -------------------------------------------------------------------------------- /tests/apiv1/test_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_sources.py -------------------------------------------------------------------------------- /tests/apiv1/test_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/apiv1/test_teams.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/consumer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/consumer/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/consumer/test_utils.py -------------------------------------------------------------------------------- /tests/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/controllers/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/controllers/test_configs.py -------------------------------------------------------------------------------- /tests/controllers/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/controllers/test_dependencies.py -------------------------------------------------------------------------------- /tests/controllers/test_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/controllers/test_teams.py -------------------------------------------------------------------------------- /tests/data/available_sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/data/available_sources.json -------------------------------------------------------------------------------- /tests/data/opentsdb_checks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/data/opentsdb_checks.json -------------------------------------------------------------------------------- /tests/data/opentsdb_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/data/opentsdb_source.json -------------------------------------------------------------------------------- /tests/data/opentsdb_threshold_check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/data/opentsdb_threshold_check.json -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_qos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/tests/utils/test_qos.py -------------------------------------------------------------------------------- /ui/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/.editorconfig -------------------------------------------------------------------------------- /ui/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/Gruntfile.js -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/404.html -------------------------------------------------------------------------------- /ui/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/favicon.ico -------------------------------------------------------------------------------- /ui/app/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/alert.png -------------------------------------------------------------------------------- /ui/app/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/bg.gif -------------------------------------------------------------------------------- /ui/app/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/empty.png -------------------------------------------------------------------------------- /ui/app/images/fake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/fake.png -------------------------------------------------------------------------------- /ui/app/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/favicon-16x16.png -------------------------------------------------------------------------------- /ui/app/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/favicon-32x32.png -------------------------------------------------------------------------------- /ui/app/images/gray-line-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/gray-line-bg.gif -------------------------------------------------------------------------------- /ui/app/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/loading.gif -------------------------------------------------------------------------------- /ui/app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/logo.png -------------------------------------------------------------------------------- /ui/app/images/opentsdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/opentsdb.png -------------------------------------------------------------------------------- /ui/app/images/panel-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/panel-critical.png -------------------------------------------------------------------------------- /ui/app/images/panel-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/panel-ok.png -------------------------------------------------------------------------------- /ui/app/images/panel-unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/panel-unknown.png -------------------------------------------------------------------------------- /ui/app/images/panel-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/panel-warning.png -------------------------------------------------------------------------------- /ui/app/images/warp10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/images/warp10.png -------------------------------------------------------------------------------- /ui/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/index.html -------------------------------------------------------------------------------- /ui/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | Disallow: 5 | -------------------------------------------------------------------------------- /ui/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/app.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/display_check_parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/display_check_parameters.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_associate_checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_associate_checks.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_display_check_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_display_check_result.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_display_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_display_config.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_display_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_display_json.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_edit_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_edit_rule.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_edit_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_edit_source.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_new_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_new_config.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_new_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_new_rule.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_new_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_new_source.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_news.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/modal_relationship_periods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/modal_relationship_periods.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/navbar.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/checks.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/configuration.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/dashboard.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/dependencies.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/item.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/label.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/permissions.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/rules.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/statistics.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/team/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/team/variables.js -------------------------------------------------------------------------------- /ui/app/scripts/controllers/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/controllers/teams.js -------------------------------------------------------------------------------- /ui/app/scripts/filters/numberTrunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/filters/numberTrunc.js -------------------------------------------------------------------------------- /ui/app/scripts/filters/slugify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/filters/slugify.js -------------------------------------------------------------------------------- /ui/app/scripts/services/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/breadcrumbs.js -------------------------------------------------------------------------------- /ui/app/scripts/services/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/charts.js -------------------------------------------------------------------------------- /ui/app/scripts/services/checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/checks.js -------------------------------------------------------------------------------- /ui/app/scripts/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/config.js -------------------------------------------------------------------------------- /ui/app/scripts/services/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/configurations.js -------------------------------------------------------------------------------- /ui/app/scripts/services/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/dependencies.js -------------------------------------------------------------------------------- /ui/app/scripts/services/httpinterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/httpinterceptor.js -------------------------------------------------------------------------------- /ui/app/scripts/services/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/modal.js -------------------------------------------------------------------------------- /ui/app/scripts/services/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/news.js -------------------------------------------------------------------------------- /ui/app/scripts/services/qos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/qos.js -------------------------------------------------------------------------------- /ui/app/scripts/services/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/rules.js -------------------------------------------------------------------------------- /ui/app/scripts/services/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/sources.js -------------------------------------------------------------------------------- /ui/app/scripts/services/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/statistics.js -------------------------------------------------------------------------------- /ui/app/scripts/services/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/teams.js -------------------------------------------------------------------------------- /ui/app/scripts/services/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/users.js -------------------------------------------------------------------------------- /ui/app/scripts/services/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/scripts/services/variables.js -------------------------------------------------------------------------------- /ui/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/styles/main.css -------------------------------------------------------------------------------- /ui/app/views/modals/associate_checks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/associate_checks.html -------------------------------------------------------------------------------- /ui/app/views/modals/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/confirm.html -------------------------------------------------------------------------------- /ui/app/views/modals/display_check_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/display_check_parameters.html -------------------------------------------------------------------------------- /ui/app/views/modals/display_check_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/display_check_result.html -------------------------------------------------------------------------------- /ui/app/views/modals/display_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/display_config.html -------------------------------------------------------------------------------- /ui/app/views/modals/display_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/display_json.html -------------------------------------------------------------------------------- /ui/app/views/modals/edit_rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/edit_rule.html -------------------------------------------------------------------------------- /ui/app/views/modals/edit_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/edit_source.html -------------------------------------------------------------------------------- /ui/app/views/modals/new_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/new_config.html -------------------------------------------------------------------------------- /ui/app/views/modals/new_rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/new_rule.html -------------------------------------------------------------------------------- /ui/app/views/modals/new_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/new_source.html -------------------------------------------------------------------------------- /ui/app/views/modals/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/news.html -------------------------------------------------------------------------------- /ui/app/views/modals/relationship_periods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/modals/relationship_periods.html -------------------------------------------------------------------------------- /ui/app/views/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/navbar.html -------------------------------------------------------------------------------- /ui/app/views/team/checks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/checks.html -------------------------------------------------------------------------------- /ui/app/views/team/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/configuration.html -------------------------------------------------------------------------------- /ui/app/views/team/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/dashboard.html -------------------------------------------------------------------------------- /ui/app/views/team/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/dependencies.html -------------------------------------------------------------------------------- /ui/app/views/team/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/item.html -------------------------------------------------------------------------------- /ui/app/views/team/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/label.html -------------------------------------------------------------------------------- /ui/app/views/team/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/navbar.html -------------------------------------------------------------------------------- /ui/app/views/team/permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/permissions.html -------------------------------------------------------------------------------- /ui/app/views/team/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/rules.html -------------------------------------------------------------------------------- /ui/app/views/team/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/statistics.html -------------------------------------------------------------------------------- /ui/app/views/team/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/team/variables.html -------------------------------------------------------------------------------- /ui/app/views/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/app/views/teams.html -------------------------------------------------------------------------------- /ui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/bower.json -------------------------------------------------------------------------------- /ui/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/nginx/default -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/depc/HEAD/ui/package.json --------------------------------------------------------------------------------