├── .gitattributes └── community ├── .dockerignore ├── .editorconfig ├── .env ├── .gitignore ├── .gitlab-ci-builder.yml ├── .gitlab-ci-common.yml ├── .gitlab-ci-template.yml ├── .gitlab-ci.yml ├── CHANGELOG.md ├── COPYING ├── README.md ├── deployment └── canopsis │ └── docker │ ├── .env │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── canopsis.env │ ├── community.env │ ├── docker-compose.yml │ ├── files │ ├── canopsis │ │ └── reconfigure │ │ │ └── conf.d │ │ │ └── canopsis-override.toml │ ├── mongo-rs-init │ │ └── rs-initiate.js │ ├── mongo │ │ ├── 0-keyFile.sh │ │ └── create_user.js │ └── postgresql │ │ ├── canopsis.sh │ │ └── tech_metrics.sh │ ├── mongodb.env │ ├── rabbitmq.env │ ├── rabbitmq_docker_update.py │ ├── redis.env │ └── timescaledb.env ├── dist ├── Makefile ├── README.md ├── almalinux-8-canopsis.cfg ├── almalinux-9-canopsis.cfg ├── canopsis-almalinux-8-x86_64.spec └── canopsis-almalinux-9-x86_64.spec ├── env-release.example.sh ├── go-engines-community ├── .dockerignore ├── .gitignore ├── COPYING ├── Dockerfile ├── Makefile ├── README.md ├── cmd │ ├── amqp2tty │ │ └── main.go │ ├── canopsis-api-community │ │ ├── README.md │ │ └── main.go │ ├── canopsis-reconfigure │ │ ├── README.md │ │ ├── canopsis-community.toml │ │ ├── canopsis-pro.toml │ │ ├── flags.go │ │ ├── gracefull_start.go │ │ └── main.go │ ├── engine-action │ │ ├── dependencies.go │ │ └── main.go │ ├── engine-axe │ │ ├── dependencies.go │ │ └── main.go │ ├── engine-che │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── dependencies.go │ │ └── main.go │ ├── engine-fifo │ │ ├── dependencies.go │ │ └── main.go │ ├── engine-pbehavior │ │ ├── README.md │ │ ├── compute_rrule_end.go │ │ ├── compute_rrule_start_periodical_worker.go │ │ ├── dependencies.go │ │ ├── main.go │ │ ├── periodical_worker.go │ │ ├── recompute_message_processor.go │ │ ├── recompute_message_processor_test.go │ │ └── rpc_server_message_processor.go │ ├── mongo-migrations │ │ ├── flags.go │ │ └── main.go │ ├── prometheus-exporter │ │ ├── README.md │ │ ├── flags.go │ │ └── main.go │ └── ready │ │ └── main.go ├── config │ └── api │ │ └── security │ │ ├── config.yml │ │ └── rbac_model.conf ├── database │ ├── fixtures │ │ ├── alarm.yml │ │ ├── color_theme.yml │ │ ├── config.yml │ │ ├── pbehavior.yml │ │ └── user.yml │ ├── migrations │ │ ├── 20210820133303_create_indexes_down.js │ │ ├── 20210820133303_create_indexes_up.js │ │ ├── 20210903160403_create_message_rate_statistic_minute_collection_down.js │ │ ├── 20210903160403_create_message_rate_statistic_minute_collection_up.js │ │ ├── 20220221145037_remove_external_data_entity_down.js │ │ ├── 20220221145037_remove_external_data_entity_up.js │ │ ├── 20220221145145_migrate_change_entity_rules_down.js │ │ ├── 20220221145145_migrate_change_entity_rules_up.js │ │ ├── 20220221145155_migrate_event_filters_down.js │ │ ├── 20220221145155_migrate_event_filters_up.js │ │ ├── 20220224111147_create_pattern_index_down.js │ │ ├── 20220224111147_create_pattern_index_up.js │ │ ├── 20220614153432_rename_filter_to_kpi_filter_down.js │ │ ├── 20220614153432_rename_filter_to_kpi_filter_up.js │ │ ├── 20220620114937_rename_dynamic_infos_rules_date_fields_down.js │ │ ├── 20220620114937_rename_dynamic_infos_rules_date_fields_up.js │ │ ├── 20220621150927_migrate_rules_to_new_patterns_down.js │ │ ├── 20220621150927_migrate_rules_to_new_patterns_up.js │ │ ├── 20220621164830_migrate_pbehavior_to_new_patterns_down.js │ │ ├── 20220621164830_migrate_pbehavior_to_new_patterns_up.js │ │ ├── 20220629100738_migrate_widget_filter_to_new_patterns_down.js │ │ ├── 20220629100738_migrate_widget_filter_to_new_patterns_up.js │ │ ├── 20220705181613_add_duration_fields_to_alarm_down.js │ │ ├── 20220705181613_add_duration_fields_to_alarm_up.js │ │ ├── 20220706121453_add_corporate_pattern_permission_down.js │ │ ├── 20220706121453_add_corporate_pattern_permission_up.js │ │ ├── 20220708145048_add_connector_to_entities_down.js │ │ ├── 20220708145048_add_connector_to_entities_up.js │ │ ├── 20220708146000_update_component_to_entities_down.js │ │ ├── 20220708146000_update_component_to_entities_up.js │ │ ├── 20220811141434_create_map_down.js │ │ ├── 20220811141434_create_map_up.js │ │ ├── 20220817113619_migrate_widget_parameters_down.js │ │ ├── 20220817113619_migrate_widget_parameters_up.js │ │ ├── 20220926134510_create_share_token_collection_down.js │ │ ├── 20220926134510_create_share_token_collection_up.js │ │ ├── 20220927162501_add_tags_index_to_alarm_collections_down.js │ │ ├── 20220927162501_add_tags_index_to_alarm_collections_up.js │ │ ├── 20220928120308_create_alarm_tag_collection_down.js │ │ ├── 20220928120308_create_alarm_tag_collection_up.js │ │ ├── 20221004170259_add_api_export_configurations_permission_down.js │ │ ├── 20221004170259_add_api_export_configurations_permission_up.js │ │ ├── 20221006173733_add_techmetrics_permission_down.js │ │ ├── 20221006173733_add_techmetrics_permission_up.js │ │ ├── 20221017164122_update_service_counters_down.js │ │ ├── 20221017164122_update_service_counters_up.js │ │ ├── 20221026113347_update_service_weather_widget_down.js │ │ ├── 20221026113347_update_service_weather_widget_up.js │ │ ├── 20221026113415_update_service_weather_pbehavior_down.js │ │ ├── 20221026113415_update_service_weather_pbehavior_up.js │ │ ├── 20221103133437_add_fields_to_job_history_collection_down.js │ │ ├── 20221103133437_add_fields_to_job_history_collection_up.js │ │ ├── 20221103174719_add_fields_to_instruction_execution_collection_down.js │ │ ├── 20221103174719_add_fields_to_instruction_execution_collection_up.js │ │ ├── 20221107170108_add_triggers_to_instruction_collection_down.js │ │ ├── 20221107170108_add_triggers_to_instruction_collection_up.js │ │ ├── 20221118111451_rename_fields_in_default_rights_collection_down.js │ │ ├── 20221118111451_rename_fields_in_default_rights_collection_up.js │ │ ├── 20221125124428_add_indexes_to_alarm_collections_down.js │ │ ├── 20221125124428_add_indexes_to_alarm_collections_up.js │ │ ├── 20221201180311_update_datastorage_configuration_down.js │ │ ├── 20221201180311_update_datastorage_configuration_up.js │ │ ├── 20221207183057_create_declare_ticket_rule_down.js │ │ ├── 20221207183057_create_declare_ticket_rule_up.js │ │ ├── 20221208225226_add_soft_deleted_index_down.js │ │ ├── 20221208225226_add_soft_deleted_index_up.js │ │ ├── 20221213161732_add_reason_name_to_pbehavior_info_down.js │ │ ├── 20221213161732_add_reason_name_to_pbehavior_info_up.js │ │ ├── 20221219165517_add_view_playlist_permissions_to_admin_down.js │ │ ├── 20221219165517_add_view_playlist_permissions_to_admin_up.js │ │ ├── 20221222190336_add_v_parents_index_to_resolved_alarms_down.js │ │ ├── 20221222190336_add_v_parents_index_to_resolved_alarms_up.js │ │ ├── 20221227191625_change_ticket_objects_and_templates_down.js │ │ ├── 20221227191625_change_ticket_objects_and_templates_up.js │ │ ├── 20230109134821_add_color_to_pbehavior_type_down.js │ │ ├── 20230109134821_add_color_to_pbehavior_type_up.js │ │ ├── 20230111104601_add_widgettemplate_permissions_down.js │ │ ├── 20230111104601_add_widgettemplate_permissions_up.js │ │ ├── 20230201122041_remove_impact_depends_from_entities_down.js │ │ ├── 20230201122041_remove_impact_depends_from_entities_up.js │ │ ├── 20230206195905_create_link_rule_down.js │ │ ├── 20230206195905_create_link_rule_up.js │ │ ├── 20230208160848_add_metrics_settings_permission_down.js │ │ ├── 20230208160848_add_metrics_settings_permission_up.js │ │ ├── 20230227195820_update_dense_parameter_down.js │ │ ├── 20230227195820_update_dense_parameter_up.js │ │ ├── 20230320153348_migrate_widget_parameters_down.js │ │ ├── 20230320153348_migrate_widget_parameters_up.js │ │ ├── 20230322191458_update_priorities_down.js │ │ ├── 20230322191458_update_priorities_up.js │ │ ├── 20230324105056_add_chart_permissions_down.js │ │ ├── 20230324105056_add_chart_permissions_up.js │ │ ├── 20230327182943_rename_configuration_parameter_down.js │ │ ├── 20230327182943_rename_configuration_parameter_up.js │ │ ├── 20230403102611_add_permission_down.js │ │ ├── 20230403102611_add_permission_up.js │ │ ├── 20230406111325_add_share_token_permission_to_admin_down.js │ │ ├── 20230406111325_add_share_token_permission_to_admin_up.js │ │ ├── 20230505164439_set_job_timeout_down.js │ │ ├── 20230505164439_set_job_timeout_up.js │ │ ├── 20230512160642_add_update_alarm_permission_down.js │ │ ├── 20230512160642_add_update_alarm_permission_up.js │ │ ├── 20230515111900_add_kpi_reports_permissions_down.js │ │ ├── 20230515111900_add_kpi_reports_permissions_up.js │ │ ├── 20230515115748_update_kpi_charts_permissions_down.js │ │ ├── 20230515115748_update_kpi_charts_permissions_up.js │ │ ├── 20230518100242_add_unlinked_parents_to_alarms_collection_down.js │ │ ├── 20230518100242_add_unlinked_parents_to_alarms_collection_up.js │ │ ├── 20230619111248_add_permission_down.js │ │ ├── 20230619111248_add_permission_up.js │ │ ├── 20230619121112_move_links_widget_parameter_down.js │ │ ├── 20230619121112_move_links_widget_parameter_up.js │ │ ├── 20230619132639_refactor_acl_collection_down.js │ │ ├── 20230619132639_refactor_acl_collection_up.js │ │ ├── 20230703162816_add_internal_alarm_tag_down.js │ │ ├── 20230703162816_add_internal_alarm_tag_up.js │ │ ├── 20230707182117_create_type_service_index_for_entities_down.js │ │ ├── 20230707182117_create_type_service_index_for_entities_up.js │ │ ├── 20230707183844_migrate_entity_service_output_down.js │ │ ├── 20230707183844_migrate_entity_service_output_up.js │ │ ├── 20230721105023_create_infos_dictionary_indexes_down.js │ │ ├── 20230721105023_create_infos_dictionary_indexes_up.js │ │ ├── 20230725140509_create_eventfilter_failure_collection_down.js │ │ ├── 20230725140509_create_eventfilter_failure_collection_up.js │ │ ├── 20230804175446_create_meta_alarm_state_ttl_index_down.js │ │ ├── 20230804175446_create_meta_alarm_state_ttl_index_up.js │ │ ├── 20230816181505_api_maintenance_permission_down.js │ │ ├── 20230816181505_api_maintenance_permission_up.js │ │ ├── 20230830173500_ticket_data_widget_columns_down.js │ │ ├── 20230830173500_ticket_data_widget_columns_up.js │ │ ├── 20230830181251_insert_alarm_tags_colors_down.js │ │ ├── 20230830181251_insert_alarm_tags_colors_up.js │ │ ├── 20230906162054_color_themes_feature_down.js │ │ ├── 20230906162054_color_themes_feature_up.js │ │ ├── 20231006101716_private_view_flags_and_permissions_down.js │ │ ├── 20231006101716_private_view_flags_and_permissions_up.js │ │ ├── 20231012130559_bookmark_migrations_down.js │ │ ├── 20231012130559_bookmark_migrations_up.js │ │ ├── 20231017110021_disable_rules_with_old_patterns_down.js │ │ ├── 20231017110021_disable_rules_with_old_patterns_up.js │ │ ├── 20231101123810_state_settings_update_rights_and_models_down.js │ │ ├── 20231101123810_state_settings_update_rights_and_models_up.js │ │ ├── 20231124153221_drop_instruction_week_stats_down.js │ │ ├── 20231124153221_drop_instruction_week_stats_up.js │ │ ├── 20231130135214_add_icon_permissions_down.js │ │ ├── 20231130135214_add_icon_permissions_up.js │ │ ├── 20231211203303_change_entity_service_counters_collection_name_down.js │ │ ├── 20231211203303_change_entity_service_counters_collection_name_up.js │ │ ├── 20240104104756_drop_message_rate_statistic_minute_down.js │ │ ├── 20240104104756_drop_message_rate_statistic_minute_up.js │ │ ├── 20240206121536_add_change_state_field_to_alarm_value_down.js │ │ ├── 20240206121536_add_change_state_field_to_alarm_value_up.js │ │ ├── 20240228104452_update_meta_alarm_state_ttl_index_down.js │ │ ├── 20240228104452_update_meta_alarm_state_ttl_index_up.js │ │ ├── 20240318152055_add_author_field_to_pbehavior_info_down.js │ │ ├── 20240318152055_add_author_field_to_pbehavior_info_up.js │ │ ├── 20240320161635_add_last_event_field_to_alarm_tag_down.js │ │ ├── 20240320161635_add_last_event_field_to_alarm_tag_up.js │ │ ├── 20240322125533_add_metrics_availability_permissions_down.js │ │ ├── 20240322125533_add_metrics_availability_permissions_up.js │ │ ├── 20240401095427_add_alarm_count_field_to_pbehavior_down.js │ │ ├── 20240401095427_add_alarm_count_field_to_pbehavior_up.js │ │ ├── 20240419131303_add_entity_comment_permissions_down.js │ │ ├── 20240419131303_add_entity_comment_permissions_up.js │ │ ├── 20240430130339_fix_password_hash_case_down.js │ │ ├── 20240430130339_fix_password_hash_case_up.js │ │ ├── 20240521165643_enable_change_stream_pre_and_post_images_for_logged_collections_down.js │ │ ├── 20240521165643_enable_change_stream_pre_and_post_images_for_logged_collections_up.js │ │ ├── 20240617161601_add_entity_field_to_alarm_collection_down.js │ │ ├── 20240617161601_add_entity_field_to_alarm_collection_up.js │ │ ├── 20240704182306_role_collection_create_unique_name_index_down.js │ │ ├── 20240704182306_role_collection_create_unique_name_index_up.js │ │ ├── 20240710164443_add_event_record_permissions_down.js │ │ ├── 20240710164443_add_event_record_permissions_up.js │ │ ├── 20240802113003_add_service_weather_permission_down.js │ │ ├── 20240802113003_add_service_weather_permission_up.js │ │ ├── 20240903160709_create_indexes_down.js │ │ ├── 20240903160709_create_indexes_up.js │ │ ├── 20240905164359_add_techmetrics_settings_permission_down.js │ │ ├── 20240905164359_add_techmetrics_settings_permission_up.js │ │ ├── 20240913174727_add_failures_count_to_event_filters_down.js │ │ ├── 20240913174727_add_failures_count_to_event_filters_up.js │ │ ├── 20241014103253_add_fast_pbehavior_permission_down.js │ │ ├── 20241014103253_add_fast_pbehavior_permission_up.js │ │ ├── 20241015144704_add_meta_alarm_component_name_field_down.js │ │ ├── 20241015144704_add_meta_alarm_component_name_field_up.js │ │ ├── 20241016154326_fix_alarm_count_field_in_pbehavior_down.js │ │ ├── 20241016154326_fix_alarm_count_field_in_pbehavior_up.js │ │ ├── 20241025141700_refactor_permissions_down.js │ │ ├── 20241025141700_refactor_permissions_up.js │ │ ├── 20241030112843_add_internal_tag_labels_to_color_collection_down.js │ │ ├── 20241030112843_add_internal_tag_labels_to_color_collection_up.js │ │ ├── 20241121164814_add_comments_to_alarms_down.js │ │ ├── 20241121164814_add_comments_to_alarms_up.js │ │ ├── 20241129180915_add_enable_sli_metrics_flag_down.js │ │ ├── 20241129180915_add_enable_sli_metrics_flag_up.js │ │ ├── 20241202163620_add_default_color_theme_to_user_interface_config_down.js │ │ ├── 20241202163620_add_default_color_theme_to_user_interface_config_up.js │ │ ├── 20241204121540_refactor_view_permissions_down.js │ │ ├── 20241204121540_refactor_view_permissions_up.js │ │ ├── 20241206193312_metaalarm_output_template_mandatory_down.js │ │ ├── 20241206193312_metaalarm_output_template_mandatory_up.js │ │ ├── 20241212121543_create_external_data_table_collection_down.js │ │ ├── 20241212121543_create_external_data_table_collection_up.js │ │ ├── 20250114150018_add_last_st_upd_dt_field_down.js │ │ ├── 20250114150018_add_last_st_upd_dt_field_up.js │ │ ├── 20250114164817_fix_entity_soft_delete_down.js │ │ ├── 20250114164817_fix_entity_soft_delete_up.js │ │ ├── 20250114171150_add_soft_deleted_index_to_meta_alarm_rules_down.js │ │ ├── 20250114171150_add_soft_deleted_index_to_meta_alarm_rules_up.js │ │ ├── 20250128184825_add_cancel_delay_job_indexes_down.js │ │ ├── 20250128184825_add_cancel_delay_job_indexes_up.js │ │ ├── 20250214174928_migrate_data_storage_config_down.js │ │ ├── 20250214174928_migrate_data_storage_config_up.js │ │ ├── 20250228125350_remove_infos_rule_version_field_from_alarms_down.js │ │ ├── 20250228125350_remove_infos_rule_version_field_from_alarms_up.js │ │ ├── 20250306122307_update_search_in_userpreferences_down.js │ │ ├── 20250306122307_update_search_in_userpreferences_up.js │ │ ├── 20250424150232_update_color_themes_down.js │ │ ├── 20250424150232_update_color_themes_up.js │ │ ├── 20250424162413_add_widget_templates_down.js │ │ ├── 20250424162413_add_widget_templates_up.js │ │ ├── 20250429165942_add_user_notifications_down.js │ │ ├── 20250429165942_add_user_notifications_up.js │ │ ├── 20250505134912_add_max_state_alarm_value_field_down.js │ │ ├── 20250505134912_add_max_state_alarm_value_field_up.js │ │ ├── 20250508121910_rename_widget_parameter_down.js │ │ ├── 20250508121910_rename_widget_parameter_up.js │ │ ├── 20250521173114_remove_old_remediation_instructions_filters_fields_down.js │ │ ├── 20250521173114_remove_old_remediation_instructions_filters_fields_up.js │ │ ├── 20250530190234_entity_infos_properies_indexes_and_permissions_down.js │ │ ├── 20250530190234_entity_infos_properies_indexes_and_permissions_up.js │ │ ├── 20250602175944_add_permissions_down.js │ │ ├── 20250602175944_add_permissions_up.js │ │ ├── 20250626200729_dynamic_infos_add_set_to_info_type_down.js │ │ ├── 20250626200729_dynamic_infos_add_set_to_info_type_up.js │ │ ├── 20250627155334_add_index_to_pbehavior_down.js │ │ ├── 20250627155334_add_index_to_pbehavior_up.js │ │ ├── 20250714162935_add_broadcast_message_read_coll_down.js │ │ ├── 20250714162935_add_broadcast_message_read_coll_up.js │ │ ├── 20250723122536_add_template_data_collection_down.js │ │ ├── 20250723122536_add_template_data_collection_up.js │ │ ├── 20250815203233_external_data_column_configs_down.js │ │ ├── 20250815203233_external_data_column_configs_up.js │ │ ├── 20250820165448_add_default_widget_template_down.js │ │ ├── 20250820165448_add_default_widget_template_up.js │ │ ├── 20250822170623_add_permission_down.js │ │ ├── 20250822170623_add_permission_up.js │ │ ├── 20250908133910_create_webhook_token_rule_down.js │ │ ├── 20250908133910_create_webhook_token_rule_up.js │ │ ├── 20250915131054_add_data_storage_config_param_down.js │ │ ├── 20250915131054_add_data_storage_config_param_up.js │ │ ├── 20251003140440_create_missing_unique_indexes_down.js │ │ ├── 20251003140440_create_missing_unique_indexes_up.js │ │ ├── 20251106143008_add_linked_to_rules_external_data_tables_permissions_down.js │ │ ├── 20251106143008_add_linked_to_rules_external_data_tables_permissions_up.js │ │ ├── 20251126122504_webhoook_history_index_down.js │ │ ├── 20251126122504_webhoook_history_index_up.js │ │ ├── 20251126130408_webhoook_history_index_down.js │ │ └── 20251126130408_webhoook_history_index_up.js │ ├── postgres_migrations │ │ ├── 10_create_user_sessions_table.down.sql │ │ ├── 10_create_user_sessions_table.up.sql │ │ ├── 11_create_ticket_number_table.down.sql │ │ ├── 11_create_ticket_number_table.up.sql │ │ ├── 12_create_perf_data_table.down.sql │ │ ├── 12_create_perf_data_table.up.sql │ │ ├── 13_entity_id_sequence_bigint.down.sql │ │ ├── 13_entity_id_sequence_bigint.up.sql │ │ ├── 14_create_alarm_state_change_number_table.down.sql │ │ ├── 14_create_alarm_state_change_number_table.up.sql │ │ ├── 15_alter_sli_duration_entity_id_time_index.down.sql │ │ ├── 15_alter_sli_duration_entity_id_time_index.up.sql │ │ ├── 16_alter_sli_duration_entity_id_time_index.down.sql │ │ ├── 16_alter_sli_duration_entity_id_time_index.up.sql │ │ ├── 17_update_perf_data_name_table.down.sql │ │ ├── 17_update_perf_data_name_table.up.sql │ │ ├── 18_create_message_rate_table.down.sql │ │ ├── 18_create_message_rate_table.up.sql │ │ ├── 19_create_entity_category_table.down.sql │ │ ├── 19_create_entity_category_table.up.sql │ │ ├── 1_create_metrics_feature_tables.down.sql │ │ ├── 1_create_metrics_feature_tables.up.sql │ │ ├── 20_alter_continuous_aggregates_enable_real_time_agg.down.sql │ │ ├── 20_alter_continuous_aggregates_enable_real_time_agg.up.sql │ │ ├── 21_alter_instruction_execution_by_modified_on_table.down.sql │ │ ├── 21_alter_instruction_execution_by_modified_on_table.up.sql │ │ ├── 22_serial_name_table.down.sql │ │ ├── 22_serial_name_table.up.sql │ │ ├── 23_create_action_log_table.down.sql │ │ ├── 23_create_action_log_table.up.sql │ │ ├── 24_add_sli_duration_compression_policy.down.sql │ │ ├── 24_add_sli_duration_compression_policy.up.sql │ │ ├── 25_add_externaldata_schema.down.sql │ │ ├── 25_add_externaldata_schema.up.sql │ │ ├── 26_add_new_columns_to_instruction_stats.down.sql │ │ ├── 26_add_new_columns_to_instruction_stats.up.sql │ │ ├── 27_create_event_anomaly_table.down.sql │ │ ├── 27_create_event_anomaly_table.up.sql │ │ ├── 28_create_entity_infos_update_table.down.sql │ │ ├── 28_create_entity_infos_update_table.up.sql │ │ ├── 2_add_updated_at_field_to_meta_tables.down.sql │ │ ├── 2_add_updated_at_field_to_meta_tables.up.sql │ │ ├── 3_drop_user_logins_table.down.sql │ │ ├── 3_drop_user_logins_table.up.sql │ │ ├── 4_add_indexes_for_metrics_feature_tables.down.sql │ │ ├── 4_add_indexes_for_metrics_feature_tables.up.sql │ │ ├── 5_add_instruction_meta_table.down.sql │ │ ├── 5_add_instruction_meta_table.up.sql │ │ ├── 6_add_connector_to_entities.down.sql │ │ ├── 6_add_connector_to_entities.up.sql │ │ ├── 7_rename_instruction_tables.down.sql │ │ ├── 7_rename_instruction_tables.up.sql │ │ ├── 8_create_instruction_stats_tables.down.sql │ │ ├── 8_create_instruction_stats_tables.up.sql │ │ ├── 9_create_no_ack_metrics_tables.down.sql │ │ └── 9_create_no_ack_metrics_tables.up.sql │ └── tech_postgres_migrations │ │ ├── 10_drop_service_event_table.down.sql │ │ ├── 10_drop_service_event_table.up.sql │ │ ├── 11_update_metric_tables.down.sql │ │ ├── 11_update_metric_tables.up.sql │ │ ├── 12_alter_continuous_aggregates_enable_real_time_agg.down.sql │ │ ├── 12_alter_continuous_aggregates_enable_real_time_agg.up.sql │ │ ├── 13_cps_event_interval_bigint.down.sql │ │ ├── 13_cps_event_interval_bigint.up.sql │ │ ├── 14_drop_che_infos_table.down.sql │ │ ├── 14_drop_che_infos_table.up.sql │ │ ├── 1_add_first_tech_metrics.down.sql │ │ ├── 1_add_first_tech_metrics.up.sql │ │ ├── 2_add_materialized_views.down.sql │ │ ├── 2_add_materialized_views.up.sql │ │ ├── 3_add_retention_policy.down.sql │ │ ├── 3_add_retention_policy.up.sql │ │ ├── 4_add_compression_policy.down.sql │ │ ├── 4_add_compression_policy.up.sql │ │ ├── 5_add_export_table.down.sql │ │ ├── 5_add_export_table.up.sql │ │ ├── 6_add_last_ping_to_export_table.down.sql │ │ ├── 6_add_last_ping_to_export_table.up.sql │ │ ├── 7_update_api_requests_table.down.sql │ │ ├── 7_update_api_requests_table.up.sql │ │ ├── 8_correlation_retries.down.sql │ │ ├── 8_correlation_retries.up.sql │ │ ├── 9_add_go_metrics_table.down.sql │ │ └── 9_add_go_metrics_table.up.sql ├── go-test.sh ├── go.mod ├── go.sum ├── lib │ ├── action │ │ ├── axe_rpc_client_message_processor.go │ │ ├── default.go │ │ ├── delayed_action_listener.go │ │ ├── message_processor.go │ │ ├── reload_local_cache_periodical_worker.go │ │ └── scenario_periodical_worker.go │ ├── amqp │ │ ├── amqp.go │ │ ├── interface.go │ │ ├── publisher.go │ │ └── reconnect.go │ ├── api │ │ ├── account │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── alarm │ │ │ ├── api.go │ │ │ ├── export.go │ │ │ ├── models.go │ │ │ ├── models_easyjson.go │ │ │ ├── mongo_query.go │ │ │ ├── mongo_query_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── testdata │ │ │ │ └── fixtures │ │ │ │ │ ├── bookmarks_filter.yml │ │ │ │ │ ├── exclude_instructions_filter.yml │ │ │ │ │ └── include_instructions_filter.yml │ │ │ ├── validator.go │ │ │ ├── watcher.go │ │ │ └── watcher_test.go │ │ ├── alarmaction │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── alarmtag │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── api.go │ │ ├── appinfo │ │ │ ├── api.go │ │ │ ├── model.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── associativetable │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── auth │ │ │ ├── api.go │ │ │ ├── constants.go │ │ │ ├── models.go │ │ │ └── providers │ │ │ │ ├── cas │ │ │ │ ├── handlers.go │ │ │ │ └── models.go │ │ │ │ ├── oauth │ │ │ │ ├── models.go │ │ │ │ └── provider.go │ │ │ │ └── saml │ │ │ │ └── provider.go │ │ ├── author │ │ │ ├── author.go │ │ │ └── author_test.go │ │ ├── broadcastmessage │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── service.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── bulk │ │ │ └── handler.go │ │ ├── colortheme │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── common │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── pattern.go │ │ │ ├── utils.go │ │ │ └── validators.go │ │ ├── contextgraph │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── interface.go │ │ │ ├── models.go │ │ │ ├── publisher.go │ │ │ ├── reporter.go │ │ │ └── worker.go │ │ ├── datastorage │ │ │ ├── api.go │ │ │ ├── store.go │ │ │ └── validation.go │ │ ├── dbexport │ │ │ ├── exporter.go │ │ │ ├── file.go │ │ │ └── model.go │ │ ├── default.go │ │ ├── docs │ │ │ ├── handler.go │ │ │ ├── schemas_swagger.yaml │ │ │ └── swagger.yaml │ │ ├── entity │ │ │ ├── api.go │ │ │ ├── dbquery │ │ │ │ └── dbquery.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── models_easyjson.go │ │ │ ├── mongo_query.go │ │ │ ├── mongo_query_test.go │ │ │ └── store.go │ │ ├── entitybasic │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── entitycategory │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── entitycomment │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── entityinfodictionary │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── entityinfosproperty │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── entityservice │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── event │ │ │ ├── api.go │ │ │ └── errors.go │ │ ├── eventfilter │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── exdate │ │ │ ├── models.go │ │ │ └── validators.go │ │ ├── export │ │ │ ├── csv.go │ │ │ ├── cursor.go │ │ │ ├── models.go │ │ │ └── task_executor.go │ │ ├── exportconfiguration │ │ │ ├── api.go │ │ │ └── model.go │ │ ├── externaldatatable │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── import_worker.go │ │ │ ├── import_worker_test.go │ │ │ ├── models.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── file │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── flags.go │ │ ├── flappingrule │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── healthcheck │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── icon │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── idlerule │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── linkrule │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── logger │ │ │ ├── action_logger.go │ │ │ ├── helpers.go │ │ │ └── models.go │ │ ├── maintenance │ │ │ ├── api.go │ │ │ ├── model.go │ │ │ └── store.go │ │ ├── messageratestats │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ ├── validator.go │ │ │ └── websocket.go │ │ ├── middleware │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ ├── authorize.go │ │ │ ├── authorize_by_id.go │ │ │ ├── authorize_by_id_test.go │ │ │ ├── authorize_owner.go │ │ │ ├── authorize_test.go │ │ │ ├── cache.go │ │ │ ├── cache_control.go │ │ │ ├── logger.go │ │ │ ├── only_auth.go │ │ │ ├── only_auth_test.go │ │ │ ├── preprocess_request.go │ │ │ ├── preprocess_request_test.go │ │ │ ├── provide_authorized_ids.go │ │ │ ├── provide_authorized_ids_test.go │ │ │ ├── recovery.go │ │ │ ├── recovery_test.go │ │ │ ├── reload_enforcer_on_change.go │ │ │ ├── reload_enforcer_on_change_test.go │ │ │ ├── session_auth.go │ │ │ └── session_auth_test.go │ │ ├── notification │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── queue_listener.go │ │ │ └── store.go │ │ ├── pagination │ │ │ └── pagination.go │ │ ├── password │ │ │ └── consts.go │ │ ├── pattern │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── pbehavior │ │ │ ├── api.go │ │ │ ├── api_test.go │ │ │ ├── models.go │ │ │ ├── mongo_query.go │ │ │ ├── store.go │ │ │ ├── testdata │ │ │ │ └── fixtures │ │ │ │ │ └── bulk_connector_edit.yml │ │ │ └── validator.go │ │ ├── pbehaviorcomment │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── pbehaviorexception │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── pbehaviorics │ │ │ ├── handlers.go │ │ │ ├── service.go │ │ │ └── store.go │ │ ├── pbehaviorreason │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── pbehaviortimespan │ │ │ ├── handlers.go │ │ │ ├── models.go │ │ │ ├── service.go │ │ │ └── validators.go │ │ ├── pbehaviortype │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── permission │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── playlist │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── priority │ │ │ └── update.go │ │ ├── resolverule │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── role │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── router.go │ │ ├── scenario │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── security.go │ │ ├── security │ │ │ ├── permissions.go │ │ │ ├── privacy_settings.go │ │ │ ├── strategy.go │ │ │ └── token_service.go │ │ ├── serviceweather │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── mongo_query.go │ │ │ ├── mongo_query_test.go │ │ │ └── store.go │ │ ├── sessionauth │ │ │ ├── api.go │ │ │ └── models.go │ │ ├── sharetoken │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── statesettings │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── model.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── swaggerui │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── oauth2-redirect.html │ │ │ ├── swagger-initializer.js │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-bundle.js.map │ │ │ ├── swagger-ui-es-bundle-core.js │ │ │ ├── swagger-ui-es-bundle-core.js.map │ │ │ ├── swagger-ui-es-bundle.js │ │ │ ├── swagger-ui-es-bundle.js.map │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ ├── swagger-ui-standalone-preset.js.map │ │ │ ├── swagger-ui.css │ │ │ ├── swagger-ui.css.map │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.js.map │ │ ├── techmetrics │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── task_executor.go │ │ ├── template │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── helpers.go │ │ │ ├── model.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── user │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── userpreferences │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── validation │ │ │ └── parser.go │ │ ├── validators.go │ │ ├── view │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── viewgroup │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── viewtab │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── websocket │ │ │ ├── api.go │ │ │ ├── authorizer.go │ │ │ ├── consts.go │ │ │ ├── hub.go │ │ │ ├── hub_test.go │ │ │ ├── store.go │ │ │ └── wrapper.go │ │ ├── widget │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── widgetfilter │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── widgettemplate │ │ │ ├── api.go │ │ │ ├── models.go │ │ │ ├── store.go │ │ │ └── validator.go │ │ ├── workers.go │ │ └── workers │ │ │ └── workers.go │ ├── axe │ │ ├── default.go │ │ ├── event │ │ │ ├── ack.go │ │ │ ├── ack_remove.go │ │ │ ├── activate.go │ │ │ ├── assoc_ticket.go │ │ │ ├── auto_instruction_activate.go │ │ │ ├── auto_instructions_matcher.go │ │ │ ├── autowebhook_complete.go │ │ │ ├── autowebhook_fail.go │ │ │ ├── autowebhook_start.go │ │ │ ├── cancel.go │ │ │ ├── change_state.go │ │ │ ├── check.go │ │ │ ├── combined.go │ │ │ ├── comment.go │ │ │ ├── container.go │ │ │ ├── declare_ticket_webhook.go │ │ │ ├── entity_toggled.go │ │ │ ├── entity_updated.go │ │ │ ├── forward.go │ │ │ ├── forward_with_alarm.go │ │ │ ├── instruction.go │ │ │ ├── interface.go │ │ │ ├── junit.go │ │ │ ├── meta_alarm.go │ │ │ ├── meta_alarm_attach.go │ │ │ ├── meta_alarm_child_activate.go │ │ │ ├── meta_alarm_child_deactivate.go │ │ │ ├── meta_alarm_detach.go │ │ │ ├── meta_alarm_post_processor.go │ │ │ ├── mongo_queries.go │ │ │ ├── no_events.go │ │ │ ├── pbh_enter.go │ │ │ ├── pbh_leave.go │ │ │ ├── pbh_leave_and_enter.go │ │ │ ├── recompute_entity_service.go │ │ │ ├── resolve_cancel.go │ │ │ ├── resolve_close.go │ │ │ ├── resolve_deleted.go │ │ │ ├── snooze.go │ │ │ ├── trigger.go │ │ │ ├── uncancel.go │ │ │ ├── unsnooze.go │ │ │ ├── update_counters.go │ │ │ ├── update_helpers.go │ │ │ ├── update_status.go │ │ │ ├── webhook_complete.go │ │ │ ├── webhook_fail.go │ │ │ └── webhook_start.go │ │ ├── external_tag_cleaner.go │ │ ├── external_tag_cleaner_test.go │ │ ├── external_tag_periodical_worker.go │ │ ├── idle_since_periodical_worker.go │ │ ├── internal_tag_periodical_worker.go │ │ ├── message_processor.go │ │ ├── message_processor_test.go │ │ ├── periodical_worker.go │ │ ├── periodical_worker_test.go │ │ ├── reload_local_cache_periodical_worker.go │ │ ├── rpc_message_processor.go │ │ ├── rpc_pbehavior_client_message_processor.go │ │ ├── testdata │ │ │ └── fixtures │ │ │ │ ├── many_alarm_steps.yml │ │ │ │ ├── new_alarm.yml │ │ │ │ ├── new_alarm_state.yml │ │ │ │ ├── new_comment.yml │ │ │ │ ├── new_meta_alarm.yml │ │ │ │ ├── no_alarm.yml │ │ │ │ └── old_alarm.yml │ │ └── update_entity_in_alarm_worker.go │ ├── canopsis │ │ ├── action │ │ │ ├── action.go │ │ │ ├── delayed_scenario_manager.go │ │ │ ├── delayed_scenario_manager_test.go │ │ │ ├── delayed_scenario_storage.go │ │ │ ├── delayed_scenario_storage_test.go │ │ │ ├── interface.go │ │ │ ├── mongo_adapter.go │ │ │ ├── scenario_execution_storage.go │ │ │ ├── scenario_execution_storage_test.go │ │ │ ├── scenario_storage.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── task_manager.go │ │ │ ├── task_manager_test.go │ │ │ ├── worker_pool.go │ │ │ └── worker_pool_test.go │ │ ├── alarm │ │ │ ├── activation_service.go │ │ │ ├── activation_service_test.go │ │ │ ├── cleaner.go │ │ │ ├── cleaner_test.go │ │ │ ├── interface.go │ │ │ ├── mongo_adapter.go │ │ │ ├── service.go │ │ │ └── service_test.go │ │ ├── alarmstatus │ │ │ └── alarm_status_service.go │ │ ├── alarmtag │ │ │ ├── alarm_matcher.go │ │ │ ├── external_updater.go │ │ │ └── model.go │ │ ├── closedelay │ │ │ ├── job.go │ │ │ └── service.go │ │ ├── config │ │ │ ├── adapter.go │ │ │ ├── adapter_test.go │ │ │ ├── config.go │ │ │ ├── config_provider.go │ │ │ ├── constants.go │ │ │ ├── database.go │ │ │ ├── healthcheck.go │ │ │ ├── maintenance.go │ │ │ ├── rabbitmq.go │ │ │ └── remediation.go │ │ ├── contextgraph │ │ │ ├── interface.go │ │ │ ├── manager.go │ │ │ ├── manager_test.go │ │ │ └── service_storage.go │ │ ├── correlation │ │ │ ├── const.go │ │ │ ├── interface.go │ │ │ ├── meta_alarm_state_service.go │ │ │ ├── rule.go │ │ │ ├── rule_adapter.go │ │ │ ├── rule_config.go │ │ │ ├── state.go │ │ │ └── state_test.go │ │ ├── datastorage │ │ │ ├── adapter.go │ │ │ ├── interface.go │ │ │ ├── periodical_worker.go │ │ │ └── periodical_worker_test.go │ │ ├── datetime │ │ │ ├── duration.go │ │ │ └── time.go │ │ ├── debug │ │ │ └── trace.go │ │ ├── encoding │ │ │ ├── error.go │ │ │ ├── interface.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ └── xml │ │ │ │ └── xml.go │ │ ├── engine │ │ │ ├── concurrent_consumer.go │ │ │ ├── concurrent_consumer_test.go │ │ │ ├── default_consumer.go │ │ │ ├── engine.go │ │ │ ├── engine_test.go │ │ │ ├── error.go │ │ │ ├── interface.go │ │ │ ├── load_config_periodical_worker.go │ │ │ ├── locked_periodical_worker.go │ │ │ ├── locked_periodical_worker_test.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_server.go │ │ │ ├── rpc_server_test.go │ │ │ ├── run_info.go │ │ │ ├── run_info_metrics_periodical_worker.go │ │ │ ├── run_info_periodical_worker.go │ │ │ └── run_info_test.go │ │ ├── entity │ │ │ ├── archiver.go │ │ │ ├── cleaner.go │ │ │ ├── cleaner_test.go │ │ │ ├── interface.go │ │ │ └── mongo_adapter.go │ │ ├── entitycounters │ │ │ ├── calculator │ │ │ │ ├── component.go │ │ │ │ ├── component_test.go │ │ │ │ ├── entity_service.go │ │ │ │ ├── interface.go │ │ │ │ └── service_test.go │ │ │ ├── counters.go │ │ │ ├── counters_test.go │ │ │ ├── models.go │ │ │ ├── sender.go │ │ │ └── strategy │ │ │ │ ├── component │ │ │ │ ├── change_state.go │ │ │ │ ├── create.go │ │ │ │ ├── create_and_pbh_enter.go │ │ │ │ ├── no_change.go │ │ │ │ ├── pbh_enter.go │ │ │ │ ├── pbh_leave.go │ │ │ │ ├── pbh_leave_and_enter.go │ │ │ │ └── resolve.go │ │ │ │ └── entityservice │ │ │ │ ├── ack.go │ │ │ │ ├── ack_remove.go │ │ │ │ ├── change_state.go │ │ │ │ ├── create.go │ │ │ │ ├── create_and_pbh_enter.go │ │ │ │ ├── no_change.go │ │ │ │ ├── pbh_enter.go │ │ │ │ ├── pbh_leave.go │ │ │ │ ├── pbh_leave_and_enter.go │ │ │ │ └── resolve.go │ │ ├── entityservice │ │ │ ├── event_publisher.go │ │ │ ├── event_publisher_test.go │ │ │ ├── idle_since.go │ │ │ ├── idle_since_test.go │ │ │ ├── interface.go │ │ │ ├── model.go │ │ │ ├── mongo_adapter.go │ │ │ └── service.go │ │ ├── event │ │ │ └── generator.go │ │ ├── eventfilter │ │ │ ├── action_processor.go │ │ │ ├── action_processor_test.go │ │ │ ├── break_applicator.go │ │ │ ├── change_entity_applicator.go │ │ │ ├── change_entity_applicator_test.go │ │ │ ├── container.go │ │ │ ├── drop_applicator.go │ │ │ ├── enrichment_applicator.go │ │ │ ├── enrichment_applicator_test.go │ │ │ ├── errors.go │ │ │ ├── event_counter.go │ │ │ ├── failure_service.go │ │ │ ├── interface.go │ │ │ ├── model.go │ │ │ ├── parse.go │ │ │ ├── resolve_intervals.go │ │ │ ├── resolve_intervals_test.go │ │ │ ├── rule_adapter.go │ │ │ ├── rule_service.go │ │ │ ├── rule_service_test.go │ │ │ └── rules_changes_watcher.go │ │ ├── externaldata │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── getter.go │ │ │ ├── models.go │ │ │ └── reference.go │ │ ├── flag │ │ │ └── flag.go │ │ ├── flappingrule │ │ │ ├── adapter.go │ │ │ └── rule.go │ │ ├── globals.go │ │ ├── healthcheck │ │ │ ├── checker.go │ │ │ ├── handler.go │ │ │ ├── rpc_checker.go │ │ │ └── server.go │ │ ├── idlealarm │ │ │ ├── service.go │ │ │ └── service_test.go │ │ ├── idlerule │ │ │ ├── rule.go │ │ │ └── rule_adapter.go │ │ ├── importcontextgraph │ │ │ ├── interface.go │ │ │ ├── publisher.go │ │ │ └── worker.go │ │ ├── js │ │ │ ├── executor.go │ │ │ └── executor_test.go │ │ ├── link │ │ │ ├── generator.go │ │ │ ├── generator_test.go │ │ │ ├── interface.go │ │ │ ├── models.go │ │ │ └── testdata │ │ │ │ └── fixtures │ │ │ │ ├── rules_with_links.yml │ │ │ │ └── rules_with_source_code.yml │ │ ├── metrics │ │ │ ├── const.go │ │ │ ├── meta_updater.go │ │ │ ├── prometheus │ │ │ │ ├── exporter.go │ │ │ │ ├── metrics.go │ │ │ │ └── updater.go │ │ │ ├── schema │ │ │ │ └── entities.go │ │ │ ├── sender.go │ │ │ └── timescaledb.go │ │ ├── pattern │ │ │ ├── alarm.go │ │ │ ├── conditions.go │ │ │ ├── conditions_test.go │ │ │ ├── db │ │ │ │ ├── alarm.go │ │ │ │ ├── alarm_test.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_test.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── pbehavior_info.go │ │ │ │ ├── pbehavior_info_test.go │ │ │ │ └── weather_service.go │ │ │ ├── entity.go │ │ │ ├── event.go │ │ │ ├── match │ │ │ │ ├── alarm.go │ │ │ │ ├── alarm_test.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_test.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── match.go │ │ │ │ ├── pbehavior_info.go │ │ │ │ ├── pbehavior_info_test.go │ │ │ │ └── weather_service.go │ │ │ ├── pbehavior_info.go │ │ │ └── weather_service.go │ │ ├── pbehavior │ │ │ ├── adapter.go │ │ │ ├── cleaner.go │ │ │ ├── cleaner_test.go │ │ │ ├── computed_entity_getter.go │ │ │ ├── computed_entity_type_resolver.go │ │ │ ├── entity_type_resolver.go │ │ │ ├── event_computer.go │ │ │ ├── event_computer_test.go │ │ │ ├── event_manager.go │ │ │ ├── event_manager_test.go │ │ │ ├── exception.go │ │ │ ├── inherited_service_computer.go │ │ │ ├── inherited_service_computer_test.go │ │ │ ├── interval.go │ │ │ ├── interval_test.go │ │ │ ├── model_provider.go │ │ │ ├── pbehavior.go │ │ │ ├── reason.go │ │ │ ├── rrule.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── store.go │ │ │ ├── testdata │ │ │ │ └── fixtures │ │ │ │ │ ├── 1000_parents_1_child.yml │ │ │ │ │ ├── 1000_parents_1_midchild_1_child.yml │ │ │ │ │ ├── 1000_services.yml │ │ │ │ │ ├── 100_parents_1_child.yml │ │ │ │ │ ├── 100_parents_1_midchild_1_child.yml │ │ │ │ │ ├── 100_services.yml │ │ │ │ │ ├── 10_parents_1_child.yml │ │ │ │ │ ├── 10_parents_1_midchild_1_child.yml │ │ │ │ │ ├── 10_services.yml │ │ │ │ │ ├── 1_parent_100000_children.yml │ │ │ │ │ ├── 1_parent_10000_children.yml │ │ │ │ │ ├── 1_parent_1000_children.yml │ │ │ │ │ ├── 1_parent_100_children.yml │ │ │ │ │ └── 1_parent_10_children.yml │ │ │ ├── type_computer.go │ │ │ ├── type_computer_easyjson.go │ │ │ └── type_resolver.go │ │ ├── perfdata │ │ │ └── filter.go │ │ ├── priority │ │ │ └── mongo.go │ │ ├── request │ │ │ ├── declate_ticket.go │ │ │ ├── model.go │ │ │ ├── request.go │ │ │ └── token.go │ │ ├── resolverule │ │ │ ├── adapter.go │ │ │ └── rule.go │ │ ├── rpc │ │ │ ├── events.go │ │ │ └── events_easyjson.go │ │ ├── savedpattern │ │ │ └── model.go │ │ ├── scheduler │ │ │ ├── queue_lock.go │ │ │ ├── queue_lock_test.go │ │ │ ├── scheduler.go │ │ │ └── scheduler_test.go │ │ ├── statesetting │ │ │ ├── adapter.go │ │ │ ├── assigner.go │ │ │ ├── default.go │ │ │ ├── interface.go │ │ │ ├── listener.go │ │ │ ├── model.go │ │ │ ├── model_test.go │ │ │ └── watcher.go │ │ ├── statistics │ │ │ └── events.go │ │ ├── techmetrics │ │ │ ├── const.go │ │ │ ├── metrics.go │ │ │ └── sender.go │ │ ├── template │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ └── validator │ │ │ │ ├── validator.go │ │ │ │ └── validator_test.go │ │ ├── types │ │ │ ├── action.go │ │ │ ├── alarm_change.go │ │ │ ├── alarm_change_test.go │ │ │ ├── alarm_tag.go │ │ │ ├── alarm_value.go │ │ │ ├── alarm_value_test.go │ │ │ ├── basic.go │ │ │ ├── basic_test.go │ │ │ ├── bson.go │ │ │ ├── bson_test.go │ │ │ ├── correlation.go │ │ │ ├── event.go │ │ │ ├── event_easyjson.go │ │ │ ├── event_perf_data.go │ │ │ ├── event_perf_data_test.go │ │ │ ├── event_test.go │ │ │ ├── exdate.go │ │ │ ├── model_alarm.go │ │ │ ├── model_entity.go │ │ │ └── utils.go │ │ ├── usernotification │ │ │ ├── models.go │ │ │ └── store.go │ │ ├── version.go │ │ ├── view │ │ │ ├── adapter.go │ │ │ ├── interface.go │ │ │ ├── models.go │ │ │ └── template.go │ │ └── webhook │ │ │ └── models.go │ ├── che │ │ ├── default.go │ │ ├── event │ │ │ ├── component.go │ │ │ ├── connector.go │ │ │ ├── container.go │ │ │ ├── helpers.go │ │ │ ├── resource.go │ │ │ └── service.go │ │ ├── event_failure_cleaner.go │ │ ├── event_failure_cleaner_test.go │ │ ├── eventfilter_intervals_worker.go │ │ ├── eventfilter_intervals_worker_test.go │ │ ├── impacted_services_periodical_worker.go │ │ ├── infos_dictionary_periodical_worker.go │ │ ├── message_processor.go │ │ ├── message_processor_test.go │ │ ├── options.go │ │ ├── soft_delete_worker.go │ │ └── testdata │ │ │ └── fixtures │ │ │ ├── connector_and_new_resource.yml │ │ │ ├── eventfilters_with_rrule_1000_exdates.yml │ │ │ ├── eventfilters_with_rrule_100_exdates.yml │ │ │ ├── eventfilters_with_rrule_100_exdates_100_exceptions_100_exdate.yml │ │ │ ├── eventfilters_with_rrule_100_resolved_exdates.yml │ │ │ ├── eventfilters_with_rrule_10_exdates.yml │ │ │ ├── eventfilters_with_rrule_10_exdates_100_exceptions_100_exdate.yml │ │ │ ├── eventfilters_with_rrule_10_exdates_10_exceptions_100_exdate.yml │ │ │ ├── eventfilters_with_rrule_10_exdates_10_exceptions_10_exdate.yml │ │ │ ├── eventfilters_with_rrule_10_exdates_10_exceptions_1_exdate.yml │ │ │ ├── eventfilters_with_rrule_10_resolved_exdates.yml │ │ │ ├── new_entity.yml │ │ │ ├── new_entity_and_matched_enrichment_entity_event_filters.yml │ │ │ ├── new_entity_and_matched_enrichment_entity_event_filters_with_tpl.yml │ │ │ ├── new_entity_and_matched_enrichment_entity_event_filters_with_tpl_with_env_vars.yml │ │ │ ├── old_entity.yml │ │ │ ├── old_entity_and_matched_enrichment_entity_event_filters.yml │ │ │ ├── old_entity_and_matched_enrichment_event_filters.yml │ │ │ ├── old_entity_and_unmatched_event_filters.yml │ │ │ └── service_and_new_resource.yml │ ├── depmake │ │ └── depmake.go │ ├── expression │ │ └── parser │ │ │ ├── models.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ ├── fifo │ │ ├── ack_message_processor.go │ │ ├── default.go │ │ └── message_processor.go │ ├── file │ │ ├── etag_encoder.go │ │ ├── interface.go │ │ ├── storage.go │ │ └── utils.go │ ├── filemask │ │ └── filemask.go │ ├── fixtures │ │ ├── faker.go │ │ ├── loader.go │ │ └── parser.go │ ├── http │ │ ├── doer.go │ │ ├── response.go │ │ ├── response_test.go │ │ └── utils.go │ ├── ics │ │ ├── calendar.go │ │ └── event.go │ ├── keymutex │ │ ├── keymutex.go │ │ └── keymutex_test.go │ ├── log │ │ └── logger.go │ ├── migration │ │ └── cli │ │ │ ├── command.go │ │ │ ├── create.go │ │ │ ├── down.go │ │ │ ├── skip.go │ │ │ ├── status.go │ │ │ └── up.go │ ├── mongo │ │ ├── collections.go │ │ ├── commands_register.go │ │ ├── cursor.go │ │ ├── globals.go │ │ ├── goja │ │ │ ├── js_collection.go │ │ │ ├── js_cursor.go │ │ │ ├── js_database.go │ │ │ ├── reflect.go │ │ │ ├── reflect_test.go │ │ │ └── script_executor.go │ │ ├── mongo.go │ │ ├── mongosh │ │ │ ├── helpers.js │ │ │ └── script_executor.go │ │ ├── script_executor.go │ │ └── sort.go │ ├── postgres │ │ ├── dump.go │ │ ├── pool_provider.go │ │ ├── postgres.go │ │ └── postgres_test.go │ ├── redis │ │ ├── const.go │ │ ├── redis.go │ │ ├── redis_test.go │ │ └── redislock.go │ ├── reflect │ │ └── reflect.go │ ├── security │ │ ├── config.go │ │ ├── constants.go │ │ ├── enforcer.go │ │ ├── httpprovider │ │ │ ├── apikey.go │ │ │ ├── apikey_test.go │ │ │ ├── basic.go │ │ │ ├── basic_test.go │ │ │ ├── bearer.go │ │ │ ├── cas.go │ │ │ ├── cas_test.go │ │ │ └── cookie.go │ │ ├── model.go │ │ ├── model │ │ │ └── model.go │ │ ├── model_test.go │ │ ├── mongoadapter │ │ │ ├── adapter.go │ │ │ └── adapter_test.go │ │ ├── password │ │ │ ├── bcrypt.go │ │ │ └── encoder.go │ │ ├── provider.go │ │ ├── provider │ │ │ ├── base.go │ │ │ ├── base_test.go │ │ │ ├── ldap.go │ │ │ └── ldap_test.go │ │ ├── roleprovider │ │ │ ├── role_provider.go │ │ │ └── role_provider_test.go │ │ ├── session │ │ │ ├── mongostore │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ └── store.go │ │ ├── sharetoken │ │ │ └── store.go │ │ ├── tls │ │ │ └── verify.go │ │ ├── token │ │ │ ├── generator.go │ │ │ └── store.go │ │ ├── tokenprovider │ │ │ └── token.go │ │ └── userprovider │ │ │ └── mongo.go │ ├── testutils │ │ ├── testutils.go │ │ └── testutils_test.go │ ├── timespan │ │ ├── timespan.go │ │ └── timespan_test.go │ ├── utils │ │ ├── fields.go │ │ ├── fields_test.go │ │ ├── ready │ │ │ └── ready.go │ │ ├── reflect.go │ │ ├── slice.go │ │ ├── slice_test.go │ │ ├── snake_case.go │ │ ├── snake_case_test.go │ │ ├── time.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── wrapper_regex.go │ │ └── wrapper_regex_test.go │ └── validator │ │ └── validator.go ├── mocks │ ├── github.com │ │ ├── go-ldap │ │ │ └── ldap │ │ │ │ └── client.go │ │ ├── gorilla │ │ │ └── sessions │ │ │ │ └── store.go │ │ ├── jackc │ │ │ └── pgx │ │ │ │ └── pgx.go │ │ └── redis │ │ │ └── go-redis │ │ │ └── v9 │ │ │ └── cmdable.go │ └── lib │ │ ├── amqp │ │ └── amqp.go │ │ ├── api │ │ ├── alarm │ │ │ └── alarm.go │ │ └── websocket │ │ │ └── websocket.go │ │ ├── axe │ │ └── event │ │ │ └── event.go │ │ ├── canopsis │ │ ├── action │ │ │ └── action.go │ │ ├── alarm │ │ │ └── alarm.go │ │ ├── alarmstatus │ │ │ └── alarmstatus.go │ │ ├── closedelay │ │ │ └── service.go │ │ ├── config │ │ │ ├── adapter.go │ │ │ └── provider.go │ │ ├── contextgraph │ │ │ └── contextgraph.go │ │ ├── correlation │ │ │ └── metaalarm.go │ │ ├── datastorage │ │ │ └── adapter.go │ │ ├── encoding │ │ │ └── encoding.go │ │ ├── engine │ │ │ └── engine.go │ │ ├── entity │ │ │ └── adapter.go │ │ ├── entitycounters │ │ │ └── sender.go │ │ ├── entityservice │ │ │ └── entityservice.go │ │ ├── eventfilter │ │ │ └── eventfilter.go │ │ ├── externaldata │ │ │ └── externaldata.go │ │ ├── idlealarm │ │ │ └── service.go │ │ ├── idlerule │ │ │ └── adapter.go │ │ ├── metrics │ │ │ └── metrics.go │ │ ├── pbehavior │ │ │ └── pbehavior.go │ │ ├── resolverule │ │ │ └── rule.go │ │ ├── statesetting │ │ │ └── statesetting.go │ │ ├── template │ │ │ └── template.go │ │ └── view │ │ │ └── view.go │ │ ├── file │ │ └── file.go │ │ ├── http │ │ └── doer.go │ │ ├── metrics │ │ └── sender.go │ │ ├── mongo │ │ ├── commands_register.go │ │ └── mongo.go │ │ ├── postgres │ │ └── postgres.go │ │ ├── redis │ │ └── redislock.go │ │ ├── security │ │ ├── password │ │ │ └── password.go │ │ ├── provider │ │ │ └── provider.go │ │ └── security.go │ │ ├── statesetting │ │ └── assigner.go │ │ └── techmetrics │ │ └── sender.go └── systemd │ ├── .gitkeep │ ├── canopsis-engine-go@.service │ ├── canopsis-engine-go@engine-action.service │ ├── canopsis-engine-go@engine-axe.service │ ├── canopsis-engine-go@engine-che.service │ ├── canopsis-engine-go@engine-fifo.service │ ├── canopsis-engine-go@engine-pbehavior.service │ ├── canopsis-reconfigure.service │ ├── canopsis-service@canopsis-api.service │ ├── canopsis.service │ └── go-engines-vars.conf ├── mkdocs.yml ├── package-lock.json ├── screenshot.png └── sources ├── docs ├── README.md ├── en │ ├── how-to-engine │ │ └── how-to-engine.md │ ├── multi-axe │ │ └── multi-axe.md │ ├── multi-instance-che │ │ └── multi-instance-che.md │ ├── schemas │ │ ├── all-engines.md │ │ ├── engine-action.md │ │ ├── engine-axe.md │ │ ├── engine-che.md │ │ ├── engine-correlation.md │ │ ├── engine-dynamic-infos.md │ │ ├── engine-fifo.md │ │ ├── engine-pbehavior.md │ │ ├── engine-remediation.md │ │ └── engine-webhook.md │ ├── structures │ │ └── index.md │ └── web-api │ │ └── canopsis-version-api.md ├── fr │ ├── guide-administration │ │ ├── administration-avancee │ │ │ ├── actions-base-donnees.md │ │ │ ├── configuration-composants │ │ │ │ ├── base-de-donnees-mongodb.md │ │ │ │ ├── reverse-proxy-nginx-https.md │ │ │ │ ├── reverse-proxy-nginx.md │ │ │ │ └── serveur-cache-redis.md │ │ │ ├── configuration-parefeu-et-selinux.md │ │ │ ├── connexion-a-la-base-de-donnees.md │ │ │ ├── gestion-fixtures │ │ │ │ ├── export.md │ │ │ │ ├── import.md │ │ │ │ └── index.md │ │ │ ├── img │ │ │ │ ├── github_login.png │ │ │ │ ├── gitlab_login.png │ │ │ │ ├── google_login.png │ │ │ │ ├── oauth_login.png │ │ │ │ ├── oauth_login_git1.png │ │ │ │ ├── oauth_login_git2.png │ │ │ │ ├── oauth_login_git3.png │ │ │ │ ├── oauth_login_git4.png │ │ │ │ ├── oauth_login_google1.png │ │ │ │ ├── oauth_login_google2.png │ │ │ │ ├── oauth_login_google3.png │ │ │ │ └── saml2_login.png │ │ │ ├── index.md │ │ │ ├── journalisation-actions.md │ │ │ ├── methodes-authentification-avancees.md │ │ │ ├── modification-canopsis-toml.md │ │ │ ├── reconnexion-automatique.md │ │ │ ├── scripts-externes.md │ │ │ └── variables-environnement.md │ │ ├── architecture-interne │ │ │ ├── img │ │ │ │ ├── Cano_macro_resume.png │ │ │ │ ├── schema.png │ │ │ │ └── schema_moteurs_V2.png │ │ │ ├── index.md │ │ │ ├── moteurs │ │ │ │ ├── action.md │ │ │ │ ├── api.md │ │ │ │ ├── axe.md │ │ │ │ ├── che.md │ │ │ │ ├── connector-junit.md │ │ │ │ ├── correlation.md │ │ │ │ ├── dynamic-infos.md │ │ │ │ ├── events-recorder.md │ │ │ │ ├── fifo.md │ │ │ │ ├── import-context-graph.md │ │ │ │ ├── index.md │ │ │ │ ├── liste-moteurs-et-services.md │ │ │ │ ├── pbehavior.md │ │ │ │ ├── remediation.md │ │ │ │ ├── snmp.md │ │ │ │ └── webhook.md │ │ │ └── triggers.md │ │ ├── exemples-interconnexions │ │ │ └── index.md │ │ ├── gestion-composants │ │ │ ├── arret-relance-composants.md │ │ │ ├── index.md │ │ │ ├── liste-des-composants.md │ │ │ └── retention-des-logs.md │ │ ├── index.md │ │ ├── installation │ │ │ ├── dimensionnement.md │ │ │ ├── img │ │ │ │ └── matrice-flux-canopsis.png │ │ │ ├── index.md │ │ │ ├── installation-conteneurs.md │ │ │ ├── installation-helm.md │ │ │ ├── installation-paquets.md │ │ │ ├── premiere-connexion.md │ │ │ └── prerequis-des-versions.md │ │ ├── linkbuilder │ │ │ ├── img │ │ │ │ ├── affichage-link-bac.png │ │ │ │ ├── affichage-link-meteo.png │ │ │ │ ├── baa.png │ │ │ │ ├── baa_cat.png │ │ │ │ ├── baa_parametres.png │ │ │ │ ├── baa_parametres_cat.png │ │ │ │ ├── meteo.png │ │ │ │ ├── meteo_cat.png │ │ │ │ ├── meteo_parametres.png │ │ │ │ └── meteo_parametres_cat.png │ │ │ └── index.md │ │ ├── matrice-des-flux-reseau │ │ │ └── index.md │ │ ├── mise-a-jour │ │ │ ├── index.md │ │ │ └── numeros-version-canopsis.md │ │ ├── remediation │ │ │ ├── img │ │ │ │ ├── remediation_awx1.png │ │ │ │ ├── remediation_awx2.png │ │ │ │ ├── remediation_awx3.png │ │ │ │ ├── remediation_awx4.png │ │ │ │ ├── remediation_awx5.png │ │ │ │ ├── remediation_awx6.png │ │ │ │ ├── remediation_awx7.png │ │ │ │ ├── remediation_jenkins1.png │ │ │ │ ├── remediation_jenkins2.png │ │ │ │ ├── remediation_jenkins3.png │ │ │ │ ├── remediation_jenkins4.png │ │ │ │ ├── remediation_jenkins5.png │ │ │ │ ├── remediation_jenkins6.png │ │ │ │ ├── remediation_jenkins7.png │ │ │ │ ├── remediation_jenkins8.png │ │ │ │ ├── remediation_rundeck1.png │ │ │ │ ├── remediation_rundeck10.png │ │ │ │ ├── remediation_rundeck11.png │ │ │ │ ├── remediation_rundeck2.png │ │ │ │ ├── remediation_rundeck3.png │ │ │ │ ├── remediation_rundeck4.png │ │ │ │ ├── remediation_rundeck5.png │ │ │ │ ├── remediation_rundeck6.png │ │ │ │ ├── remediation_rundeck7.png │ │ │ │ ├── remediation_rundeck8.png │ │ │ │ ├── remediation_rundeck9.png │ │ │ │ ├── remediation_rundeck_webhook1.png │ │ │ │ ├── remediation_rundeck_webhook2.png │ │ │ │ ├── remediation_rundeck_webhook3.png │ │ │ │ ├── remediation_rundeck_webhook4.png │ │ │ │ ├── remediation_rundeck_webhook5.png │ │ │ │ ├── remediation_rundeck_webhook6.png │ │ │ │ ├── remediation_vtom1.png │ │ │ │ ├── remediation_vtom2.png │ │ │ │ ├── remediation_vtom3.png │ │ │ │ ├── remediation_vtom4.png │ │ │ │ └── remediation_vtom5.png │ │ │ └── index.md │ │ ├── smart-feeder │ │ │ ├── img │ │ │ │ └── smart-feeder.png │ │ │ └── index.md │ │ └── webserver │ │ │ ├── index.md │ │ │ └── session.md │ ├── guide-de-depannage │ │ ├── amqp2tty │ │ │ └── index.md │ │ ├── bdd-requetes-de-base │ │ │ └── index.md │ │ ├── etat-des-composants │ │ │ └── index.md │ │ ├── faq │ │ │ ├── log4j.md │ │ │ └── shortstringtoolong.md │ │ ├── img │ │ │ ├── rabbitmq_add_policy.png │ │ │ ├── rabbitmq_policy.png │ │ │ ├── section_queues.png │ │ │ └── tab1.png │ │ ├── index.md │ │ ├── metriques-techniques │ │ │ ├── img │ │ │ │ ├── tech_metrics1.png │ │ │ │ ├── tech_metrics2.png │ │ │ │ └── tech_metrics3.png │ │ │ └── index.md │ │ ├── outil-de-support │ │ │ ├── img │ │ │ │ ├── dashboard_action-log.png │ │ │ │ ├── dashboard_rabbitmq.png │ │ │ │ ├── dashboard_tech-metrics.png │ │ │ │ └── dashboard_tech_metrics_1.png │ │ │ ├── outil-de-support.md │ │ │ └── pprof.md │ │ ├── rabbitmq-webui │ │ │ └── index.md │ │ ├── supervision │ │ │ ├── exporter-prometheus.md │ │ │ ├── img │ │ │ │ └── dashboard-grafana.png │ │ │ └── index.md │ │ └── troubleshooting-evenement │ │ │ └── index.md │ ├── guide-developpement │ │ ├── base-de-donnees │ │ │ ├── default-entities.md │ │ │ ├── index.md │ │ │ └── periodical-alarm.md │ │ ├── filtres │ │ │ └── index.md │ │ ├── img │ │ │ ├── authkey1.png │ │ │ ├── authkey2.png │ │ │ └── token1.png │ │ ├── index.md │ │ ├── linkbuilder │ │ │ └── index.md │ │ ├── schemas │ │ ├── structures │ │ │ └── index.md │ │ ├── swagger-community │ │ │ └── index.md │ │ └── swagger-pro │ │ │ └── index.md │ ├── guide-utilisation │ │ ├── cas-d-usage │ │ │ ├── affichage-de-consignes.md │ │ │ ├── alarmes_et_indicateurs.md │ │ │ ├── comportements_periodiques.md │ │ │ ├── creation-ticket-itop-reception-alarme.md │ │ │ ├── enrichissement.md │ │ │ ├── groupement-alarmes.md │ │ │ ├── img │ │ │ │ ├── consulter_contexte.png │ │ │ │ ├── consulter_contexte2.png │ │ │ │ ├── dynamicinfos_complex_infopopup1.png │ │ │ │ ├── dynamicinfos_complex_infopopup2.png │ │ │ │ ├── dynamicinfos_complex_infopopup3.png │ │ │ │ ├── dynamicinfos_complex_rule1_infos.png │ │ │ │ ├── dynamicinfos_complex_rule2_general.png │ │ │ │ ├── dynamicinfos_complex_rule2_infos.png │ │ │ │ ├── dynamicinfos_complex_rule2_patterns.png │ │ │ │ ├── dynamicinfos_complex_rule3_general.png │ │ │ │ ├── dynamicinfos_complex_rule3_infos.png │ │ │ │ ├── dynamicinfos_complex_rule3_patterns.png │ │ │ │ ├── dynamicinfos_infopopup_icon.png │ │ │ │ ├── dynamicinfos_rule1_general.png │ │ │ │ ├── dynamicinfos_rule1_patterns.png │ │ │ │ ├── dynamicinfos_simple_infopopup.png │ │ │ │ ├── dynamicinfos_simple_infopopup_empty.png │ │ │ │ ├── dynamicinfos_simple_rule1_infos.png │ │ │ │ ├── enrichissement_evenement_baa.png │ │ │ │ ├── enrichissement_evenement_colonnes.png │ │ │ │ ├── event_filter_ajout_action.png │ │ │ │ ├── event_filter_ajout_regle.png │ │ │ │ ├── event_filter_baa.png │ │ │ │ ├── event_filter_edit_pattern.png │ │ │ │ ├── event_filter_menu.png │ │ │ │ ├── event_filter_nom_colonnes.png │ │ │ │ ├── mds_create_service01.png │ │ │ │ ├── mds_create_service02.png │ │ │ │ ├── mds_create_service03.png │ │ │ │ ├── mds_create_service04.png │ │ │ │ ├── mds_create_service05.png │ │ │ │ ├── mds_create_service06.png │ │ │ │ ├── mds_create_service07.png │ │ │ │ ├── mds_create_service08.png │ │ │ │ ├── mds_create_service09.png │ │ │ │ ├── mds_widget01.png │ │ │ │ ├── mds_widget02.png │ │ │ │ ├── mds_widget03.png │ │ │ │ ├── mds_widget04.png │ │ │ │ ├── mds_widget05.png │ │ │ │ ├── notification_logstash_request.png │ │ │ │ ├── notification_logstash_trigger_pattern.png │ │ │ │ ├── notification_mattermost_choix_trigger.png │ │ │ │ ├── notification_mattermost_edit_pattern.png │ │ │ │ ├── notification_mattermost_menu.png │ │ │ │ ├── notification_mattermost_request.png │ │ │ │ ├── notification_mattermost_resultat.png │ │ │ │ ├── pbh_action.png │ │ │ │ ├── pbh_affichage_compteurs_tuile.png │ │ │ │ ├── pbh_afficher_filtre_json.png │ │ │ │ ├── pbh_ajout_comportement_alarme1.png │ │ │ │ ├── pbh_ajout_comportement_alarme2.png │ │ │ │ ├── pbh_ajout_filtre.png │ │ │ │ ├── pbh_apercu_plage_19h15-08h.png │ │ │ │ ├── pbh_attributs_pbehavior.png │ │ │ │ ├── pbh_deux_comportements_actifs.png │ │ │ │ ├── pbh_explorer.png │ │ │ │ ├── pbh_filtre_comportement.png │ │ │ │ ├── pbh_filtre_maintenances_actives_alarmes.png │ │ │ │ ├── pbh_formulaire_creation.png │ │ │ │ ├── pbh_maintenance_entites.png │ │ │ │ ├── pbh_maintenance_entites_1.png │ │ │ │ ├── pbh_maintenance_erp_partielle.png │ │ │ │ ├── pbh_maintenances_actives.png │ │ │ │ ├── pbh_messagerie_maintenance.png │ │ │ │ ├── pbh_messagerie_pause.png │ │ │ │ ├── pbh_picto_extra_details.png │ │ │ │ ├── pbh_plage_19h15-08h.png │ │ │ │ ├── pbh_plage_19h15-08h_rrule.png │ │ │ │ ├── pbh_proprietes_compteurs_tuile.png │ │ │ │ ├── pbh_selection_dates.png │ │ │ │ ├── pbh_situation_initiale.png │ │ │ │ ├── pbh_tuile_comportement_actif.png │ │ │ │ ├── scn_itop_config.png │ │ │ │ ├── scn_itop_ticket.png │ │ │ │ ├── scn_snooze_configuration.png │ │ │ │ ├── scn_snooze_new_scn.png │ │ │ │ ├── scn_snooze_result.png │ │ │ │ ├── templates_affichage_pbh.png │ │ │ │ ├── templates_infopopup.png │ │ │ │ ├── templates_infopopup_creation.png │ │ │ │ ├── templates_infopopup_visualisation.png │ │ │ │ ├── templates_mds_parametres.png │ │ │ │ ├── templates_mds_visualisation.png │ │ │ │ ├── templates_picto_tuile.png │ │ │ │ ├── templates_plusdinfos.png │ │ │ │ ├── templates_resultats_plusdinfos.png │ │ │ │ └── templates_vars.png │ │ │ ├── index.md │ │ │ ├── meteo_des_services.md │ │ │ ├── notifications.md │ │ │ ├── periode-confirmation-alarmes.md │ │ │ ├── template_handlebars.md │ │ │ └── utilisation-reponse-webhook-dans-webhook-suivant.md │ │ ├── formats-et-syntaxe │ │ │ ├── format-regex.md │ │ │ ├── format-temps-alarmes.md │ │ │ ├── format-valuepath.md │ │ │ ├── img │ │ │ │ ├── value-path_alarms.png │ │ │ │ └── value-path_column.png │ │ │ └── index.md │ │ ├── index.md │ │ ├── interface │ │ │ ├── filtres │ │ │ ├── helpers │ │ │ │ ├── exemple_handlebars.md │ │ │ │ ├── img │ │ │ │ │ └── exemple_complet_handlebars.png │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── patterns │ │ │ │ ├── img │ │ │ │ │ ├── filtres_exemple_simple.png │ │ │ │ │ ├── filtres_infos_nom.png │ │ │ │ │ ├── filtres_infos_valeur.png │ │ │ │ │ ├── filtres_operateur_ET.png │ │ │ │ │ └── filtres_operateur_OU.png │ │ │ │ └── index.md │ │ │ ├── pbehaviors │ │ │ │ ├── img │ │ │ │ │ ├── fen1.png │ │ │ │ │ └── menu.png │ │ │ │ └── index.md │ │ │ ├── themes │ │ │ │ ├── img │ │ │ │ │ ├── themes_bouton_creation.png │ │ │ │ │ ├── themes_liste.png │ │ │ │ │ ├── themes_menu.png │ │ │ │ │ ├── themes_parametres1.png │ │ │ │ │ ├── themes_parametres2.png │ │ │ │ │ ├── themes_parametres3.png │ │ │ │ │ └── themes_parametres4.png │ │ │ │ └── index.md │ │ │ ├── vues │ │ │ │ ├── edition-grille.md │ │ │ │ ├── img │ │ │ │ │ ├── add_tab_button.png │ │ │ │ │ ├── affichage_vues.gif │ │ │ │ │ ├── bouton_creation_vue.png │ │ │ │ │ ├── bouton_creation_vue_privee.png │ │ │ │ │ ├── delete_tab_button.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── edit_tab_button.png │ │ │ │ │ ├── edition_groupe.png │ │ │ │ │ ├── edition_vue.png │ │ │ │ │ ├── height.png │ │ │ │ │ ├── modal_creation_vue.png │ │ │ │ │ ├── move-widget.png │ │ │ │ │ ├── ok-widget.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── rafraichissement_vues.png │ │ │ │ │ ├── tabs_bar.png │ │ │ │ │ ├── toggle_edition_mode_button.png │ │ │ │ │ └── width.png │ │ │ │ └── index.md │ │ │ └── widgets │ │ │ │ ├── bac-a-alarmes │ │ │ │ ├── actions.md │ │ │ │ ├── img │ │ │ │ │ ├── actions_masse.png │ │ │ │ │ ├── actions_unite_alarme_apres_ack.png │ │ │ │ │ ├── actions_unite_alarme_avant_ack.png │ │ │ │ │ ├── alarm_status_icons.png │ │ │ │ │ ├── bac-a-alarmes.png │ │ │ │ │ ├── chronologie.png │ │ │ │ │ ├── copier-identifiant-widget.png │ │ │ │ │ ├── entete.png │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── extradetails_ack.png │ │ │ │ │ │ ├── extradetails_comment.png │ │ │ │ │ │ ├── extradetails_correlation.png │ │ │ │ │ │ ├── extradetails_pbh_inactive.png │ │ │ │ │ │ ├── extradetails_pbh_maintenance.png │ │ │ │ │ │ ├── extradetails_pbh_pause.png │ │ │ │ │ │ ├── extradetails_snooze.png │ │ │ │ │ │ ├── extradetails_ticket.png │ │ │ │ │ │ ├── material │ │ │ │ │ │ │ ├── alarm_48dp.svg │ │ │ │ │ │ │ ├── alarm_off_48dp.svg │ │ │ │ │ │ │ ├── assignment_returned_48dp.svg │ │ │ │ │ │ │ ├── bookmark_add_48dp.svg │ │ │ │ │ │ │ ├── bookmark_remove_48dp.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── comment_48dp.svg │ │ │ │ │ │ │ ├── delete_48dp.svg │ │ │ │ │ │ │ ├── delete_forever_48dp.svg │ │ │ │ │ │ │ ├── done_48dp.svg │ │ │ │ │ │ │ ├── done_all_48dp.svg │ │ │ │ │ │ │ ├── fast_pbh_48dp.svg │ │ │ │ │ │ │ ├── help_48dp.svg │ │ │ │ │ │ │ ├── history_48dp.svg │ │ │ │ │ │ │ ├── note_add_48dp.svg │ │ │ │ │ │ │ ├── pause_48dp.svg │ │ │ │ │ │ │ ├── remove_done_48dp.svg │ │ │ │ │ │ │ ├── sticky_note_2_48dp.svg │ │ │ │ │ │ │ └── thumbs_up_down_48dp.svg │ │ │ │ │ │ ├── state_changeState_1.png │ │ │ │ │ │ ├── state_changeState_2.png │ │ │ │ │ │ ├── state_changeState_3.png │ │ │ │ │ │ └── timeline │ │ │ │ │ │ │ ├── ack.svg │ │ │ │ │ │ │ ├── active.svg │ │ │ │ │ │ │ ├── comment.svg │ │ │ │ │ │ │ ├── job.svg │ │ │ │ │ │ │ ├── junit.svg │ │ │ │ │ │ │ ├── meta.svg │ │ │ │ │ │ │ ├── pbh.svg │ │ │ │ │ │ │ ├── snooze.svg │ │ │ │ │ │ │ ├── state.svg │ │ │ │ │ │ │ ├── status.svg │ │ │ │ │ │ │ ├── ticket.svg │ │ │ │ │ │ │ └── webhook.svg │ │ │ │ │ ├── kiosque.png │ │ │ │ │ ├── kiosque1.png │ │ │ │ │ ├── kiosque2.png │ │ │ │ │ ├── kiosque3.png │ │ │ │ │ ├── pbh_alarme.png │ │ │ │ │ ├── selecteur-filtres.png │ │ │ │ │ ├── timeline_alarme.png │ │ │ │ │ └── timeline_icons.png │ │ │ │ ├── index.md │ │ │ │ └── mode-kiosque.md │ │ │ │ ├── calendrier │ │ │ │ ├── img │ │ │ │ │ └── calendrier.png │ │ │ │ └── index.md │ │ │ │ ├── cartographie │ │ │ │ ├── img │ │ │ │ │ ├── cartographie.png │ │ │ │ │ ├── filter-selector.png │ │ │ │ │ ├── noms-des-colonnes.png │ │ │ │ │ └── selecteur-filtres.png │ │ │ │ └── index.md │ │ │ │ ├── compteur │ │ │ │ ├── img │ │ │ │ │ ├── counter.png │ │ │ │ │ └── tuile-counter.png │ │ │ │ └── index.md │ │ │ │ ├── contexte │ │ │ │ ├── img │ │ │ │ │ ├── add-entity-button-hover.png │ │ │ │ │ ├── add-entity-button.png │ │ │ │ │ ├── add-impact-depends.png │ │ │ │ │ ├── add-pbehavior-icon.png │ │ │ │ │ ├── advanced-search-icon.png │ │ │ │ │ ├── champ-recherche.png │ │ │ │ │ ├── context-entity-more-infos.png │ │ │ │ │ ├── context-explorer.png │ │ │ │ │ ├── delete-entity-icon.png │ │ │ │ │ ├── delete-info-icon.png │ │ │ │ │ ├── diagramme-cause-racine.png │ │ │ │ │ ├── duplicate-entity-icon.png │ │ │ │ │ ├── edit-entity-icon.png │ │ │ │ │ ├── edit-info-icon.png │ │ │ │ │ ├── entity-creation-form.png │ │ │ │ │ ├── filter-selector.png │ │ │ │ │ ├── graph-disponibilite.png │ │ │ │ │ ├── manage-infos.png │ │ │ │ │ ├── noms-des-colonnes.png │ │ │ │ │ ├── types-entites.png │ │ │ │ │ └── watcher-creation-form.png │ │ │ │ └── index.md │ │ │ │ ├── disponibilite │ │ │ │ ├── img │ │ │ │ │ └── disponibilité.png │ │ │ │ └── index.md │ │ │ │ ├── donnees-externes │ │ │ │ ├── img │ │ │ │ │ ├── colonne-tri-defaut.png │ │ │ │ │ ├── donnees_externes_widget.png │ │ │ │ │ └── noms-des-colonnes.png │ │ │ │ └── index.md │ │ │ │ ├── graphiques │ │ │ │ ├── img │ │ │ │ │ └── graphiques.png │ │ │ │ └── index.md │ │ │ │ ├── img │ │ │ │ └── settings │ │ │ │ │ ├── column-names.png │ │ │ │ │ ├── default-column-sort.png │ │ │ │ │ ├── entities-types.png │ │ │ │ │ └── widget-size.png │ │ │ │ ├── index.md │ │ │ │ ├── junit │ │ │ │ ├── img │ │ │ │ │ ├── api.png │ │ │ │ │ ├── junit.png │ │ │ │ │ ├── resultat1.png │ │ │ │ │ ├── resultat2.png │ │ │ │ │ ├── resultat3.png │ │ │ │ │ ├── tableaudebord.png │ │ │ │ │ ├── widget1.png │ │ │ │ │ ├── widget2.png │ │ │ │ │ ├── widget3.png │ │ │ │ │ └── widget4.png │ │ │ │ └── index.md │ │ │ │ ├── meteo-des-services │ │ │ │ ├── img │ │ │ │ │ ├── anatomie-tuile.png │ │ │ │ │ ├── arbre-dependances.png │ │ │ │ │ ├── comportements-periodiques.png │ │ │ │ │ ├── exemple-tuile.png │ │ │ │ │ ├── info-entite.png │ │ │ │ │ ├── meteo-des-services.png │ │ │ │ │ └── table-priorites.png │ │ │ │ └── index.md │ │ │ │ ├── stats │ │ │ │ ├── Utilisation-du-widget.md │ │ │ │ └── index.md │ │ │ │ └── texte │ │ │ │ ├── img │ │ │ │ ├── texte-debug.png │ │ │ │ └── texte.png │ │ │ │ └── index.md │ │ ├── limitations │ │ │ └── index.md │ │ ├── menu-administration │ │ │ ├── bilan-de-sante.md │ │ │ ├── cartographie.md │ │ │ ├── consignes.md │ │ │ ├── diffusion-de-messages.md │ │ │ ├── droits.md │ │ │ ├── enregistrements-d-evenements.md │ │ │ ├── gestion-des-tags.md │ │ │ ├── img │ │ │ │ ├── broadcast_acces.png │ │ │ │ ├── broadcast_liste_exemple.png │ │ │ │ ├── broadcast_menu.png │ │ │ │ ├── broadcast_modal_creation.png │ │ │ │ ├── cartographie_ajout.png │ │ │ │ ├── cartographie_arbre.png │ │ │ │ ├── cartographie_flowchart.jpg │ │ │ │ ├── cartographie_liste.png │ │ │ │ ├── cartographie_menu.png │ │ │ │ ├── cartographie_mermaid.png │ │ │ │ ├── cartographie_mermaid_editor.png │ │ │ │ ├── cartographie_modale.png │ │ │ │ ├── cartographie_modale_flowchart.png │ │ │ │ ├── consignes_association_01.png │ │ │ │ ├── consignes_association_02.png │ │ │ │ ├── consignes_association_03.png │ │ │ │ ├── consignes_configuration_ajout.png │ │ │ │ ├── consignes_creer_01.png │ │ │ │ ├── consignes_creer_02.png │ │ │ │ ├── consignes_creer_03.png │ │ │ │ ├── consignes_creer_04.png │ │ │ │ ├── consignes_creer_05.png │ │ │ │ ├── consignes_creer_06.png │ │ │ │ ├── consignes_menu.png │ │ │ │ ├── consignes_statistiques_liste.png │ │ │ │ ├── consignes_tache_association_01.png │ │ │ │ ├── consignes_tache_association_02.png │ │ │ │ ├── consignes_tache_association_03.png │ │ │ │ ├── consignes_tache_modale_ajout.png │ │ │ │ ├── consignes_vue_configuration.png │ │ │ │ ├── consignes_vue_liste.png │ │ │ │ ├── delai_retry_consigne.png │ │ │ │ ├── droits_création_utilisateur.png │ │ │ │ ├── droits_liste_api.png │ │ │ │ ├── droits_liste_business.png │ │ │ │ ├── droits_liste_business_edit.png │ │ │ │ ├── droits_liste_technical.png │ │ │ │ ├── droits_liste_view.png │ │ │ │ ├── droits_liste_view_edit.png │ │ │ │ ├── droits_liste_view_edit_playlist.png │ │ │ │ ├── droits_menu.png │ │ │ │ ├── droits_modal_role.png │ │ │ │ ├── droits_modal_utilisateur.png │ │ │ │ ├── enregistrements-d-evenements-contenu.png │ │ │ │ ├── enregistrements-d-evenements.png │ │ │ │ ├── gestion-des-tags-1.png │ │ │ │ ├── gestion-des-tags-2.png │ │ │ │ ├── gestion-des-tags-3.png │ │ │ │ ├── gestion-des-tags-4.png │ │ │ │ ├── gestion-des-tags-5.png │ │ │ │ ├── gestion-des-tags-6.png │ │ │ │ ├── icones-comportements-periodiques.png │ │ │ │ ├── icones-generateur-liens.png │ │ │ │ ├── jeton-authentification-scenario.png │ │ │ │ ├── jeton-authentification.png │ │ │ │ ├── kpi_alarmes.png │ │ │ │ ├── kpi_filtres_1.png │ │ │ │ ├── kpi_filtres_2.png │ │ │ │ ├── kpi_filtres_3.png │ │ │ │ ├── kpi_filtres_4.png │ │ │ │ ├── kpi_filtres_5.png │ │ │ │ ├── kpi_fonctionnalites.png │ │ │ │ ├── kpi_menu_1.png │ │ │ │ ├── kpi_menu_2.png │ │ │ │ ├── kpi_notations.png │ │ │ │ ├── kpi_parametres.png │ │ │ │ ├── kpi_sli.png │ │ │ │ ├── mode-maintenance-1.png │ │ │ │ ├── mode-maintenance-2.png │ │ │ │ ├── mode-maintenance-3.png │ │ │ │ ├── modele-jeu-colonnes.png │ │ │ │ ├── modele-jeu-meteo1.png │ │ │ │ ├── modele-jeu-meteo2.png │ │ │ │ ├── modele-jeu-meteo3.png │ │ │ │ ├── modele-jeu-plusdinfos.png │ │ │ │ ├── parametres_acces_menu.png │ │ │ │ ├── parametres_connexion.png │ │ │ │ ├── parametres_etat.png │ │ │ │ ├── parametres_icones.png │ │ │ │ ├── parametres_import_export.png │ │ │ │ ├── parametres_import_vue.png │ │ │ │ ├── parametres_menu.png │ │ │ │ ├── parametres_notifications.png │ │ │ │ ├── parametres_sidebar.png │ │ │ │ ├── parametres_stockage_alarmes.png │ │ │ │ ├── parametres_stockage_cycle.png │ │ │ │ ├── parametres_topbar.png │ │ │ │ ├── planification_exception.png │ │ │ │ ├── planification_menu.png │ │ │ │ ├── planification_raison.png │ │ │ │ ├── planification_type.png │ │ │ │ ├── planification_type_creer.png │ │ │ │ ├── planification_type_creer_modale.png │ │ │ │ ├── planification_type_liste.png │ │ │ │ ├── playlists_bandeau.png │ │ │ │ ├── playlists_bouton_creation.png │ │ │ │ ├── playlists_copie.png │ │ │ │ ├── playlists_edition.png │ │ │ │ ├── playlists_lecture.png │ │ │ │ ├── playlists_liste.png │ │ │ │ ├── playlists_menu.png │ │ │ │ ├── playlists_menu_lateral.png │ │ │ │ ├── playlists_modal_creation.png │ │ │ │ ├── playlists_onglets.png │ │ │ │ ├── playlists_suppression.png │ │ │ │ ├── roles_ajout.png │ │ │ │ ├── roles_liste.png │ │ │ │ ├── roles_liste_boutons.png │ │ │ │ ├── roles_menu.png │ │ │ │ ├── roles_modal_creation.png │ │ │ │ ├── roles_modal_creation_expiration.png │ │ │ │ ├── roles_modal_creation_vuepardefaut.png │ │ │ │ ├── roles_modal_creation_vuepardefaut_modal.png │ │ │ │ ├── roles_modal_creation_vuepardefaut_suppression.png │ │ │ │ ├── sante_engines1.png │ │ │ │ ├── sante_engines2.png │ │ │ │ ├── sante_engines3.png │ │ │ │ ├── sante_engines4.png │ │ │ │ ├── sante_engines5.png │ │ │ │ ├── sante_engines6.png │ │ │ │ ├── sante_engines7.png │ │ │ │ ├── sante_engines8.png │ │ │ │ ├── sante_general.png │ │ │ │ ├── sante_general2.png │ │ │ │ ├── sante_general3.png │ │ │ │ ├── sante_general4.png │ │ │ │ ├── sante_graphiques1.png │ │ │ │ ├── sante_graphiques2.png │ │ │ │ ├── services-calcul-etat2.png │ │ │ │ ├── studio-template-gotify-resultat.png │ │ │ │ ├── studio-template-reponse-gotify.png │ │ │ │ ├── utilisateurs_ajout.png │ │ │ │ ├── utilisateurs_liste.png │ │ │ │ ├── utilisateurs_liste_boutons.png │ │ │ │ ├── utilisateurs_liste_jetons.png │ │ │ │ ├── utilisateurs_menu.png │ │ │ │ └── utilisateurs_modal_creation.png │ │ │ ├── jetons-authentification-externe.md │ │ │ ├── kpi.md │ │ │ ├── listes-de-lecture.md │ │ │ ├── mode-maintenance.md │ │ │ ├── parametres-de-calculd-etat-sévérité.md │ │ │ ├── parametres-de-stockage.md │ │ │ ├── parametres.md │ │ │ ├── planification.md │ │ │ ├── roles.md │ │ │ ├── studio-templates.md │ │ │ └── utilisateurs.md │ │ ├── menu-exploitation │ │ │ ├── comportements-periodiques.md │ │ │ ├── donnees-externes.md │ │ │ ├── filtres-evenements.md │ │ │ ├── generateur-liens.md │ │ │ ├── img │ │ │ │ ├── FR_copy.svg │ │ │ │ ├── FR_copy_to_entity_info.svg │ │ │ │ ├── FR_set_entity_info.svg │ │ │ │ ├── FR_set_entity_info_from_dictionary.svg │ │ │ │ ├── FR_set_entity_info_from_template.svg │ │ │ │ ├── FR_set_field.svg │ │ │ │ ├── FR_set_field_from_template.svg │ │ │ │ ├── FR_set_tags.svg │ │ │ │ ├── FR_set_tags_from_template.svg │ │ │ │ ├── comportements-periodiques-creer.png │ │ │ │ ├── comportements-periodiques-details.png │ │ │ │ ├── comportements-periodiques-explorateur1.png │ │ │ │ ├── comportements-periodiques-explorateur2.png │ │ │ │ ├── comportements-periodiques-filtres-avec.png │ │ │ │ ├── comportements-periodiques-filtres-sans.png │ │ │ │ ├── comportements-periodiques-filtres.png │ │ │ │ ├── correlation_activer.png │ │ │ │ ├── correlation_alarme_isolee.png │ │ │ │ ├── correlation_alarmes_groupees.png │ │ │ │ ├── correlation_variables_meta_alarme_01.png │ │ │ │ ├── correlation_variables_meta_alarme_02.png │ │ │ │ ├── declareticket-exploitation1.png │ │ │ │ ├── declareticket-exploitation2.png │ │ │ │ ├── declareticket-exploitation3.png │ │ │ │ ├── declareticket-exploitation4.png │ │ │ │ ├── declareticket-exploitation5.png │ │ │ │ ├── declareticket-exploitation6.png │ │ │ │ ├── declareticket-exploitation7.png │ │ │ │ ├── declareticket-general-parameters.png │ │ │ │ ├── declareticket-visualisation1.png │ │ │ │ ├── declareticket2.png │ │ │ │ ├── donnees_externes_description.png │ │ │ │ ├── donnees_externes_eventfilter_action.png │ │ │ │ ├── donnees_externes_eventfilter_filter.png │ │ │ │ ├── donnees_externes_eventfilter_type.png │ │ │ │ ├── donnees_externes_import.png │ │ │ │ ├── donnees_externes_widget.png │ │ │ │ ├── dynamic-infos-liste_variables_infos1.png │ │ │ │ ├── dynamic-infos-template1.png │ │ │ │ ├── dynamic-infos-template2.png │ │ │ │ ├── dynamic-infos-template3.png │ │ │ │ ├── dynamic-infos-template4.png │ │ │ │ ├── enrichissement-erreur.png │ │ │ │ ├── generateur-liens-bac1.png │ │ │ │ ├── generateur-liens-general-parameters.png │ │ │ │ ├── generateur-liens-visu-actions.png │ │ │ │ ├── generateur-liens-visu-actionsmasse.png │ │ │ │ ├── generateur-liens-visu-bac.png │ │ │ │ ├── generateur-liens-visu-bac2.png │ │ │ │ ├── generateur-liens-visu-bac3.png │ │ │ │ ├── generateur-liens-visu-template.png │ │ │ │ ├── regles-bagot1.png │ │ │ │ ├── regles-bagot2.png │ │ │ │ ├── regles-inactivite1.png │ │ │ │ ├── regles-inactivite2.png │ │ │ │ ├── regles-snmp-1.png │ │ │ │ ├── regles-snmp-2.png │ │ │ │ ├── regles-snmp-3.png │ │ │ │ ├── regles-snmp-4.png │ │ │ │ ├── regles-snmp-5.png │ │ │ │ ├── regles-snmp-6.png │ │ │ │ ├── regles-snmp-7.png │ │ │ │ ├── regles-snmp-8.png │ │ │ │ ├── regles-snmp-9.png │ │ │ │ ├── scenario-action-assocticket.png │ │ │ │ ├── scenario-action-changestate.png │ │ │ │ ├── scenario-action-common-parameters.png │ │ │ │ ├── scenario-action-generic.png │ │ │ │ ├── scenario-action-pbehavior.png │ │ │ │ ├── scenario-action-webhook.png │ │ │ │ └── scenario-general-parameters.png │ │ │ ├── informations-dynamiques.md │ │ │ ├── informations-entite.md │ │ │ ├── regles-bagot.md │ │ │ ├── regles-declaration-tickets.md │ │ │ ├── regles-inactivite.md │ │ │ ├── regles-metaalarme.md │ │ │ ├── regles-resolution.md │ │ │ ├── regles-snmp.md │ │ │ └── scenarios.md │ │ ├── menu-notifications │ │ │ ├── img │ │ │ │ └── notifications_general.png │ │ │ └── notifications.md │ │ ├── premier-acces │ │ │ ├── img │ │ │ │ ├── alarmes.png │ │ │ │ └── login.png │ │ │ └── index.md │ │ ├── remediation │ │ │ ├── img │ │ │ │ ├── remediation_configuration_ajout.png │ │ │ │ ├── remediation_consigne_evaluation.png │ │ │ │ ├── remediation_consigne_executer.png │ │ │ │ ├── remediation_consigne_existe.png │ │ │ │ ├── remediation_consigne_filtres.png │ │ │ │ ├── remediation_consigne_formulaire1.png │ │ │ │ ├── remediation_consigne_formulaire2.png │ │ │ │ ├── remediation_job_ajout.png │ │ │ │ ├── remediation_statuts_echec.png │ │ │ │ └── remediation_statuts_succes.png │ │ │ └── index.md │ │ ├── services │ │ │ ├── cas-d-usage-complet.md │ │ │ ├── img │ │ │ │ ├── services-calcul-etat-meteo1.png │ │ │ │ ├── services-calcul-etat-meteo2.png │ │ │ │ ├── services-calcul-etat-meteo3.png │ │ │ │ ├── services-calcul-etat-meteo4.png │ │ │ │ ├── services-calcul-etat-meteo5.png │ │ │ │ ├── services-calcul-etat-meteo6.png │ │ │ │ ├── services-calcul-etat-meteo7.png │ │ │ │ ├── services-calcul-etat-meteo8.png │ │ │ │ ├── services-calcul-etat1.png │ │ │ │ ├── services-calcul-etat10.png │ │ │ │ ├── services-calcul-etat11.png │ │ │ │ ├── services-calcul-etat12.png │ │ │ │ ├── services-calcul-etat13.png │ │ │ │ ├── services-calcul-etat3.png │ │ │ │ ├── services-calcul-etat4.png │ │ │ │ ├── services-calcul-etat5.png │ │ │ │ ├── services-calcul-etat6.png │ │ │ │ ├── services-calcul-etat7.png │ │ │ │ ├── services-calcul-etat8.png │ │ │ │ ├── services-calcul-etat9.png │ │ │ │ ├── services-explorateur-contexte1.png │ │ │ │ ├── services-explorateur-contexte2.png │ │ │ │ ├── services-explorateur-contexte3.png │ │ │ │ ├── services-widget-bac-a-alarmes1.png │ │ │ │ └── services-widget-météo1.png │ │ │ └── index.md │ │ ├── templates-go │ │ │ ├── index.md │ │ │ └── templates-go-casdusage.md │ │ └── vocabulaire │ │ │ └── index.md │ ├── img │ │ ├── alarm_prio_1-5-8.png │ │ ├── alarm_prio_table.png │ │ └── canopsis-mkdocs.png │ ├── index.md │ ├── interconnexions │ │ ├── Base-de-donnees │ │ │ ├── Elasticsearch.md │ │ │ ├── Mysql-MariaDB-PostgreSQL-Oracle.md │ │ │ ├── Ressources │ │ │ │ └── connector-sql2canopsis.py │ │ │ └── img │ │ │ │ └── kibana-alerting │ │ │ │ ├── 01-create-connector.png │ │ │ │ ├── 02-webhook-connector.png │ │ │ │ ├── 03-connector-details.png │ │ │ │ ├── 04-connector-test.png │ │ │ │ ├── 05-create-rule.png │ │ │ │ ├── 06-rule-type.png │ │ │ │ ├── 07-rule-query.png │ │ │ │ ├── 08-rule-webhook.png │ │ │ │ ├── 09-rule-webhook-content.png │ │ │ │ ├── 10-test-messages.png │ │ │ │ ├── 11-test-alert.png │ │ │ │ └── 12-test-canopsis.png │ │ ├── Supervision │ │ │ ├── Grafana.md │ │ │ ├── Icinga2.md │ │ │ ├── LibreNMS.md │ │ │ ├── Nagios-et-Icinga.md │ │ │ ├── NokiaNSP.md │ │ │ ├── PRTG.md │ │ │ ├── Prometheus.md │ │ │ ├── SNMPtrap.md │ │ │ ├── Shinken.md │ │ │ ├── Zabbix.md │ │ │ └── img │ │ │ │ ├── Cycle_vie_trap_snmp.png │ │ │ │ ├── Grafana-contact-point-alertmanager.png │ │ │ │ ├── Grafana-contact-point-webhook.png │ │ │ │ ├── Grafana-result-alarm-created.png │ │ │ │ ├── Grafana-test-notification.png │ │ │ │ ├── Grafana-test-success.png │ │ │ │ ├── PRTG-critical-alarm.png │ │ │ │ ├── PRTG-regle-down-1.png │ │ │ │ ├── PRTG-regle-down-2.png │ │ │ │ ├── PRTG-regle-unknown-1.png │ │ │ │ ├── PRTG-regle-unknown-2.png │ │ │ │ ├── PRTG_Action_HTTP.png │ │ │ │ ├── PRTG_declencheur.png │ │ │ │ ├── PRTG_notifications.png │ │ │ │ ├── centreon-configuration-screenshot.png │ │ │ │ ├── librenms1.png │ │ │ │ ├── librenms2.png │ │ │ │ ├── librenms3.png │ │ │ │ ├── module_parameters.png │ │ │ │ ├── module_parameters2.png │ │ │ │ ├── module_parameters3.png │ │ │ │ ├── module_restart1.png │ │ │ │ ├── module_restart2.png │ │ │ │ ├── webextension_install.png │ │ │ │ └── webextension_install2.png │ │ ├── Transport │ │ │ ├── Logstash.md │ │ │ ├── Mail.md │ │ │ ├── Ressources │ │ │ │ ├── python_sendevent2canopsisamqp.ini │ │ │ │ └── python_sendevent2canopsisamqp.py │ │ │ └── send_event.md │ │ ├── drivers │ │ │ ├── cas-d-usage-complet.md │ │ │ ├── driver-api.md │ │ │ └── img │ │ │ │ ├── casdusage-app1.png │ │ │ │ ├── casdusage-co1.png │ │ │ │ ├── casdusage-exploit1.png │ │ │ │ ├── casdusage-exploit2.png │ │ │ │ ├── casdusage-exploit3.png │ │ │ │ ├── casdusage-exploit4.png │ │ │ │ ├── casdusage-sa1.png │ │ │ │ ├── driver-api-constant.png │ │ │ │ ├── driver-api-copy.png │ │ │ │ ├── driver-api-regexp.png │ │ │ │ ├── driver-api-template-function.png │ │ │ │ ├── driver-api-template.png │ │ │ │ ├── imported_entity.png │ │ │ │ ├── linked_alarm.png │ │ │ │ └── var_alarm.png │ │ └── index.md │ ├── mkdocs.css │ └── videos │ │ └── index.md └── requirements.txt └── webcore └── src └── canopsis-next ├── .babelrc ├── .cursor └── rules │ └── canopsis-main.mdc ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .husky ├── pre-commit └── prepare-commit-msg ├── .postcssrc ├── .pug-lintrc ├── .yarn └── releases │ └── yarn-4.9.1.cjs ├── .yarnrc.yml ├── Makefile ├── README.md ├── benchmarks ├── index.js ├── modules │ ├── alarms.js │ ├── application.js │ ├── login.js │ └── view.js ├── scenarios │ └── alarms.js └── utils │ ├── Benchmark.js │ ├── BenchmarkLauncher.js │ ├── Measure.js │ ├── PerformanceMetrics.js │ ├── iterate.js │ ├── logger.js │ ├── metrics-files.js │ ├── reporters │ ├── ChartsReporter.js │ ├── ConsoleReporter.js │ ├── FileReporter.js │ └── PdfReporter.js │ └── runner.js ├── config └── nginx │ ├── canopsis.conf │ ├── cors.inc │ ├── https.inc │ ├── resolvers.inc │ └── rundeck.inc ├── docker ├── Dockerfile.nginx └── files │ └── entrypoint-nginx.sh ├── jest.config.js ├── jsconfig.json ├── package.json ├── patches ├── promised-handlebars+2.0.1.patch ├── sanitize-html+1.27.5.patch └── vee-validate+2.2.15.patch ├── public ├── favicon.ico ├── fonts │ ├── material-icons │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ └── material-icons.css │ └── roboto │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-300.eot │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-300.svg │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-300.ttf │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-300.woff │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-300.woff2 │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-500.eot │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-500.svg │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-500.ttf │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-500.woff │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-500.woff2 │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-700.eot │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-700.svg │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-700.ttf │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-700.woff │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-700.woff2 │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-regular.eot │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-regular.svg │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-regular.ttf │ │ ├── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-regular.woff │ │ └── roboto-v18-vietnamese_latin_greek-ext_cyrillic-ext_cyrillic_latin-ext_greek-regular.woff2 ├── index.html ├── scripts │ ├── external-lib.js │ ├── external.js │ └── libs │ │ ├── ace │ │ └── 1.3.3 │ │ │ ├── ace.js │ │ │ ├── mode-html.js │ │ │ └── theme-idle_fingers.js │ │ └── js-beautify │ │ └── 1.7.5 │ │ ├── beautify-html.min.js │ │ └── beautify.min.js └── styles │ └── fonts.css ├── src ├── app.vue ├── assets │ ├── canopsis-green.png │ ├── canopsis.png │ ├── event-filter-actions-types │ │ ├── EN_copy.svg │ │ ├── EN_copy_to_entity_info.svg │ │ ├── EN_set_entity_info.svg │ │ ├── EN_set_entity_info_from_dictionary.svg │ │ ├── EN_set_entity_info_from_template.svg │ │ ├── EN_set_field.svg │ │ ├── EN_set_field_from_template.svg │ │ ├── EN_set_tags.svg │ │ ├── EN_set_tags_from_template.svg │ │ ├── FR_copy.svg │ │ ├── FR_copy_to_entity_info.svg │ │ ├── FR_set_entity_info.svg │ │ ├── FR_set_entity_info_from_dictionary.svg │ │ ├── FR_set_entity_info_from_template.svg │ │ ├── FR_set_field.svg │ │ ├── FR_set_field_from_template.svg │ │ ├── FR_set_tags.svg │ │ └── FR_set_tags_from_template.svg │ ├── images │ │ ├── alt_route.svg │ │ ├── assignment_one.svg │ │ ├── assignment_warning.svg │ │ ├── bookmark_add.svg │ │ ├── bookmark_remove.svg │ │ ├── build_circle.svg │ │ ├── bullhorn.svg │ │ ├── close_with_delay.svg │ │ ├── collapse_all.svg │ │ ├── column-desktop-1.svg │ │ ├── column-desktop-12.svg │ │ ├── column-desktop-2.svg │ │ ├── column-desktop-3.svg │ │ ├── column-desktop-4.svg │ │ ├── column-desktop-6.svg │ │ ├── column-mobile-1.svg │ │ ├── column-mobile-2.svg │ │ ├── column-tablet-1.svg │ │ ├── column-tablet-2.svg │ │ ├── column-tablet-3.svg │ │ ├── column-tablet-4.svg │ │ ├── database_outlined.svg │ │ ├── delayed_cancel.svg │ │ ├── delayed_check.svg │ │ ├── density_large.svg │ │ ├── density_medium.svg │ │ ├── density_small.svg │ │ ├── engineering.svg │ │ ├── expand_all.svg │ │ ├── insights.svg │ │ ├── json.svg │ │ ├── list_delete.svg │ │ ├── location.svg │ │ ├── manual_instruction.svg │ │ ├── mark_unread_chat_alt.svg │ │ ├── mediation.svg │ │ ├── miscellaneous_services.svg │ │ ├── motion_photos_paused.svg │ │ ├── notification_important_stroke.svg │ │ ├── numbers.svg │ │ ├── pdf.svg │ │ ├── person_lock.svg │ │ ├── playlist_build.svg │ │ ├── published_with_changes.svg │ │ ├── push_pin.svg │ │ ├── remove_clock.svg │ │ ├── resize_right.svg │ │ ├── restart_alt.svg │ │ ├── root_cause.svg │ │ ├── settings_sync.svg │ │ ├── sticky_note_2.svg │ │ ├── storage.svg │ │ ├── warning_stroke.svg │ │ └── webhook.svg │ ├── index.js │ ├── logo.png │ ├── material-icons │ │ └── MaterialIcons-Regular.json │ ├── styles │ │ └── main.scss │ └── templates │ │ └── alarm-export-pdf.html ├── bootstrap │ ├── components │ │ ├── additional.js │ │ ├── buttons.js │ │ ├── chips.js │ │ ├── common.js │ │ ├── fields │ │ │ ├── alarm.js │ │ │ ├── color.js │ │ │ ├── common.js │ │ │ ├── date-time.js │ │ │ ├── entity.js │ │ │ ├── event.js │ │ │ ├── index.js │ │ │ ├── kpi.js │ │ │ ├── map.js │ │ │ ├── meta-alarm-rule.js │ │ │ ├── pattern.js │ │ │ ├── pbehavior.js │ │ │ ├── service-weather.js │ │ │ └── theme.js │ │ ├── icons.js │ │ ├── index.js │ │ ├── overlay.js │ │ └── table.js │ ├── index.js │ └── plugins.js ├── components │ ├── common │ │ ├── actions-panel │ │ │ ├── actions-panel.vue │ │ │ ├── mass-actions-panel.vue │ │ │ ├── quick-alarm-actions-form-item.vue │ │ │ └── quick-alarm-actions-form.vue │ │ ├── alert │ │ │ └── c-alert.vue │ │ ├── badge │ │ │ └── c-circle-badge.vue │ │ ├── block │ │ │ ├── c-collapse-panel.vue │ │ │ ├── c-information-block-row.vue │ │ │ └── c-information-block.vue │ │ ├── buttons │ │ │ ├── c-action-btn.vue │ │ │ ├── c-action-fab-btn.vue │ │ │ ├── c-btn-with-error.vue │ │ │ ├── c-copy-btn.vue │ │ │ ├── c-db-export-btn.vue │ │ │ ├── c-download-btn.vue │ │ │ ├── c-expand-btn.vue │ │ │ ├── c-fab-btn.vue │ │ │ ├── c-fab-expand-btn.vue │ │ │ ├── c-grid-btns.vue │ │ │ ├── c-refresh-btn.vue │ │ │ └── c-speed-dial.vue │ │ ├── calendar │ │ │ ├── c-calendar.vue │ │ │ └── partials │ │ │ │ ├── calendar-pagination-arrow-btn.vue │ │ │ │ ├── calendar-pagination.vue │ │ │ │ ├── calendar-period-picker.vue │ │ │ │ ├── calendar-today-btn.vue │ │ │ │ └── calendar-view-mode.vue │ │ ├── card │ │ │ └── card-with-see-alarms-btn.vue │ │ ├── chart │ │ │ ├── bar-chart.vue │ │ │ ├── c-mini-bar-chart.vue │ │ │ ├── chart-export-actions.vue │ │ │ ├── cluster-graph │ │ │ │ ├── cluster-graph-editor.vue │ │ │ │ └── partials │ │ │ │ │ ├── cluster-graph-entities-list.vue │ │ │ │ │ └── cluster-graph-entities-type.vue │ │ │ ├── horizontal-bar.vue │ │ │ ├── junit-gantt-chart.vue │ │ │ ├── limited-time-line-chart.vue │ │ │ ├── line-chart.vue │ │ │ ├── network-graph.vue │ │ │ └── pie-chart.vue │ │ ├── chips │ │ │ ├── c-alarm-actions-chips.vue │ │ │ ├── c-alarm-chip.vue │ │ │ ├── c-alarm-extra-details-chip.vue │ │ │ ├── c-alarm-links-chips.vue │ │ │ ├── c-alarm-pbehavior-chip.vue │ │ │ ├── c-alarm-state-chip.vue │ │ │ ├── c-alarm-tags-chips.vue │ │ │ ├── c-chip.vue │ │ │ ├── c-engine-chip.vue │ │ │ ├── c-entity-tags-chips.vue │ │ │ ├── c-instruction-job-chip.vue │ │ │ ├── c-pattern-operator-chip.vue │ │ │ ├── c-state-count-changes-chip.vue │ │ │ ├── c-state-count-changes-chips.vue │ │ │ └── c-test-suite-chip.vue │ │ ├── choose-expansion-panel │ │ │ ├── choose-expansion-panel.vue │ │ │ └── partials │ │ │ │ └── chips-list.vue │ │ ├── code-editor │ │ │ ├── code-editor.vue │ │ │ ├── javascript-code-editor.vue │ │ │ └── simple-code-editor.vue │ │ ├── contextmenu │ │ │ └── c-contextmenu.vue │ │ ├── drag-drop │ │ │ └── c-draggable-step-number.vue │ │ ├── flowchart │ │ │ ├── assets │ │ │ │ ├── common │ │ │ │ │ ├── asset-1.svg │ │ │ │ │ ├── asset-10.svg │ │ │ │ │ ├── asset-11.svg │ │ │ │ │ ├── asset-12.svg │ │ │ │ │ ├── asset-13.svg │ │ │ │ │ ├── asset-14.svg │ │ │ │ │ ├── asset-15.svg │ │ │ │ │ ├── asset-16.svg │ │ │ │ │ ├── asset-17.svg │ │ │ │ │ ├── asset-18.svg │ │ │ │ │ ├── asset-19.svg │ │ │ │ │ ├── asset-2.svg │ │ │ │ │ ├── asset-20.svg │ │ │ │ │ ├── asset-21.svg │ │ │ │ │ ├── asset-22.svg │ │ │ │ │ ├── asset-23.svg │ │ │ │ │ ├── asset-24.svg │ │ │ │ │ ├── asset-25.svg │ │ │ │ │ ├── asset-26.svg │ │ │ │ │ ├── asset-27.svg │ │ │ │ │ ├── asset-28.svg │ │ │ │ │ ├── asset-29.svg │ │ │ │ │ ├── asset-3.svg │ │ │ │ │ ├── asset-30.svg │ │ │ │ │ ├── asset-31.svg │ │ │ │ │ ├── asset-32.svg │ │ │ │ │ ├── asset-33.svg │ │ │ │ │ ├── asset-34.svg │ │ │ │ │ ├── asset-35.svg │ │ │ │ │ ├── asset-36.svg │ │ │ │ │ ├── asset-37.svg │ │ │ │ │ ├── asset-38.svg │ │ │ │ │ ├── asset-39.svg │ │ │ │ │ ├── asset-4.svg │ │ │ │ │ ├── asset-40.svg │ │ │ │ │ ├── asset-41.svg │ │ │ │ │ ├── asset-42.svg │ │ │ │ │ ├── asset-43.svg │ │ │ │ │ ├── asset-44.svg │ │ │ │ │ ├── asset-45.svg │ │ │ │ │ ├── asset-46.svg │ │ │ │ │ ├── asset-47.svg │ │ │ │ │ ├── asset-5.svg │ │ │ │ │ ├── asset-6.svg │ │ │ │ │ ├── asset-7.svg │ │ │ │ │ ├── asset-8.svg │ │ │ │ │ └── asset-9.svg │ │ │ │ ├── index.js │ │ │ │ └── special │ │ │ │ │ ├── action.svg │ │ │ │ │ ├── admin.svg │ │ │ │ │ ├── alarm-on.svg │ │ │ │ │ ├── api.svg │ │ │ │ │ ├── application.svg │ │ │ │ │ ├── assignment.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── captor.svg │ │ │ │ │ ├── data-bus.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── engine.svg │ │ │ │ │ ├── firewall.svg │ │ │ │ │ ├── insights.svg │ │ │ │ │ ├── interconnexion.svg │ │ │ │ │ ├── internet.svg │ │ │ │ │ ├── inventory.svg │ │ │ │ │ ├── manager.svg │ │ │ │ │ ├── mongo-db-vert.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── phone-book.svg │ │ │ │ │ ├── policy.svg │ │ │ │ │ ├── process.svg │ │ │ │ │ ├── rabbit-mq.svg │ │ │ │ │ ├── redis.svg │ │ │ │ │ ├── router.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── source.svg │ │ │ │ │ ├── switch.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── webhook.svg │ │ │ │ │ └── workplace.svg │ │ │ ├── common │ │ │ │ ├── points-line-path.vue │ │ │ │ ├── rect-connectors.vue │ │ │ │ ├── rect-selection.vue │ │ │ │ └── text-editor.vue │ │ │ ├── fields │ │ │ │ ├── flowchart-color-field.vue │ │ │ │ ├── flowchart-line-type-field.vue │ │ │ │ ├── flowchart-number-field.vue │ │ │ │ └── flowchart-stroke-type-field.vue │ │ │ ├── figures │ │ │ │ ├── arrow-figure.vue │ │ │ │ ├── circle-figure.vue │ │ │ │ ├── document-figure.vue │ │ │ │ ├── parallelogram-figure.vue │ │ │ │ ├── process-figure.vue │ │ │ │ ├── rhombus-figure.vue │ │ │ │ └── storage-figure.vue │ │ │ ├── flowchart-editor.vue │ │ │ ├── flowchart-properties.vue │ │ │ ├── flowchart-sidebar.vue │ │ │ ├── flowchart.vue │ │ │ ├── icons │ │ │ │ ├── arrow-line-shape.vue │ │ │ │ ├── bidirectional-arrow-line-shape.vue │ │ │ │ ├── bidirectional-curve-arrow-line-shape.vue │ │ │ │ ├── circle-shape.vue │ │ │ │ ├── curve-arrow-line-shape.vue │ │ │ │ ├── curve-line-shape.vue │ │ │ │ ├── document-shape.vue │ │ │ │ ├── ellipse-shape.vue │ │ │ │ ├── image-shape.vue │ │ │ │ ├── line-shape.vue │ │ │ │ ├── parallelogram-shape.vue │ │ │ │ ├── process-shape.vue │ │ │ │ ├── rect-shape.vue │ │ │ │ ├── rhombus-shape.vue │ │ │ │ ├── rounded-rect-shape.vue │ │ │ │ ├── square-shape.vue │ │ │ │ ├── storage-shape.vue │ │ │ │ ├── text-shape.vue │ │ │ │ └── textbox-shape.vue │ │ │ ├── partials │ │ │ │ └── flowchart-selection.vue │ │ │ └── shapes │ │ │ │ ├── arrow-line-shape │ │ │ │ └── arrow-line-shape.vue │ │ │ │ ├── bidirectional-arrow-line-shape │ │ │ │ └── bidirectional-arrow-line-shape.vue │ │ │ │ ├── circle-shape │ │ │ │ ├── circle-shape-selection.vue │ │ │ │ └── circle-shape.vue │ │ │ │ ├── document-shape │ │ │ │ └── document-shape.vue │ │ │ │ ├── ellipse-shape │ │ │ │ └── ellipse-shape.vue │ │ │ │ ├── image-shape │ │ │ │ └── image-shape.vue │ │ │ │ ├── line-shape │ │ │ │ ├── line-shape-selection.vue │ │ │ │ └── line-shape.vue │ │ │ │ ├── parallelogram-shape │ │ │ │ └── parallelogram-shape.vue │ │ │ │ ├── process-shape │ │ │ │ └── process-shape.vue │ │ │ │ ├── rect-shape │ │ │ │ ├── rect-shape-selection.vue │ │ │ │ └── rect-shape.vue │ │ │ │ ├── rhombus-shape │ │ │ │ └── rhombus-shape.vue │ │ │ │ └── storage-shape │ │ │ │ └── storage-shape.vue │ │ ├── geomap │ │ │ ├── geomap-cluster-group.vue │ │ │ ├── geomap-contextmenu.vue │ │ │ ├── geomap-control-layers.vue │ │ │ ├── geomap-control-zoom.vue │ │ │ ├── geomap-control.vue │ │ │ ├── geomap-icon.vue │ │ │ ├── geomap-marker.vue │ │ │ ├── geomap-tile-layer.vue │ │ │ ├── geomap-tooltip.vue │ │ │ └── geomap.vue │ │ ├── grid │ │ │ ├── grid-layout.vue │ │ │ └── partials │ │ │ │ └── grid-item.vue │ │ ├── groups │ │ │ └── c-density-btn-toggle.vue │ │ ├── icons │ │ │ ├── c-help-icon.vue │ │ │ └── c-no-events-icon.vue │ │ ├── images-viewer │ │ │ └── c-images-viewer.vue │ │ ├── links │ │ │ ├── c-links-chips.vue │ │ │ └── c-links-list.vue │ │ ├── overlay │ │ │ ├── c-alert-overlay.vue │ │ │ ├── c-progress-overlay.vue │ │ │ ├── c-zoom-overlay.vue │ │ │ └── loader-overlay.vue │ │ ├── page │ │ │ ├── c-page-header.vue │ │ │ └── c-page.vue │ │ ├── pagination │ │ │ ├── c-pagination.vue │ │ │ └── c-table-pagination.vue │ │ ├── panzoom │ │ │ └── panzoom.vue │ │ ├── placeholder │ │ │ ├── c-booted-placeholder-loader.vue │ │ │ └── c-placeholder-loader.vue │ │ ├── popups │ │ │ └── c-remediation-instruction-execution-see-details.vue │ │ ├── reccurence-rule │ │ │ └── recurrence-rule-information.vue │ │ ├── request │ │ │ ├── c-json-treeview.vue │ │ │ ├── c-request-text-information.vue │ │ │ └── partials │ │ │ │ ├── request-information-content-row.vue │ │ │ │ └── request-information-content.vue │ │ ├── responsive-list │ │ │ └── c-responsive-list.vue │ │ ├── runtime-template │ │ │ ├── c-compiled-template.vue │ │ │ ├── c-copy-wrapper.vue │ │ │ └── c-runtime-template.vue │ │ ├── scrollbar │ │ │ └── c-horizontal-scrollbar.vue │ │ ├── search │ │ │ ├── c-advanced-search-field.vue │ │ │ ├── c-advanced-search.vue │ │ │ ├── c-alarm-advanced-search-field.vue │ │ │ ├── c-search-field.vue │ │ │ ├── c-search.vue │ │ │ ├── hooks │ │ │ │ ├── advanced-search.js │ │ │ │ ├── alarm-advanced-search.js │ │ │ │ ├── search.js │ │ │ │ ├── use-active-key.js │ │ │ │ └── use-focus-management.js │ │ │ └── partials │ │ │ │ ├── advanced-search-field-chip.vue │ │ │ │ ├── advanced-search-field-input.vue │ │ │ │ ├── advanced-search-field-list.vue │ │ │ │ ├── advanced-search-field-wrapper.vue │ │ │ │ ├── advanced-search-field.vue │ │ │ │ ├── advanced-search-history-item-btns.vue │ │ │ │ ├── alarm-advanced-search-chip.vue │ │ │ │ ├── alarm-advanced-search-duration-chip.vue │ │ │ │ ├── alarm-advanced-search-history-btn.vue │ │ │ │ ├── alarm-advanced-search-range-chip.vue │ │ │ │ ├── alarm-advanced-search-rule.vue │ │ │ │ └── alarm-advanced-search-rules.vue │ │ ├── table │ │ │ ├── c-advanced-data-table.vue │ │ │ ├── c-ellipsis.vue │ │ │ ├── c-empty-data-table-columns.vue │ │ │ ├── c-treeview-data-table.vue │ │ │ ├── color-indicator-wrapper.vue │ │ │ └── progress-cell.vue │ │ ├── text-editor │ │ │ ├── text-editor-blurred.vue │ │ │ ├── text-editor-with-template.vue │ │ │ ├── text-editor.vue │ │ │ ├── variables-list.vue │ │ │ └── variables-menu.vue │ │ └── tooltip │ │ │ └── c-simple-tooltip.vue │ ├── forms │ │ ├── date-interval-selector.vue │ │ ├── external-data │ │ │ ├── external-data-form.vue │ │ │ ├── external-data-item-form.vue │ │ │ ├── external-data-table-condition-form.vue │ │ │ └── external-data-table-form.vue │ │ ├── fields │ │ │ ├── alarm │ │ │ │ ├── c-alarm-field.vue │ │ │ │ ├── c-alarm-infos-attribute-field.vue │ │ │ │ ├── c-alarm-old-state-field.vue │ │ │ │ ├── c-alarm-patterns-field.vue │ │ │ │ ├── c-alarm-state-field.vue │ │ │ │ ├── c-alarm-status-field.vue │ │ │ │ ├── c-alarm-tag-field.vue │ │ │ │ └── c-meta-alarm-field.vue │ │ │ ├── c-action-type-field.vue │ │ │ ├── c-array-text-field.vue │ │ │ ├── c-change-state-field.vue │ │ │ ├── c-column-size-field.vue │ │ │ ├── c-csv-separator-field.vue │ │ │ ├── c-description-field.vue │ │ │ ├── c-enabled-field.vue │ │ │ ├── c-enabled-limit-field.vue │ │ │ ├── c-entity-info-property-key-field.vue │ │ │ ├── c-event-filter-type-field.vue │ │ │ ├── c-file-name-mask-field.vue │ │ │ ├── c-id-field.vue │ │ │ ├── c-infos-attribute-field.vue │ │ │ ├── c-input-type-field.vue │ │ │ ├── c-instruction-type-field.vue │ │ │ ├── c-items-per-page-field.vue │ │ │ ├── c-json-field.vue │ │ │ ├── c-language-field.vue │ │ │ ├── c-lazy-search-field.vue │ │ │ ├── c-mixed-field.vue │ │ │ ├── c-mixed-input-field.vue │ │ │ ├── c-name-field.vue │ │ │ ├── c-number-field.vue │ │ │ ├── c-password-field.vue │ │ │ ├── c-payload-text-field.vue │ │ │ ├── c-payload-textarea-field.vue │ │ │ ├── c-percents-field.vue │ │ │ ├── c-priority-field.vue │ │ │ ├── c-quick-date-interval-field.vue │ │ │ ├── c-quick-date-interval-type-field.vue │ │ │ ├── c-quick-date-interval-type-range-field.vue │ │ │ ├── c-retry-field.vue │ │ │ ├── c-sampling-field.vue │ │ │ ├── c-select-chip.vue │ │ │ ├── c-select-field.vue │ │ │ ├── c-storage-field.vue │ │ │ ├── c-storages-field.vue │ │ │ ├── c-timezone-field.vue │ │ │ ├── c-triggers-field.vue │ │ │ ├── c-user-picker-field.vue │ │ │ ├── c-widget-template.vue │ │ │ ├── c-workflow-field.vue │ │ │ ├── card-iterator │ │ │ │ ├── c-card-iterator-field.vue │ │ │ │ ├── c-card-iterator-item.vue │ │ │ │ ├── c-movable-card-iterator-field.vue │ │ │ │ └── movable-card-iterator-item.vue │ │ │ ├── color │ │ │ │ ├── c-color-chrome-picker-field.vue │ │ │ │ ├── c-color-compact-picker-field.vue │ │ │ │ ├── c-color-indicator-field.vue │ │ │ │ ├── c-color-picker-field.vue │ │ │ │ ├── c-color-picker-menu-field.vue │ │ │ │ └── c-enabled-color-picker-field.vue │ │ │ ├── column │ │ │ │ ├── c-columns-field.vue │ │ │ │ ├── c-columns-with-template-field.vue │ │ │ │ └── partials │ │ │ │ │ ├── column-field-expand-panel.vue │ │ │ │ │ ├── column-field.vue │ │ │ │ │ └── column-links-category-field.vue │ │ │ ├── date-picker │ │ │ │ ├── c-date-interval-field.vue │ │ │ │ └── c-date-picker-field.vue │ │ │ ├── date-time-picker │ │ │ │ ├── c-date-time-interval-field.vue │ │ │ │ ├── date-picker-text.vue │ │ │ │ ├── date-time-picker-field.vue │ │ │ │ ├── date-time-picker-menu.vue │ │ │ │ ├── date-time-picker-text-field.vue │ │ │ │ ├── date-time-picker.vue │ │ │ │ ├── date-time-splitted-picker-field.vue │ │ │ │ ├── date-time-splitted-picker-text.vue │ │ │ │ ├── date-time-splitted-range-picker-text.vue │ │ │ │ └── time-picker-text.vue │ │ │ ├── date-time-splitted-range-picker-field.vue │ │ │ ├── duration │ │ │ │ ├── c-duration-field.vue │ │ │ │ ├── c-enabled-duration-field.vue │ │ │ │ ├── c-splitted-duration-field.vue │ │ │ │ └── hooks │ │ │ │ │ └── enabled-duration-field.js │ │ │ ├── entity │ │ │ │ ├── c-entity-category-field.vue │ │ │ │ ├── c-entity-field.vue │ │ │ │ ├── c-entity-patterns-field.vue │ │ │ │ ├── c-entity-type-field.vue │ │ │ │ └── c-impact-level-field.vue │ │ │ ├── event-filter │ │ │ │ └── c-event-filter-patterns-field.vue │ │ │ ├── event │ │ │ │ └── c-event-type-field.vue │ │ │ ├── file-drag-selector.vue │ │ │ ├── file-selector.vue │ │ │ ├── icon │ │ │ │ ├── c-enabled-icon-field.vue │ │ │ │ └── c-icon-field.vue │ │ │ ├── kpi │ │ │ │ ├── c-alarm-external-metric-parameters-field.vue │ │ │ │ ├── c-alarm-metric-aggregate-function-field.vue │ │ │ │ ├── c-alarm-metric-parameters-field.vue │ │ │ │ ├── c-alarm-metric-preset-field.vue │ │ │ │ └── c-alarm-metric-presets-field.vue │ │ │ ├── list │ │ │ │ └── c-draggable-list-field.vue │ │ │ ├── map │ │ │ │ ├── c-coordinates-field.vue │ │ │ │ └── c-map-field.vue │ │ │ ├── meta-alarm-rule │ │ │ │ └── c-meta-alarm-rule-field.vue │ │ │ ├── pattern │ │ │ │ ├── c-filter-field.vue │ │ │ │ ├── c-pattern-field.vue │ │ │ │ ├── c-patterns-field.vue │ │ │ │ ├── pattern-advanced-editor-field.vue │ │ │ │ ├── pattern-attribute-field.vue │ │ │ │ ├── pattern-count-message.vue │ │ │ │ ├── pattern-editor-field.vue │ │ │ │ ├── pattern-group-field.vue │ │ │ │ ├── pattern-groups-field.vue │ │ │ │ ├── pattern-operator-field.vue │ │ │ │ ├── pattern-operator-information.vue │ │ │ │ ├── pattern-rule-field-date-value.vue │ │ │ │ ├── pattern-rule-field.vue │ │ │ │ └── pattern-rules-field.vue │ │ │ ├── pbehavior │ │ │ │ ├── c-disable-during-periods-field.vue │ │ │ │ ├── c-pbehavior-patterns-field.vue │ │ │ │ ├── c-pbehavior-reason-field.vue │ │ │ │ ├── c-pbehavior-type-field.vue │ │ │ │ └── c-pbehavior-type-text.vue │ │ │ ├── periodic-refresh-field.vue │ │ │ ├── rating-field.vue │ │ │ ├── role │ │ │ │ └── c-role-field.vue │ │ │ ├── service-weather │ │ │ │ ├── c-service-weather-icon-field.vue │ │ │ │ ├── c-service-weather-patterns-field.vue │ │ │ │ └── c-service-weather-state-counter-field.vue │ │ │ ├── state-criticity-field.vue │ │ │ ├── text-editor-field.vue │ │ │ ├── text-pairs │ │ │ │ ├── c-text-pair-field.vue │ │ │ │ └── c-text-pairs-field.vue │ │ │ ├── theme │ │ │ │ └── c-theme-field.vue │ │ │ ├── time-picker │ │ │ │ └── time-picker-field.vue │ │ │ ├── view-selector.vue │ │ │ └── window-size.vue │ │ ├── pattern-form.vue │ │ ├── patterns-form.vue │ │ ├── rate.vue │ │ ├── recurrence-rule │ │ │ ├── fields │ │ │ │ ├── recurrence-rule-advanced-field.vue │ │ │ │ ├── recurrence-rule-advanced-repeat-field.vue │ │ │ │ ├── recurrence-rule-end-field.vue │ │ │ │ ├── recurrence-rule-frequency-field.vue │ │ │ │ ├── recurrence-rule-interval-field.vue │ │ │ │ ├── recurrence-rule-month-field.vue │ │ │ │ └── recurrence-rule-weekday-field.vue │ │ │ └── recurrence-rule-form.vue │ │ └── request │ │ │ ├── fields │ │ │ ├── request-auth-token-field.vue │ │ │ ├── request-auth-with-token-field.vue │ │ │ ├── request-header-field.vue │ │ │ ├── request-headers-field.vue │ │ │ └── request-url-field.vue │ │ │ ├── request-form.vue │ │ │ └── request-with-token-form.vue │ ├── icons │ │ └── c-enabled.vue │ ├── layout │ │ ├── broadcast-message │ │ │ └── active-broadcast-message.vue │ │ └── navigation │ │ │ ├── partials │ │ │ ├── app-logo.vue │ │ │ ├── app-version.vue │ │ │ ├── groups-settings-button.vue │ │ │ ├── groups-side-bar │ │ │ │ ├── draggable-group-views.vue │ │ │ │ ├── draggable-groups.vue │ │ │ │ ├── group-panel.vue │ │ │ │ ├── group-view-panel.vue │ │ │ │ ├── groups-side-bar-group-view.vue │ │ │ │ ├── groups-side-bar-group.vue │ │ │ │ ├── groups-side-bar-playlists.vue │ │ │ │ └── groups-side-bar.vue │ │ │ ├── groups-top-bar │ │ │ │ ├── groups-top-bar-group-view.vue │ │ │ │ ├── groups-top-bar-group.vue │ │ │ │ ├── groups-top-bar-playlists.vue │ │ │ │ └── groups-top-bar.vue │ │ │ ├── logged-users-count.vue │ │ │ ├── top-bar-administration-menu.vue │ │ │ ├── top-bar-exploitation-menu.vue │ │ │ ├── top-bar-menu-link.vue │ │ │ ├── top-bar-menu.vue │ │ │ ├── top-bar-notifications-menu-item.vue │ │ │ ├── top-bar-notifications-menu.vue │ │ │ ├── top-bar-profile-menu-link.vue │ │ │ ├── top-bar-title.vue │ │ │ ├── top-bar-user-menu.vue │ │ │ └── top-bar.vue │ │ │ └── the-navigation.vue │ ├── modals │ │ ├── admin │ │ │ ├── create-broadcast-message.vue │ │ │ ├── create-playlist.vue │ │ │ ├── create-role.vue │ │ │ ├── create-user.vue │ │ │ └── manage-playlist-tabs.vue │ │ ├── alarm-status-rule │ │ │ └── create-alarm-status-rule.vue │ │ ├── alarm │ │ │ ├── alarms-list.vue │ │ │ ├── confirm-ack-with-ticket.vue │ │ │ ├── create-ack-event.vue │ │ │ ├── create-alarm-chart.vue │ │ │ ├── create-change-state-event.vue │ │ │ ├── create-event.vue │ │ │ ├── create-snooze-event.vue │ │ │ ├── edit-live-reporting.vue │ │ │ ├── info-popup-setting │ │ │ │ ├── add-info-popup.vue │ │ │ │ └── info-popup-setting.vue │ │ │ ├── link-to-meta-alarm.vue │ │ │ └── remove-alarms-from-meta-alarm.vue │ │ ├── common │ │ │ ├── click-outside-confirmation.vue │ │ │ ├── color-picker.vue │ │ │ ├── confirmation-phrase.vue │ │ │ ├── confirmation.vue │ │ │ ├── create-comment-event.vue │ │ │ ├── create-filter.vue │ │ │ ├── duration.vue │ │ │ ├── filters-list.vue │ │ │ ├── image-viewer.vue │ │ │ ├── images-viewer.vue │ │ │ ├── info.vue │ │ │ ├── payload-textarea-editor.vue │ │ │ ├── rate.vue │ │ │ ├── text-editor-with-template.vue │ │ │ ├── text-editor.vue │ │ │ ├── text-field-editor.vue │ │ │ └── variables-help.vue │ │ ├── declare-ticket │ │ │ ├── create-associate-ticket-event.vue │ │ │ ├── create-declare-ticket-event.vue │ │ │ ├── create-declare-ticket-rule.vue │ │ │ └── execute-declare-tickets-rule.vue │ │ ├── dynamic-info │ │ │ ├── create-dynamic-info-information.vue │ │ │ ├── create-dynamic-info-template.vue │ │ │ ├── create-dynamic-info.vue │ │ │ └── dynamic-info-templates-list.vue │ │ ├── entity-info-property │ │ │ └── create-entity-info-property.vue │ │ ├── entity │ │ │ ├── create-entity-info.vue │ │ │ ├── create-entity.vue │ │ │ ├── entities-list.vue │ │ │ ├── entities-root-cause-diagram.vue │ │ │ └── entity-dependencies-list.vue │ │ ├── event-filter │ │ │ └── create-event-filter.vue │ │ ├── events-record │ │ │ ├── apply-event-filter.vue │ │ │ └── events-record.vue │ │ ├── external-auth-token │ │ │ └── create-external-auth-token.vue │ │ ├── external-data-table │ │ │ ├── create-external-data-table-record.vue │ │ │ ├── create-external-data-table.vue │ │ │ └── import-external-data-table-records.vue │ │ ├── healthcheck │ │ │ ├── healthcheck-engine.vue │ │ │ └── healthcheck-engines-chain-reference.vue │ │ ├── icon │ │ │ └── create-icon.vue │ │ ├── idle-rule │ │ │ └── create-idle-rule.vue │ │ ├── index.js │ │ ├── kpi │ │ │ └── create-kpi-filter.vue │ │ ├── link-rule │ │ │ └── create-link-rule.vue │ │ ├── maintenance │ │ │ └── create-maintenance.vue │ │ ├── map │ │ │ ├── create-flowchart-map.vue │ │ │ ├── create-geo-map.vue │ │ │ ├── create-map.vue │ │ │ ├── create-mermaid-map.vue │ │ │ └── create-tree-of-dependencies-map.vue │ │ ├── meta-alarm-rule │ │ │ └── create-meta-alarm-rule.vue │ │ ├── modal-title-buttons.vue │ │ ├── modal-wrapper.vue │ │ ├── pattern │ │ │ └── create-pattern.vue │ │ ├── pbehavior │ │ │ ├── create-pbehavior-exception.vue │ │ │ ├── create-pbehavior-reason.vue │ │ │ ├── create-pbehavior-type.vue │ │ │ ├── create-pbehavior.vue │ │ │ ├── create-recurrence-rule.vue │ │ │ ├── import-pbehavior-exception.vue │ │ │ ├── pbehavior-list.vue │ │ │ ├── pbehavior-planning.vue │ │ │ ├── pbehavior-recurrence-rule.vue │ │ │ ├── pbehavior-recurrent-changes-confirmation.vue │ │ │ └── pbehaviors-calendar.vue │ │ ├── remediation │ │ │ ├── create-remediation-configuration.vue │ │ │ ├── create-remediation-instruction.vue │ │ │ ├── create-remediation-job.vue │ │ │ ├── execute-remediation-instruction.vue │ │ │ ├── execute-remediation-simple-instruction.vue │ │ │ └── remediation-instruction-approval.vue │ │ ├── scenario │ │ │ └── create-scenario.vue │ │ ├── service │ │ │ ├── create-service-pause-event.vue │ │ │ ├── create-service.vue │ │ │ ├── service-dependencies.vue │ │ │ └── service-entities.vue │ │ ├── share-token │ │ │ └── create-share-token.vue │ │ ├── snmp-rule │ │ │ └── create-snmp-rule.vue │ │ ├── state-setting │ │ │ ├── create-junit-state-setting.vue │ │ │ ├── create-state-setting.vue │ │ │ └── state-setting-inherited-entity-pattern.vue │ │ ├── tag │ │ │ └── create-tag.vue │ │ ├── template-testing │ │ │ ├── create-template-testing-data.vue │ │ │ └── create-template-testing-test.vue │ │ ├── test-suite │ │ │ └── test-suite.vue │ │ ├── theme │ │ │ └── create-theme.vue │ │ ├── view │ │ │ ├── create-group.vue │ │ │ ├── create-view.vue │ │ │ ├── create-widget.vue │ │ │ ├── import-groups-and-views.vue │ │ │ ├── select-view-tab.vue │ │ │ ├── select-view.vue │ │ │ └── share-view.vue │ │ └── widget-template │ │ │ ├── create-widget-template.vue │ │ │ └── select-widget-template-type.vue │ ├── other │ │ ├── action │ │ │ └── form │ │ │ │ ├── action-assocticket-form.vue │ │ │ │ ├── action-note-form.vue │ │ │ │ ├── action-parameters-form.vue │ │ │ │ ├── action-pbehavior-form.vue │ │ │ │ ├── action-snooze-form.vue │ │ │ │ ├── action-webhook-form.vue │ │ │ │ └── fields │ │ │ │ └── action-author-field.vue │ │ ├── alarm-status-rule │ │ │ ├── alarm-status-rules-list.vue │ │ │ ├── form │ │ │ │ ├── alarm-status-rule-form.vue │ │ │ │ └── alarm-status-rule-patterns-form.vue │ │ │ └── partials │ │ │ │ └── alarm-status-rules-list-expand-item.vue │ │ ├── alarm │ │ │ └── partials │ │ │ │ ├── alarm-webhook-execution-status.vue │ │ │ │ ├── alarm-webhook-execution-timeline-card.vue │ │ │ │ ├── alarm-webhook-execution-timeline-flag.vue │ │ │ │ ├── alarm-webhook-execution-timeline-steps.vue │ │ │ │ ├── alarm-webhook-execution-timeline.vue │ │ │ │ └── alarm-webhook-execution.vue │ │ ├── availability │ │ │ ├── availability-list.vue │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── availability-display-parameter-field.vue │ │ │ │ │ ├── availability-display-parameter-radio-field.vue │ │ │ │ │ ├── availability-show-type-field.vue │ │ │ │ │ ├── availability-show-type-radio-field.vue │ │ │ │ │ ├── availability-value-filter-field.vue │ │ │ │ │ └── availability-value-filter-method-field.vue │ │ │ └── partials │ │ │ │ ├── availability-bar-chart-information-row.vue │ │ │ │ ├── availability-bar-chart.vue │ │ │ │ ├── availability-bar.vue │ │ │ │ ├── availability-filters.vue │ │ │ │ ├── availability-graph.vue │ │ │ │ ├── availability-history-filters.vue │ │ │ │ ├── availability-history.vue │ │ │ │ ├── availability-line-chart.vue │ │ │ │ ├── availability-list-column-value.vue │ │ │ │ └── availability-list-expand-panel.vue │ │ ├── broadcast-message │ │ │ ├── broadcast-messages-list.vue │ │ │ ├── form │ │ │ │ ├── broadcast-message-form.vue │ │ │ │ ├── broadcast-message-general-form.vue │ │ │ │ └── broadcast-message-views-form.vue │ │ │ └── partials │ │ │ │ └── broadcast-message.vue │ │ ├── declare-ticket │ │ │ ├── declare-ticket-rules-list.vue │ │ │ ├── declared-tickets-list.vue │ │ │ ├── form │ │ │ │ ├── associate-ticket-event-form.vue │ │ │ │ ├── declare-ticket-event-form.vue │ │ │ │ ├── declare-ticket-events-form.vue │ │ │ │ ├── declare-ticket-rule-form.vue │ │ │ │ ├── declare-ticket-rule-general-form.vue │ │ │ │ ├── declare-ticket-rule-patterns-form.vue │ │ │ │ └── fields │ │ │ │ │ ├── declare-ticket-event-alarms-tickets-field.vue │ │ │ │ │ ├── declare-ticket-event-tickets-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-custom-fields-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-id-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-id-payload-text-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-id-text-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-mapping-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-url-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-url-payload-text-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-url-text-field.vue │ │ │ │ │ ├── declare-ticket-rule-ticket-url-title-field.vue │ │ │ │ │ ├── declare-ticket-rule-webhook-field.vue │ │ │ │ │ └── declare-ticket-rule-webhooks-field.vue │ │ │ └── partials │ │ │ │ ├── declare-ticket-rule-execution-alarms.vue │ │ │ │ ├── declare-ticket-rule-execution-webhooks-timeline-card.vue │ │ │ │ ├── declare-ticket-rule-executions-group.vue │ │ │ │ └── declare-ticket-rule-test-query.vue │ │ ├── dynamic-info │ │ │ ├── dynamic-infos-list.vue │ │ │ ├── form │ │ │ │ ├── dynamic-info-form.vue │ │ │ │ ├── dynamic-info-template-form.vue │ │ │ │ └── fields │ │ │ │ │ ├── dynamic-info-general-form.vue │ │ │ │ │ ├── dynamic-info-information-form.vue │ │ │ │ │ ├── dynamic-info-information-type-field.vue │ │ │ │ │ ├── dynamic-info-infos-form.vue │ │ │ │ │ ├── dynamic-info-patterns-form.vue │ │ │ │ │ └── dynamic-info-template-names-field.vue │ │ │ └── partials │ │ │ │ └── dynamic-infos-expand-item.vue │ │ ├── entity-info-property │ │ │ ├── entity-infos-properties-list.vue │ │ │ └── form │ │ │ │ ├── entity-info-property-form.vue │ │ │ │ └── entity-info-property-type-field.vue │ │ ├── entity │ │ │ ├── entity-availability.vue │ │ │ ├── entity-comments.vue │ │ │ ├── entity-dependencies-by-state-settings.vue │ │ │ ├── entity-dependencies-list.vue │ │ │ ├── entity-infos-logs-list.vue │ │ │ ├── form │ │ │ │ ├── entity-form.vue │ │ │ │ └── entity-info-form.vue │ │ │ └── partials │ │ │ │ ├── entity-comment.vue │ │ │ │ └── entity-comments-list.vue │ │ ├── event-filter │ │ │ ├── event-filters-list.vue │ │ │ ├── form │ │ │ │ ├── event-filter-form.vue │ │ │ │ └── fields │ │ │ │ │ ├── event-filter-change-entity-form.vue │ │ │ │ │ ├── event-filter-drop-intervals-field.vue │ │ │ │ │ ├── event-filter-enrichment-action-form-select-tags-value.vue │ │ │ │ │ ├── event-filter-enrichment-action-form-type-info.vue │ │ │ │ │ ├── event-filter-enrichment-action-form.vue │ │ │ │ │ ├── event-filter-enrichment-actions-form.vue │ │ │ │ │ ├── event-filter-enrichment-form.vue │ │ │ │ │ └── event-filter-failure-type-field.vue │ │ │ ├── hooks │ │ │ │ └── event-filters.js │ │ │ └── partials │ │ │ │ ├── event-filter-failures-list-expand-panel.vue │ │ │ │ ├── event-filter-failures-list.vue │ │ │ │ ├── event-filter-failures.vue │ │ │ │ ├── event-filters-list-expand-panel.vue │ │ │ │ └── event-filters-rule-summary.vue │ │ ├── events-record │ │ │ ├── events-record-events-header.vue │ │ │ ├── events-record-events-list.vue │ │ │ ├── events-records-header.vue │ │ │ ├── events-records-list.vue │ │ │ ├── hooks │ │ │ │ ├── current-polling.js │ │ │ │ ├── export-json.js │ │ │ │ ├── recording.js │ │ │ │ └── resending.js │ │ │ └── partials │ │ │ │ ├── events-record-download-btn.vue │ │ │ │ └── events-record-events-list-expand-panel.vue │ │ ├── external-auth-token │ │ │ ├── external-auth-tokens-list.vue │ │ │ ├── form │ │ │ │ ├── external-auth-token-form.vue │ │ │ │ └── fields │ │ │ │ │ └── external-auth-token-field.vue │ │ │ └── partials │ │ │ │ └── external-auth-tokens-list-expand-panel.vue │ │ ├── external-data-table │ │ │ ├── external-data-tables-list.vue │ │ │ ├── form │ │ │ │ ├── external-data-table-form.vue │ │ │ │ ├── external-data-table-general-info-form.vue │ │ │ │ ├── external-data-table-record-form.vue │ │ │ │ └── fields │ │ │ │ │ ├── external-data-table-column-data-type-field.vue │ │ │ │ │ ├── external-data-table-column-tag-field.vue │ │ │ │ │ ├── external-data-table-table-field.vue │ │ │ │ │ ├── exterrnal-data-table-database-field.vue │ │ │ │ │ └── partials │ │ │ │ │ ├── external-data-table-column-data-type-field-number-form.vue │ │ │ │ │ ├── external-data-table-column-data-type-field-string-array-form.vue │ │ │ │ │ └── external-data-table-column-data-type-field-string-array-menu.vue │ │ │ ├── hooks │ │ │ │ ├── external-data-table-import-file.js │ │ │ │ └── external-data-table-records.js │ │ │ └── partials │ │ │ │ ├── external-data-table-records-list-expand-panel.vue │ │ │ │ ├── external-data-table-records-list.vue │ │ │ │ ├── external-data-table-rules-list.vue │ │ │ │ ├── external-data-tables-list-expand-panel-list.vue │ │ │ │ ├── external-data-tables-list-expand-panel.vue │ │ │ │ ├── import-file-upload-section.vue │ │ │ │ └── import-preview-section.vue │ │ ├── filter │ │ │ ├── filters-list.vue │ │ │ └── partials │ │ │ │ ├── filter-selector.vue │ │ │ │ ├── filter-tile.vue │ │ │ │ └── filters-list-btn.vue │ │ ├── healthcheck │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── healthcheck-connector-names-field.vue │ │ │ │ │ ├── healthcheck-engine-instance-field.vue │ │ │ │ │ └── healthcheck-event-types-field.vue │ │ │ │ └── healthcheck-form.vue │ │ │ ├── healthcheck-engine-information.vue │ │ │ ├── healthcheck-engines-metrics.vue │ │ │ ├── healthcheck-graphs.vue │ │ │ ├── healthcheck-network-graph.vue │ │ │ ├── healthcheck-parameters.vue │ │ │ └── partials │ │ │ │ ├── healthcheck-chips-list.vue │ │ │ │ ├── healthcheck-engine-instance-diagram.vue │ │ │ │ ├── healthcheck-history-filters.vue │ │ │ │ ├── healthcheck-history-graph.vue │ │ │ │ ├── healthcheck-last-hour-filters.vue │ │ │ │ ├── healthcheck-last-hour-graph.vue │ │ │ │ └── healthcheck-last-hour.vue │ │ ├── icons │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── icon-file-selector.vue │ │ │ │ └── icon-form.vue │ │ │ ├── icons-list.vue │ │ │ ├── icons.vue │ │ │ └── partials │ │ │ │ └── custom-icon.vue │ │ ├── idle-rule │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── idle-rule-alarm-type-field.vue │ │ │ │ ├── idle-rule-form.vue │ │ │ │ ├── idle-rule-general-form.vue │ │ │ │ └── idle-rule-patterns-form.vue │ │ │ ├── idle-rules-list.vue │ │ │ └── partials │ │ │ │ ├── idle-rules-list-expand-item.vue │ │ │ │ ├── idle-rules-summary-row.vue │ │ │ │ └── idle-rules-summary-tab.vue │ │ ├── kpi │ │ │ ├── charts │ │ │ │ ├── form │ │ │ │ │ └── fields │ │ │ │ │ │ ├── kpi-rating-criteria-field.vue │ │ │ │ │ │ ├── kpi-rating-metric-field.vue │ │ │ │ │ │ └── kpi-sli-show-mode-field.vue │ │ │ │ ├── kpi-alarms.vue │ │ │ │ ├── kpi-charts.vue │ │ │ │ ├── kpi-rating.vue │ │ │ │ ├── kpi-sli.vue │ │ │ │ └── partials │ │ │ │ │ ├── kpi-alarms-chart.vue │ │ │ │ │ ├── kpi-alarms-filters.vue │ │ │ │ │ ├── kpi-error-overlay.vue │ │ │ │ │ ├── kpi-rating-chart.vue │ │ │ │ │ ├── kpi-rating-filters.vue │ │ │ │ │ ├── kpi-sli-chart.vue │ │ │ │ │ └── kpi-sli-filters.vue │ │ │ ├── collection-settings │ │ │ │ ├── form │ │ │ │ │ └── kpi-collection-settings-optional-metrics-form.vue │ │ │ │ ├── kpi-collection-settings.vue │ │ │ │ └── partials │ │ │ │ │ └── kpi-collection-settings-basic-metrics-list.vue │ │ │ ├── filters │ │ │ │ ├── form │ │ │ │ │ ├── kpi-filter-form.vue │ │ │ │ │ └── kpi-filter-patterns-form.vue │ │ │ │ ├── kpi-filters-list.vue │ │ │ │ ├── kpi-filters.vue │ │ │ │ └── partials │ │ │ │ │ └── kpi-filters-expand-item.vue │ │ │ └── rating-settings │ │ │ │ ├── kpi-rating-settings-list.vue │ │ │ │ └── kpi-rating-settings.vue │ │ ├── link-rule │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── link-rule-link-form.vue │ │ │ │ │ └── link-rule-links-form.vue │ │ │ │ ├── link-rule-advanced-form.vue │ │ │ │ ├── link-rule-form.vue │ │ │ │ ├── link-rule-general-form.vue │ │ │ │ └── link-rule-simple-form.vue │ │ │ └── link-rules-list.vue │ │ ├── login │ │ │ ├── basic-login.vue │ │ │ ├── cas-login.vue │ │ │ ├── form │ │ │ │ └── login-form.vue │ │ │ ├── login-card.vue │ │ │ ├── login-footer.vue │ │ │ ├── oauth-login.vue │ │ │ ├── partials │ │ │ │ ├── ldap-login-information.vue │ │ │ │ └── third-party-login.vue │ │ │ └── saml-login.vue │ │ ├── maintenance │ │ │ └── form │ │ │ │ └── maintenance-form.vue │ │ ├── map │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── add-location-btn.vue │ │ │ │ │ ├── flowchart-editor.vue │ │ │ │ │ ├── flowchart-point-contextmenu.vue │ │ │ │ │ ├── flowchart-points-editor.vue │ │ │ │ │ ├── geomap-editor.vue │ │ │ │ │ ├── mermaid-code-editor.vue │ │ │ │ │ ├── mermaid-editor.vue │ │ │ │ │ ├── mermaid-points-editor.vue │ │ │ │ │ ├── mermaid-theme-field.vue │ │ │ │ │ ├── point-contextmenu.vue │ │ │ │ │ ├── point-form-dialog-menu.vue │ │ │ │ │ ├── point-form-dialog.vue │ │ │ │ │ └── point-form.vue │ │ │ │ ├── flowchart-map-form.vue │ │ │ │ ├── geomap-map-form.vue │ │ │ │ ├── mermaid-map-form.vue │ │ │ │ └── tree-of-dependencies-map-form.vue │ │ │ ├── maps-list.vue │ │ │ └── partials │ │ │ │ ├── flowchart-points-preview.vue │ │ │ │ ├── flowchart-preview.vue │ │ │ │ ├── geomap-preview.vue │ │ │ │ ├── maps-list-expand-flowchart-item.vue │ │ │ │ ├── maps-list-expand-geomap-item.vue │ │ │ │ ├── maps-list-expand-item.vue │ │ │ │ ├── maps-list-expand-mermaid-item.vue │ │ │ │ ├── maps-list-expand-tree-of-dependencies-item.vue │ │ │ │ ├── mermaid-code-preview.vue │ │ │ │ ├── mermaid-point-marker.vue │ │ │ │ ├── mermaid-points-preview.vue │ │ │ │ ├── mermaid-preview.vue │ │ │ │ ├── point-icon.vue │ │ │ │ ├── point-popup-dialog.vue │ │ │ │ ├── point-popup.vue │ │ │ │ └── tree-of-dependencies-preview.vue │ │ ├── meta-alarm-rule │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── meta-alarm-value-paths-field.vue │ │ │ │ ├── meta-alarm-rule-corel-form.vue │ │ │ │ ├── meta-alarm-rule-form.vue │ │ │ │ ├── meta-alarm-rule-general-form.vue │ │ │ │ ├── meta-alarm-rule-infos-form.vue │ │ │ │ ├── meta-alarm-rule-infos-item-form.vue │ │ │ │ ├── meta-alarm-rule-parameters-form.vue │ │ │ │ ├── meta-alarm-rule-patterns-form.vue │ │ │ │ ├── meta-alarm-rule-tags-form.vue │ │ │ │ ├── meta-alarm-rule-threshold-form.vue │ │ │ │ ├── meta-alarm-rule-time-based-form.vue │ │ │ │ ├── meta-alarm-rule-type-form.vue │ │ │ │ └── meta-alarm-rule-value-paths-form.vue │ │ │ ├── meta-alarm-rule-list.vue │ │ │ └── partials │ │ │ │ └── meta-alarm-rule-list-expand-panel.vue │ │ ├── notification │ │ │ ├── event-filter-failures-tab.vue │ │ │ ├── form │ │ │ │ └── notifications-settings-form.vue │ │ │ ├── hooks │ │ │ │ └── notifications.js │ │ │ ├── instructions-to-approve-tab.vue │ │ │ ├── instructions-to-rate-tab.vue │ │ │ └── notifications-settings.vue │ │ ├── pattern │ │ │ ├── corporate-patterns.vue │ │ │ ├── patterns-list.vue │ │ │ └── patterns.vue │ │ ├── pbehavior │ │ │ ├── calendar │ │ │ │ ├── partials │ │ │ │ │ ├── pbehavior-create-event.vue │ │ │ │ │ └── pbehavior-planning-calendar-legend.vue │ │ │ │ ├── pbehavior-planning-calendar.vue │ │ │ │ ├── pbehavior-recurrence-rule-calendar.vue │ │ │ │ └── pbehaviors-calendar.vue │ │ │ ├── exceptions │ │ │ │ ├── fields │ │ │ │ │ ├── pbehavior-exception-field.vue │ │ │ │ │ ├── pbehavior-exceptions-field.vue │ │ │ │ │ ├── pbehavior-recurrence-rule-exceptions-field.vue │ │ │ │ │ └── pbehavior-recurrence-rule-exceptions-list-menu.vue │ │ │ │ ├── form │ │ │ │ │ ├── pbehavior-exception-form.vue │ │ │ │ │ └── pbehavior-exception-import-form.vue │ │ │ │ ├── partials │ │ │ │ │ └── pbehavior-exceptions-list-expand-panel.vue │ │ │ │ ├── pbehavior-exceptions-list.vue │ │ │ │ └── planning-exceptions.vue │ │ │ ├── pbehaviors │ │ │ │ ├── actions │ │ │ │ │ └── pbehaviors-mass-actions-panel.vue │ │ │ │ ├── fields │ │ │ │ │ ├── pbehavior-comment-field.vue │ │ │ │ │ ├── pbehavior-comments-field.vue │ │ │ │ │ └── pbehavior-recurrence-rule-field.vue │ │ │ │ ├── form │ │ │ │ │ ├── pbehavior-form.vue │ │ │ │ │ ├── pbehavior-general-form.vue │ │ │ │ │ └── pbehavior-patterns-form.vue │ │ │ │ ├── hooks │ │ │ │ │ ├── alarm-filtering.js │ │ │ │ │ └── pbehavior-date-format.js │ │ │ │ ├── partials │ │ │ │ │ ├── pbehavior-actions.vue │ │ │ │ │ ├── pbehavior-comments.vue │ │ │ │ │ ├── pbehavior-entities.vue │ │ │ │ │ ├── pbehavior-exceptions-list.vue │ │ │ │ │ ├── pbehavior-recurrence-rule-periods.vue │ │ │ │ │ ├── pbehavior-recurrence-rule.vue │ │ │ │ │ ├── pbehaviors-create-action-btn.vue │ │ │ │ │ ├── pbehaviors-list-action-btn.vue │ │ │ │ │ ├── pbehaviors-list-alarm-filtering-btn.vue │ │ │ │ │ └── pbehaviors-list-expand-item.vue │ │ │ │ ├── pbehaviors-list.vue │ │ │ │ └── pbehaviors-simple-list.vue │ │ │ ├── reasons │ │ │ │ ├── form │ │ │ │ │ └── pbehavior-reason-form.vue │ │ │ │ ├── partials │ │ │ │ │ └── pbehavior-reasons-list-expand-panel.vue │ │ │ │ ├── pbehavior-reasons-list.vue │ │ │ │ └── planning-reasons.vue │ │ │ └── types │ │ │ │ ├── form │ │ │ │ ├── pbehavior-type-default-type-field.vue │ │ │ │ └── pbehavior-type-form.vue │ │ │ │ ├── partials │ │ │ │ └── pbehavior-types-list-expand-panel.vue │ │ │ │ ├── pbehavior-types-list.vue │ │ │ │ └── planning-types.vue │ │ ├── permission │ │ │ ├── hooks │ │ │ │ └── role-permission.js │ │ │ ├── permissions-fab-btn.vue │ │ │ ├── permissions-table-cell.vue │ │ │ ├── permissions-table-wrapper.vue │ │ │ └── permissions-table.vue │ │ ├── playlists │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── draggable-playlist-tabs.vue │ │ │ │ ├── manage-playlist-tabs-form.vue │ │ │ │ └── playlist-form.vue │ │ │ ├── partials │ │ │ │ ├── playlist-tab-item.vue │ │ │ │ ├── playlists-list-expand-item.vue │ │ │ │ └── tab-panel-content.vue │ │ │ └── playlists-list.vue │ │ ├── remediation │ │ │ ├── configurations │ │ │ │ ├── form │ │ │ │ │ └── remediation-configuration-form.vue │ │ │ │ ├── remediation-configurations-list.vue │ │ │ │ └── remediation-configurations.vue │ │ │ ├── instruction-execute │ │ │ │ ├── active-remediation-executions.vue │ │ │ │ ├── hooks │ │ │ │ │ └── active-remediation-executions-item.js │ │ │ │ ├── partials │ │ │ │ │ ├── active-remediation-executions-item-jobs.vue │ │ │ │ │ ├── active-remediation-executions-item.vue │ │ │ │ │ ├── remediation-instruction-assigned-jobs-expand-panel.vue │ │ │ │ │ ├── remediation-instruction-assigned-jobs-row.vue │ │ │ │ │ ├── remediation-instruction-execute-btns.vue │ │ │ │ │ ├── remediation-instruction-execution-status-icon.vue │ │ │ │ │ ├── remediation-instruction-executions-expand-panel-row.vue │ │ │ │ │ ├── remediation-instruction-executions-expand-panel.vue │ │ │ │ │ └── remediation-instruction-status.vue │ │ │ │ ├── remediation-instruction-assigned-jobs-table.vue │ │ │ │ ├── remediation-instruction-execute-step-operation.vue │ │ │ │ ├── remediation-instruction-execute-step-operations.vue │ │ │ │ ├── remediation-instruction-execute-step.vue │ │ │ │ ├── remediation-instruction-execute-steps.vue │ │ │ │ ├── remediation-instruction-execute.vue │ │ │ │ ├── remediation-instruction-executions-list.vue │ │ │ │ └── remediation-instruction-simple-execute.vue │ │ │ ├── instruction-stats │ │ │ │ ├── hooks │ │ │ │ │ └── remediation-instruction-stats.js │ │ │ │ ├── partials │ │ │ │ │ ├── affect-alarm-states.vue │ │ │ │ │ ├── remediation-instruction-stats-alarms-timeline-tab-expand-panel-status-icon.vue │ │ │ │ │ ├── remediation-instruction-stats-alarms-timeline-tab-expand-panel.vue │ │ │ │ │ ├── remediation-instruction-stats-alarms-timeline-tab.vue │ │ │ │ │ ├── remediation-instruction-stats-list-expand-panel.vue │ │ │ │ │ ├── remediation-instruction-stats-rating-tab.vue │ │ │ │ │ ├── remediation-instruction-stats-statistics-tab.vue │ │ │ │ │ ├── remediation-instruction-stats-summary-row.vue │ │ │ │ │ └── remediation-instruction-stats-summary-tab.vue │ │ │ │ ├── remediation-instruction-stats-list.vue │ │ │ │ └── remediation-instruction-stats.vue │ │ │ ├── instructions │ │ │ │ ├── form │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── remediation-instruction-approval-type-field.vue │ │ │ │ │ │ ├── remediation-instruction-job-field.vue │ │ │ │ │ │ ├── remediation-instruction-operation-field.vue │ │ │ │ │ │ ├── remediation-instruction-step-endpoint-field.vue │ │ │ │ │ │ ├── remediation-instruction-step-field.vue │ │ │ │ │ │ └── remediation-instruction-time-to-complete-field.vue │ │ │ │ │ ├── remediation-instruction-approval-form.vue │ │ │ │ │ ├── remediation-instruction-form.vue │ │ │ │ │ ├── remediation-instruction-general-form.vue │ │ │ │ │ ├── remediation-instruction-jobs-form.vue │ │ │ │ │ ├── remediation-instruction-operations-form.vue │ │ │ │ │ ├── remediation-instruction-patterns-form.vue │ │ │ │ │ └── remediation-instruction-steps-form.vue │ │ │ │ ├── hooks │ │ │ │ │ └── remediation-instructions.js │ │ │ │ ├── partials │ │ │ │ │ ├── approval-alert.vue │ │ │ │ │ ├── approval-form.vue │ │ │ │ │ ├── approval-tabs.vue │ │ │ │ │ ├── jobs-chips.vue │ │ │ │ │ ├── jobs-select.vue │ │ │ │ │ └── remediation-instructions-approval-icon.vue │ │ │ │ ├── remediation-instructions-list.vue │ │ │ │ └── remediation-instructions.vue │ │ │ ├── jobs │ │ │ │ ├── form │ │ │ │ │ ├── fields │ │ │ │ │ │ └── remediation-job-configuration-field.vue │ │ │ │ │ └── remediation-job-form.vue │ │ │ │ ├── partials │ │ │ │ │ └── choose-jobs-lists.vue │ │ │ │ ├── remediation-jobs-list.vue │ │ │ │ └── remediation-jobs.vue │ │ │ ├── patterns │ │ │ │ └── form │ │ │ │ │ └── remediation-patterns-pbehavior-types-form.vue │ │ │ └── statistics │ │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── remediation-statistics-instructions-field.vue │ │ │ │ │ └── remediation-statistics-show-mode-field.vue │ │ │ │ ├── partials │ │ │ │ ├── remediation-statistics-chart.vue │ │ │ │ └── remediation-statistics-filters.vue │ │ │ │ └── remediation-statistics.vue │ │ ├── role │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── role-template-field.vue │ │ │ │ │ └── role-type-field.vue │ │ │ │ └── role-form.vue │ │ │ └── roles-list.vue │ │ ├── scenario │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── scenario-action-field.vue │ │ │ │ ├── scenario-action-patterns-form.vue │ │ │ │ ├── scenario-actions-form.vue │ │ │ │ └── scenario-form.vue │ │ │ ├── partials │ │ │ │ ├── scenario-action-card-compiled-template.vue │ │ │ │ ├── scenario-action-card-general-tab.vue │ │ │ │ ├── scenario-action-card.vue │ │ │ │ ├── scenario-execution-webhooks-timeline-card.vue │ │ │ │ ├── scenario-info-item-multiline.vue │ │ │ │ ├── scenario-info-item.vue │ │ │ │ ├── scenario-test-query.vue │ │ │ │ └── scenarios-list-expand-item.vue │ │ │ └── scenarios-list.vue │ │ ├── service │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ └── service-dependencies-show-type-field.vue │ │ │ │ └── service-form.vue │ │ │ └── partials │ │ │ │ ├── service-dependencies-entity-cell.vue │ │ │ │ ├── service-dependencies-expand.vue │ │ │ │ ├── service-dependencies.vue │ │ │ │ ├── service-entities-list.vue │ │ │ │ ├── service-entity-actions.vue │ │ │ │ ├── service-entity-alarm-instruction-menu.vue │ │ │ │ ├── service-entity-header.vue │ │ │ │ ├── service-entity-info-tab.vue │ │ │ │ ├── service-entity-template.vue │ │ │ │ ├── service-entity-tree-of-dependencies-tab.vue │ │ │ │ ├── service-entity.vue │ │ │ │ └── service-template.vue │ │ ├── share-token │ │ │ ├── form │ │ │ │ └── share-token-form.vue │ │ │ ├── share-tokens-list.vue │ │ │ └── share-tokens.vue │ │ ├── snmp-rule │ │ │ ├── form │ │ │ │ ├── snmp-rule-form-extra-field.vue │ │ │ │ ├── snmp-rule-form-field-title.vue │ │ │ │ ├── snmp-rule-form-module-form.vue │ │ │ │ ├── snmp-rule-form-module-mib-objects-fields.vue │ │ │ │ ├── snmp-rule-form-module-mib-objects-form.vue │ │ │ │ ├── snmp-rule-form-state-form.vue │ │ │ │ ├── snmp-rule-form-tags-field.vue │ │ │ │ └── snmp-rule-form.vue │ │ │ ├── partials │ │ │ │ ├── snmp-rules-list-item-cell.vue │ │ │ │ └── snmp-rules-list-upload-button.vue │ │ │ └── snmp-rules-list.vue │ │ ├── state-setting │ │ │ ├── entity-state-setting.vue │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── state-setting-method-field.vue │ │ │ │ │ ├── state-setting-threshold-field.vue │ │ │ │ │ └── state-setting-threshold-method-field.vue │ │ │ │ ├── state-setting-form.vue │ │ │ │ └── steps │ │ │ │ │ ├── state-setting-basics-step.vue │ │ │ │ │ ├── state-setting-entity-pattern-step.vue │ │ │ │ │ ├── state-setting-inherited-entity-pattern-step.vue │ │ │ │ │ └── state-setting-thresholds-step.vue │ │ │ ├── junit │ │ │ │ └── form │ │ │ │ │ ├── fields │ │ │ │ │ ├── junit-state-setting-method-field.vue │ │ │ │ │ ├── junit-state-setting-threshold-state-field.vue │ │ │ │ │ ├── junit-state-setting-thresholds-field.vue │ │ │ │ │ └── junit-state-setting-thresholds-type-field.vue │ │ │ │ │ └── junit-state-setting-form.vue │ │ │ ├── partials │ │ │ │ ├── state-setting-information-row.vue │ │ │ │ └── state-setting-information.vue │ │ │ ├── state-settings-list.vue │ │ │ └── state-settings-summary.vue │ │ ├── storage-setting │ │ │ ├── form │ │ │ │ ├── storage-settings-alarm-external-tag-form.vue │ │ │ │ ├── storage-settings-alarm-form.vue │ │ │ │ ├── storage-settings-archive-entity-disabled-form.vue │ │ │ │ ├── storage-settings-archive-entity-unlinked-form.vue │ │ │ │ ├── storage-settings-entity-infos-log-form.vue │ │ │ │ ├── storage-settings-entity-unlinked-form.vue │ │ │ │ ├── storage-settings-event-filter-failure-form.vue │ │ │ │ ├── storage-settings-events-records-form.vue │ │ │ │ ├── storage-settings-form.vue │ │ │ │ ├── storage-settings-health-check-form.vue │ │ │ │ ├── storage-settings-junit-form.vue │ │ │ │ ├── storage-settings-metrics-form.vue │ │ │ │ ├── storage-settings-pbehavior-form.vue │ │ │ │ ├── storage-settings-perf-data-metrics-form.vue │ │ │ │ ├── storage-settings-remediation-form.vue │ │ │ │ └── storage-settings-webhook-form.vue │ │ │ ├── partials │ │ │ │ ├── storage-settings-history-message-btn.vue │ │ │ │ └── storage-settings-history-message.vue │ │ │ └── storage-settings.vue │ │ ├── tag │ │ │ ├── form │ │ │ │ ├── tag-form.vue │ │ │ │ └── tag-patterns-form.vue │ │ │ ├── partials │ │ │ │ └── tags-list-expand-panel.vue │ │ │ └── tags-list.vue │ │ ├── template-testing │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── template-testing-data-field.vue │ │ │ │ │ ├── template-testing-data-type-field.vue │ │ │ │ │ ├── template-testing-test-field.vue │ │ │ │ │ └── template-testing-test-type-field.vue │ │ │ │ ├── template-testing-data-form.vue │ │ │ │ └── template-testing-test-form.vue │ │ │ ├── hooks │ │ │ │ └── template-testing-data.js │ │ │ ├── partials │ │ │ │ ├── template-testing-data-list.vue │ │ │ │ └── template-testing-tests-list.vue │ │ │ ├── template-testing-data.vue │ │ │ ├── template-testing-tests.vue │ │ │ └── test-variables │ │ │ │ ├── form │ │ │ │ └── template-testing-test-variables-form.vue │ │ │ │ ├── hooks │ │ │ │ ├── template-test-variables-wrapper.js │ │ │ │ └── template-testing-test-variables.js │ │ │ │ ├── partials │ │ │ │ ├── template-testing-test-variables-tab.vue │ │ │ │ ├── template-testing-test-variables-template-item.vue │ │ │ │ └── template-testing-test-variables-test-data.vue │ │ │ │ ├── template-testing-test-variables-wrapper.vue │ │ │ │ └── template-testing-test-variables.vue │ │ ├── test-suite │ │ │ ├── partials │ │ │ │ ├── system-message.vue │ │ │ │ ├── test-suite-details-expand-panel.vue │ │ │ │ ├── test-suite-details-tab.vue │ │ │ │ ├── test-suite-details.vue │ │ │ │ ├── test-suite-gantt-tab.vue │ │ │ │ ├── test-suite-historical-data-months-field.vue │ │ │ │ ├── test-suite-history-panel.vue │ │ │ │ ├── test-suite-message-panel.vue │ │ │ │ ├── test-suite-messages-tab.vue │ │ │ │ ├── test-suite-screenshots-tab.vue │ │ │ │ ├── test-suite-screenshots.vue │ │ │ │ ├── test-suite-status-pie-chart.vue │ │ │ │ ├── test-suite-summary-status-row.vue │ │ │ │ ├── test-suite-summary-tab.vue │ │ │ │ ├── test-suite-tabs.vue │ │ │ │ ├── test-suite-videos-tab.vue │ │ │ │ └── test-suite-videos.vue │ │ │ └── test-suite-history.vue │ │ ├── theme │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── theme-color-font-size-field.vue │ │ │ │ │ ├── theme-color-picker-field.vue │ │ │ │ │ └── theme-enabled-color-picker-field.vue │ │ │ │ └── theme-form.vue │ │ │ ├── partials │ │ │ │ ├── theme-colors-preview-list.vue │ │ │ │ └── theme-colors-preview.vue │ │ │ └── themes-list.vue │ │ ├── user-interface │ │ │ ├── form │ │ │ │ └── user-interface-form.vue │ │ │ └── user-interface.vue │ │ ├── users │ │ │ ├── form │ │ │ │ └── user-form.vue │ │ │ ├── users-list.vue │ │ │ └── users.vue │ │ ├── view │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── view-duplicate-private-field.vue │ │ │ │ │ ├── view-group-field.vue │ │ │ │ │ └── view-tags-field.vue │ │ │ │ └── view-form.vue │ │ │ ├── partials │ │ │ │ ├── view-editing-btn.vue │ │ │ │ ├── view-executions-btn.vue │ │ │ │ ├── view-fab-btns.vue │ │ │ │ ├── view-periodic-refresh-btn.vue │ │ │ │ ├── view-screen-mode-btn.vue │ │ │ │ ├── view-scroll-top-btn.vue │ │ │ │ ├── view-share-link-btn.vue │ │ │ │ └── views-export-expansion-panel.vue │ │ │ ├── view-tab-widgets.vue │ │ │ ├── view-tabs-wrapper.vue │ │ │ ├── view-tabs.vue │ │ │ └── views-import-export.vue │ │ └── widget-template │ │ │ ├── form │ │ │ ├── widget-template-columns-form.vue │ │ │ ├── widget-template-form.vue │ │ │ ├── widget-template-quick-actions-form.vue │ │ │ └── widget-template-text-form.vue │ │ │ ├── widget-templates-list.vue │ │ │ └── widget-templates.vue │ ├── sidebars │ │ ├── alarm │ │ │ ├── alarm.vue │ │ │ └── form │ │ │ │ ├── alarms-list-modal.vue │ │ │ │ ├── fast-pbehavior-form.vue │ │ │ │ └── fields │ │ │ │ ├── density.vue │ │ │ │ ├── fast-action-output.vue │ │ │ │ ├── info-popup.vue │ │ │ │ ├── live-reporting.vue │ │ │ │ ├── opened-resolved-filter.vue │ │ │ │ ├── quick-alarm-actions.vue │ │ │ │ └── resize-column-behavior.vue │ │ ├── availability │ │ │ ├── availability.vue │ │ │ └── form │ │ │ │ ├── availability-form.vue │ │ │ │ └── fields │ │ │ │ ├── availability-display-parameter.vue │ │ │ │ ├── availability-display-show-type.vue │ │ │ │ └── availability-graph-settings.vue │ │ ├── chart │ │ │ ├── bar-chart.vue │ │ │ ├── form │ │ │ │ ├── bar-chart-widget-form.vue │ │ │ │ ├── charts-form.vue │ │ │ │ ├── fields │ │ │ │ │ ├── alarm-metric-aggregate-function.vue │ │ │ │ │ ├── alarm-metric-presets.vue │ │ │ │ │ ├── bar-graph-type.vue │ │ │ │ │ ├── font-size.vue │ │ │ │ │ ├── pie-show-mode.vue │ │ │ │ │ ├── preset.vue │ │ │ │ │ └── sampling.vue │ │ │ │ ├── line-chart-widget-form.vue │ │ │ │ ├── numbers-widget-form.vue │ │ │ │ └── pie-chart-widget-form.vue │ │ │ ├── line-chart.vue │ │ │ ├── numbers.vue │ │ │ └── pie-chart.vue │ │ ├── context │ │ │ ├── context.vue │ │ │ └── form │ │ │ │ └── fields │ │ │ │ └── context-entities-types-filter.vue │ │ ├── counter │ │ │ ├── counter.vue │ │ │ └── form │ │ │ │ ├── counter-levels.vue │ │ │ │ └── fields │ │ │ │ └── template.vue │ │ ├── external-data-table │ │ │ ├── external-data-table.vue │ │ │ └── form │ │ │ │ ├── external-data-table-form.vue │ │ │ │ └── hooks │ │ │ │ └── external-data-table.js │ │ ├── form │ │ │ ├── export-csv.vue │ │ │ ├── fields │ │ │ │ ├── button-field.vue │ │ │ │ ├── color-indicator.vue │ │ │ │ ├── columns-without-template.vue │ │ │ │ ├── columns.vue │ │ │ │ ├── default-elements-per-page.vue │ │ │ │ ├── default-sort-column.vue │ │ │ │ ├── draggable-list.vue │ │ │ │ ├── filters-list.vue │ │ │ │ ├── filters.vue │ │ │ │ ├── grid-range-size.vue │ │ │ │ ├── grid-size.vue │ │ │ │ ├── live-watching.vue │ │ │ │ ├── number.vue │ │ │ │ ├── periodic-refresh.vue │ │ │ │ ├── quick-date-interval-type.vue │ │ │ │ ├── root-cause-settings.vue │ │ │ │ ├── slider.vue │ │ │ │ ├── switcher.vue │ │ │ │ ├── text-editor-with-template.vue │ │ │ │ ├── text-editor.vue │ │ │ │ ├── title.vue │ │ │ │ └── tree-of-dependencies-settings.vue │ │ │ └── margins.vue │ │ ├── index.js │ │ ├── map │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ └── map.vue │ │ │ └── map.vue │ │ ├── partials │ │ │ ├── widget-settings-flat-item.vue │ │ │ ├── widget-settings-group.vue │ │ │ ├── widget-settings-item.vue │ │ │ └── widget-settings.vue │ │ ├── service-weather │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── counters-selector.vue │ │ │ │ │ ├── field-action-required-settings.vue │ │ │ │ │ ├── field-no-action-required-settings.vue │ │ │ │ │ ├── modal-type.vue │ │ │ │ │ └── sort-column.vue │ │ │ └── service-weather.vue │ │ ├── statistics │ │ │ ├── alarm-statistics.vue │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── main-parameter.vue │ │ │ │ │ ├── statistics-column.vue │ │ │ │ │ └── statistics-columns.vue │ │ │ │ └── statistics-form.vue │ │ │ └── user-statistics.vue │ │ ├── stats │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── criticity-levels.vue │ │ │ │ │ └── levels-colors-selector.vue │ │ │ │ └── stats-calendar-advanced.vue │ │ │ └── stats-calendar.vue │ │ ├── testing-weather │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── file-name-masks.vue │ │ │ │ │ ├── storage.vue │ │ │ │ │ └── storages.vue │ │ │ └── testing-weather.vue │ │ └── text │ │ │ └── text.vue │ └── widgets │ │ ├── alarm │ │ ├── actions │ │ │ ├── actions-panel.vue │ │ │ └── mass-actions-panel.vue │ │ ├── alarm-general-list.vue │ │ ├── alarms-list.vue │ │ ├── columns-formatting │ │ │ ├── alarm-column-cell-popup-body.vue │ │ │ ├── alarm-column-cell.vue │ │ │ ├── alarm-column-value-extra-details.vue │ │ │ ├── alarm-column-value-status.vue │ │ │ ├── alarm-column-value.vue │ │ │ └── extra-details │ │ │ │ ├── extra-details-ack.vue │ │ │ │ ├── extra-details-canceled.vue │ │ │ │ ├── extra-details-children.vue │ │ │ │ ├── extra-details-close-delay-value.vue │ │ │ │ ├── extra-details-close-delay.vue │ │ │ │ ├── extra-details-last-comment.vue │ │ │ │ ├── extra-details-parents.vue │ │ │ │ ├── extra-details-pbehavior.vue │ │ │ │ ├── extra-details-snooze.vue │ │ │ │ └── extra-details-ticket.vue │ │ ├── entity-gantt │ │ │ └── entity-gantt.vue │ │ ├── expand-panel │ │ │ ├── alarms-expand-panel-btn.vue │ │ │ ├── alarms-expand-panel-children.vue │ │ │ ├── alarms-expand-panel-entity-enrichments.vue │ │ │ ├── alarms-expand-panel-more-infos.vue │ │ │ ├── alarms-expand-panel-remediation.vue │ │ │ ├── alarms-expand-panel-tab-item-wrapper.vue │ │ │ └── alarms-expand-panel.vue │ │ ├── forms │ │ │ ├── ack-event-form.vue │ │ │ ├── info-popup-form.vue │ │ │ ├── link-meta-alarm-form.vue │ │ │ └── snooze-event-form.vue │ │ ├── headers-formatting │ │ │ ├── alarm-header-cell.vue │ │ │ └── alarm-header-priority.vue │ │ ├── hooks │ │ │ └── extra-details-tooltips.js │ │ ├── partials │ │ │ ├── alarms-list-remediation-instructions-filter-chip.vue │ │ │ ├── alarms-list-remediation-instructions-filter-fields.vue │ │ │ ├── alarms-list-remediation-instructions-filter.vue │ │ │ ├── alarms-list-row-bookmark-icon.vue │ │ │ ├── alarms-list-row-instructions-icon.vue │ │ │ ├── alarms-list-row.vue │ │ │ ├── alarms-list-table-with-pagination.vue │ │ │ ├── alarms-list-table.vue │ │ │ └── hooks │ │ │ │ └── alarms-list-remediation-instructions-filter.js │ │ └── timeline │ │ │ ├── alarm-timeline-days.vue │ │ │ ├── alarm-timeline-step-expand.vue │ │ │ ├── alarm-timeline-step-icon.vue │ │ │ ├── alarm-timeline-step-title.vue │ │ │ ├── alarm-timeline-step.vue │ │ │ ├── alarm-timeline-steps.vue │ │ │ ├── alarm-timeline.vue │ │ │ ├── horizontal-timeline-card.vue │ │ │ └── horizontal-timeline.vue │ │ ├── availability │ │ ├── availability-widget.vue │ │ └── partials │ │ │ └── availability-widget-filters.vue │ │ ├── chart │ │ ├── bar-chart-widget.vue │ │ ├── entity-chart-widget.vue │ │ ├── entity-charts.vue │ │ ├── line-chart-widget.vue │ │ ├── numbers-widget.vue │ │ ├── partials │ │ │ ├── bar-chart-metrics.vue │ │ │ ├── chart-loader.vue │ │ │ ├── line-chart-metrics.vue │ │ │ ├── numbers-metrics-item.vue │ │ │ ├── numbers-metrics.vue │ │ │ └── pie-chart-metrics.vue │ │ └── pie-chart-widget.vue │ │ ├── context │ │ ├── actions │ │ │ ├── actions-panel.vue │ │ │ ├── context-fab.vue │ │ │ └── mass-actions-panel.vue │ │ ├── columns-formatting │ │ │ ├── entity-column-cell.vue │ │ │ ├── entity-column-event-statistics.vue │ │ │ ├── entity-column-pbehavior-info.vue │ │ │ └── entity-column-state.vue │ │ ├── entities-list.vue │ │ ├── manage-infos.vue │ │ └── partials │ │ │ ├── entities-list-expand-panel.vue │ │ │ ├── entities-list-table-with-pagination.vue │ │ │ └── expand-panel-tabs │ │ │ ├── entity-alarms-list-table.vue │ │ │ ├── impact-chain-dependencies-tab.vue │ │ │ ├── impact-depends-tab.vue │ │ │ ├── infos-tab.vue │ │ │ └── tree-of-dependencies-tab.vue │ │ ├── counter │ │ ├── counter-item.vue │ │ └── counter.vue │ │ ├── external-data-table │ │ ├── external-data-table-widget.vue │ │ └── hooks │ │ │ └── external-data-table-widget.js │ │ ├── map │ │ ├── map.vue │ │ └── partials │ │ │ └── map-breadcrumbs.vue │ │ ├── partials │ │ ├── kpi-widget-filters.vue │ │ └── widget-wrapper-menu.vue │ │ ├── service-weather │ │ ├── alarm-counter.vue │ │ ├── alarm-pbehavior-counters.vue │ │ ├── alarm-state-counters.vue │ │ ├── impact-state-indicator.vue │ │ ├── service-pause-event-form.vue │ │ ├── service-weather-item.vue │ │ └── service-weather.vue │ │ ├── statistics │ │ ├── alarm-statistics-widget.vue │ │ ├── partials │ │ │ └── statistics-widget.vue │ │ └── user-statistics-widget.vue │ │ ├── stats │ │ └── calendar │ │ │ ├── stats-calendar-menu.vue │ │ │ └── stats-calendar.vue │ │ ├── testing-weather │ │ ├── test-suite-statistic-row.vue │ │ ├── test-suite-statistics.vue │ │ ├── testing-weather-item.vue │ │ └── testing-weather.vue │ │ ├── text │ │ └── text.vue │ │ ├── widget-edit-drag-handler.vue │ │ └── widget-wrapper.vue ├── config.js ├── constants │ ├── advanced-search.js │ ├── alarm.js │ ├── availability.js │ ├── broadcast-message.js │ ├── calendar.js │ ├── common.js │ ├── counter.js │ ├── date.js │ ├── declare-ticket.js │ ├── dynamic-info.js │ ├── entity-info-property.js │ ├── entity.js │ ├── event-filter.js │ ├── event.js │ ├── events-record.js │ ├── external-data.js │ ├── flowchart.js │ ├── healthcheck.js │ ├── icon.js │ ├── idle-rule.js │ ├── index.js │ ├── junit.js │ ├── kpi.js │ ├── link-rule.js │ ├── map.js │ ├── meta-alarm-rule.js │ ├── modal.js │ ├── notification.js │ ├── parameters.js │ ├── pattern.js │ ├── pbehavior.js │ ├── permission.js │ ├── recurrence-rule.js │ ├── remediation.js │ ├── request.js │ ├── role.js │ ├── sanitize.js │ ├── scenario.js │ ├── service-weather.js │ ├── snmp.js │ ├── stats.js │ ├── store.js │ ├── tag.js │ ├── template-testing.js │ ├── theme.js │ ├── user.js │ ├── view.js │ └── widget.js ├── externals │ ├── chart │ │ └── plugins │ │ │ ├── annotation │ │ │ └── index.js │ │ │ ├── background │ │ │ └── index.js │ │ │ ├── data-labels │ │ │ └── index.js │ │ │ ├── empty-pie │ │ │ └── index.js │ │ │ ├── limited-segment │ │ │ └── index.js │ │ │ └── zoom │ │ │ └── index.js │ └── vue-chart │ │ ├── components │ │ └── index.js │ │ └── helpers │ │ └── generate-chart.js ├── features │ └── .gitignore ├── filters.js ├── helpers │ ├── actions-panel.js │ ├── array.js │ ├── async.js │ ├── calendar │ │ └── calendar.js │ ├── charts │ │ ├── canvas.js │ │ └── healthcheck.js │ ├── clipboard.js │ ├── collection.js │ ├── color.js │ ├── date │ │ ├── date-intervals.js │ │ ├── date-time-picker.js │ │ ├── date.js │ │ └── duration.js │ ├── dragdrop.js │ ├── entities │ │ ├── action │ │ │ ├── form.js │ │ │ └── index.js │ │ ├── alarm-status-rule │ │ │ └── form.js │ │ ├── alarm │ │ │ ├── color.js │ │ │ ├── form.js │ │ │ ├── formatting.js │ │ │ ├── icons.js │ │ │ ├── list.js │ │ │ ├── query.js │ │ │ ├── step │ │ │ │ ├── entity.js │ │ │ │ ├── formatting.js │ │ │ │ └── list.js │ │ │ └── url.js │ │ ├── associate-ticket │ │ │ └── event │ │ │ │ └── form.js │ │ ├── availability │ │ │ ├── entity.js │ │ │ └── query.js │ │ ├── broadcast-message │ │ │ ├── form.js │ │ │ └── list.js │ │ ├── counter │ │ │ └── query.js │ │ ├── data-storage │ │ │ └── form.js │ │ ├── declare-ticket │ │ │ ├── event │ │ │ │ ├── entity.js │ │ │ │ └── form.js │ │ │ └── rule │ │ │ │ └── form.js │ │ ├── dynamic-info │ │ │ ├── information │ │ │ │ └── form.js │ │ │ ├── rule │ │ │ │ └── form.js │ │ │ └── template │ │ │ │ └── form.js │ │ ├── entity-info-property │ │ │ └── form.js │ │ ├── entity-info │ │ │ └── form.js │ │ ├── entity │ │ │ ├── actions.js │ │ │ ├── color.js │ │ │ ├── cytoscape.js │ │ │ ├── entity.js │ │ │ ├── form.js │ │ │ ├── icons.js │ │ │ ├── query.js │ │ │ └── url.js │ │ ├── event-filter │ │ │ └── rule │ │ │ │ ├── entity.js │ │ │ │ └── form.js │ │ ├── events-record │ │ │ └── url.js │ │ ├── external-auth-token │ │ │ └── form.js │ │ ├── external-data-table │ │ │ ├── form.js │ │ │ ├── query.js │ │ │ └── url.js │ │ ├── filter │ │ │ └── form.js │ │ ├── healthcheck │ │ │ ├── color.js │ │ │ └── form.js │ │ ├── icon │ │ │ └── form.js │ │ ├── idle-rule │ │ │ └── form.js │ │ ├── junit │ │ │ └── url.js │ │ ├── link │ │ │ ├── form.js │ │ │ └── list.js │ │ ├── maintenance │ │ │ └── form.js │ │ ├── map │ │ │ ├── form.js │ │ │ ├── list.js │ │ │ └── query.js │ │ ├── meta-alarm │ │ │ ├── link │ │ │ │ └── form.js │ │ │ └── rule │ │ │ │ └── form.js │ │ ├── metric │ │ │ ├── color.js │ │ │ ├── form.js │ │ │ ├── list.js │ │ │ ├── query.js │ │ │ ├── url.js │ │ │ └── widget.js │ │ ├── metrics-settings │ │ │ └── form.js │ │ ├── notification │ │ │ └── form.js │ │ ├── pattern │ │ │ └── form.js │ │ ├── pbehavior │ │ │ ├── exception │ │ │ │ └── form.js │ │ │ ├── form.js │ │ │ ├── reason │ │ │ │ └── form.js │ │ │ ├── timespans │ │ │ │ └── form.js │ │ │ └── type │ │ │ │ └── form.js │ │ ├── permissions │ │ │ └── list.js │ │ ├── playlist │ │ │ └── form.js │ │ ├── remediation │ │ │ ├── configuration │ │ │ │ └── form.js │ │ │ ├── instruction-execution │ │ │ │ ├── form.js │ │ │ │ └── list.js │ │ │ ├── instruction │ │ │ │ ├── form.js │ │ │ │ └── list.js │ │ │ └── job │ │ │ │ └── form.js │ │ ├── role │ │ │ └── form.js │ │ ├── scenario │ │ │ └── form.js │ │ ├── service-dependencies │ │ │ └── list.js │ │ ├── service-weather │ │ │ └── query.js │ │ ├── service │ │ │ └── form.js │ │ ├── share-ticket │ │ │ └── form.js │ │ ├── shared │ │ │ ├── external-data │ │ │ │ ├── entity.js │ │ │ │ └── form.js │ │ │ ├── form.js │ │ │ ├── grid.js │ │ │ ├── kiosk │ │ │ │ └── form.js │ │ │ ├── query.js │ │ │ ├── recurrence-rule │ │ │ │ └── form.js │ │ │ └── request │ │ │ │ └── form.js │ │ ├── snmp-rule │ │ │ ├── color.js │ │ │ └── form.js │ │ ├── state-setting │ │ │ ├── form.js │ │ │ └── junit │ │ │ │ └── form.js │ │ ├── stats │ │ │ └── query.js │ │ ├── tag │ │ │ ├── entity.js │ │ │ └── form.js │ │ ├── template-testing-data │ │ │ └── form.js │ │ ├── template-testing-test │ │ │ └── form.js │ │ ├── template-testing-validate │ │ │ └── form.js │ │ ├── theme │ │ │ ├── entity.js │ │ │ └── form.js │ │ ├── user-interface │ │ │ └── form.js │ │ ├── user │ │ │ ├── entity.js │ │ │ └── form.js │ │ ├── view │ │ │ └── form.js │ │ ├── webhook-execution │ │ │ └── entity.js │ │ └── widget │ │ │ ├── column │ │ │ └── form.js │ │ │ ├── form.js │ │ │ ├── forms │ │ │ ├── alarm.js │ │ │ ├── availability.js │ │ │ ├── bar-chart.js │ │ │ ├── context.js │ │ │ ├── counter.js │ │ │ ├── external-data-table.js │ │ │ ├── junit.js │ │ │ ├── line-chart.js │ │ │ ├── map.js │ │ │ ├── numbers-chart.js │ │ │ ├── pie-chart.js │ │ │ ├── service-weather.js │ │ │ ├── statistics.js │ │ │ ├── stats-calendar.js │ │ │ └── text.js │ │ │ ├── grid.js │ │ │ ├── list.js │ │ │ ├── query.js │ │ │ ├── quick-action │ │ │ └── form.js │ │ │ └── template │ │ │ └── form.js │ ├── file │ │ ├── file-select.js │ │ ├── files.js │ │ ├── image.js │ │ ├── pdf.js │ │ └── size.js │ ├── flowchart │ │ ├── connectors.js │ │ ├── points.js │ │ ├── resize.js │ │ ├── round.js │ │ └── shapes.js │ ├── grid.js │ ├── handlebars │ │ ├── alarm-export-pdf-helpers.js │ │ ├── compilers.js │ │ ├── handlebars.js │ │ ├── helpers.js │ │ ├── index.js │ │ ├── registers.js │ │ ├── templates.js │ │ └── variables.js │ ├── html.js │ ├── immutable.js │ ├── json.js │ ├── mermaid.js │ ├── monaco.js │ ├── pagination.js │ ├── payload-json.js │ ├── permission.js │ ├── query.js │ ├── render.js │ ├── request.js │ ├── router.js │ ├── search │ │ ├── advanced-search.js │ │ ├── alarm-advanced-search.js │ │ ├── lazy-search.js │ │ ├── quotes.js │ │ ├── search.js │ │ └── sorting.js │ ├── string.js │ ├── text-pairs.js │ ├── tooltip │ │ └── tooltip.js │ ├── treeview │ │ └── index.js │ ├── uid.js │ ├── url.js │ ├── uuid.js │ ├── variables.js │ ├── vue-base.js │ └── vuetify.js ├── hooks │ ├── actions │ │ └── call.js │ ├── active-key.js │ ├── auth.js │ ├── click-outside.js │ ├── confirmable-form.js │ ├── confirmable-modal.js │ ├── entities │ │ ├── alarm │ │ │ └── alarm-server-variables.js │ │ └── common │ │ │ ├── entity-aliases-variables.js │ │ │ └── infos-server-variables.js │ ├── focus.js │ ├── form.js │ ├── form │ │ ├── array-model-field.js │ │ ├── lazy-search.js │ │ └── model-field.js │ ├── fullscreen.js │ ├── html-elements.js │ ├── i18n.js │ ├── modals.js │ ├── monaco.js │ ├── observer.js │ ├── periodic-refresh.js │ ├── polling.js │ ├── popups.js │ ├── query │ │ ├── local-query.js │ │ ├── options.js │ │ ├── pending.js │ │ └── shared.js │ ├── render │ │ └── async-booting.js │ ├── scroll-to-top.js │ ├── shown-header.js │ ├── socket.js │ ├── store │ │ ├── index.js │ │ └── modules │ │ │ ├── active-view.js │ │ │ ├── alarm-tag-label.js │ │ │ ├── alarm-tag.js │ │ │ ├── alarm.js │ │ │ ├── auth.js │ │ │ ├── broadcast-message.js │ │ │ ├── copy-vars.js │ │ │ ├── data-storage.js │ │ │ ├── db-export.js │ │ │ ├── dynamic-info.js │ │ │ ├── entity-category.js │ │ │ ├── entity-comment.js │ │ │ ├── entity-info-property.js │ │ │ ├── entity-infos.js │ │ │ ├── entity.js │ │ │ ├── event-filter.js │ │ │ ├── events-record-current.js │ │ │ ├── events-record.js │ │ │ ├── external-data-table-import.js │ │ │ ├── external-data-table-record.js │ │ │ ├── external-data-table.js │ │ │ ├── info.js │ │ │ ├── meta-alarm-rule.js │ │ │ ├── meta-alarm.js │ │ │ ├── notification.js │ │ │ ├── pbehavior-comment.js │ │ │ ├── pbehavior-patterns.js │ │ │ ├── pbehavior-reason.js │ │ │ ├── pbehavior-type.js │ │ │ ├── pbehavior.js │ │ │ ├── permissions.js │ │ │ ├── playlist.js │ │ │ ├── remediation-instruction-execution.js │ │ │ ├── remediation-instruction-stats.js │ │ │ ├── remediation-instruction.js │ │ │ ├── role.js │ │ │ ├── service.js │ │ │ ├── snmp-mib.js │ │ │ ├── tech-metrics.js │ │ │ ├── template-data.js │ │ │ ├── template-test.js │ │ │ ├── template-validation.js │ │ │ ├── template-vars.js │ │ │ ├── user-preference.js │ │ │ ├── user.js │ │ │ ├── view.js │ │ │ ├── webhook-token-rule.js │ │ │ └── widget.js │ ├── submittable-form.js │ ├── table │ │ ├── columns-settings.js │ │ ├── dragging.js │ │ ├── linked-rules-tooltips.js │ │ └── resizing.js │ ├── validator │ │ ├── validation-attach-required.js │ │ ├── validation-children.js │ │ ├── validation-element-children-fields.js │ │ ├── validation-element-children.js │ │ ├── validation-form-errors.js │ │ ├── validation-header.js │ │ └── validator.js │ ├── vars │ │ ├── copy.js │ │ ├── shared.js │ │ └── template.js │ ├── view │ │ └── router.js │ ├── vue.js │ └── widget │ │ ├── periodic-refresh.js │ │ └── widget-template.js ├── i18n │ ├── duration-fr.js │ ├── index.js │ └── messages │ │ ├── en │ │ ├── advanced-search.js │ │ ├── alarm.js │ │ ├── availability.js │ │ ├── broadcast-message.js │ │ ├── calendar.js │ │ ├── common.js │ │ ├── context.js │ │ ├── declare-ticket.js │ │ ├── dynamic-info.js │ │ ├── entity-info-properties.js │ │ ├── entity.js │ │ ├── errors.js │ │ ├── event-filter.js │ │ ├── events-record.js │ │ ├── external-auth-token.js │ │ ├── external-data.js │ │ ├── filter.js │ │ ├── flowchart.js │ │ ├── geomap.js │ │ ├── handlebars.js │ │ ├── healthcheck.js │ │ ├── home.js │ │ ├── icon.js │ │ ├── idle-rules.js │ │ ├── kpi.js │ │ ├── layout.js │ │ ├── link-rule.js │ │ ├── login.js │ │ ├── maintenance.js │ │ ├── map.js │ │ ├── mermaid.js │ │ ├── meta-alarm-rule.js │ │ ├── modals.js │ │ ├── notification-setting.js │ │ ├── notifications.js │ │ ├── page-headers.js │ │ ├── parameters.js │ │ ├── pattern.js │ │ ├── pbehavior.js │ │ ├── permission.js │ │ ├── playlist.js │ │ ├── popups.js │ │ ├── quick-ranges.js │ │ ├── recurrence-rule.js │ │ ├── remediation.js │ │ ├── request.js │ │ ├── role.js │ │ ├── scenario.js │ │ ├── service-weather.js │ │ ├── service.js │ │ ├── settings.js │ │ ├── share-token.js │ │ ├── snmp-rule.js │ │ ├── state-setting.js │ │ ├── storage-setting.js │ │ ├── success.js │ │ ├── tag.js │ │ ├── tech-metric.js │ │ ├── template-testing.js │ │ ├── test-suite.js │ │ ├── theme.js │ │ ├── tree-of-dependencies.js │ │ ├── user-interface.js │ │ ├── user.js │ │ ├── validation.js │ │ ├── view.js │ │ ├── warnings.js │ │ └── widget-template.js │ │ ├── fr │ │ ├── advanced-search.js │ │ ├── alarm.js │ │ ├── availability.js │ │ ├── broadcast-message.js │ │ ├── calendar.js │ │ ├── common.js │ │ ├── context.js │ │ ├── declare-ticket.js │ │ ├── dynamic-info.js │ │ ├── entity-info-properties.js │ │ ├── entity.js │ │ ├── errors.js │ │ ├── event-filter.js │ │ ├── events-record.js │ │ ├── external-auth-token.js │ │ ├── external-data.js │ │ ├── filter.js │ │ ├── flowchart.js │ │ ├── geomap.js │ │ ├── handlebars.js │ │ ├── healthcheck.js │ │ ├── home.js │ │ ├── icon.js │ │ ├── idle-rules.js │ │ ├── kpi.js │ │ ├── layout.js │ │ ├── link-rule.js │ │ ├── login.js │ │ ├── maintenance.js │ │ ├── map.js │ │ ├── mermaid.js │ │ ├── meta-alarm-rule.js │ │ ├── modals.js │ │ ├── notification-setting.js │ │ ├── notifications.js │ │ ├── page-headers.js │ │ ├── parameters.js │ │ ├── pattern.js │ │ ├── pbehavior.js │ │ ├── permission.js │ │ ├── playlist.js │ │ ├── popups.js │ │ ├── quick-ranges.js │ │ ├── recurrence-rule.js │ │ ├── remediation.js │ │ ├── request.js │ │ ├── role.js │ │ ├── scenario.js │ │ ├── service-weather.js │ │ ├── service.js │ │ ├── settings.js │ │ ├── share-token.js │ │ ├── snmp-rule.js │ │ ├── state-setting.js │ │ ├── storage-setting.js │ │ ├── success.js │ │ ├── tag.js │ │ ├── tech-metric.js │ │ ├── template-testing.js │ │ ├── test-suite.js │ │ ├── theme.js │ │ ├── tree-of-dependencies.js │ │ ├── user-interface.js │ │ ├── user.js │ │ ├── validation.js │ │ ├── view.js │ │ ├── warnings.js │ │ └── widget-template.js │ │ └── index.js ├── main.js ├── mixins │ ├── active-view.js │ ├── app │ │ └── remediation-instruction-executions-popups.js │ ├── auth.js │ ├── chart │ │ ├── annotation.js │ │ ├── background.js │ │ ├── data-labels.js │ │ ├── empty-pie.js │ │ ├── limited-segment.js │ │ ├── metrics-options.js │ │ └── zoom.js │ ├── clipboard.js │ ├── confirmable-form.js │ ├── confirmable-modal.js │ ├── entities │ │ ├── aggregated-metrics.js │ │ ├── alarm-tag.js │ │ ├── alarm │ │ │ ├── details │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── links │ │ │ │ └── index.js │ │ ├── associative-table │ │ │ ├── alarm-columns-filters.js │ │ │ ├── dynamic-info-templates.js │ │ │ └── index.js │ │ ├── availability.js │ │ ├── broadcast-message.js │ │ ├── check-state-setting.js │ │ ├── context-entity.js │ │ ├── counter.js │ │ ├── data-storage.js │ │ ├── declare-ticket-rule.js │ │ ├── dynamic-info.js │ │ ├── entity-category.js │ │ ├── entity-dependencies.js │ │ ├── entity-info-property.js │ │ ├── event-filter.js │ │ ├── filter.js │ │ ├── flapping-rules.js │ │ ├── group-metrics.js │ │ ├── healthcheck.js │ │ ├── icon.js │ │ ├── idle-rules.js │ │ ├── info.js │ │ ├── infos.js │ │ ├── link-rule.js │ │ ├── map.js │ │ ├── message-rate-stats.js │ │ ├── meta-alarm-rule.js │ │ ├── meta-alarm.js │ │ ├── metrics-settings.js │ │ ├── metrics.js │ │ ├── notification-settings.js │ │ ├── notifications.js │ │ ├── pattern │ │ │ ├── corporate │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── pbehavior │ │ │ ├── comment │ │ │ │ └── index.js │ │ │ ├── entities │ │ │ │ └── index.js │ │ │ ├── exceptions.js │ │ │ ├── index.js │ │ │ ├── reasons.js │ │ │ ├── timespans.js │ │ │ ├── types-field.js │ │ │ └── types.js │ │ ├── permission.js │ │ ├── playlist │ │ │ └── index.js │ │ ├── rating-settings.js │ │ ├── remediation │ │ │ ├── configuration.js │ │ │ ├── instruction-execution.js │ │ │ ├── instruction-stats.js │ │ │ ├── instruction.js │ │ │ ├── job-execution.js │ │ │ ├── job.js │ │ │ └── statistic.js │ │ ├── resolve-rules.js │ │ ├── role.js │ │ ├── scenario.js │ │ ├── service-entity.js │ │ ├── service.js │ │ ├── share-token.js │ │ ├── snmp-rule.js │ │ ├── state-setting.js │ │ ├── tag.js │ │ ├── tech-metrics.js │ │ ├── template-vars.js │ │ ├── test-suite-history.js │ │ ├── test-suite.js │ │ ├── theme.js │ │ ├── user-preference.js │ │ ├── user.js │ │ ├── vector-metrics.js │ │ ├── view │ │ │ ├── group │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── tab │ │ │ │ └── index.js │ │ │ └── widget │ │ │ │ └── index.js │ │ └── widget-template.js │ ├── flowchart │ │ ├── copy-paste.js │ │ ├── move-shape.js │ │ ├── selected.js │ │ ├── text-editor.js │ │ └── view-box.js │ ├── form │ │ ├── array.js │ │ ├── base.js │ │ ├── index.js │ │ ├── internal │ │ │ └── computed-properties.js │ │ ├── object.js │ │ ├── validation-attach-required.js │ │ ├── validation-children.js │ │ ├── validation-errors.js │ │ └── validation-header.js │ ├── handlebars │ │ └── links-helper-creator.js │ ├── healthcheck │ │ └── healthcheck-nodes.js │ ├── layout │ │ └── navigation │ │ │ ├── editing-mode.js │ │ │ ├── groups-bar-group-view.js │ │ │ ├── groups-bar-group.js │ │ │ ├── groups-bar-playlists.js │ │ │ ├── groups-bar.js │ │ │ └── top-bar-menu.js │ ├── maintenance │ │ └── maintenance-actions.js │ ├── map │ │ ├── map-flowchart-points-mixin.js │ │ └── map-information-popup-mixin.js │ ├── modal │ │ └── inner.js │ ├── pattern │ │ ├── pattern-count-alarms-modal.js │ │ └── pattern-count-entities-modal.js │ ├── payload │ │ ├── payload-entity-aliases.js │ │ ├── payload-field.js │ │ └── variables.js │ ├── permissions │ │ ├── entities │ │ │ └── playlist-tab.js │ │ ├── technical │ │ │ ├── broadcast-message.js │ │ │ ├── exploitation │ │ │ │ ├── declare-ticket-rules.js │ │ │ │ ├── dynamic-information.js │ │ │ │ ├── event-filter.js │ │ │ │ ├── flapping-rules.js │ │ │ │ ├── idle-rules.js │ │ │ │ ├── link-rule.js │ │ │ │ ├── meta-alarm-rule.js │ │ │ │ ├── pbehavior.js │ │ │ │ ├── resolve-rules.js │ │ │ │ ├── scenario.js │ │ │ │ └── snmp-rule.js │ │ │ ├── icon.js │ │ │ ├── kpi-collection-settings.js │ │ │ ├── kpi-filters.js │ │ │ ├── kpi-rating-settings.js │ │ │ ├── map.js │ │ │ ├── notification.js │ │ │ ├── parameters.js │ │ │ ├── pbehavior-exceptions.js │ │ │ ├── pbehavior-reasons.js │ │ │ ├── pbehavior-types.js │ │ │ ├── permission.js │ │ │ ├── playlist.js │ │ │ ├── profile │ │ │ │ ├── corporate-pattern.js │ │ │ │ └── theme.js │ │ │ ├── remediation-configuration.js │ │ │ ├── remediation-instruction-stats.js │ │ │ ├── remediation-instruction.js │ │ │ ├── remediation-job.js │ │ │ ├── remediation-statistic.js │ │ │ ├── role.js │ │ │ ├── share-token.js │ │ │ ├── state-setting.js │ │ │ ├── tag.js │ │ │ ├── user.js │ │ │ ├── view-import-export.js │ │ │ ├── view.js │ │ │ └── widget-templates.js │ │ └── widgets │ │ │ ├── alarms-list │ │ │ ├── actions.js │ │ │ ├── bookmark.js │ │ │ ├── category.js │ │ │ ├── correlation.js │ │ │ ├── filters.js │ │ │ └── remediation-instructions-filters.js │ │ │ ├── availability │ │ │ ├── export.js │ │ │ ├── filters.js │ │ │ └── interval.js │ │ │ ├── chart │ │ │ ├── bar │ │ │ │ ├── filters.js │ │ │ │ ├── interval.js │ │ │ │ └── sampling.js │ │ │ ├── line │ │ │ │ ├── filters.js │ │ │ │ ├── interval.js │ │ │ │ └── sampling.js │ │ │ ├── numbers │ │ │ │ ├── filters.js │ │ │ │ ├── interval.js │ │ │ │ └── sampling.js │ │ │ └── pie │ │ │ │ ├── filters.js │ │ │ │ ├── interval.js │ │ │ │ └── sampling.js │ │ │ ├── context │ │ │ ├── category.js │ │ │ ├── filters.js │ │ │ └── pbehavior.js │ │ │ ├── entity-comment.js │ │ │ ├── map │ │ │ ├── category.js │ │ │ └── filters.js │ │ │ ├── service-weather │ │ │ ├── category.js │ │ │ └── filters.js │ │ │ └── statistics │ │ │ ├── alarm │ │ │ ├── filters.js │ │ │ └── interval.js │ │ │ └── user │ │ │ ├── filters.js │ │ │ └── interval.js │ ├── polling.js │ ├── query.js │ ├── query │ │ ├── interval.js │ │ └── query.js │ ├── shown-header.js │ ├── submittable.js │ ├── system-theme.js │ ├── system.js │ ├── tour │ │ └── base.js │ ├── view │ │ └── router.js │ ├── vuetify │ │ ├── custom-icons │ │ │ ├── base.js │ │ │ └── register.js │ │ └── tabs.js │ └── widget │ │ ├── actions-panel │ │ ├── alarm-export-pdf.js │ │ ├── alarm.js │ │ ├── common.js │ │ ├── context.js │ │ └── service-entity.js │ │ ├── advanced-search │ │ ├── alarm-saved-items.js │ │ ├── common.js │ │ ├── entity-fields.js │ │ ├── index.js │ │ └── saved-items.js │ │ ├── alarms-socket.js │ │ ├── chart │ │ ├── export.js │ │ ├── metrics-map.js │ │ └── sampling.js │ │ ├── columns-filters.js │ │ ├── columns │ │ ├── alarm-dragging.js │ │ ├── alarm-resizing.js │ │ ├── alarm.js │ │ ├── entity-info-property.js │ │ └── index.js │ │ ├── expand-panel │ │ └── alarm │ │ │ └── details.js │ │ ├── export.js │ │ ├── fetch-query.js │ │ ├── filter-select.js │ │ ├── handlebars │ │ ├── alarm-tags-helper.js │ │ ├── alarms-list-precompile-templates.js │ │ └── entity-tags-helper.js │ │ ├── metrics │ │ └── export.js │ │ ├── options.js │ │ ├── periodic-refresh.js │ │ ├── query.js │ │ ├── rows │ │ ├── alarm-selecting.js │ │ └── alarm-sticky.js │ │ ├── search.js │ │ ├── settings.js │ │ ├── templates.js │ │ └── variables │ │ ├── alarm.js │ │ ├── common.js │ │ ├── entity.js │ │ └── index.js ├── plugins │ ├── modals │ │ ├── components │ │ │ ├── modal-base.vue │ │ │ ├── modal-wrapper.vue │ │ │ └── the-modals.vue │ │ ├── index.js │ │ └── store │ │ │ └── index.js │ ├── popups │ │ ├── components │ │ │ ├── popup-item.vue │ │ │ └── the-popups.vue │ │ ├── index.js │ │ └── store │ │ │ └── index.js │ ├── set-only-diff │ │ └── index.js │ ├── set-several │ │ └── index.js │ ├── sidebar │ │ ├── components │ │ │ ├── sidebar-base.vue │ │ │ ├── sidebar-wrapper.vue │ │ │ └── the-sidebar.vue │ │ ├── index.js │ │ └── store │ │ │ └── index.js │ ├── socket │ │ ├── constants.js │ │ ├── index.js │ │ └── services │ │ │ ├── socket-room.js │ │ │ └── socket.js │ ├── update-field │ │ └── index.js │ ├── validator │ │ ├── helpers │ │ │ ├── debounce.js │ │ │ ├── find-field.js │ │ │ ├── find-validator.js │ │ │ ├── is-callable.js │ │ │ ├── is-event.js │ │ │ ├── is-unique-value.js │ │ │ ├── is-valid-json.js │ │ │ ├── is-valid-picker.js │ │ │ └── is-valid-url.js │ │ └── index.js │ └── vuetify │ │ ├── components │ │ ├── icons.js │ │ ├── v-alert │ │ │ └── v-alert.vue │ │ ├── v-autocomplete │ │ │ └── v-autocomplete.vue │ │ ├── v-calendar │ │ │ └── v-calendar.vue │ │ ├── v-chip │ │ │ └── v-chip.vue │ │ ├── v-combobox │ │ │ └── v-combobox.vue │ │ ├── v-data-table │ │ │ ├── v-data-table-header-desktop.vue │ │ │ ├── v-data-table-header.vue │ │ │ ├── v-data-table.vue │ │ │ └── v-simple-table.vue │ │ ├── v-dialog │ │ │ └── v-dialog.vue │ │ ├── v-icon │ │ │ └── v-icon.vue │ │ ├── v-list │ │ │ ├── v-list-group.vue │ │ │ └── v-list-item-mask.vue │ │ ├── v-menu │ │ │ └── v-menu.vue │ │ ├── v-navigation-drawer │ │ │ └── v-navigation-drawer.vue │ │ ├── v-select │ │ │ └── v-select.vue │ │ ├── v-speed-dial │ │ │ └── v-speed-dial.vue │ │ ├── v-tabs │ │ │ └── v-tabs.vue │ │ ├── v-textarea │ │ │ └── v-textarea.vue │ │ └── v-tooltip │ │ │ └── v-tooltip.vue │ │ ├── directives │ │ └── click-outside.js │ │ ├── index.js │ │ ├── mixins │ │ └── overlayable.js │ │ └── styles │ │ ├── components │ │ ├── v-btn.sass │ │ ├── v-card.scss │ │ ├── v-data-table.scss │ │ ├── v-icon.scss │ │ ├── v-stepper.scss │ │ ├── v-tabs.scss │ │ ├── v-text-field.scss │ │ ├── v-toolbar.scss │ │ └── v-window.scss │ │ ├── variables.scss │ │ └── vuetify.scss ├── router.js ├── services │ ├── async-booting.js │ ├── click-outside.js │ ├── cytoscape.js │ ├── features.js │ ├── local-storage.js │ ├── observer.js │ ├── request.js │ └── table-intersection-observer.js ├── store │ ├── index.js │ ├── modules │ │ ├── active-view │ │ │ ├── active-widgets │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── auth │ │ │ └── index.js │ │ ├── entities │ │ │ ├── aggregated-metrics │ │ │ │ └── index.js │ │ │ ├── alarm-tag │ │ │ │ ├── index.js │ │ │ │ └── label │ │ │ │ │ └── index.js │ │ │ ├── alarm │ │ │ │ ├── details │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── links │ │ │ │ │ └── index.js │ │ │ ├── associative-table │ │ │ │ └── index.js │ │ │ ├── availability │ │ │ │ └── index.js │ │ │ ├── broadcast-message │ │ │ │ └── index.js │ │ │ ├── copy │ │ │ │ ├── index.js │ │ │ │ └── vars │ │ │ │ │ └── index.js │ │ │ ├── counter │ │ │ │ └── index.js │ │ │ ├── data-storage │ │ │ │ └── index.js │ │ │ ├── db-export │ │ │ │ └── index.js │ │ │ ├── declare-ticket-rule │ │ │ │ └── index.js │ │ │ ├── dynamic-info │ │ │ │ └── index.js │ │ │ ├── entity-category │ │ │ │ └── index.js │ │ │ ├── entity-info-property │ │ │ │ └── index.js │ │ │ ├── entity │ │ │ │ ├── comment │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── event-filter │ │ │ │ └── index.js │ │ │ ├── events-record │ │ │ │ ├── current │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── external-data-table │ │ │ │ ├── import │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── record │ │ │ │ │ └── index.js │ │ │ ├── filter │ │ │ │ └── index.js │ │ │ ├── flapping-rules │ │ │ │ └── index.js │ │ │ ├── group-metrics │ │ │ │ └── index.js │ │ │ ├── healthcheck-parameters │ │ │ │ └── index.js │ │ │ ├── healthcheck │ │ │ │ └── index.js │ │ │ ├── icon │ │ │ │ └── index.js │ │ │ ├── idle-rules │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── info │ │ │ │ └── index.js │ │ │ ├── infos │ │ │ │ └── index.js │ │ │ ├── links-rule │ │ │ │ └── index.js │ │ │ ├── map │ │ │ │ └── index.js │ │ │ ├── message-rate-stats │ │ │ │ └── index.js │ │ │ ├── meta-alarm-rule │ │ │ │ └── index.js │ │ │ ├── meta-alarm │ │ │ │ └── index.js │ │ │ ├── metrics-settings │ │ │ │ └── index.js │ │ │ ├── metrics │ │ │ │ └── index.js │ │ │ ├── notification-settings │ │ │ │ └── index.js │ │ │ ├── notification │ │ │ │ └── index.js │ │ │ ├── pattern │ │ │ │ ├── corporate │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── pbehavior-exceptions │ │ │ │ └── index.js │ │ │ ├── pbehavior-patterns │ │ │ │ └── index.js │ │ │ ├── pbehavior-reasons │ │ │ │ └── index.js │ │ │ ├── pbehavior-timespan │ │ │ │ └── index.js │ │ │ ├── pbehavior-types │ │ │ │ └── index.js │ │ │ ├── pbehavior │ │ │ │ ├── comment │ │ │ │ │ └── index.js │ │ │ │ ├── entities │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── permission │ │ │ │ └── index.js │ │ │ ├── playlist │ │ │ │ └── index.js │ │ │ ├── rating-settings │ │ │ │ └── index.js │ │ │ ├── remediation-configuration │ │ │ │ └── index.js │ │ │ ├── remediation-instruction-execution │ │ │ │ └── index.js │ │ │ ├── remediation-instruction-stats │ │ │ │ └── index.js │ │ │ ├── remediation-instruction │ │ │ │ └── index.js │ │ │ ├── remediation-job-execution │ │ │ │ └── index.js │ │ │ ├── remediation-job │ │ │ │ └── index.js │ │ │ ├── remediation-statistic │ │ │ │ └── index.js │ │ │ ├── resolve-rules │ │ │ │ └── index.js │ │ │ ├── role │ │ │ │ └── index.js │ │ │ ├── scenario │ │ │ │ └── index.js │ │ │ ├── service │ │ │ │ ├── entity │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── share-token │ │ │ │ └── index.js │ │ │ ├── snmp │ │ │ │ ├── mib │ │ │ │ │ └── index.js │ │ │ │ └── rule │ │ │ │ │ └── index.js │ │ │ ├── state-setting │ │ │ │ └── index.js │ │ │ ├── tag │ │ │ │ └── index.js │ │ │ ├── tech-metrics │ │ │ │ └── index.js │ │ │ ├── template │ │ │ │ ├── data │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── test │ │ │ │ │ └── index.js │ │ │ │ ├── validation │ │ │ │ │ └── index.js │ │ │ │ └── vars │ │ │ │ │ └── index.js │ │ │ ├── test-suite │ │ │ │ ├── entity-gantt │ │ │ │ │ └── index.js │ │ │ │ ├── history │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── theme │ │ │ │ └── index.js │ │ │ ├── user-preference │ │ │ │ └── index.js │ │ │ ├── user │ │ │ │ └── index.js │ │ │ ├── vector-metrics │ │ │ │ └── index.js │ │ │ ├── view │ │ │ │ ├── index.js │ │ │ │ └── widget │ │ │ │ │ └── index.js │ │ │ ├── webhook-token-rule │ │ │ │ └── index.js │ │ │ └── widget-template │ │ │ │ └── index.js │ │ ├── i18n │ │ │ └── index.js │ │ ├── navigation │ │ │ └── index.js │ │ └── query │ │ │ └── index.js │ ├── plugins │ │ ├── entities │ │ │ ├── cache.js │ │ │ ├── create-crud-module.js │ │ │ ├── create-entity-module.js │ │ │ ├── create-widget-module.js │ │ │ ├── helpers.js │ │ │ └── index.js │ │ └── watch-once │ │ │ └── index.js │ └── schemas │ │ ├── helpers.js │ │ └── index.js └── views │ ├── admin │ ├── broadcast-messages.vue │ ├── events-records.vue │ ├── external-auth-tokens.vue │ ├── healthcheck.vue │ ├── kpi.vue │ ├── maps.vue │ ├── parameters.vue │ ├── permissions.vue │ ├── planning.vue │ ├── playlists.vue │ ├── remediation.vue │ ├── roles.vue │ ├── state-settings.vue │ ├── storage-settings.vue │ ├── tags.vue │ ├── template-testing.vue │ └── users.vue │ ├── alarm.vue │ ├── error.vue │ ├── exploitation │ ├── declare-ticket-rules.vue │ ├── dynamic-infos.vue │ ├── entity-infos-properties.vue │ ├── event-filters.vue │ ├── external-data-tables.vue │ ├── flapping-rules.vue │ ├── idle-rules.vue │ ├── link-rules.vue │ ├── meta-alarm-rules.vue │ ├── pbehaviors.vue │ ├── resolve-rules.vue │ ├── scenarios.vue │ └── snmp-rules.vue │ ├── home.vue │ ├── login.vue │ ├── notification │ └── notifications.vue │ ├── playlist.vue │ ├── profile │ ├── patterns.vue │ └── themes.vue │ ├── view-kiosk.vue │ └── view.vue ├── tests ├── e2e │ ├── .env │ ├── .eslintrc │ ├── README.md │ ├── config.js │ ├── constants.js │ ├── custom-assertions │ │ └── elementsCount.js │ ├── custom-commands │ │ ├── completed │ │ │ ├── login.js │ │ │ ├── loginAsAdmin.js │ │ │ ├── loginDisabledUser.js │ │ │ ├── logout.js │ │ │ ├── refreshPage.js │ │ │ ├── user │ │ │ │ ├── create.js │ │ │ │ └── delete.js │ │ │ ├── view │ │ │ │ ├── copy.js │ │ │ │ ├── create.js │ │ │ │ ├── delete.js │ │ │ │ ├── deleteGroup.js │ │ │ │ └── edit.js │ │ │ └── widget │ │ │ │ ├── createAlarmsList.js │ │ │ │ ├── createContext.js │ │ │ │ ├── createParetoDiagram.js │ │ │ │ ├── createServiceWeather.js │ │ │ │ ├── createStatsCalendar.js │ │ │ │ ├── createStatsCurves.js │ │ │ │ ├── createStatsHistogram.js │ │ │ │ ├── createStatsNumber.js │ │ │ │ ├── createStatsTable.js │ │ │ │ ├── createText.js │ │ │ │ └── setCommonFields.js │ │ ├── customClearRTE.js │ │ ├── customClearValue.js │ │ ├── customClick.js │ │ ├── customClickOutside.js │ │ ├── customClickXpath.js │ │ ├── customKeyup.js │ │ ├── customSetValue.js │ │ ├── defaultPause.js │ │ └── dragAndDrop.js │ ├── globals.js │ ├── helpers │ │ ├── api.js │ │ ├── el.js │ │ ├── entities.js │ │ ├── getPaginationFirstIndex.js │ │ ├── nightwatch-child-process.js │ │ ├── page-object-creators.js │ │ ├── sel.js │ │ └── url.js │ ├── nightwatch-record.config.js │ ├── nightwatch.config.js │ ├── page-objects │ │ ├── admin │ │ │ ├── parameters.js │ │ │ ├── roles.js │ │ │ └── users.js │ │ ├── auth │ │ │ ├── login.js │ │ │ └── logout.js │ │ ├── fields │ │ │ └── dateInterval.js │ │ ├── forms │ │ │ └── pbehavior.js │ │ ├── layout │ │ │ ├── groupsSideBar.js │ │ │ ├── navigation.js │ │ │ ├── popup.js │ │ │ └── topBar.js │ │ ├── modals │ │ │ ├── admin │ │ │ │ ├── createRole.js │ │ │ │ └── createUser.js │ │ │ ├── alarm │ │ │ │ ├── confirmAckWithTicket.js │ │ │ │ ├── createAckEvent.js │ │ │ │ ├── createAssociateTicket.js │ │ │ │ ├── createCancelEvent.js │ │ │ │ ├── createChangeStateEvent.js │ │ │ │ ├── createDeclareTicketEvent.js │ │ │ │ ├── createPbehavior.js │ │ │ │ ├── createSnoozeEvent.js │ │ │ │ ├── moreInfos.js │ │ │ │ └── pbehaviorList.js │ │ │ ├── common │ │ │ │ ├── addInfoPopup.js │ │ │ │ ├── colorPicker.js │ │ │ │ ├── confirmation.js │ │ │ │ ├── createFilter.js │ │ │ │ ├── filtersList.js │ │ │ │ ├── infoPopupSetting.js │ │ │ │ ├── liveReporting.js │ │ │ │ ├── textEditor.js │ │ │ │ └── textFieldEditor.js │ │ │ ├── stats │ │ │ │ ├── addStat.js │ │ │ │ ├── statsDateInterval.js │ │ │ │ └── statsDisplayMode.js │ │ │ └── view │ │ │ │ ├── create.js │ │ │ │ ├── createGroup.js │ │ │ │ ├── createTab.js │ │ │ │ ├── createWidget.js │ │ │ │ └── selectView.js │ │ ├── tables │ │ │ ├── alarms.js │ │ │ └── common.js │ │ ├── view.js │ │ └── widget │ │ │ ├── alarms.js │ │ │ ├── common.js │ │ │ ├── context.js │ │ │ ├── paretoDiagram.js │ │ │ ├── statsCalendar.js │ │ │ ├── statsCurves.js │ │ │ ├── statsHistogram.js │ │ │ ├── statsNumber.js │ │ │ ├── statsTable.js │ │ │ ├── text.js │ │ │ └── weather.js │ └── specs │ │ ├── 01-auth │ │ └── auth.js │ │ ├── 02-admin │ │ ├── parameters.js │ │ ├── roles.js │ │ └── users.js │ │ ├── 03-layout │ │ ├── groups-side-bar.consistently.js │ │ ├── groups-top-bar.consistently.js │ │ └── top-bar.consistently.js │ │ ├── 04-view │ │ └── base.consistently.js │ │ └── 05-widget │ │ ├── alarms-list │ │ ├── 00.create.js │ │ ├── 01.searching.js │ │ ├── 02.pagination.js │ │ ├── 03.filtering.js │ │ ├── 04.mass-actions.js │ │ ├── 05.columns.js │ │ ├── 06.table-row.js │ │ ├── 07.item-actions-without-ack.js │ │ ├── 08.item-actions-with-ack.js │ │ ├── 09.edit-mode-default-settings.js │ │ ├── 10.edit-mode-advanced-settings.js │ │ └── TESTCASES.md │ │ ├── context.js │ │ ├── paretoDiagram.js │ │ ├── statsCalendar.js │ │ ├── statsCurves.js │ │ ├── statsHistogram.js │ │ ├── statsNumber.js │ │ ├── statsTable.js │ │ ├── text.js │ │ └── weather.js └── unit │ ├── .eslintrc │ ├── components │ ├── common │ │ ├── actions-panel │ │ │ ├── __snapshots__ │ │ │ │ ├── actions-panel.spec.js.snap │ │ │ │ └── mass-actions-panel.spec.js.snap │ │ │ ├── actions-panel.spec.js │ │ │ └── mass-actions-panel.spec.js │ │ ├── block │ │ │ ├── __snapshots__ │ │ │ │ └── c-collapse-panel.spec.js.snap │ │ │ └── c-collapse-panel.spec.js │ │ ├── buttons │ │ │ ├── __snapshots__ │ │ │ │ ├── c-action-btn.spec.js.snap │ │ │ │ └── c-expand-btn.spec.js.snap │ │ │ ├── c-action-btn.spec.js │ │ │ └── c-expand-btn.spec.js │ │ ├── chart │ │ │ ├── __image_snapshots__ │ │ │ │ ├── horizontal-bar-after-update-data-1-snap.png │ │ │ │ ├── horizontal-bar-after-update-options-1-snap.png │ │ │ │ ├── horizontal-bar-with-custom-props-1-snap.png │ │ │ │ ├── horizontal-bar-with-default-props-and-options-1-snap.png │ │ │ │ ├── junit-gantt-chart-historical-and-tooltip-no-icon-2-snap.png │ │ │ │ ├── junit-gantt-chart-with-default-props-1-snap.png │ │ │ │ ├── junit-gantt-chart-with-default-required-props-and-updated-items-1-snap.png │ │ │ │ ├── junit-gantt-chart-with-historical-items-and-prop-1-snap.png │ │ │ │ └── junit-gantt-chart-with-items-prop-1-snap.png │ │ │ ├── __snapshots__ │ │ │ │ ├── chart-export-actions.spec.js.snap │ │ │ │ └── junit-gantt-chart.spec.js.snap │ │ │ ├── chart-export-actions.spec.js │ │ │ ├── horizontal-bar.spec.js │ │ │ └── junit-gantt-chart.spec.js │ │ ├── chips │ │ │ ├── __snapshots__ │ │ │ │ ├── c-alarm-action-chip.spec.js.snap │ │ │ │ ├── c-alarm-actions-chips.spec.js.snap │ │ │ │ ├── c-alarm-chip.spec.js.snap │ │ │ │ ├── c-alarm-extra-details-chip.spec.js.snap │ │ │ │ ├── c-alarm-pbehavior-chip.spec.js.snap │ │ │ │ ├── c-alarm-state-chip.spec.js.snap │ │ │ │ ├── c-alarm-tags-chips.spec.js.snap │ │ │ │ └── c-pattern-operator-chip.spec.js.snap │ │ │ ├── c-alarm-action-chip.spec.js │ │ │ ├── c-alarm-actions-chips.spec.js │ │ │ ├── c-alarm-chip.spec.js │ │ │ ├── c-alarm-extra-details-chip.spec.js │ │ │ ├── c-alarm-pbehavior-chip.spec.js │ │ │ ├── c-alarm-state-chip.spec.js │ │ │ ├── c-alarm-tags-chips.spec.js │ │ │ └── c-pattern-operator-chip.spec.js │ │ ├── flowchart │ │ │ ├── __snapshots__ │ │ │ │ ├── flowchart-editor.spec.js.snap │ │ │ │ ├── flowchart-properties.spec.js.snap │ │ │ │ ├── flowchart-sidebar.spec.js.snap │ │ │ │ └── flowchart.spec.js.snap │ │ │ ├── fields │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── flowchart-color-field.spec.js.snap │ │ │ │ │ ├── flowchart-line-type-field.spec.js.snap │ │ │ │ │ ├── flowchart-number-field.spec.js.snap │ │ │ │ │ └── flowchart-stroke-type-field.spec.js.snap │ │ │ │ ├── flowchart-color-field.spec.js │ │ │ │ ├── flowchart-line-type-field.spec.js │ │ │ │ ├── flowchart-number-field.spec.js │ │ │ │ └── flowchart-stroke-type-field.spec.js │ │ │ ├── flowchart-editor.spec.js │ │ │ ├── flowchart-properties.spec.js │ │ │ ├── flowchart-sidebar.spec.js │ │ │ └── flowchart.spec.js │ │ ├── groups │ │ │ ├── __snapshots__ │ │ │ │ └── c-density-btn-toggle.spec.js.snap │ │ │ └── c-density-btn-toggle.spec.js │ │ ├── icons │ │ │ ├── __snapshots__ │ │ │ │ └── c-no-events-icon.spec.js.snap │ │ │ └── c-no-events-icon.spec.js │ │ ├── links │ │ │ ├── __snapshots__ │ │ │ │ └── c-links-list.spec.js.snap │ │ │ └── c-links-list.spec.js │ │ ├── overlay │ │ │ ├── __snapshots__ │ │ │ │ └── c-progress-overlay.spec.js.snap │ │ │ └── c-progress-overlay.spec.js │ │ ├── pagination │ │ │ ├── __snapshots__ │ │ │ │ ├── c-pagination.spec.js.snap │ │ │ │ └── c-table-pagination.spec.js.snap │ │ │ ├── c-pagination.spec.js │ │ │ └── c-table-pagination.spec.js │ │ ├── runtime-template │ │ │ ├── __snapshots__ │ │ │ │ ├── c-compiled-template.spec.js.snap │ │ │ │ └── c-runtime-template.spec.js.snap │ │ │ ├── c-compiled-template.spec.js │ │ │ └── c-runtime-template.spec.js │ │ ├── search │ │ │ ├── c-advanced-search-field.spec.js │ │ │ └── c-search-field.spec.js │ │ ├── table │ │ │ ├── __snapshots__ │ │ │ │ ├── c-treeview-data-table.spec.js.snap │ │ │ │ └── color-indicator-wrapper.spec.js.snap │ │ │ ├── c-treeview-data-table.spec.js │ │ │ └── color-indicator-wrapper.spec.js │ │ └── text-editor │ │ │ ├── __snapshots__ │ │ │ ├── text-editor.spec.js.snap │ │ │ ├── variables-list.spec.js.snap │ │ │ └── variables-menu.spec.js.snap │ │ │ ├── text-editor.spec.js │ │ │ ├── variables-list.spec.js │ │ │ └── variables-menu.spec.js │ ├── form │ │ ├── __snapshots__ │ │ │ ├── date-interval-selector.spec.js.snap │ │ │ ├── pattern-form.spec.js.snap │ │ │ └── patterns-form.spec.js.snap │ │ ├── date-interval-selector.spec.js │ │ ├── fields │ │ │ ├── pbehavior │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-pbehavior-reason-field.spec.js.snap │ │ │ │ │ └── c-pbehavior-type-field.spec.js.snap │ │ │ │ ├── c-pbehavior-reason-field.spec.js │ │ │ │ └── c-pbehavior-type-field.spec.js │ │ │ ├── __snapshots__ │ │ │ │ ├── c-array-mixed-field.spec.js.snap │ │ │ │ ├── c-change-state-field.spec.js.snap │ │ │ │ ├── c-column-size-field.spec.js.snap │ │ │ │ ├── c-date-interval-field.spec.js.snap │ │ │ │ ├── c-description-field.spec.js.snap │ │ │ │ ├── c-draggable-list-field.spec.js.snap │ │ │ │ ├── c-enabled-field.spec.js.snap │ │ │ │ ├── c-event-filter-type-field.spec.js.snap │ │ │ │ ├── c-id-field.spec.js.snap │ │ │ │ ├── c-infos-attribute-field.spec.js.snap │ │ │ │ ├── c-input-type-field.spec.js.snap │ │ │ │ ├── c-json-field.spec.js.snap │ │ │ │ ├── c-mixed-field.spec.js.snap │ │ │ │ ├── c-mixed-input-field.spec.js.snap │ │ │ │ ├── c-number-field.spec.js.snap │ │ │ │ ├── c-quick-date-interval-field.spec.js.snap │ │ │ │ ├── c-quick-date-interval-type-field.spec.js.snap │ │ │ │ ├── c-records-per-page-field.spec.js.snap │ │ │ │ ├── c-sampling-field.spec.js.snap │ │ │ │ ├── date-time-splitted-range-picker-field.spec.js.snap │ │ │ │ ├── periodic-refresh-field.spec.js.snap │ │ │ │ └── state-criticity-field.spec.js.snap │ │ │ ├── alarm │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-alarm-metric-aggregate-function-field.spec.js.snap │ │ │ │ │ ├── c-alarm-metric-parameters-field.spec.js.snap │ │ │ │ │ ├── c-alarm-state-field.spec.js.snap │ │ │ │ │ ├── c-alarm-status-field.spec.js.snap │ │ │ │ │ └── c-alarm-tag-field.spec.js.snap │ │ │ │ ├── c-alarm-metric-aggregate-function-field.spec.js │ │ │ │ ├── c-alarm-metric-parameters-field.spec.js │ │ │ │ ├── c-alarm-state-field.spec.js │ │ │ │ ├── c-alarm-status-field.spec.js │ │ │ │ └── c-alarm-tag-field.spec.js │ │ │ ├── c-array-mixed-field.spec.js │ │ │ ├── c-change-state-field.spec.js │ │ │ ├── c-column-size-field.spec.js │ │ │ ├── c-date-interval-field.spec.js │ │ │ ├── c-description-field.spec.js │ │ │ ├── c-draggable-list-field.spec.js │ │ │ ├── c-enabled-field.spec.js │ │ │ ├── c-event-filter-type-field.spec.js │ │ │ ├── c-id-field.spec.js │ │ │ ├── c-infos-attribute-field.spec.js │ │ │ ├── c-input-type-field.spec.js │ │ │ ├── c-json-field.spec.js │ │ │ ├── c-mixed-field.spec.js │ │ │ ├── c-mixed-input-field.spec.js │ │ │ ├── c-number-field.spec.js │ │ │ ├── c-quick-date-interval-field.spec.js │ │ │ ├── c-quick-date-interval-type-field.spec.js │ │ │ ├── c-records-per-page-field.spec.js │ │ │ ├── c-sampling-field.spec.js │ │ │ ├── card-iterator │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-movable-card-iterator-field.spec.js.snap │ │ │ │ └── c-movable-card-iterator-field.spec.js │ │ │ ├── color │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-color-indicator-field.spec.js.snap │ │ │ │ └── c-color-indicator-field.spec.js │ │ │ ├── column │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-columns-field.spec.js.snap │ │ │ │ └── c-columns-field.spec.js │ │ │ ├── date-picker │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-date-picker-field.spec.js.snap │ │ │ │ └── c-date-picker-field.spec.js │ │ │ ├── date-time-picker │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-date-time-interval-field.spec.js.snap │ │ │ │ │ ├── date-time-picker-menu.spec.js.snap │ │ │ │ │ ├── date-time-picker-text-field.spec.js.snap │ │ │ │ │ ├── date-time-picker.spec.js.snap │ │ │ │ │ ├── date-time-splitted-picker-field.spec.js.snap │ │ │ │ │ └── time-picker-field.spec.js.snap │ │ │ │ ├── c-date-time-interval-field.spec.js │ │ │ │ ├── date-time-picker-menu.spec.js │ │ │ │ ├── date-time-picker-text-field.spec.js │ │ │ │ ├── date-time-picker.spec.js │ │ │ │ ├── date-time-splitted-picker-field.spec.js │ │ │ │ └── time-picker-field.spec.js │ │ │ ├── date-time-splitted-range-picker-field.spec.js │ │ │ ├── duration │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-duration-field.spec.js.snap │ │ │ │ │ └── c-splitted-duration-field.spec.js.snap │ │ │ │ ├── c-duration-field.spec.js │ │ │ │ └── c-splitted-duration-field.spec.js │ │ │ ├── entity │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-entity-category-field.spec.js.snap │ │ │ │ │ └── c-entity-field.spec.js.snap │ │ │ │ ├── c-entity-category-field.spec.js │ │ │ │ └── c-entity-field.spec.js │ │ │ ├── map │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-map-field.spec.js.snap │ │ │ │ └── c-map-field.spec.js │ │ │ ├── pattern │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── c-filter-field.spec.js.snap │ │ │ │ │ ├── c-pattern-field.spec.js.snap │ │ │ │ │ ├── c-patterns-field.spec.js.snap │ │ │ │ │ ├── pattern-advanced-editor-field.spec.js.snap │ │ │ │ │ ├── pattern-attribute-field.spec.js.snap │ │ │ │ │ ├── pattern-editor-field.spec.js.snap │ │ │ │ │ ├── pattern-group-field.spec.js.snap │ │ │ │ │ ├── pattern-groups-field.spec.js.snap │ │ │ │ │ ├── pattern-operator-field.spec.js.snap │ │ │ │ │ ├── pattern-operator-information.spec.js.snap │ │ │ │ │ ├── pattern-rule-field-date-value.spec.js.snap │ │ │ │ │ ├── pattern-rule-field.spec.js.snap │ │ │ │ │ └── pattern-rules-field.spec.js.snap │ │ │ │ ├── c-filter-field.spec.js │ │ │ │ ├── c-pattern-field.spec.js │ │ │ │ ├── c-patterns-field.spec.js │ │ │ │ ├── pattern-advanced-editor-field.spec.js │ │ │ │ ├── pattern-attribute-field.spec.js │ │ │ │ ├── pattern-editor-field.spec.js │ │ │ │ ├── pattern-group-field.spec.js │ │ │ │ ├── pattern-groups-field.spec.js │ │ │ │ ├── pattern-operator-field.spec.js │ │ │ │ ├── pattern-operator-information.spec.js │ │ │ │ ├── pattern-rule-field-date-value.spec.js │ │ │ │ ├── pattern-rule-field.spec.js │ │ │ │ └── pattern-rules-field.spec.js │ │ │ ├── periodic-refresh-field.spec.js │ │ │ ├── service-weather │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── c-service-weather-state-counter-field.spec.js.snap │ │ │ │ └── c-service-weather-state-counter-field.spec.js │ │ │ └── state-criticity-field.spec.js │ │ ├── pattern-form.spec.js │ │ └── patterns-form.spec.js │ ├── icons │ │ ├── __snapshots__ │ │ │ └── c-enabled.spec.js.snap │ │ └── c-enabled.spec.js │ ├── layout │ │ └── navigation │ │ │ └── partials │ │ │ └── groups-side-bar │ │ │ ├── __snapshots__ │ │ │ ├── group-panel.spec.js.snap │ │ │ ├── group-view-panel.spec.js.snap │ │ │ ├── groups-side-bar-group-view.spec.js.snap │ │ │ ├── groups-side-bar-group.spec.js.snap │ │ │ ├── groups-side-bar-playlists.spec.js.snap │ │ │ └── groups-side-bar.spec.js.snap │ │ │ ├── group-panel.spec.js │ │ │ ├── group-view-panel.spec.js │ │ │ ├── groups-side-bar-group-view.spec.js │ │ │ ├── groups-side-bar-group.spec.js │ │ │ ├── groups-side-bar-playlists.spec.js │ │ │ └── groups-side-bar.spec.js │ ├── modals │ │ ├── __snapshots__ │ │ │ ├── modal-title-buttons.spec.js.snap │ │ │ └── modal-wrapper.spec.js.snap │ │ ├── alarm │ │ │ ├── __snapshots__ │ │ │ │ ├── alarms-list.spec.js.snap │ │ │ │ ├── confirm-ack-with-ticket.spec.js.snap │ │ │ │ ├── create-ack-event.spec.js.snap │ │ │ │ ├── create-associate-ticket-event.spec.js.snap │ │ │ │ ├── create-change-state-event.spec.js.snap │ │ │ │ ├── create-declare-ticket-event.spec.js.snap │ │ │ │ ├── create-snooze-event.spec.js.snap │ │ │ │ ├── edit-live-reporting.spec.js.snap │ │ │ │ └── link-to-meta-alarm.spec.js.snap │ │ │ ├── alarms-list.spec.js │ │ │ ├── confirm-ack-with-ticket.spec.js │ │ │ ├── create-ack-event.spec.js │ │ │ ├── create-associate-ticket-event.spec.js │ │ │ ├── create-change-state-event.spec.js │ │ │ ├── create-declare-ticket-event.spec.js │ │ │ ├── create-snooze-event.spec.js │ │ │ ├── edit-live-reporting.spec.js │ │ │ ├── info-popup-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── add-info-popup.spec.js.snap │ │ │ │ │ └── info-popup-setting.spec.js.snap │ │ │ │ ├── add-info-popup.spec.js │ │ │ │ └── info-popup-setting.spec.js │ │ │ └── link-to-meta-alarm.spec.js │ │ ├── common │ │ │ ├── __snapshots__ │ │ │ │ ├── confirmation.spec.js.snap │ │ │ │ ├── create-comment-event.spec.js.snap │ │ │ │ ├── create-filter.spec.js.snap │ │ │ │ ├── filters-list.spec.js.snap │ │ │ │ ├── text-editor.spec.js.snap │ │ │ │ ├── text-field-editor.spec.js.snap │ │ │ │ └── variables-help.spec.js.snap │ │ │ ├── confirmation.spec.js │ │ │ ├── create-comment-event.spec.js │ │ │ ├── create-filter.spec.js │ │ │ ├── filters-list.spec.js │ │ │ ├── text-editor.spec.js │ │ │ ├── text-field-editor.spec.js │ │ │ └── variables-help.spec.js │ │ ├── entity │ │ │ ├── __snapshots__ │ │ │ │ └── create-entity.spec.js.snap │ │ │ └── create-entity.spec.js │ │ ├── modal-title-buttons.spec.js │ │ ├── modal-wrapper.spec.js │ │ ├── pattern │ │ │ ├── __snapshots__ │ │ │ │ └── create-pattern.spec.js.snap │ │ │ └── create-pattern.spec.js │ │ ├── pbehavior │ │ │ ├── __snapshots__ │ │ │ │ └── create-pbehavior.spec.js.snap │ │ │ └── create-pbehavior.spec.js │ │ ├── service │ │ │ ├── __snapshots__ │ │ │ │ ├── create-service-pause-event.spec.js.snap │ │ │ │ └── create-service.spec.js.snap │ │ │ ├── create-service-pause-event.spec.js │ │ │ └── create-service.spec.js │ │ ├── tag │ │ │ ├── __snapshots__ │ │ │ │ └── create-tag.spec.js.snap │ │ │ └── create-tag.spec.js │ │ └── view │ │ │ ├── __snapshots__ │ │ │ └── create-view.spec.js.snap │ │ │ └── create-view.spec.js │ ├── other │ │ ├── alarm-status-rule │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── alarm-status-rule-form.spec.js.snap │ │ │ │ ├── alarm-status-rule-form.spec.js │ │ │ │ └── partials │ │ │ │ ├── __snapshots__ │ │ │ │ └── alarm-status-rule-patterns-form.spec.js.snap │ │ │ │ └── alarm-status-rule-patterns-form.spec.js │ │ ├── availability │ │ │ ├── __snapshots__ │ │ │ │ └── availability-list.spec.js.snap │ │ │ ├── availability-list.spec.js │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── availability-display-parameter-field.spec.js.snap │ │ │ │ │ ├── availability-display-parameter-radio-field.spec.js.snap │ │ │ │ │ ├── availability-show-type-field.spec.js.snap │ │ │ │ │ ├── availability-show-type-radio-field.spec.js.snap │ │ │ │ │ ├── availability-value-filter-field.spec.js.snap │ │ │ │ │ └── availability-value-filter-method-field.spec.js.snap │ │ │ │ │ ├── availability-display-parameter-field.spec.js │ │ │ │ │ ├── availability-display-parameter-radio-field.spec.js │ │ │ │ │ ├── availability-show-type-field.spec.js │ │ │ │ │ ├── availability-show-type-radio-field.spec.js │ │ │ │ │ ├── availability-value-filter-field.spec.js │ │ │ │ │ └── availability-value-filter-method-field.spec.js │ │ │ └── partials │ │ │ │ ├── __image_snapshots__ │ │ │ │ ├── availability-line-chart-with-custom-prop-1-snap.png │ │ │ │ ├── availability-line-chart-with-default-props-1-snap.png │ │ │ │ ├── availability-line-chart-with-downtime-display-parameter-prop-1-snap.png │ │ │ │ ├── availability-line-chart-with-duration-show-type-prop-1-snap.png │ │ │ │ ├── availability-line-chart-with-percent-show-type-prop-1-snap.png │ │ │ │ └── availability-line-chart-with-uptime-display-parameter-prop-1-snap.png │ │ │ │ ├── __snapshots__ │ │ │ │ ├── availability-bar-chart-information-row.spec.js.snap │ │ │ │ ├── availability-bar-chart.spec.js.snap │ │ │ │ ├── availability-bar.spec.js.snap │ │ │ │ ├── availability-filters.spec.js.snap │ │ │ │ ├── availability-graph.spec.js.snap │ │ │ │ ├── availability-history-filters.spec.js.snap │ │ │ │ ├── availability-history.spec.js.snap │ │ │ │ ├── availability-list-column-value.spec.js.snap │ │ │ │ └── availability-list-expand-panel.spec.js.snap │ │ │ │ ├── availability-bar-chart-information-row.spec.js │ │ │ │ ├── availability-bar-chart.spec.js │ │ │ │ ├── availability-bar.spec.js │ │ │ │ ├── availability-filters.spec.js │ │ │ │ ├── availability-graph.spec.js │ │ │ │ ├── availability-history-filters.spec.js │ │ │ │ ├── availability-history.spec.js │ │ │ │ ├── availability-line-chart.spec.js │ │ │ │ ├── availability-list-column-value.spec.js │ │ │ │ └── availability-list-expand-panel.spec.js │ │ ├── declare-ticket │ │ │ ├── __snapshots__ │ │ │ │ ├── declare-ticket-rules-list.spec.js.snap │ │ │ │ └── declared-tickets-list.spec.js.snap │ │ │ ├── declare-ticket-rules-list.spec.js │ │ │ ├── declared-tickets-list.spec.js │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ ├── associate-ticket-event-form.spec.js.snap │ │ │ │ ├── declare-ticket-rule-form.spec.js.snap │ │ │ │ ├── declare-ticket-rule-general-form.spec.js.snap │ │ │ │ └── declare-ticket-rule-patterns-form.spec.js.snap │ │ │ │ ├── associate-ticket-event-form.spec.js │ │ │ │ ├── declare-ticket-rule-form.spec.js │ │ │ │ ├── declare-ticket-rule-general-form.spec.js │ │ │ │ └── declare-ticket-rule-patterns-form.spec.js │ │ ├── dynamic-info │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── dynamic-info-form.spec.js.snap │ │ │ │ ├── dynamic-info-form.spec.js │ │ │ │ └── fields │ │ │ │ ├── __snapshots__ │ │ │ │ └── dynamic-info-patterns-form.spec.js.snap │ │ │ │ └── dynamic-info-patterns-form.spec.js │ │ ├── entity │ │ │ ├── __snapshots__ │ │ │ │ └── entity-availability.spec.js.snap │ │ │ ├── entity-availability.spec.js │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── entity-form.spec.js.snap │ │ │ │ └── entity-form.spec.js │ │ ├── event-filter │ │ │ ├── __snapshots__ │ │ │ │ └── event-filters-list.spec.js.snap │ │ │ ├── event-filters-list.spec.js │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── event-filter-form.spec.js.snap │ │ │ │ └── event-filter-form.spec.js │ │ ├── filter │ │ │ ├── __snapshots__ │ │ │ │ └── filters-list.spec.js.snap │ │ │ ├── filters-list.spec.js │ │ │ └── partials │ │ │ │ ├── __snapshots__ │ │ │ │ ├── filter-selector.spec.js.snap │ │ │ │ └── filter-tile.spec.js.snap │ │ │ │ ├── filter-selector.spec.js │ │ │ │ └── filter-tile.spec.js │ │ ├── healthcheck │ │ │ ├── __image_snapshots__ │ │ │ │ ├── healthcheck-network-graph-with-custom-prop-2-snap.png │ │ │ │ ├── healthcheck-network-graph-with-custom-props-and-snmp-nod-2-snap.png │ │ │ │ └── healthcheck-network-graph-with-default-prop-2-snap.png │ │ │ ├── __snapshots__ │ │ │ │ └── healthcheck-network-graph.spec.js.snap │ │ │ └── healthcheck-network-graph.spec.js │ │ ├── idle-rule │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ ├── idle-rule-form.spec.js.snap │ │ │ │ └── idle-rule-patterns-form.spec.js.snap │ │ │ │ ├── idle-rule-form.spec.js │ │ │ │ └── idle-rule-patterns-form.spec.js │ │ ├── kpi │ │ │ ├── charts │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── kpi-alarms.spec.js.snap │ │ │ │ │ ├── kpi-charts.spec.js.snap │ │ │ │ │ ├── kpi-rating.spec.js.snap │ │ │ │ │ └── kpi-sli.spec.js.snap │ │ │ │ ├── kpi-alarms.spec.js │ │ │ │ ├── kpi-charts.spec.js │ │ │ │ ├── kpi-rating.spec.js │ │ │ │ ├── kpi-sli.spec.js │ │ │ │ └── partials │ │ │ │ │ ├── __image_snapshots__ │ │ │ │ │ ├── kpi-alarms-chart-with-all-types-by-da-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-all-types-by-hou-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-all-types-by-mont-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-all-types-by-wee-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-count-by-da-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-count-by-hou-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-count-by-mont-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-count-by-wee-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-default-props-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-percent-by-da-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-percent-by-hou-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-percent-by-mont-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-percent-by-wee-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-time-by-da-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-time-by-hou-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-time-by-mont-1-snap.png │ │ │ │ │ ├── kpi-alarms-chart-with-time-by-wee-1-snap.png │ │ │ │ │ ├── kpi-rating-chart-with-counter-metric-1-snap.png │ │ │ │ │ ├── kpi-rating-chart-with-default-props-1-snap.png │ │ │ │ │ ├── kpi-rating-chart-with-percent-metric-1-snap.png │ │ │ │ │ ├── kpi-rating-chart-with-seconds-metric-1-snap.png │ │ │ │ │ ├── kpi-sli-chart-with-default-props-1-snap.png │ │ │ │ │ ├── kpi-sli-chart-with-percent-metric-1-snap.png │ │ │ │ │ ├── kpi-sli-chart-with-time-metrics-by-da-1-snap.png │ │ │ │ │ ├── kpi-sli-chart-with-time-metrics-by-hou-1-snap.png │ │ │ │ │ ├── kpi-sli-chart-with-time-metrics-by-mont-1-snap.png │ │ │ │ │ └── kpi-sli-chart-with-time-metrics-by-wee-1-snap.png │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── kpi-alarms-chart.spec.js.snap │ │ │ │ │ ├── kpi-alarms-filters.spec.js.snap │ │ │ │ │ ├── kpi-rating-chart.spec.js.snap │ │ │ │ │ ├── kpi-rating-criteria-field.spec.js.snap │ │ │ │ │ ├── kpi-rating-filters.spec.js.snap │ │ │ │ │ ├── kpi-rating-metric-field.spec.js.snap │ │ │ │ │ ├── kpi-sli-chart.spec.js.snap │ │ │ │ │ ├── kpi-sli-filters.spec.js.snap │ │ │ │ │ └── kpi-sli-show-mode-field.spec.js.snap │ │ │ │ │ ├── kpi-alarms-chart.spec.js │ │ │ │ │ ├── kpi-alarms-filters.spec.js │ │ │ │ │ ├── kpi-rating-chart.spec.js │ │ │ │ │ ├── kpi-rating-criteria-field.spec.js │ │ │ │ │ ├── kpi-rating-filters.spec.js │ │ │ │ │ ├── kpi-rating-metric-field.spec.js │ │ │ │ │ ├── kpi-sli-chart.spec.js │ │ │ │ │ ├── kpi-sli-filters.spec.js │ │ │ │ │ └── kpi-sli-show-mode-field.spec.js │ │ │ ├── filters │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── kpi-filters-list.spec.js.snap │ │ │ │ │ └── kpi-filters.spec.js.snap │ │ │ │ ├── kpi-filters-list.spec.js │ │ │ │ ├── kpi-filters.spec.js │ │ │ │ └── partials │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── kpi-filters-expand-item.spec.js.snap │ │ │ │ │ └── kpi-filters-expand-item.spec.js │ │ │ └── rating-settings │ │ │ │ ├── __snapshots__ │ │ │ │ ├── kpi-rating-settings-list.spec.js.snap │ │ │ │ └── kpi-rating-settings.spec.js.snap │ │ │ │ ├── kpi-rating-settings-list.spec.js │ │ │ │ └── kpi-rating-settings.spec.js │ │ ├── login │ │ │ ├── __snapshots__ │ │ │ │ ├── basic-login.spec.js.snap │ │ │ │ ├── cas-login.spec.js.snap │ │ │ │ ├── login-footer.spec.js.snap │ │ │ │ ├── oauth-login.spec.js.snap │ │ │ │ └── saml-login.spec.js.snap │ │ │ ├── basic-login.spec.js │ │ │ ├── cas-login.spec.js │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── login-form.spec.js.snap │ │ │ │ └── login-form.spec.js │ │ │ ├── login-footer.spec.js │ │ │ ├── oauth-login.spec.js │ │ │ ├── partials │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── third-party-login.spec.js.snap │ │ │ │ └── third-party-login.spec.js │ │ │ └── saml-login.spec.js │ │ ├── map │ │ │ ├── __snapshots__ │ │ │ │ └── maps-list.spec.js.snap │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── flowchart-map-form.spec.js.snap │ │ │ │ │ ├── geomap-map-form.spec.js.snap │ │ │ │ │ └── mermaid-map-form.spec.js.snap │ │ │ │ ├── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── add-location-btn.spec.js.snap │ │ │ │ │ │ ├── flowchart-editor.spec.js.snap │ │ │ │ │ │ ├── geomap-editor.spec.js.snap │ │ │ │ │ │ ├── mermaid-code-editor.spec.js.snap │ │ │ │ │ │ ├── mermaid-editor.spec.js.snap │ │ │ │ │ │ ├── mermaid-points-editor.spec.js.snap │ │ │ │ │ │ ├── mermaid-theme-field.spec.js.snap │ │ │ │ │ │ ├── point-contextmenu.spec.js.snap │ │ │ │ │ │ └── point-form-dialog.spec.js.snap │ │ │ │ │ ├── add-location-btn.spec.js │ │ │ │ │ ├── flowchart-editor.spec.js │ │ │ │ │ ├── geomap-editor.spec.js │ │ │ │ │ ├── mermaid-code-editor.spec.js │ │ │ │ │ ├── mermaid-editor.spec.js │ │ │ │ │ ├── mermaid-points-editor.spec.js │ │ │ │ │ ├── mermaid-theme-field.spec.js │ │ │ │ │ ├── point-contextmenu.spec.js │ │ │ │ │ └── point-form-dialog.spec.js │ │ │ │ ├── flowchart-map-form.spec.js │ │ │ │ ├── geomap-map-form.spec.js │ │ │ │ └── mermaid-map-form.spec.js │ │ │ ├── maps-list.spec.js │ │ │ └── partials │ │ │ │ ├── __image_snapshots__ │ │ │ │ └── tree-of-dependencies-preview-with-required-prop-2-snap.png │ │ │ │ ├── __snapshots__ │ │ │ │ ├── flowchart-points-preview.spec.js.snap │ │ │ │ ├── flowchart-preview.spec.js.snap │ │ │ │ ├── geomap-preview.spec.js.snap │ │ │ │ ├── maps-list-expand-flowchart-item.spec.js.snap │ │ │ │ ├── maps-list-expand-geomap-item.spec.js.snap │ │ │ │ ├── maps-list-expand-mermaid-item.spec.js.snap │ │ │ │ ├── mermaid-code-preview.spec.js.snap │ │ │ │ ├── mermaid-point-marker.spec.js.snap │ │ │ │ ├── mermaid-points-preview.spec.js.snap │ │ │ │ ├── mermaid-preview.spec.js.snap │ │ │ │ └── tree-of-dependencies-preview.spec.js.snap │ │ │ │ ├── flowchart-points-preview.spec.js │ │ │ │ ├── flowchart-preview.spec.js │ │ │ │ ├── geomap-preview.spec.js │ │ │ │ ├── maps-list-expand-flowchart-item.spec.js │ │ │ │ ├── maps-list-expand-geomap-item.spec.js │ │ │ │ ├── maps-list-expand-mermaid-item.spec.js │ │ │ │ ├── mermaid-code-preview.spec.js │ │ │ │ ├── mermaid-point-marker.spec.js │ │ │ │ ├── mermaid-points-preview.spec.js │ │ │ │ ├── mermaid-preview.spec.js │ │ │ │ └── tree-of-dependencies-preview.spec.js │ │ ├── meta-alarm-rule │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ ├── meta-alarm-rule-form.spec.js.snap │ │ │ │ ├── meta-alarm-rule-general-form.spec.js.snap │ │ │ │ ├── meta-alarm-rule-parameters-form.spec.js.snap │ │ │ │ └── meta-alarm-rule-patterns-form.spec.js.snap │ │ │ │ ├── meta-alarm-rule-form.spec.js │ │ │ │ ├── meta-alarm-rule-general-form.spec.js │ │ │ │ ├── meta-alarm-rule-parameters-form.spec.js │ │ │ │ └── meta-alarm-rule-patterns-form.spec.js │ │ ├── pattern │ │ │ ├── __snapshots__ │ │ │ │ ├── corporate-patterns.spec.js.snap │ │ │ │ ├── patterns-list.spec.js.snap │ │ │ │ └── patterns.spec.js.snap │ │ │ ├── corporate-patterns.spec.js │ │ │ ├── patterns-list.spec.js │ │ │ └── patterns.spec.js │ │ ├── pbehavior │ │ │ └── pbehaviors │ │ │ │ ├── __snapshots__ │ │ │ │ ├── pbehaviors-list.spec.js.snap │ │ │ │ └── pbehaviors-simple-list.spec.js.snap │ │ │ │ ├── calendar │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── pbehavior-planning-calendar.spec.js.snap │ │ │ │ └── pbehavior-planning-calendar.spec.js │ │ │ │ ├── fields │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── pbehavior-comment-field.spec.js.snap │ │ │ │ │ ├── pbehavior-comments-field.spec.js.snap │ │ │ │ │ ├── pbehavior-exception-field.spec.js.snap │ │ │ │ │ ├── pbehavior-recurrence-rule-exceptions-field.spec.js.snap │ │ │ │ │ └── pbehavior-recurrence-rule-field.spec.js.snap │ │ │ │ ├── pbehavior-comment-field.spec.js │ │ │ │ ├── pbehavior-comments-field.spec.js │ │ │ │ ├── pbehavior-exception-field.spec.js │ │ │ │ ├── pbehavior-recurrence-rule-exceptions-field.spec.js │ │ │ │ └── pbehavior-recurrence-rule-field.spec.js │ │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── pbehavior-form.spec.js.snap │ │ │ │ │ ├── pbehavior-general-form.spec.js.snap │ │ │ │ │ └── pbehavior-patterns-form.spec.js.snap │ │ │ │ ├── pbehavior-form.spec.js │ │ │ │ ├── pbehavior-general-form.spec.js │ │ │ │ └── pbehavior-patterns-form.spec.js │ │ │ │ ├── partials │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── pbehavior-comments.spec.js.snap │ │ │ │ │ ├── pbehavior-entities.spec.js.snap │ │ │ │ │ ├── pbehavior-exceptions-list.spec.js.snap │ │ │ │ │ ├── pbehavior-recurrence-rule-periods.spec.js.snap │ │ │ │ │ ├── pbehavior-recurrence-rule.spec.js.snap │ │ │ │ │ ├── pbehaviors-create-action-btn.spec.js.snap │ │ │ │ │ ├── pbehaviors-list-action-btn.spec.js.snap │ │ │ │ │ ├── pbehaviors-list-alarm-filtering-btn.spec.js.snap │ │ │ │ │ └── pbehaviors-list-expand-item.spec.js.snap │ │ │ │ ├── pbehavior-comments.spec.js │ │ │ │ ├── pbehavior-entities.spec.js │ │ │ │ ├── pbehavior-exceptions-list.spec.js │ │ │ │ ├── pbehavior-recurrence-rule-periods.spec.js │ │ │ │ ├── pbehavior-recurrence-rule.spec.js │ │ │ │ ├── pbehaviors-create-action-btn.spec.js │ │ │ │ ├── pbehaviors-list-action-btn.spec.js │ │ │ │ ├── pbehaviors-list-alarm-filtering-btn.spec.js │ │ │ │ └── pbehaviors-list-expand-item.spec.js │ │ │ │ ├── pbehaviors-list.spec.js │ │ │ │ └── pbehaviors-simple-list.spec.js │ │ ├── scenario │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── scenario-action-patterns-form.spec.js.snap │ │ │ │ └── scenario-action-patterns-form.spec.js │ │ ├── service │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-form.spec.js.snap │ │ │ │ ├── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── service-dependencies-show-type-field.spec.js.snap │ │ │ │ │ └── service-dependencies-show-type-field.spec.js │ │ │ │ └── service-form.spec.js │ │ │ └── partials │ │ │ │ ├── __snapshots__ │ │ │ │ ├── service-dependencies-entity-cell.spec.js.snap │ │ │ │ ├── service-dependencies-expand.spec.js.snap │ │ │ │ ├── service-dependencies.spec.js.snap │ │ │ │ ├── service-entities-list.spec.js.snap │ │ │ │ ├── service-entity-header.spec.js.snap │ │ │ │ ├── service-entity-info-tab.spec.js.snap │ │ │ │ ├── service-entity-template.spec.js.snap │ │ │ │ ├── service-entity-tree-of-dependencies-tab.spec.js.snap │ │ │ │ ├── service-entity.spec.js.snap │ │ │ │ └── service-template.spec.js.snap │ │ │ │ ├── service-dependencies-entity-cell.spec.js │ │ │ │ ├── service-dependencies-expand.spec.js │ │ │ │ ├── service-dependencies.spec.js │ │ │ │ ├── service-entities-list.spec.js │ │ │ │ ├── service-entity-header.spec.js │ │ │ │ ├── service-entity-info-tab.spec.js │ │ │ │ ├── service-entity-template.spec.js │ │ │ │ ├── service-entity-tree-of-dependencies-tab.spec.js │ │ │ │ ├── service-entity.spec.js │ │ │ │ └── service-template.spec.js │ │ ├── storage-setting │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ ├── storage-settings-alarm-external-tag-form.spec.js.snap │ │ │ │ ├── storage-settings-alarm-form.spec.js.snap │ │ │ │ ├── storage-settings-archive-entity-disabled-form.spec.js.snap │ │ │ │ ├── storage-settings-archive-entity-unlinked-form.spec.js.snap │ │ │ │ ├── storage-settings-events-records-form.spec.js.snap │ │ │ │ ├── storage-settings-form.spec.js.snap │ │ │ │ ├── storage-settings-health-check-form.spec.js.snap │ │ │ │ ├── storage-settings-junit-form.spec.js.snap │ │ │ │ ├── storage-settings-metrics-form.spec.js.snap │ │ │ │ ├── storage-settings-pbehavior-form.spec.js.snap │ │ │ │ ├── storage-settings-perf-data-metrics-form.spec.js.snap │ │ │ │ ├── storage-settings-remediation-form.spec.js.snap │ │ │ │ └── storage-settings-webhook-form.spec.js.snap │ │ │ │ ├── storage-settings-alarm-external-tag-form.spec.js │ │ │ │ ├── storage-settings-alarm-form.spec.js │ │ │ │ ├── storage-settings-archive-entity-disabled-form.spec.js │ │ │ │ ├── storage-settings-archive-entity-unlinked-form.spec.js │ │ │ │ ├── storage-settings-events-records-form.spec.js │ │ │ │ ├── storage-settings-form.spec.js │ │ │ │ ├── storage-settings-health-check-form.spec.js │ │ │ │ ├── storage-settings-junit-form.spec.js │ │ │ │ ├── storage-settings-metrics-form.spec.js │ │ │ │ ├── storage-settings-pbehavior-form.spec.js │ │ │ │ ├── storage-settings-perf-data-metrics-form.spec.js │ │ │ │ ├── storage-settings-remediation-form.spec.js │ │ │ │ └── storage-settings-webhook-form.spec.js │ │ ├── tag │ │ │ ├── __snapshots__ │ │ │ │ └── tags-list.spec.js.snap │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── tag-form.spec.js.snap │ │ │ │ │ └── tag-patterns-form.spec.js.snap │ │ │ │ ├── tag-form.spec.js │ │ │ │ └── tag-patterns-form.spec.js │ │ │ ├── partials │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tags-list-expand-panel.spec.js.snap │ │ │ │ └── tags-list-expand-panel.spec.js │ │ │ └── tags-list.spec.js │ │ └── view │ │ │ ├── __snapshots__ │ │ │ └── view-tab-widgets.spec.js.snap │ │ │ ├── form │ │ │ ├── __snapshots__ │ │ │ │ └── view-form.spec.js.snap │ │ │ └── view-form.spec.js │ │ │ ├── partials │ │ │ ├── __snapshots__ │ │ │ │ └── view-periodic-refresh-btn.spec.js.snap │ │ │ └── view-periodic-refresh-btn.spec.js │ │ │ └── view-tab-widgets.spec.js │ ├── sidebars │ │ ├── alarm │ │ │ ├── __snapshots__ │ │ │ │ └── alarm.spec.js.snap │ │ │ ├── alarm.spec.js │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── alarms-list-modal.spec.js.snap │ │ │ │ ├── alarms-list-modal.spec.js │ │ │ │ └── fields │ │ │ │ ├── __snapshots__ │ │ │ │ ├── fast-action-output.spec.js.snap │ │ │ │ ├── info-popup.spec.js.snap │ │ │ │ ├── live-reporting.spec.js.snap │ │ │ │ └── opened-resolved-filter.spec.js.snap │ │ │ │ ├── fast-action-output.spec.js │ │ │ │ ├── info-popup.spec.js │ │ │ │ ├── live-reporting.spec.js │ │ │ │ └── opened-resolved-filter.spec.js │ │ ├── availability │ │ │ ├── __snapshots__ │ │ │ │ └── availability.spec.js.snap │ │ │ ├── availability.spec.js │ │ │ └── form │ │ │ │ ├── __snapshots__ │ │ │ │ └── availability-form.spec.js.snap │ │ │ │ ├── availability-form.spec.js │ │ │ │ └── fields │ │ │ │ ├── __snapshots__ │ │ │ │ ├── availability-display-parameter.spec.js.snap │ │ │ │ ├── availability-display-show-type.spec.js.snap │ │ │ │ └── availability-graph-settings.spec.js.snap │ │ │ │ ├── availability-display-parameter.spec.js │ │ │ │ ├── availability-display-show-type.spec.js │ │ │ │ └── availability-graph-settings.spec.js │ │ ├── chart │ │ │ ├── __snapshots__ │ │ │ │ ├── bar-chart.spec.js.snap │ │ │ │ ├── line-chart.spec.js.snap │ │ │ │ ├── numbers.spec.js.snap │ │ │ │ └── pie-chart.spec.js.snap │ │ │ ├── bar-chart.spec.js │ │ │ ├── form │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── bar-chart-widget-form.spec.js.snap │ │ │ │ │ ├── charts-form.spec.js.snap │ │ │ │ │ ├── line-chart-widget-form.spec.js.snap │ │ │ │ │ ├── numbers-widget-form.spec.js.snap │ │ │ │ │ └── pie-chart-widget-form.spec.js.snap │ │ │ │ ├── bar-chart-widget-form.spec.js │ │ │ │ ├── charts-form.spec.js │ │ │ │ ├── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── alarm-metric-aggregate-function.spec.js.snap │ │ │ │ │ │ ├── alarm-metric-presers.spec.js.snap │ │ │ │ │ │ ├── bar-graph-type.spec.js.snap │ │ │ │ │ │ ├── pie-show-mode.spec.js.snap │ │ │ │ │ │ └── sampling.spec.js.snap │ │ │ │ │ ├── alarm-metric-aggregate-function.spec.js │ │ │ │ │ ├── alarm-metric-presers.spec.js │ │ │ │ │ ├── bar-graph-type.spec.js │ │ │ │ │ ├── pie-show-mode.spec.js │ │ │ │ │ └── sampling.spec.js │ │ │ │ ├── line-chart-widget-form.spec.js │ │ │ │ ├── numbers-widget-form.spec.js │ │ │ │ └── pie-chart-widget-form.spec.js │ │ │ ├── line-chart.spec.js │ │ │ ├── numbers.spec.js │ │ │ └── pie-chart.spec.js │ │ ├── context │ │ │ ├── __snapshots__ │ │ │ │ └── context.spec.js.snap │ │ │ └── context.spec.js │ │ ├── counter │ │ │ └── form │ │ │ │ └── fields │ │ │ │ ├── __snapshots__ │ │ │ │ └── template.spec.js.snap │ │ │ │ └── template.spec.js │ │ ├── form │ │ │ ├── __snapshots__ │ │ │ │ ├── button-field.spec.js.snap │ │ │ │ ├── color-indicator.spec.js.snap │ │ │ │ ├── columns.spec.js.snap │ │ │ │ ├── default-elements-per-page.spec.js.snap │ │ │ │ ├── default-sort-column.spec.js.snap │ │ │ │ ├── export-csv.spec.js.snap │ │ │ │ ├── filters.spec.js.snap │ │ │ │ ├── grid-size.spec.js.snap │ │ │ │ ├── margins.spec.js.snap │ │ │ │ ├── number.spec.js.snap │ │ │ │ ├── periodic-refresh.spec.js.snap │ │ │ │ ├── slider.spec.js.snap │ │ │ │ ├── switcher.spec.js.snap │ │ │ │ ├── text-editor.spec.js.snap │ │ │ │ ├── title.spec.js.snap │ │ │ │ └── tree-of-dependencies-settings.spec.js.snap │ │ │ ├── button-field.spec.js │ │ │ ├── color-indicator.spec.js │ │ │ ├── columns.spec.js │ │ │ ├── default-elements-per-page.spec.js │ │ │ ├── default-sort-column.spec.js │ │ │ ├── export-csv.spec.js │ │ │ ├── fields │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── filters-list.spec.js.snap │ │ │ │ │ ├── grid-range-size.spec.js.snap │ │ │ │ │ └── quick-date-interval-type.spec.js.snap │ │ │ │ ├── filters-list.spec.js │ │ │ │ ├── grid-range-size.spec.js │ │ │ │ └── quick-date-interval-type.spec.js │ │ │ ├── filters.spec.js │ │ │ ├── grid-size.spec.js │ │ │ ├── margins.spec.js │ │ │ ├── number.spec.js │ │ │ ├── periodic-refresh.spec.js │ │ │ ├── slider.spec.js │ │ │ ├── switcher.spec.js │ │ │ ├── text-editor.spec.js │ │ │ ├── title.spec.js │ │ │ └── tree-of-dependencies-settings.spec.js │ │ ├── map │ │ │ ├── __snapshots__ │ │ │ │ └── map.spec.js.snap │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── map.spec.js.snap │ │ │ │ │ └── map.spec.js │ │ │ └── map.spec.js │ │ ├── service-weather │ │ │ ├── __snapshots__ │ │ │ │ └── service-weather.spec.js.snap │ │ │ ├── form │ │ │ │ └── fields │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── counters-selector.spec.js.snap │ │ │ │ │ ├── modal-type.spec.js.snap │ │ │ │ │ └── sort-column.spec.js.snap │ │ │ │ │ ├── counters-selector.spec.js │ │ │ │ │ ├── modal-type.spec.js │ │ │ │ │ └── sort-column.spec.js │ │ │ └── service-weather.spec.js │ │ └── text │ │ │ ├── __snapshots__ │ │ │ └── text.spec.js.snap │ │ │ └── text.spec.js │ ├── table │ │ ├── __snapshots__ │ │ │ ├── c-ellipsis.spec.js.snap │ │ │ └── c-empty-data-table-columns.spec.js.snap │ │ ├── c-ellipsis.spec.js │ │ └── c-empty-data-table-columns.spec.js │ └── widgets │ │ ├── __snapshots__ │ │ └── widget-wrapper.spec.js.snap │ │ ├── alarm │ │ ├── __snapshots__ │ │ │ ├── alarm-general-list.spec.js.snap │ │ │ └── alarms-list.spec.js.snap │ │ ├── actions │ │ │ ├── __snapshots__ │ │ │ │ ├── actions-panel.spec.js.snap │ │ │ │ └── mass-actions-panel.spec.js.snap │ │ │ ├── actions-panel.spec.js │ │ │ └── mass-actions-panel.spec.js │ │ ├── alarm-general-list.spec.js │ │ ├── alarms-list.spec.js │ │ ├── column-formatting │ │ │ ├── __snapshots__ │ │ │ │ ├── alarm-column-cell-popup-body.spec.js.snap │ │ │ │ ├── alarm-column-cell.spec.js.snap │ │ │ │ ├── alarm-column-value-extra-details.spec.js.snap │ │ │ │ ├── alarm-column-value-status.spec.js.snap │ │ │ │ └── alarm-column-value.spec.js.snap │ │ │ ├── alarm-column-cell-popup-body.spec.js │ │ │ ├── alarm-column-cell.spec.js │ │ │ ├── alarm-column-value-extra-details.spec.js │ │ │ ├── alarm-column-value-status.spec.js │ │ │ ├── alarm-column-value.spec.js │ │ │ └── extra-details │ │ │ │ ├── __snapshots__ │ │ │ │ ├── extra-details-ack.spec.js.snap │ │ │ │ ├── extra-details-canceled.spec.js.snap │ │ │ │ ├── extra-details-children.spec.js.snap │ │ │ │ ├── extra-details-close-delay-value.spec.js.snap │ │ │ │ ├── extra-details-close-delay.spec.js.snap │ │ │ │ ├── extra-details-last-comment.spec.js.snap │ │ │ │ ├── extra-details-parents.spec.js.snap │ │ │ │ ├── extra-details-pbehavior.spec.js.snap │ │ │ │ ├── extra-details-snooze.spec.js.snap │ │ │ │ └── extra-details-ticket.spec.js.snap │ │ │ │ ├── extra-details-ack.spec.js │ │ │ │ ├── extra-details-canceled.spec.js │ │ │ │ ├── extra-details-children.spec.js │ │ │ │ ├── extra-details-close-delay-value.spec.js │ │ │ │ ├── extra-details-close-delay.spec.js │ │ │ │ ├── extra-details-last-comment.spec.js │ │ │ │ ├── extra-details-parents.spec.js │ │ │ │ ├── extra-details-pbehavior.spec.js │ │ │ │ ├── extra-details-snooze.spec.js │ │ │ │ └── extra-details-ticket.spec.js │ │ ├── entity-gantt │ │ │ ├── __snapshots__ │ │ │ │ └── entity-gantt.spec.js.snap │ │ │ └── entity-gantt.spec.js │ │ ├── expand-panel │ │ │ ├── __snapshots__ │ │ │ │ ├── alarms-expand-panel-children.spec.js.snap │ │ │ │ ├── alarms-expand-panel-entity-enrichments.spec.js.snap │ │ │ │ ├── alarms-expand-panel-more-infos.spec.js.snap │ │ │ │ └── alarms-expand-panel.spec.js.snap │ │ │ ├── alarms-expand-panel-children.spec.js │ │ │ ├── alarms-expand-panel-entity-enrichments.spec.js │ │ │ ├── alarms-expand-panel-more-infos.spec.js │ │ │ ├── alarms-expand-panel-remediation.spec.js │ │ │ └── alarms-expand-panel.spec.js │ │ ├── forms │ │ │ ├── __snapshots__ │ │ │ │ ├── ack-event-form.spec.js.snap │ │ │ │ ├── info-popup-form.spec.js.snap │ │ │ │ ├── link-meta-alarm-form.spec.js.snap │ │ │ │ └── snooze-event-form.spec.js.snap │ │ │ ├── ack-event-form.spec.js │ │ │ ├── info-popup-form.spec.js │ │ │ ├── link-meta-alarm-form.spec.js │ │ │ └── snooze-event-form.spec.js │ │ ├── headers-formatting │ │ │ ├── __snapshots__ │ │ │ │ ├── alarm-header-cell.spec.js.snap │ │ │ │ └── alarm-header-priority.spec.js.snap │ │ │ ├── alarm-header-cell.spec.js │ │ │ └── alarm-header-priority.spec.js │ │ ├── partials │ │ │ ├── __snapshots__ │ │ │ │ ├── alarms-list-remediation-instructions-filter.spec.js.snap │ │ │ │ ├── alarms-list-row-instructions-icon.spec.js.snap │ │ │ │ ├── alarms-list-row.spec.js.snap │ │ │ │ └── alarms-list-table.spec.js.snap │ │ │ ├── alarms-list-remediation-instructions-filter.spec.js │ │ │ ├── alarms-list-row-instructions-icon.spec.js │ │ │ ├── alarms-list-row.spec.js │ │ │ └── alarms-list-table.spec.js │ │ └── timeline │ │ │ ├── __snapshots__ │ │ │ ├── alarm-timeline-days.spec.js.snap │ │ │ ├── alarm-timeline-step-expand.spec.js.snap │ │ │ ├── alarm-timeline-step-icon.spec.js.snap │ │ │ ├── alarm-timeline-step-title.spec.js.snap │ │ │ ├── alarm-timeline-step.spec.js.snap │ │ │ ├── alarm-timeline-steps.spec.js.snap │ │ │ └── alarm-timeline.spec.js.snap │ │ │ ├── alarm-timeline-days.spec.js │ │ │ ├── alarm-timeline-step-expand.spec.js │ │ │ ├── alarm-timeline-step-icon.spec.js │ │ │ ├── alarm-timeline-step-title.spec.js │ │ │ ├── alarm-timeline-step.spec.js │ │ │ ├── alarm-timeline-steps.spec.js │ │ │ └── alarm-timeline.spec.js │ │ ├── availability │ │ ├── __snapshots__ │ │ │ └── availability-widget.spec.js.snap │ │ ├── availability-widget.spec.js │ │ └── partials │ │ │ ├── __snapshots__ │ │ │ └── availability-widget-filters.spec.js.snap │ │ │ └── availability-widget-filters.spec.js │ │ ├── chart │ │ ├── __snapshots__ │ │ │ ├── bar-chart-widget.spec.js.snap │ │ │ ├── entity-chart-widget.spec.js.snap │ │ │ ├── line-chart-widget.spec.js.snap │ │ │ ├── numbers-widget.spec.js.snap │ │ │ └── pie-chart-widget.spec.js.snap │ │ ├── bar-chart-widget.spec.js │ │ ├── entity-chart-widget.spec.js │ │ ├── line-chart-widget.spec.js │ │ ├── numbers-widget.spec.js │ │ ├── partials │ │ │ ├── __image_snapshots__ │ │ │ │ ├── bar-chart-metrics-with-empty-dat-2-snap.png │ │ │ │ ├── bar-chart-metrics-with-history-dat-2-snap.png │ │ │ │ ├── bar-chart-metrics-with-metric-2-snap.png │ │ │ │ ├── bar-chart-metrics-with-stacked-history-dat-2-snap.png │ │ │ │ ├── bar-chart-metrics-with-stacked-metric-2-snap.png │ │ │ │ ├── line-chart-metrics-with-custom-prop-2-snap.png │ │ │ │ ├── line-chart-metrics-with-empty-dat-2-snap.png │ │ │ │ ├── line-chart-metrics-with-history-data-prop-2-snap.png │ │ │ │ ├── pie-chart-metrics-with-custom-prop-2-snap.png │ │ │ │ ├── pie-chart-metrics-with-empty-dat-2-snap.png │ │ │ │ └── pie-chart-metrics-with-number-labels-prop-2-snap.png │ │ │ ├── __snapshots__ │ │ │ │ ├── bar-chart-metrics.spec.js.snap │ │ │ │ ├── line-chart-metrics.spec.js.snap │ │ │ │ ├── numbers-metrics-item.spec.js.snap │ │ │ │ ├── numbers-metrics.spec.js.snap │ │ │ │ └── pie-chart-metrics.spec.js.snap │ │ │ ├── bar-chart-metrics.spec.js │ │ │ ├── line-chart-metrics.spec.js │ │ │ ├── numbers-metrics-item.spec.js │ │ │ ├── numbers-metrics.spec.js │ │ │ └── pie-chart-metrics.spec.js │ │ └── pie-chart-widget.spec.js │ │ ├── context │ │ └── columns-formatting │ │ │ ├── __snapshots__ │ │ │ ├── entity-column-event-statistics.spec.js.snap │ │ │ └── entity-column-pbehavior-info.spec.js.snap │ │ │ ├── entity-column-event-statistics.spec.js │ │ │ └── entity-column-pbehavior-info.spec.js │ │ ├── map │ │ ├── __snapshots__ │ │ │ └── map.spec.js.snap │ │ ├── map.spec.js │ │ └── partial │ │ │ ├── __snapshots__ │ │ │ └── map-breadcrumbs.spec.js.snap │ │ │ └── map-breadcrumbs.spec.js │ │ ├── partials │ │ ├── __snapshots__ │ │ │ └── kpi-widget-filters.spec.js.snap │ │ └── kpi-widget-filters.spec.js │ │ ├── service-weather │ │ ├── __snapshots__ │ │ │ ├── alarm-pbehavior-counters.spec.js.snap │ │ │ ├── alarm-state-counters.spec.js.snap │ │ │ ├── impact-state-indicator.spec.js.snap │ │ │ ├── service-pause-event-form.spec.js.snap │ │ │ ├── service-weather-item.spec.js.snap │ │ │ └── service-weather.spec.js.snap │ │ ├── alarm-pbehavior-counters.spec.js │ │ ├── alarm-state-counters.spec.js │ │ ├── impact-state-indicator.spec.js │ │ ├── service-pause-event-form.spec.js │ │ ├── service-weather-item.spec.js │ │ └── service-weather.spec.js │ │ ├── text │ │ ├── __snapshots__ │ │ │ └── text.spec.js.snap │ │ └── text.spec.js │ │ └── widget-wrapper.spec.js │ ├── data │ ├── actions-panel.js │ ├── alarm.js │ ├── common.js │ ├── date.js │ ├── request-data.js │ └── treeview.js │ ├── helpers │ ├── date │ │ ├── date.spec.js │ │ └── duration.spec.js │ ├── entities │ │ ├── alarm │ │ │ └── query.spec.js │ │ ├── link │ │ │ └── list.spec.js │ │ ├── remediation │ │ │ └── instruction-execution │ │ │ │ └── form.spec.js │ │ └── widget │ │ │ └── query.spec.js │ ├── forms │ │ └── pattern.spec.js │ ├── handlebars.spec.js │ ├── json.spec.js │ ├── metrics.spec.js │ └── vue-base.spec.js │ ├── i18n │ └── messages.spec.js │ ├── jest.assets.js │ ├── jest.global-setup.js │ ├── jest.html.js │ ├── jest.serializer-vue.js │ ├── jest.setup-test-framework.js │ ├── jest.svg.js │ ├── jest.transform.js │ ├── jest.vue.js │ ├── mixins │ ├── entities │ │ ├── corporate-pattern.spec.js │ │ ├── event-filter.spec.js │ │ ├── map.spec.js │ │ └── pattern.spec.js │ └── widget │ │ ├── columns │ │ ├── alarm.spec.js │ │ └── entity-info-property.spec.js │ │ └── periodic-refresh.spec.js │ ├── mocks │ ├── flowchartAssets.js │ ├── imageMock.js │ ├── styleMock.js │ └── vuetifyIcons.js │ ├── plugins │ ├── sidebar │ │ ├── components │ │ │ ├── __snapshots__ │ │ │ │ └── sidebar-wrapper.spec.js.snap │ │ │ ├── sidebar-wrapper.spec.js │ │ │ └── the-sidebar.spec.js │ │ └── store │ │ │ └── index.spec.js │ └── vuetify │ │ └── components │ │ └── v-data-table │ │ ├── __snapshots__ │ │ └── v-data-table.spec.js.snap │ │ └── v-data-table.spec.js │ ├── store │ ├── modules │ │ ├── active-view │ │ │ └── active-widgets.spec.js │ │ ├── entities │ │ │ ├── alarm.spec.js │ │ │ └── pattern.spec.js │ │ └── query │ │ │ └── query.spec.js │ └── plugins │ │ └── entities │ │ └── getters.spec.js │ ├── stubs │ ├── button.js │ ├── form.js │ ├── input.js │ ├── list.js │ ├── modal.js │ ├── mq.js │ └── vuetify.js │ ├── utils │ ├── array.js │ ├── duration.js │ ├── events.js │ ├── mock-hooks.js │ ├── object.js │ ├── patterns.js │ ├── settings.js │ ├── store.js │ ├── table.js │ └── vue.js │ └── views │ ├── __snapshots__ │ └── login.spec.js.snap │ ├── admin │ ├── __snapshots__ │ │ ├── maps.spec.js.snap │ │ └── tags.spec.js.snap │ ├── maps.spec.js │ └── tags.spec.js │ ├── login.spec.js │ └── profile │ ├── __snapshots__ │ └── patterns.spec.js.snap │ └── patterns.spec.js ├── tools ├── load-env.js ├── prepare-commit-msg.js └── update-field-directive.js ├── vue.config.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/.gitattributes -------------------------------------------------------------------------------- /community/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.dockerignore -------------------------------------------------------------------------------- /community/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.editorconfig -------------------------------------------------------------------------------- /community/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.env -------------------------------------------------------------------------------- /community/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.gitignore -------------------------------------------------------------------------------- /community/.gitlab-ci-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.gitlab-ci-builder.yml -------------------------------------------------------------------------------- /community/.gitlab-ci-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.gitlab-ci-common.yml -------------------------------------------------------------------------------- /community/.gitlab-ci-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.gitlab-ci-template.yml -------------------------------------------------------------------------------- /community/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/.gitlab-ci.yml -------------------------------------------------------------------------------- /community/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/CHANGELOG.md -------------------------------------------------------------------------------- /community/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/COPYING -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/README.md -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/.env -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/.gitignore -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/Makefile -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/README.md -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/canopsis.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/canopsis.env -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/community.env: -------------------------------------------------------------------------------- 1 | CPS_EDITION=community 2 | -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/docker-compose.yml -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/files/mongo/0-keyFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/files/mongo/0-keyFile.sh -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/files/mongo/create_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/files/mongo/create_user.js -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/files/postgresql/canopsis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/files/postgresql/canopsis.sh -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/mongodb.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/mongodb.env -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/rabbitmq.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/rabbitmq.env -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/rabbitmq_docker_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/rabbitmq_docker_update.py -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/redis.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/redis.env -------------------------------------------------------------------------------- /community/deployment/canopsis/docker/timescaledb.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/deployment/canopsis/docker/timescaledb.env -------------------------------------------------------------------------------- /community/dist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/dist/Makefile -------------------------------------------------------------------------------- /community/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/dist/README.md -------------------------------------------------------------------------------- /community/dist/almalinux-8-canopsis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/dist/almalinux-8-canopsis.cfg -------------------------------------------------------------------------------- /community/dist/almalinux-9-canopsis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/dist/almalinux-9-canopsis.cfg -------------------------------------------------------------------------------- /community/dist/canopsis-almalinux-8-x86_64.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/dist/canopsis-almalinux-8-x86_64.spec -------------------------------------------------------------------------------- /community/dist/canopsis-almalinux-9-x86_64.spec: -------------------------------------------------------------------------------- 1 | canopsis-almalinux-8-x86_64.spec -------------------------------------------------------------------------------- /community/env-release.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/env-release.example.sh -------------------------------------------------------------------------------- /community/go-engines-community/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/.dockerignore -------------------------------------------------------------------------------- /community/go-engines-community/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/.gitignore -------------------------------------------------------------------------------- /community/go-engines-community/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/COPYING -------------------------------------------------------------------------------- /community/go-engines-community/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/Dockerfile -------------------------------------------------------------------------------- /community/go-engines-community/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/Makefile -------------------------------------------------------------------------------- /community/go-engines-community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/README.md -------------------------------------------------------------------------------- /community/go-engines-community/cmd/amqp2tty/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/amqp2tty/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/canopsis-api-community/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/canopsis-api-community/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/canopsis-reconfigure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/canopsis-reconfigure/README.md -------------------------------------------------------------------------------- /community/go-engines-community/cmd/canopsis-reconfigure/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/canopsis-reconfigure/flags.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/canopsis-reconfigure/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/canopsis-reconfigure/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-action/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-action/dependencies.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-action/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-action/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-axe/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-axe/dependencies.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-axe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-axe/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-che/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-che/Dockerfile -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-che/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-che/README.md -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-che/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-che/dependencies.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-che/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-che/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-fifo/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-fifo/dependencies.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-fifo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-fifo/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-pbehavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-pbehavior/README.md -------------------------------------------------------------------------------- /community/go-engines-community/cmd/engine-pbehavior/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/engine-pbehavior/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/mongo-migrations/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/mongo-migrations/flags.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/mongo-migrations/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/mongo-migrations/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/prometheus-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/prometheus-exporter/README.md -------------------------------------------------------------------------------- /community/go-engines-community/cmd/prometheus-exporter/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/prometheus-exporter/flags.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/prometheus-exporter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/prometheus-exporter/main.go -------------------------------------------------------------------------------- /community/go-engines-community/cmd/ready/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/cmd/ready/main.go -------------------------------------------------------------------------------- /community/go-engines-community/config/api/security/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/config/api/security/config.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/fixtures/alarm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/database/fixtures/alarm.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/fixtures/color_theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/database/fixtures/color_theme.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/fixtures/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/database/fixtures/config.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/fixtures/pbehavior.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/database/fixtures/pbehavior.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/fixtures/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/database/fixtures/user.yml -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20210903160403_create_message_rate_statistic_minute_collection_down.js: -------------------------------------------------------------------------------- 1 | db.message_rate_statistic_minute.drop(); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220221145037_remove_external_data_entity_down.js: -------------------------------------------------------------------------------- 1 | //migration cannot be reverted 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220221145037_remove_external_data_entity_up.js: -------------------------------------------------------------------------------- 1 | db.eventfilter.deleteMany({"external_data.entity": {$exists: true}}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220221145145_migrate_change_entity_rules_down.js: -------------------------------------------------------------------------------- 1 | db.eventfilter.deleteMany({type: "change_entity"}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220224111147_create_pattern_index_down.js: -------------------------------------------------------------------------------- 1 | db.pattern.dropIndex("is_corporate_1_author_1"); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220708145048_add_connector_to_entities_down.js: -------------------------------------------------------------------------------- 1 | db.default_entities.updateMany({}, {$unset: {connector: ""}}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20220708146000_update_component_to_entities_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20221208225226_add_soft_deleted_index_down.js: -------------------------------------------------------------------------------- 1 | db.default_entities.dropIndex("soft_deleted_1"); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20221219165517_add_view_playlist_permissions_to_admin_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20221222190336_add_v_parents_index_to_resolved_alarms_down.js: -------------------------------------------------------------------------------- 1 | db.resolved_alarms.dropIndex("v.parents_1"); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230109134821_add_color_to_pbehavior_type_down.js: -------------------------------------------------------------------------------- 1 | db.pbehavior_type.updateMany({}, {$unset: {color: ""}}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230320153348_migrate_widget_parameters_down.js: -------------------------------------------------------------------------------- 1 | //do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230322191458_update_priorities_down.js: -------------------------------------------------------------------------------- 1 | //do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230324105056_add_chart_permissions_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230406111325_add_share_token_permission_to_admin_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230707182117_create_type_service_index_for_entities_down.js: -------------------------------------------------------------------------------- 1 | db.default_entities.dropIndex("type_service_1") 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20230707183844_migrate_entity_service_output_down.js: -------------------------------------------------------------------------------- 1 | db.entity_service_counters.deleteMany({}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20231017110021_disable_rules_with_old_patterns_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20231124153221_drop_instruction_week_stats_up.js: -------------------------------------------------------------------------------- 1 | db.instruction_week_stats.drop(); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20240104104756_drop_message_rate_statistic_minute_up.js: -------------------------------------------------------------------------------- 1 | db.message_rate_statistic_minute.drop(); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20240401095427_add_alarm_count_field_to_pbehavior_down.js: -------------------------------------------------------------------------------- 1 | db.pbehavior.updateMany({}, {$unset: {alarm_count: ""}}); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20240430130339_fix_password_hash_case_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20240704182306_role_collection_create_unique_name_index_down.js: -------------------------------------------------------------------------------- 1 | db.role.dropIndex("name_1"); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20241016154326_fix_alarm_count_field_in_pbehavior_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20241030112843_add_internal_tag_labels_to_color_collection_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20241206193312_metaalarm_output_template_mandatory_down.js: -------------------------------------------------------------------------------- 1 | // do nothing -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250114164817_fix_entity_soft_delete_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250114171150_add_soft_deleted_index_to_meta_alarm_rules_down.js: -------------------------------------------------------------------------------- 1 | db.meta_alarm_rules.dropIndex("soft_deleted_1"); 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250128184825_add_cancel_delay_job_indexes_down.js: -------------------------------------------------------------------------------- 1 | db.close_delay_job.drop() 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250228125350_remove_infos_rule_version_field_from_alarms_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250306122307_update_search_in_userpreferences_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/migrations/20250815203233_external_data_column_configs_down.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/19_create_entity_category_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS entity_categories; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/20_alter_continuous_aggregates_enable_real_time_agg.down.sql: -------------------------------------------------------------------------------- 1 | -- It's not supposed to turn off real time aggregates. 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/22_serial_name_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS serial_name; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/22_serial_name_table.up.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS serial_name ( 2 | id VARCHAR(255) PRIMARY KEY 3 | ); 4 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/23_create_action_log_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS action_log; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/25_add_externaldata_schema.down.sql: -------------------------------------------------------------------------------- 1 | DROP SCHEMA IF EXISTS externaldata; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/25_add_externaldata_schema.up.sql: -------------------------------------------------------------------------------- 1 | CREATE SCHEMA IF NOT EXISTS externaldata; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/3_drop_user_logins_table.up.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS user_logins; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/6_add_connector_to_entities.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE entities DROP COLUMN connector; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/postgres_migrations/6_add_connector_to_entities.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE entities ADD COLUMN connector VARCHAR(500) NULL; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/tech_postgres_migrations/5_add_export_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS export; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/tech_postgres_migrations/6_add_last_ping_to_export_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE export DROP COLUMN last_ping; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/database/tech_postgres_migrations/6_add_last_ping_to_export_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE export ADD COLUMN last_ping TIMESTAMP; 2 | -------------------------------------------------------------------------------- /community/go-engines-community/go-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/go-test.sh -------------------------------------------------------------------------------- /community/go-engines-community/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/go.mod -------------------------------------------------------------------------------- /community/go-engines-community/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/go.sum -------------------------------------------------------------------------------- /community/go-engines-community/lib/action/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/action/default.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/action/message_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/action/message_processor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/amqp/amqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/amqp/amqp.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/amqp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/amqp/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/amqp/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/amqp/publisher.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/amqp/reconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/amqp/reconnect.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/account/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/account/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/account/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/account/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/account/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/account/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/account/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/account/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/export.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/models_easyjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/models_easyjson.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/mongo_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/mongo_query.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/mongo_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/mongo_query_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/store_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/watcher.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarm/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarm/watcher_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmaction/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmaction/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmaction/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmaction/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmaction/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmaction/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmtag/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmtag/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmtag/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmtag/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmtag/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmtag/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/alarmtag/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/alarmtag/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/appinfo/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/appinfo/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/appinfo/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/appinfo/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/appinfo/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/appinfo/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/appinfo/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/appinfo/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/associativetable/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/associativetable/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/associativetable/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/associativetable/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/associativetable/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/associativetable/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/auth/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/auth/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/auth/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/auth/constants.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/auth/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/auth/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/author/author.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/author/author.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/author/author_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/author/author_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/broadcastmessage/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/broadcastmessage/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/broadcastmessage/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/broadcastmessage/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/broadcastmessage/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/broadcastmessage/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/bulk/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/bulk/handler.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/colortheme/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/colortheme/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/colortheme/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/colortheme/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/colortheme/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/colortheme/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/colortheme/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/colortheme/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/common/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/common/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/common/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/common/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/common/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/common/pattern.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/common/utils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/common/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/common/validators.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/publisher.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/reporter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/contextgraph/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/contextgraph/worker.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/datastorage/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/datastorage/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/datastorage/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/datastorage/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/datastorage/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/datastorage/validation.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/dbexport/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/dbexport/exporter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/dbexport/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/dbexport/file.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/dbexport/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/dbexport/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/default.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/docs/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/docs/handler.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/docs/schemas_swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/docs/schemas_swagger.yaml -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/docs/swagger.yaml -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/dbquery/dbquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/dbquery/dbquery.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/models_easyjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/models_easyjson.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/mongo_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/mongo_query.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/mongo_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/mongo_query_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entity/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entity/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitybasic/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitybasic/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitybasic/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitybasic/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitybasic/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitybasic/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitybasic/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitybasic/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitybasic/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitybasic/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycategory/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycategory/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycategory/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycategory/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycategory/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycategory/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycategory/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycategory/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycomment/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycomment/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycomment/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycomment/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entitycomment/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entitycomment/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entityinfosproperty/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entityinfosproperty/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entityservice/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entityservice/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entityservice/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entityservice/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entityservice/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entityservice/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/entityservice/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/entityservice/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/event/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/event/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/event/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/event/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/eventfilter/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/eventfilter/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/eventfilter/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/eventfilter/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/eventfilter/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/eventfilter/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/eventfilter/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/eventfilter/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/exdate/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/exdate/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/exdate/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/exdate/validators.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/export/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/export/csv.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/export/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/export/cursor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/export/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/export/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/export/task_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/export/task_executor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/exportconfiguration/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/exportconfiguration/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/externaldatatable/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/externaldatatable/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/externaldatatable/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/externaldatatable/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/file/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/file/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/file/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/file/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/file/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/file/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/flags.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/flappingrule/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/flappingrule/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/flappingrule/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/flappingrule/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/flappingrule/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/flappingrule/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/flappingrule/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/flappingrule/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/healthcheck/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/healthcheck/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/healthcheck/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/healthcheck/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/healthcheck/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/healthcheck/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/healthcheck/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/healthcheck/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/icon/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/icon/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/icon/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/icon/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/icon/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/icon/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/idlerule/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/idlerule/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/idlerule/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/idlerule/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/idlerule/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/idlerule/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/idlerule/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/idlerule/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/linkrule/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/linkrule/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/linkrule/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/linkrule/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/linkrule/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/linkrule/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/linkrule/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/linkrule/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/logger/action_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/logger/action_logger.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/logger/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/logger/helpers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/logger/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/logger/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/maintenance/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/maintenance/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/maintenance/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/maintenance/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/maintenance/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/maintenance/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/messageratestats/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/messageratestats/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/messageratestats/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/messageratestats/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/messageratestats/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/messageratestats/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/auth.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/auth_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/authorize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/authorize.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/cache.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/logger.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/only_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/only_auth.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/recovery.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/middleware/session_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/middleware/session_auth.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/notification/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/notification/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/notification/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/notification/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/notification/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/notification/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pagination/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pagination/pagination.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/password/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/password/consts.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pattern/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pattern/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pattern/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pattern/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pattern/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pattern/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pattern/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pattern/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/api_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/mongo_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/mongo_query.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehavior/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehavior/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorcomment/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorcomment/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorcomment/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorcomment/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorcomment/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorcomment/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorexception/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorexception/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorics/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorics/handlers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorics/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorics/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorics/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorics/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorreason/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorreason/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorreason/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorreason/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorreason/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorreason/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviorreason/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviorreason/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviortype/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviortype/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviortype/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviortype/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviortype/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviortype/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/pbehaviortype/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/pbehaviortype/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/permission/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/permission/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/permission/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/permission/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/permission/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/permission/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/playlist/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/playlist/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/playlist/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/playlist/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/playlist/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/playlist/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/priority/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/priority/update.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/resolverule/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/resolverule/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/resolverule/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/resolverule/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/resolverule/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/resolverule/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/resolverule/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/resolverule/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/resolverule/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/resolverule/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/role/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/role/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/role/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/role/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/role/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/role/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/role/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/role/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/role/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/role/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/router.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/scenario/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/scenario/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/scenario/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/scenario/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/scenario/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/scenario/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/scenario/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/scenario/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/security.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/security/permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/security/permissions.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/security/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/security/strategy.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/security/token_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/security/token_service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/serviceweather/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/serviceweather/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/serviceweather/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/serviceweather/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/serviceweather/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/serviceweather/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/sessionauth/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/sessionauth/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/sessionauth/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/sessionauth/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/sharetoken/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/sharetoken/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/sharetoken/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/sharetoken/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/sharetoken/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/sharetoken/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/statesettings/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/statesettings/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/statesettings/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/statesettings/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/statesettings/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/statesettings/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/statesettings/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/statesettings/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/statesettings/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/statesettings/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/swaggerui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/swaggerui/index.css -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/swaggerui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/swaggerui/index.html -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/swaggerui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/swaggerui/swagger-ui.css -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/swaggerui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/swaggerui/swagger-ui.js -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/techmetrics/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/techmetrics/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/techmetrics/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/techmetrics/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/techmetrics/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/techmetrics/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/helpers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/template/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/template/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/user/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/user/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/user/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/user/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/user/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/user/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/user/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/user/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/userpreferences/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/userpreferences/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/userpreferences/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/userpreferences/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/userpreferences/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/userpreferences/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/validation/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/validation/parser.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/validators.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/view/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/view/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/view/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/view/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/view/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/view/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/view/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/view/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/view/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/view/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewgroup/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewgroup/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewgroup/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewgroup/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewgroup/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewgroup/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewgroup/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewgroup/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewgroup/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewgroup/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewtab/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewtab/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewtab/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewtab/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewtab/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewtab/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/viewtab/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/viewtab/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/authorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/authorizer.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/consts.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/hub.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/hub_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/websocket/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/websocket/wrapper.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widget/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widget/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widget/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widget/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widget/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widget/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widget/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widget/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widget/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widget/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgetfilter/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgetfilter/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgetfilter/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgetfilter/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgetfilter/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgetfilter/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgetfilter/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgetfilter/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgetfilter/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgetfilter/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgettemplate/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgettemplate/api.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgettemplate/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgettemplate/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/widgettemplate/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/widgettemplate/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/workers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/workers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/api/workers/workers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/api/workers/workers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/default.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/ack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/ack.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/ack_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/ack_remove.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/activate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/activate.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/assoc_ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/assoc_ticket.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/autowebhook_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/autowebhook_fail.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/autowebhook_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/autowebhook_start.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/cancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/cancel.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/change_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/change_state.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/check.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/combined.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/combined.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/comment.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/container.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/entity_toggled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/entity_toggled.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/entity_updated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/entity_updated.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/forward.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/instruction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/instruction.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/junit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/junit.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/meta_alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/meta_alarm.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/meta_alarm_attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/meta_alarm_attach.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/meta_alarm_detach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/meta_alarm_detach.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/mongo_queries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/mongo_queries.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/no_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/no_events.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/pbh_enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/pbh_enter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/pbh_leave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/pbh_leave.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/resolve_cancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/resolve_cancel.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/resolve_close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/resolve_close.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/resolve_deleted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/resolve_deleted.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/snooze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/snooze.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/trigger.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/uncancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/uncancel.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/unsnooze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/unsnooze.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/update_counters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/update_counters.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/update_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/update_helpers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/update_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/update_status.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/webhook_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/webhook_complete.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/webhook_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/webhook_fail.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/event/webhook_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/event/webhook_start.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/external_tag_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/external_tag_cleaner.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/message_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/message_processor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/message_processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/message_processor_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/periodical_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/periodical_worker.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/periodical_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/periodical_worker_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/axe/rpc_message_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/axe/rpc_message_processor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/action/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/action/action.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/action/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/action/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/action/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/action/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/action/worker_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/action/worker_pool.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarm/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarm/cleaner.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarm/cleaner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarm/cleaner_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarm/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarm/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarm/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarm/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarm/service_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/alarmtag/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/alarmtag/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/closedelay/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/closedelay/job.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/closedelay/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/closedelay/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/adapter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/config.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/constants.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/database.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/healthcheck.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/maintenance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/maintenance.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/rabbitmq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/rabbitmq.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/config/remediation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/config/remediation.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/correlation/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/correlation/const.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/correlation/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/correlation/rule.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/correlation/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/correlation/state.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/datetime/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/datetime/duration.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/datetime/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/datetime/time.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/debug/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/debug/trace.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/encoding/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/encoding/error.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/encoding/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/encoding/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/encoding/json/json.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/encoding/xml/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/encoding/xml/xml.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/engine.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/engine_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/error.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/rpc_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/rpc_client.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/rpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/rpc_server.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/engine/run_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/engine/run_info.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/entity/archiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/entity/archiver.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/entity/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/entity/cleaner.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/entity/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/entity/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/event/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/event/generator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/eventfilter/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/eventfilter/errors.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/eventfilter/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/eventfilter/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/eventfilter/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/eventfilter/parse.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/flag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/flag/flag.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/flappingrule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/flappingrule/rule.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/globals.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/healthcheck/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/healthcheck/server.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/idlealarm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/idlealarm/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/idlerule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/idlerule/rule.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/js/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/js/executor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/js/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/js/executor_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/link/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/link/generator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/link/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/link/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/link/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/link/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/metrics/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/metrics/const.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/metrics/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/metrics/sender.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/alarm.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/conditions.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/db/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/db/alarm.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/db/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/db/entity.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/db/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/db/event.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/entity.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pattern/event.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pattern/pbehavior_info.go: -------------------------------------------------------------------------------- 1 | package pattern 2 | 3 | type PbehaviorInfo [][]FieldCondition 4 | -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/adapter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/cleaner.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/interval.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/reason.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/reason.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/rrule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/rrule.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/pbehavior/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/pbehavior/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/perfdata/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/perfdata/filter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/priority/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/priority/mongo.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/request/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/request/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/request/request.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/request/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/request/token.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/resolverule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/resolverule/rule.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/rpc/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/rpc/events.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/savedpattern/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/savedpattern/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/statesetting/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/statesetting/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/statistics/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/statistics/events.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/techmetrics/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/techmetrics/const.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/techmetrics/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/techmetrics/sender.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/template/template.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/action.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/alarm_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/alarm_change.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/alarm_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/alarm_tag.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/alarm_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/alarm_value.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/basic.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/bson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/bson.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/bson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/bson_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/event.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/exdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/exdate.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/types/utils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/version.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/view/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/view/adapter.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/view/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/view/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/view/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/view/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/view/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/view/template.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/canopsis/webhook/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/canopsis/webhook/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/default.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/component.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/connector.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/container.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/helpers.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/resource.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/event/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/event/service.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/message_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/message_processor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/options.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/soft_delete_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/che/soft_delete_worker.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/che/testdata/fixtures/new_entity.yml: -------------------------------------------------------------------------------- 1 | default_entities: {} 2 | -------------------------------------------------------------------------------- /community/go-engines-community/lib/depmake/depmake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/depmake/depmake.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/expression/parser/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/expression/parser/models.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/expression/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/expression/parser/parser.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/fifo/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/fifo/default.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/fifo/message_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/fifo/message_processor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/file/etag_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/file/etag_encoder.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/file/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/file/interface.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/file/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/file/storage.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/file/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/file/utils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/filemask/filemask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/filemask/filemask.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/fixtures/faker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/fixtures/faker.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/fixtures/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/fixtures/loader.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/fixtures/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/fixtures/parser.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/http/doer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/http/doer.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/http/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/http/response.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/http/response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/http/response_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/http/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/http/utils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/ics/calendar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/ics/calendar.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/ics/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/ics/event.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/keymutex/keymutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/keymutex/keymutex.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/keymutex/keymutex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/keymutex/keymutex_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/log/logger.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/command.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/create.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/down.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/down.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/skip.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/status.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/migration/cli/up.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/migration/cli/up.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/collections.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/commands_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/commands_register.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/cursor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/globals.go: -------------------------------------------------------------------------------- 1 | package mongo 2 | 3 | const ( 4 | EnvURL = "CPS_MONGO_URL" 5 | ) 6 | -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/goja/js_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/goja/js_collection.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/goja/js_cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/goja/js_cursor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/goja/js_database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/goja/js_database.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/goja/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/goja/reflect.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/goja/reflect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/goja/reflect_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/mongo.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/mongosh/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/mongosh/helpers.js -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/script_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/script_executor.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/mongo/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/mongo/sort.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/postgres/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/postgres/dump.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/postgres/pool_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/postgres/pool_provider.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/postgres/postgres.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/postgres/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/postgres/postgres_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/redis/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/redis/const.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/redis/redis.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/redis/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/redis/redis_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/redis/redislock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/redis/redislock.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/reflect/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/reflect/reflect.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/config.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/constants.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/enforcer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/enforcer.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/model/model.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/model_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/password/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/password/bcrypt.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/provider.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/provider/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/provider/base.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/provider/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/provider/ldap.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/session/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/session/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/tls/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/tls/verify.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/token/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/token/generator.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/security/token/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/security/token/store.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/testutils/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/testutils/testutils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/testutils/testutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/testutils/testutils_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/timespan/timespan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/timespan/timespan.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/timespan/timespan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/timespan/timespan_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/fields.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/fields_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/ready/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/ready/ready.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/reflect.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/slice.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/slice_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/snake_case.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/snake_case_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/time.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/utils.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/utils_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/wrapper_regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/wrapper_regex.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/utils/wrapper_regex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/utils/wrapper_regex_test.go -------------------------------------------------------------------------------- /community/go-engines-community/lib/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/lib/validator/validator.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/amqp/amqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/amqp/amqp.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/api/alarm/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/api/alarm/alarm.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/axe/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/axe/event/event.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/canopsis/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/canopsis/view/view.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/file/file.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/http/doer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/http/doer.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/metrics/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/metrics/sender.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/mongo/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/mongo/mongo.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/postgres/postgres.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/redis/redislock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/redis/redislock.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/security/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/security/security.go -------------------------------------------------------------------------------- /community/go-engines-community/mocks/lib/techmetrics/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/mocks/lib/techmetrics/sender.go -------------------------------------------------------------------------------- /community/go-engines-community/systemd/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/go-engines-community/systemd/canopsis.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/systemd/canopsis.service -------------------------------------------------------------------------------- /community/go-engines-community/systemd/go-engines-vars.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/go-engines-community/systemd/go-engines-vars.conf -------------------------------------------------------------------------------- /community/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/mkdocs.yml -------------------------------------------------------------------------------- /community/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /community/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/screenshot.png -------------------------------------------------------------------------------- /community/sources/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/README.md -------------------------------------------------------------------------------- /community/sources/docs/en/how-to-engine/how-to-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/how-to-engine/how-to-engine.md -------------------------------------------------------------------------------- /community/sources/docs/en/multi-axe/multi-axe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/multi-axe/multi-axe.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/all-engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/all-engines.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-action.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-axe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-axe.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-che.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-che.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-correlation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-correlation.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-dynamic-infos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-dynamic-infos.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-fifo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-fifo.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-pbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-pbehavior.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-remediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-remediation.md -------------------------------------------------------------------------------- /community/sources/docs/en/schemas/engine-webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/schemas/engine-webhook.md -------------------------------------------------------------------------------- /community/sources/docs/en/structures/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/structures/index.md -------------------------------------------------------------------------------- /community/sources/docs/en/web-api/canopsis-version-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/en/web-api/canopsis-version-api.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-administration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-administration/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-de-depannage/amqp2tty/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-de-depannage/amqp2tty/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-de-depannage/faq/log4j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-de-depannage/faq/log4j.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-de-depannage/img/tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-de-depannage/img/tab1.png -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-de-depannage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-de-depannage/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/filtres/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-developpement/filtres/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/img/authkey1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-developpement/img/authkey1.png -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/img/authkey2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-developpement/img/authkey2.png -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/img/token1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-developpement/img/token1.png -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-developpement/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-developpement/schemas: -------------------------------------------------------------------------------- 1 | ../../en/schemas/ -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-utilisation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-utilisation/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-utilisation/interface/filtres: -------------------------------------------------------------------------------- 1 | patterns/ -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-utilisation/interface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-utilisation/interface/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/guide-utilisation/services/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/guide-utilisation/services/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/img/alarm_prio_1-5-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/img/alarm_prio_1-5-8.png -------------------------------------------------------------------------------- /community/sources/docs/fr/img/alarm_prio_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/img/alarm_prio_table.png -------------------------------------------------------------------------------- /community/sources/docs/fr/img/canopsis-mkdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/img/canopsis-mkdocs.png -------------------------------------------------------------------------------- /community/sources/docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/interconnexions/Supervision/PRTG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/interconnexions/Supervision/PRTG.md -------------------------------------------------------------------------------- /community/sources/docs/fr/interconnexions/Transport/Mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/interconnexions/Transport/Mail.md -------------------------------------------------------------------------------- /community/sources/docs/fr/interconnexions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/interconnexions/index.md -------------------------------------------------------------------------------- /community/sources/docs/fr/mkdocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/mkdocs.css -------------------------------------------------------------------------------- /community/sources/docs/fr/videos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/fr/videos/index.md -------------------------------------------------------------------------------- /community/sources/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/docs/requirements.txt -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.babelrc -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.editorconfig -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.env -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.eslintignore: -------------------------------------------------------------------------------- 1 | public/scripts/* 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.eslintrc -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.gitignore -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.husky/pre-commit -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.postcssrc -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.pug-lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.pug-lintrc -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/.yarnrc.yml -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/Makefile -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/README.md -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/jest.config.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/jsconfig.json -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/package.json -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/public/favicon.ico -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/public/index.html -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/app.vue -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/components/other/external-data-table/partials/external-data-tables-list-expand-panel-list.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/config.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/features/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/filters.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/helpers/entities/action/index.js: -------------------------------------------------------------------------------- 1 | export * from './form'; 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/helpers/uid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/helpers/uid.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/helpers/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/helpers/url.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/hooks/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/hooks/auth.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/hooks/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/hooks/focus.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/hooks/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/hooks/form.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/hooks/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/hooks/i18n.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/hooks/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/hooks/vue.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/i18n/index.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/i18n/messages/en/entity-info-properties.js: -------------------------------------------------------------------------------- 1 | export default { 2 | infosKey: 'Info key', 3 | }; 4 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/i18n/messages/fr/entity-info-properties.js: -------------------------------------------------------------------------------- 1 | export default { 2 | infosKey: 'Clé d\'info', 3 | }; 4 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/main.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/mixins/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/mixins/auth.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/mixins/widget/columns/index.js: -------------------------------------------------------------------------------- 1 | export { widgetColumnsAlarmMixin } from './alarm'; 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/plugins/vuetify/styles/components/v-toolbar.scss: -------------------------------------------------------------------------------- 1 | .v-toolbar__title { 2 | font-size: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/plugins/vuetify/styles/components/v-window.scss: -------------------------------------------------------------------------------- 1 | .v-window { 2 | overflow: visible; 3 | } 4 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/router.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/store/index.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/views/home.vue -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/src/views/view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/src/views/view.vue -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/tests/e2e/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/tests/e2e/.env -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/tests/e2e/config.js: -------------------------------------------------------------------------------- 1 | module.exports.DEFAULT_PAUSE = 500; 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/tests/unit/mocks/imageMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/tests/unit/mocks/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/tools/load-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/tools/load-env.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/vue.config.js -------------------------------------------------------------------------------- /community/sources/webcore/src/canopsis-next/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capensis/canopsis/HEAD/community/sources/webcore/src/canopsis-next/yarn.lock --------------------------------------------------------------------------------