├── .code.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── LICENSE.txt ├── bkcodeai.json ├── docs ├── CONTRIBUTING.md ├── apidoc │ ├── README.md │ ├── apigw │ │ ├── README.md │ │ ├── backend │ │ │ ├── bk_apigw_resources_bk-cmdb.yaml │ │ │ ├── en │ │ │ │ ├── add_cloud_host_to_biz.md │ │ │ │ ├── batch_create_kube_namespace.md │ │ │ │ ├── batch_create_kube_node.md │ │ │ │ ├── batch_create_kube_pod.md │ │ │ │ ├── batch_create_kube_workload.md │ │ │ │ ├── batch_delete_kube_cluster.md │ │ │ │ ├── batch_delete_kube_namespace.md │ │ │ │ ├── batch_delete_kube_node.md │ │ │ │ ├── batch_delete_kube_pod.md │ │ │ │ ├── batch_delete_kube_workload.md │ │ │ │ ├── batch_update_host_all_properties.md │ │ │ │ ├── batch_update_kube_cluster.md │ │ │ │ ├── batch_update_kube_namespace.md │ │ │ │ ├── batch_update_kube_node.md │ │ │ │ ├── batch_update_kube_workload.md │ │ │ │ ├── count_biz_host_cpu.md │ │ │ │ ├── create_full_sync_cond_for_cache.md │ │ │ │ ├── create_kube_cluster.md │ │ │ │ ├── delete_cloud_host_from_biz.md │ │ │ │ ├── delete_full_sync_cond_for_cache.md │ │ │ │ ├── find_audit_by_id.md │ │ │ │ ├── find_biz_tree_brief_info.md │ │ │ │ ├── find_host_identifier_push_result.md │ │ │ │ ├── find_inst_id_rule_task_status.md │ │ │ │ ├── get_biz_brief_cache_topo.md │ │ │ │ ├── get_biz_kube_cache_topo.md │ │ │ │ ├── host_install_bk.md │ │ │ │ ├── list_cached_kube_pod_label_key.md │ │ │ │ ├── list_cached_kube_pod_label_value.md │ │ │ │ ├── list_cached_res_by_full_sync_cond.md │ │ │ │ ├── list_cached_resource_by_ids.md │ │ │ │ ├── list_full_sync_cond_for_cache.md │ │ │ │ ├── list_host_detail_topology.md │ │ │ │ ├── list_host_service_template_id.md │ │ │ │ ├── list_kube_container_by_topo.md │ │ │ │ ├── list_operation_audit.md │ │ │ │ ├── list_process_related_info.md │ │ │ │ ├── list_service_template_difference.md │ │ │ │ ├── push_host_identifier.md │ │ │ │ ├── search_hostidentifier.md │ │ │ │ ├── sync_inst_id_rule.md │ │ │ │ ├── update_full_sync_cond_for_cache.md │ │ │ │ ├── update_id_rule_incr_id.md │ │ │ │ ├── update_kube_cluster_type.md │ │ │ │ └── update_project_id.md │ │ │ └── zh │ │ │ │ ├── add_cloud_host_to_biz.md │ │ │ │ ├── batch_create_kube_namespace.md │ │ │ │ ├── batch_create_kube_node.md │ │ │ │ ├── batch_create_kube_pod.md │ │ │ │ ├── batch_create_kube_workload.md │ │ │ │ ├── batch_delete_kube_cluster.md │ │ │ │ ├── batch_delete_kube_namespace.md │ │ │ │ ├── batch_delete_kube_node.md │ │ │ │ ├── batch_delete_kube_pod.md │ │ │ │ ├── batch_delete_kube_workload.md │ │ │ │ ├── batch_update_host_all_properties.md │ │ │ │ ├── batch_update_kube_cluster.md │ │ │ │ ├── batch_update_kube_namespace.md │ │ │ │ ├── batch_update_kube_node.md │ │ │ │ ├── batch_update_kube_workload.md │ │ │ │ ├── count_biz_host_cpu.md │ │ │ │ ├── create_full_sync_cond_for_cache.md │ │ │ │ ├── create_kube_cluster.md │ │ │ │ ├── delete_cloud_host_from_biz.md │ │ │ │ ├── delete_full_sync_cond_for_cache.md │ │ │ │ ├── find_audit_by_id.md │ │ │ │ ├── find_biz_tree_brief_info.md │ │ │ │ ├── find_host_identifier_push_result.md │ │ │ │ ├── find_inst_id_rule_task_status.md │ │ │ │ ├── get_biz_brief_cache_topo.md │ │ │ │ ├── get_biz_kube_cache_topo.md │ │ │ │ ├── host_install_bk.md │ │ │ │ ├── list_cached_kube_pod_label_key.md │ │ │ │ ├── list_cached_kube_pod_label_value.md │ │ │ │ ├── list_cached_res_by_full_sync_cond.md │ │ │ │ ├── list_cached_resource_by_ids.md │ │ │ │ ├── list_full_sync_cond_for_cache.md │ │ │ │ ├── list_host_detail_topology.md │ │ │ │ ├── list_host_service_template_id.md │ │ │ │ ├── list_kube_container_by_topo.md │ │ │ │ ├── list_operation_audit.md │ │ │ │ ├── list_process_related_info.md │ │ │ │ ├── list_service_template_difference.md │ │ │ │ ├── push_host_identifier.md │ │ │ │ ├── search_hostidentifier.md │ │ │ │ ├── sync_inst_id_rule.md │ │ │ │ ├── sync_service_template_to_service_instance.md │ │ │ │ ├── update_full_sync_cond_for_cache.md │ │ │ │ ├── update_id_rule_incr_id.md │ │ │ │ ├── update_kube_cluster_type.md │ │ │ │ └── update_project_id.md │ │ ├── bin │ │ │ └── sync-apigateway.sh │ │ ├── definition.yaml │ │ ├── open │ │ │ ├── bk_apigw_resources_bk-cmdb.yaml │ │ │ ├── en │ │ │ │ ├── add_host_lock.md │ │ │ │ ├── add_host_to_business_idle.md │ │ │ │ ├── add_host_to_resource.md │ │ │ │ ├── add_host_to_resource_pool.md │ │ │ │ ├── add_instance_association.md │ │ │ │ ├── add_label_for_service_instance.md │ │ │ │ ├── batch_create_inst.md │ │ │ │ ├── batch_create_instance_association.md │ │ │ │ ├── batch_create_proc_template.md │ │ │ │ ├── batch_create_project.md │ │ │ │ ├── batch_create_quoted_inst.md │ │ │ │ ├── batch_delete_business_set.md │ │ │ │ ├── batch_delete_inst.md │ │ │ │ ├── batch_delete_project.md │ │ │ │ ├── batch_delete_quoted_inst.md │ │ │ │ ├── batch_delete_set.md │ │ │ │ ├── batch_update_business_set.md │ │ │ │ ├── batch_update_host.md │ │ │ │ ├── batch_update_inst.md │ │ │ │ ├── batch_update_project.md │ │ │ │ ├── batch_update_quoted_inst.md │ │ │ │ ├── bind_host_agent.md │ │ │ │ ├── clone_host_property.md │ │ │ │ ├── count_instance_associations.md │ │ │ │ ├── count_object_instances.md │ │ │ │ ├── create_biz_custom_field.md │ │ │ │ ├── create_business.md │ │ │ │ ├── create_business_set.md │ │ │ │ ├── create_classification.md │ │ │ │ ├── create_cloud_area.md │ │ │ │ ├── create_dynamic_group.md │ │ │ │ ├── create_inst.md │ │ │ │ ├── create_module.md │ │ │ │ ├── create_object.md │ │ │ │ ├── create_object_attribute.md │ │ │ │ ├── create_process_instance.md │ │ │ │ ├── create_service_category.md │ │ │ │ ├── create_service_instance.md │ │ │ │ ├── create_service_template.md │ │ │ │ ├── create_set.md │ │ │ │ ├── create_set_template.md │ │ │ │ ├── delete_classification.md │ │ │ │ ├── delete_cloud_area.md │ │ │ │ ├── delete_dynamic_group.md │ │ │ │ ├── delete_host.md │ │ │ │ ├── delete_host_lock.md │ │ │ │ ├── delete_inst.md │ │ │ │ ├── delete_instance_association.md │ │ │ │ ├── delete_module.md │ │ │ │ ├── delete_object.md │ │ │ │ ├── delete_object_attribute.md │ │ │ │ ├── delete_proc_template.md │ │ │ │ ├── delete_process_instance.md │ │ │ │ ├── delete_related_inst_asso.md │ │ │ │ ├── delete_service_category.md │ │ │ │ ├── delete_service_instance.md │ │ │ │ ├── delete_service_template.md │ │ │ │ ├── delete_set.md │ │ │ │ ├── delete_set_template.md │ │ │ │ ├── execute_dynamic_group.md │ │ │ │ ├── find_brief_biz_topo_node_relation.md │ │ │ │ ├── find_host_biz_relations.md │ │ │ │ ├── find_host_by_service_template.md │ │ │ │ ├── find_host_by_set_template.md │ │ │ │ ├── find_host_by_topo.md │ │ │ │ ├── find_host_relations_with_topo.md │ │ │ │ ├── find_host_topo_relation.md │ │ │ │ ├── find_instance_association.md │ │ │ │ ├── find_instassociation_with_inst.md │ │ │ │ ├── find_module_batch.md │ │ │ │ ├── find_module_host_relation.md │ │ │ │ ├── find_module_with_relation.md │ │ │ │ ├── find_object_association.md │ │ │ │ ├── find_set_batch.md │ │ │ │ ├── find_topo_node_paths.md │ │ │ │ ├── get_biz_internal_module.md │ │ │ │ ├── get_dynamic_group.md │ │ │ │ ├── get_host_base_info.md │ │ │ │ ├── get_mainline_object_topo.md │ │ │ │ ├── get_proc_template.md │ │ │ │ ├── get_service_template.md │ │ │ │ ├── list_biz_hosts.md │ │ │ │ ├── list_biz_hosts_topo.md │ │ │ │ ├── list_business_in_business_set.md │ │ │ │ ├── list_business_set.md │ │ │ │ ├── list_business_set_topo.md │ │ │ │ ├── list_host_total_mainline_topo.md │ │ │ │ ├── list_hosts_without_biz.md │ │ │ │ ├── list_kube_cluster.md │ │ │ │ ├── list_kube_container.md │ │ │ │ ├── list_kube_namespace.md │ │ │ │ ├── list_kube_node.md │ │ │ │ ├── list_kube_pod.md │ │ │ │ ├── list_kube_workload.md │ │ │ │ ├── list_proc_template.md │ │ │ │ ├── list_process_detail_by_ids.md │ │ │ │ ├── list_process_instance.md │ │ │ │ ├── list_project.md │ │ │ │ ├── list_quoted_inst.md │ │ │ │ ├── list_resource_pool_hosts.md │ │ │ │ ├── list_service_category.md │ │ │ │ ├── list_service_instance.md │ │ │ │ ├── list_service_instance_by_host.md │ │ │ │ ├── list_service_instance_by_set_template.md │ │ │ │ ├── list_service_instance_detail.md │ │ │ │ ├── list_service_template.md │ │ │ │ ├── list_set_template.md │ │ │ │ ├── list_set_template_related_service_template.md │ │ │ │ ├── remove_label_from_service_instance.md │ │ │ │ ├── resource_watch.md │ │ │ │ ├── search_biz_inst_topo.md │ │ │ │ ├── search_business.md │ │ │ │ ├── search_classifications.md │ │ │ │ ├── search_cloud_area.md │ │ │ │ ├── search_dynamic_group.md │ │ │ │ ├── search_host_lock.md │ │ │ │ ├── search_inst.md │ │ │ │ ├── search_inst_association_topo.md │ │ │ │ ├── search_inst_asst_object_inst_base_info.md │ │ │ │ ├── search_inst_by_object.md │ │ │ │ ├── search_instance_associations.md │ │ │ │ ├── search_module.md │ │ │ │ ├── search_object_attribute.md │ │ │ │ ├── search_object_instances.md │ │ │ │ ├── search_object_topo.md │ │ │ │ ├── search_objects.md │ │ │ │ ├── search_related_inst_asso.md │ │ │ │ ├── search_set.md │ │ │ │ ├── sync_set_template_to_set.md │ │ │ │ ├── transfer_host_across_biz.md │ │ │ │ ├── transfer_host_module.md │ │ │ │ ├── transfer_host_to_faultmodule.md │ │ │ │ ├── transfer_host_to_idlemodule.md │ │ │ │ ├── transfer_host_to_recyclemodule.md │ │ │ │ ├── transfer_host_to_resourcemodule.md │ │ │ │ ├── transfer_resourcehost_to_idlemodule.md │ │ │ │ ├── transfer_sethost_to_idle_module.md │ │ │ │ ├── unbind_host_agent.md │ │ │ │ ├── update_biz_custom_field.md │ │ │ │ ├── update_business.md │ │ │ │ ├── update_business_enable_status.md │ │ │ │ ├── update_classification.md │ │ │ │ ├── update_cloud_area.md │ │ │ │ ├── update_dynamic_group.md │ │ │ │ ├── update_host.md │ │ │ │ ├── update_host_cloud_area_field.md │ │ │ │ ├── update_inst.md │ │ │ │ ├── update_module.md │ │ │ │ ├── update_object.md │ │ │ │ ├── update_object_attribute.md │ │ │ │ ├── update_proc_template.md │ │ │ │ ├── update_process_instance.md │ │ │ │ ├── update_service_category.md │ │ │ │ ├── update_service_template.md │ │ │ │ ├── update_set.md │ │ │ │ └── update_set_template.md │ │ │ └── zh │ │ │ │ ├── add_host_lock.md │ │ │ │ ├── add_host_to_business_idle.md │ │ │ │ ├── add_host_to_resource.md │ │ │ │ ├── add_host_to_resource_pool.md │ │ │ │ ├── add_instance_association.md │ │ │ │ ├── add_label_for_service_instance.md │ │ │ │ ├── batch_create_inst.md │ │ │ │ ├── batch_create_instance_association.md │ │ │ │ ├── batch_create_proc_template.md │ │ │ │ ├── batch_create_project.md │ │ │ │ ├── batch_create_quoted_inst.md │ │ │ │ ├── batch_delete_business_set.md │ │ │ │ ├── batch_delete_inst.md │ │ │ │ ├── batch_delete_project.md │ │ │ │ ├── batch_delete_quoted_inst.md │ │ │ │ ├── batch_delete_set.md │ │ │ │ ├── batch_update_business_set.md │ │ │ │ ├── batch_update_host.md │ │ │ │ ├── batch_update_inst.md │ │ │ │ ├── batch_update_project.md │ │ │ │ ├── batch_update_quoted_inst.md │ │ │ │ ├── bind_host_agent.md │ │ │ │ ├── clone_host_property.md │ │ │ │ ├── count_instance_associations.md │ │ │ │ ├── count_object_instances.md │ │ │ │ ├── create_biz_custom_field.md │ │ │ │ ├── create_business.md │ │ │ │ ├── create_business_set.md │ │ │ │ ├── create_classification.md │ │ │ │ ├── create_cloud_area.md │ │ │ │ ├── create_dynamic_group.md │ │ │ │ ├── create_inst.md │ │ │ │ ├── create_module.md │ │ │ │ ├── create_object.md │ │ │ │ ├── create_object_attribute.md │ │ │ │ ├── create_process_instance.md │ │ │ │ ├── create_service_category.md │ │ │ │ ├── create_service_instance.md │ │ │ │ ├── create_service_template.md │ │ │ │ ├── create_set.md │ │ │ │ ├── create_set_template.md │ │ │ │ ├── delete_classification.md │ │ │ │ ├── delete_cloud_area.md │ │ │ │ ├── delete_dynamic_group.md │ │ │ │ ├── delete_host.md │ │ │ │ ├── delete_host_lock.md │ │ │ │ ├── delete_inst.md │ │ │ │ ├── delete_instance_association.md │ │ │ │ ├── delete_module.md │ │ │ │ ├── delete_object.md │ │ │ │ ├── delete_object_attribute.md │ │ │ │ ├── delete_proc_template.md │ │ │ │ ├── delete_process_instance.md │ │ │ │ ├── delete_related_inst_asso.md │ │ │ │ ├── delete_service_category.md │ │ │ │ ├── delete_service_instance.md │ │ │ │ ├── delete_service_template.md │ │ │ │ ├── delete_set.md │ │ │ │ ├── delete_set_template.md │ │ │ │ ├── execute_dynamic_group.md │ │ │ │ ├── find_brief_biz_topo_node_relation.md │ │ │ │ ├── find_host_biz_relations.md │ │ │ │ ├── find_host_by_service_template.md │ │ │ │ ├── find_host_by_set_template.md │ │ │ │ ├── find_host_by_topo.md │ │ │ │ ├── find_host_relations_with_topo.md │ │ │ │ ├── find_host_topo_relation.md │ │ │ │ ├── find_instance_association.md │ │ │ │ ├── find_instassociation_with_inst.md │ │ │ │ ├── find_module_batch.md │ │ │ │ ├── find_module_host_relation.md │ │ │ │ ├── find_module_with_relation.md │ │ │ │ ├── find_object_association.md │ │ │ │ ├── find_set_batch.md │ │ │ │ ├── find_topo_node_paths.md │ │ │ │ ├── get_biz_internal_module.md │ │ │ │ ├── get_dynamic_group.md │ │ │ │ ├── get_host_base_info.md │ │ │ │ ├── get_mainline_object_topo.md │ │ │ │ ├── get_proc_template.md │ │ │ │ ├── get_service_template.md │ │ │ │ ├── list_biz_hosts.md │ │ │ │ ├── list_biz_hosts_topo.md │ │ │ │ ├── list_business_in_business_set.md │ │ │ │ ├── list_business_set.md │ │ │ │ ├── list_business_set_topo.md │ │ │ │ ├── list_host_total_mainline_topo.md │ │ │ │ ├── list_hosts_without_biz.md │ │ │ │ ├── list_kube_cluster.md │ │ │ │ ├── list_kube_container.md │ │ │ │ ├── list_kube_namespace.md │ │ │ │ ├── list_kube_node.md │ │ │ │ ├── list_kube_pod.md │ │ │ │ ├── list_kube_workload.md │ │ │ │ ├── list_proc_template.md │ │ │ │ ├── list_process_detail_by_ids.md │ │ │ │ ├── list_process_instance.md │ │ │ │ ├── list_project.md │ │ │ │ ├── list_quoted_inst.md │ │ │ │ ├── list_resource_pool_hosts.md │ │ │ │ ├── list_service_category.md │ │ │ │ ├── list_service_instance.md │ │ │ │ ├── list_service_instance_by_host.md │ │ │ │ ├── list_service_instance_by_set_template.md │ │ │ │ ├── list_service_instance_detail.md │ │ │ │ ├── list_service_template.md │ │ │ │ ├── list_set_template.md │ │ │ │ ├── list_set_template_related_service_template.md │ │ │ │ ├── remove_label_from_service_instance.md │ │ │ │ ├── resource_watch.md │ │ │ │ ├── search_biz_inst_topo.md │ │ │ │ ├── search_business.md │ │ │ │ ├── search_classifications.md │ │ │ │ ├── search_cloud_area.md │ │ │ │ ├── search_dynamic_group.md │ │ │ │ ├── search_host_lock.md │ │ │ │ ├── search_inst.md │ │ │ │ ├── search_inst_association_topo.md │ │ │ │ ├── search_inst_asst_object_inst_base_info.md │ │ │ │ ├── search_inst_by_object.md │ │ │ │ ├── search_instance_associations.md │ │ │ │ ├── search_module.md │ │ │ │ ├── search_object_attribute.md │ │ │ │ ├── search_object_instances.md │ │ │ │ ├── search_object_topo.md │ │ │ │ ├── search_objects.md │ │ │ │ ├── search_related_inst_asso.md │ │ │ │ ├── search_set.md │ │ │ │ ├── sync_set_template_to_set.md │ │ │ │ ├── transfer_host_across_biz.md │ │ │ │ ├── transfer_host_module.md │ │ │ │ ├── transfer_host_to_faultmodule.md │ │ │ │ ├── transfer_host_to_idlemodule.md │ │ │ │ ├── transfer_host_to_recyclemodule.md │ │ │ │ ├── transfer_host_to_resourcemodule.md │ │ │ │ ├── transfer_resourcehost_to_idlemodule.md │ │ │ │ ├── transfer_sethost_to_idle_module.md │ │ │ │ ├── unbind_host_agent.md │ │ │ │ ├── update_biz_custom_field.md │ │ │ │ ├── update_business.md │ │ │ │ ├── update_business_enable_status.md │ │ │ │ ├── update_classification.md │ │ │ │ ├── update_cloud_area.md │ │ │ │ ├── update_dynamic_group.md │ │ │ │ ├── update_host.md │ │ │ │ ├── update_host_cloud_area_field.md │ │ │ │ ├── update_inst.md │ │ │ │ ├── update_module.md │ │ │ │ ├── update_object.md │ │ │ │ ├── update_object_attribute.md │ │ │ │ ├── update_proc_template.md │ │ │ │ ├── update_process_instance.md │ │ │ │ ├── update_service_category.md │ │ │ │ ├── update_service_template.md │ │ │ │ ├── update_set.md │ │ │ │ └── update_set_template.md │ │ └── saas │ │ │ ├── bk_apigw_resources_bk-cmdb.yaml │ │ │ ├── en │ │ │ └── demo.md │ │ │ └── zh │ │ │ └── demo.md │ ├── archived │ │ ├── README.md │ │ ├── cache │ │ │ └── refresh_kube_pod_label_cache.md │ │ ├── event │ │ │ ├── resource_watch.md │ │ │ └── sync_hostidentifier.md │ │ ├── host │ │ │ ├── find_host_snapshot_batch.md │ │ │ ├── host_delete.md │ │ │ ├── host_favorites.md │ │ │ ├── host_find.md │ │ │ ├── host_lock.md │ │ │ ├── host_relation.md │ │ │ ├── host_search.md │ │ │ └── host_update.md │ │ ├── proc │ │ │ └── update_service_instances.md │ │ ├── topo │ │ │ ├── batch_update_biz.md │ │ │ ├── delete_biz.md │ │ │ ├── object_association.md │ │ │ ├── object_biz.md │ │ │ ├── object_common_inst.md │ │ │ ├── object_main_line_model.md │ │ │ ├── object_model.md │ │ │ ├── object_model_classify.md │ │ │ ├── object_model_field_group.md │ │ │ ├── object_model_property.md │ │ │ ├── object_set.md │ │ │ ├── object_unique.md │ │ │ ├── search_topo_tree.md │ │ │ └── update_object_topo_graphics.md │ │ └── web │ │ │ ├── department_profile.md │ │ │ ├── departments.md │ │ │ └── user_costum.md │ ├── cc │ │ ├── README.md │ │ ├── cc.yaml │ │ ├── en │ │ │ ├── add_cloud_host_to_biz.md │ │ │ ├── add_host_lock.md │ │ │ ├── add_host_to_business_idle.md │ │ │ ├── add_host_to_resource_pool.md │ │ │ ├── add_instance_association.md │ │ │ ├── add_label_for_service_instance.md │ │ │ ├── batch_create_inst.md │ │ │ ├── batch_create_instance_association.md │ │ │ ├── batch_create_kube_namespace.md │ │ │ ├── batch_create_kube_node.md │ │ │ ├── batch_create_kube_pod.md │ │ │ ├── batch_create_kube_workload.md │ │ │ ├── batch_create_proc_template.md │ │ │ ├── batch_create_project.md │ │ │ ├── batch_create_quoted_inst.md │ │ │ ├── batch_delete_business_set.md │ │ │ ├── batch_delete_inst.md │ │ │ ├── batch_delete_kube_cluster.md │ │ │ ├── batch_delete_kube_namespace.md │ │ │ ├── batch_delete_kube_node.md │ │ │ ├── batch_delete_kube_pod.md │ │ │ ├── batch_delete_kube_workload.md │ │ │ ├── batch_delete_project.md │ │ │ ├── batch_delete_quoted_inst.md │ │ │ ├── batch_delete_set.md │ │ │ ├── batch_update_business_set.md │ │ │ ├── batch_update_host.md │ │ │ ├── batch_update_inst.md │ │ │ ├── batch_update_kube_cluster.md │ │ │ ├── batch_update_kube_namespace.md │ │ │ ├── batch_update_kube_node.md │ │ │ ├── batch_update_kube_workload.md │ │ │ ├── batch_update_project.md │ │ │ ├── batch_update_quoted_inst.md │ │ │ ├── bind_host_agent.md │ │ │ ├── clone_host_property.md │ │ │ ├── count_biz_host_cpu.md │ │ │ ├── count_instance_associations.md │ │ │ ├── count_object_instances.md │ │ │ ├── create_biz_custom_field.md │ │ │ ├── create_business_set.md │ │ │ ├── create_classification.md │ │ │ ├── create_cloud_area.md │ │ │ ├── create_dynamic_group.md │ │ │ ├── create_inst.md │ │ │ ├── create_kube_cluster.md │ │ │ ├── create_object.md │ │ │ ├── create_object_attribute.md │ │ │ ├── create_process_instance.md │ │ │ ├── create_service_category.md │ │ │ ├── create_service_instance.md │ │ │ ├── create_service_template.md │ │ │ ├── create_set_template.md │ │ │ ├── delete_classification.md │ │ │ ├── delete_cloud_area.md │ │ │ ├── delete_cloud_host_from_biz.md │ │ │ ├── delete_dynamic_group.md │ │ │ ├── delete_host_lock.md │ │ │ ├── delete_inst.md │ │ │ ├── delete_instance_association.md │ │ │ ├── delete_object.md │ │ │ ├── delete_object_attribute.md │ │ │ ├── delete_proc_template.md │ │ │ ├── delete_process_instance.md │ │ │ ├── delete_related_inst_asso.md │ │ │ ├── delete_service_category.md │ │ │ ├── delete_service_instance.md │ │ │ ├── delete_service_template.md │ │ │ ├── delete_set_template.md │ │ │ ├── execute_dynamic_group.md │ │ │ ├── find_audit_by_id.md │ │ │ ├── find_biz_tree_brief_info.md │ │ │ ├── find_brief_biz_topo_node_relation.md │ │ │ ├── find_host_biz_relations.md │ │ │ ├── find_host_by_service_template.md │ │ │ ├── find_host_by_set_template.md │ │ │ ├── find_host_by_topo.md │ │ │ ├── find_host_identifier_push_result.md │ │ │ ├── find_host_relations_with_topo.md │ │ │ ├── find_host_topo_relation.md │ │ │ ├── find_instance_association.md │ │ │ ├── find_instassociation_with_inst.md │ │ │ ├── find_module_batch.md │ │ │ ├── find_module_host_relation.md │ │ │ ├── find_module_with_relation.md │ │ │ ├── find_object_association.md │ │ │ ├── find_set_batch.md │ │ │ ├── find_topo_node_paths.md │ │ │ ├── get_biz_brief_cache_topo.md │ │ │ ├── get_biz_internal_module.md │ │ │ ├── get_dynamic_group.md │ │ │ ├── get_mainline_object_topo.md │ │ │ ├── get_proc_template.md │ │ │ ├── get_service_template.md │ │ │ ├── host_install_bk.md │ │ │ ├── list_biz_hosts.md │ │ │ ├── list_biz_hosts_topo.md │ │ │ ├── list_business_in_business_set.md │ │ │ ├── list_business_set.md │ │ │ ├── list_business_set_topo.md │ │ │ ├── list_host_detail_topology.md │ │ │ ├── list_host_service_template_id.md │ │ │ ├── list_host_total_mainline_topo_en.md │ │ │ ├── list_hosts_without_biz.md │ │ │ ├── list_kube_cluster.md │ │ │ ├── list_kube_container.md │ │ │ ├── list_kube_namespace.md │ │ │ ├── list_kube_node.md │ │ │ ├── list_kube_pod.md │ │ │ ├── list_kube_workload.md │ │ │ ├── list_operation_audit.md │ │ │ ├── list_proc_template.md │ │ │ ├── list_process_detail_by_ids.md │ │ │ ├── list_process_instance.md │ │ │ ├── list_process_related_info.md │ │ │ ├── list_project.md │ │ │ ├── list_quoted_inst.md │ │ │ ├── list_resource_pool_hosts.md │ │ │ ├── list_service_category.md │ │ │ ├── list_service_instance.md │ │ │ ├── list_service_instance_by_host.md │ │ │ ├── list_service_instance_by_set_template.md │ │ │ ├── list_service_instance_detail.md │ │ │ ├── list_service_template.md │ │ │ ├── list_service_template_difference.md │ │ │ ├── list_service_template_sync_status.md │ │ │ ├── list_set_template.md │ │ │ ├── list_set_template_related_service_template.md │ │ │ ├── push_host_identifier.md │ │ │ ├── remove_label_from_service_instance.md │ │ │ ├── resource_watch.md │ │ │ ├── search_classifications.md │ │ │ ├── search_cloud_area.md │ │ │ ├── search_dynamic_group.md │ │ │ ├── search_host_lock.md │ │ │ ├── search_hostidentifier.md │ │ │ ├── search_inst.md │ │ │ ├── search_inst_association_topo.md │ │ │ ├── search_inst_asst_object_inst_base_info.md │ │ │ ├── search_instance_associations.md │ │ │ ├── search_object_attribute.md │ │ │ ├── search_object_instances.md │ │ │ ├── search_object_topo.md │ │ │ ├── search_objects.md │ │ │ ├── search_related_inst_asso.md │ │ │ ├── search_subscription.md │ │ │ ├── subscribe_event.md │ │ │ ├── sync_service_template_to_service_instance.md │ │ │ ├── sync_set_template_to_set.md │ │ │ ├── transfer_host_across_biz.md │ │ │ ├── transfer_host_to_recyclemodule.md │ │ │ ├── transfer_sethost_to_idle_module.md │ │ │ ├── unbind_host_agent.md │ │ │ ├── unsubcribe_event.md │ │ │ ├── update_biz_custom_field.md │ │ │ ├── update_business_enable_status.md │ │ │ ├── update_classification.md │ │ │ ├── update_cloud_area.md │ │ │ ├── update_dynamic_group.md │ │ │ ├── update_event_subscribe.md │ │ │ ├── update_host_cloud_area_field.md │ │ │ ├── update_inst.md │ │ │ ├── update_kube_cluster_type.md │ │ │ ├── update_object.md │ │ │ ├── update_object_attribute.md │ │ │ ├── update_proc_template.md │ │ │ ├── update_process_instance.md │ │ │ ├── update_project_id.md │ │ │ ├── update_service_category.md │ │ │ ├── update_service_template.md │ │ │ └── update_set_template.md │ │ └── zh_hans │ │ │ ├── add_cloud_host_to_biz.md │ │ │ ├── add_host_lock.md │ │ │ ├── add_host_to_business_idle.md │ │ │ ├── add_host_to_resource_pool.md │ │ │ ├── add_instance_association.md │ │ │ ├── add_label_for_service_instance.md │ │ │ ├── batch_create_inst.md │ │ │ ├── batch_create_instance_association.md │ │ │ ├── batch_create_kube_namespace.md │ │ │ ├── batch_create_kube_node.md │ │ │ ├── batch_create_kube_pod.md │ │ │ ├── batch_create_kube_workload.md │ │ │ ├── batch_create_proc_template.md │ │ │ ├── batch_create_project.md │ │ │ ├── batch_create_quoted_inst.md │ │ │ ├── batch_delete_business_set.md │ │ │ ├── batch_delete_inst.md │ │ │ ├── batch_delete_kube_cluster.md │ │ │ ├── batch_delete_kube_namespace.md │ │ │ ├── batch_delete_kube_node.md │ │ │ ├── batch_delete_kube_pod.md │ │ │ ├── batch_delete_kube_workload.md │ │ │ ├── batch_delete_project.md │ │ │ ├── batch_delete_quoted_inst.md │ │ │ ├── batch_delete_set.md │ │ │ ├── batch_update_business_set.md │ │ │ ├── batch_update_host.md │ │ │ ├── batch_update_inst.md │ │ │ ├── batch_update_kube_cluster.md │ │ │ ├── batch_update_kube_namespace.md │ │ │ ├── batch_update_kube_node.md │ │ │ ├── batch_update_kube_workload.md │ │ │ ├── batch_update_project.md │ │ │ ├── batch_update_quoted_inst.md │ │ │ ├── bind_host_agent.md │ │ │ ├── clone_host_property.md │ │ │ ├── count_biz_host_cpu.md │ │ │ ├── count_instance_associations.md │ │ │ ├── count_object_instances.md │ │ │ ├── create_biz_custom_field.md │ │ │ ├── create_business_set.md │ │ │ ├── create_classification.md │ │ │ ├── create_cloud_area.md │ │ │ ├── create_dynamic_group.md │ │ │ ├── create_inst.md │ │ │ ├── create_kube_cluster.md │ │ │ ├── create_object.md │ │ │ ├── create_object_attribute.md │ │ │ ├── create_process_instance.md │ │ │ ├── create_service_category.md │ │ │ ├── create_service_instance.md │ │ │ ├── create_service_template.md │ │ │ ├── create_set_template.md │ │ │ ├── delete_classification.md │ │ │ ├── delete_cloud_area.md │ │ │ ├── delete_cloud_host_from_biz.md │ │ │ ├── delete_dynamic_group.md │ │ │ ├── delete_host_lock.md │ │ │ ├── delete_inst.md │ │ │ ├── delete_instance_association.md │ │ │ ├── delete_object.md │ │ │ ├── delete_object_attribute.md │ │ │ ├── delete_proc_template.md │ │ │ ├── delete_process_instance.md │ │ │ ├── delete_related_inst_asso.md │ │ │ ├── delete_service_category.md │ │ │ ├── delete_service_instance.md │ │ │ ├── delete_service_template.md │ │ │ ├── delete_set_template.md │ │ │ ├── execute_dynamic_group.md │ │ │ ├── find_audit_by_id.md │ │ │ ├── find_biz_tree_brief_info.md │ │ │ ├── find_brief_biz_topo_node_relation.md │ │ │ ├── find_host_biz_relations.md │ │ │ ├── find_host_by_service_template.md │ │ │ ├── find_host_by_set_template.md │ │ │ ├── find_host_by_topo.md │ │ │ ├── find_host_identifier_push_result.md │ │ │ ├── find_host_relations_with_topo.md │ │ │ ├── find_host_topo_relation.md │ │ │ ├── find_instance_association.md │ │ │ ├── find_instassociation_with_inst.md │ │ │ ├── find_module_batch.md │ │ │ ├── find_module_host_relation.md │ │ │ ├── find_module_with_relation.md │ │ │ ├── find_object_association.md │ │ │ ├── find_set_batch.md │ │ │ ├── find_topo_node_paths.md │ │ │ ├── get_biz_brief_cache_topo.md │ │ │ ├── get_biz_internal_module.md │ │ │ ├── get_dynamic_group.md │ │ │ ├── get_mainline_object_topo.md │ │ │ ├── get_proc_template.md │ │ │ ├── get_service_template.md │ │ │ ├── host_install_bk.md │ │ │ ├── list_biz_hosts.md │ │ │ ├── list_biz_hosts_topo.md │ │ │ ├── list_business_in_business_set.md │ │ │ ├── list_business_set.md │ │ │ ├── list_business_set_topo.md │ │ │ ├── list_host_detail_topology.md │ │ │ ├── list_host_service_template_id.md │ │ │ ├── list_host_total_mainline_topo.md │ │ │ ├── list_hosts_without_biz.md │ │ │ ├── list_kube_cluster.md │ │ │ ├── list_kube_container.md │ │ │ ├── list_kube_namespace.md │ │ │ ├── list_kube_node.md │ │ │ ├── list_kube_pod.md │ │ │ ├── list_kube_workload.md │ │ │ ├── list_operation_audit.md │ │ │ ├── list_proc_template.md │ │ │ ├── list_process_detail_by_ids.md │ │ │ ├── list_process_instance.md │ │ │ ├── list_process_related_info.md │ │ │ ├── list_project.md │ │ │ ├── list_quoted_inst.md │ │ │ ├── list_resource_pool_hosts.md │ │ │ ├── list_service_category.md │ │ │ ├── list_service_instance.md │ │ │ ├── list_service_instance_by_host.md │ │ │ ├── list_service_instance_by_set_template.md │ │ │ ├── list_service_instance_detail.md │ │ │ ├── list_service_template.md │ │ │ ├── list_service_template_difference.md │ │ │ ├── list_service_template_sync_status.md │ │ │ ├── list_set_template.md │ │ │ ├── list_set_template_related_service_template.md │ │ │ ├── push_host_identifier.md │ │ │ ├── remove_label_from_service_instance.md │ │ │ ├── resource_watch.md │ │ │ ├── search_classifications.md │ │ │ ├── search_cloud_area.md │ │ │ ├── search_dynamic_group.md │ │ │ ├── search_host_lock.md │ │ │ ├── search_hostidentifier.md │ │ │ ├── search_inst.md │ │ │ ├── search_inst_association_topo.md │ │ │ ├── search_inst_asst_object_inst_base_info.md │ │ │ ├── search_instance_associations.md │ │ │ ├── search_object_attribute.md │ │ │ ├── search_object_instances.md │ │ │ ├── search_object_topo.md │ │ │ ├── search_objects.md │ │ │ ├── search_related_inst_asso.md │ │ │ ├── search_subscription.md │ │ │ ├── subscribe_event.md │ │ │ ├── sync_service_template_to_service_instance.md │ │ │ ├── sync_set_template_to_set.md │ │ │ ├── transfer_host_across_biz.md │ │ │ ├── transfer_host_to_recyclemodule.md │ │ │ ├── transfer_sethost_to_idle_module.md │ │ │ ├── unbind_host_agent.md │ │ │ ├── unsubcribe_event.md │ │ │ ├── update_biz_custom_field.md │ │ │ ├── update_business_enable_status.md │ │ │ ├── update_classification.md │ │ │ ├── update_cloud_area.md │ │ │ ├── update_dynamic_group.md │ │ │ ├── update_event_subscribe.md │ │ │ ├── update_host_cloud_area_field.md │ │ │ ├── update_inst.md │ │ │ ├── update_kube_cluster_type.md │ │ │ ├── update_object.md │ │ │ ├── update_object_attribute.md │ │ │ ├── update_proc_template.md │ │ │ ├── update_process_instance.md │ │ │ ├── update_project_id.md │ │ │ ├── update_service_category.md │ │ │ ├── update_service_template.md │ │ │ └── update_set_template.md │ ├── esb-cc │ │ ├── README.md │ │ ├── en │ │ │ ├── add_host_to_resource.md │ │ │ ├── create_business.md │ │ │ ├── create_module.md │ │ │ ├── create_set.md │ │ │ ├── delete_host.md │ │ │ ├── delete_module.md │ │ │ ├── delete_set.md │ │ │ ├── get_host_base_info.md │ │ │ ├── search_biz_inst_topo.md │ │ │ ├── search_business.md │ │ │ ├── search_inst_by_object.md │ │ │ ├── search_module.md │ │ │ ├── search_set.md │ │ │ ├── transfer_host_module.md │ │ │ ├── transfer_host_to_faultmodule.md │ │ │ ├── transfer_host_to_idlemodule.md │ │ │ ├── transfer_host_to_resourcemodule.md │ │ │ ├── transfer_resourcehost_to_idlemodule.md │ │ │ ├── update_business.md │ │ │ ├── update_host.md │ │ │ ├── update_module.md │ │ │ └── update_set.md │ │ └── zh_hans │ │ │ ├── add_host_to_resource.md │ │ │ ├── create_business.md │ │ │ ├── create_module.md │ │ │ ├── create_set.md │ │ │ ├── delete_host.md │ │ │ ├── delete_module.md │ │ │ ├── delete_set.md │ │ │ ├── get_host_base_info.md │ │ │ ├── search_biz_inst_topo.md │ │ │ ├── search_business.md │ │ │ ├── search_inst_by_object.md │ │ │ ├── search_module.md │ │ │ ├── search_set.md │ │ │ ├── transfer_host_module.md │ │ │ ├── transfer_host_to_faultmodule.md │ │ │ ├── transfer_host_to_idlemodule.md │ │ │ ├── transfer_host_to_resourcemodule.md │ │ │ ├── transfer_resourcehost_to_idlemodule.md │ │ │ ├── update_business.md │ │ │ ├── update_host.md │ │ │ ├── update_module.md │ │ │ └── update_set.md │ └── inner │ │ └── transfer-service │ │ └── sync_cmdb_data.md ├── db │ ├── README.md │ ├── built-in_model.md │ ├── business.md │ ├── cloud_resource.md │ ├── container_data_manage.md │ ├── field_template.md │ ├── host_apply_rule.md │ ├── instance.md │ ├── mainline_model.md │ ├── model.md │ ├── operational_analysis.md │ ├── other.md │ ├── plat.md │ ├── service_template.md │ ├── set_template.md │ ├── task.md │ ├── user_custom.md │ └── watch.md ├── features │ ├── features.md │ └── full_text_search.md ├── overview │ ├── architecture.md │ ├── code_framework.md │ ├── design.md │ ├── experience.md │ ├── framework.md │ ├── installation.md │ ├── source_compile.md │ ├── upgrade-from-ce.md │ └── usecase.md ├── resource │ └── img │ │ ├── BKCN.jpg │ │ ├── art_en.png │ │ ├── bk-cmdb-en.png │ │ ├── bk-cmdb.png │ │ ├── bk.png │ │ ├── code.png │ │ ├── datacollection │ │ ├── dataflow.png │ │ └── gcoroutine.png │ │ ├── eventserver │ │ ├── dataflow.png │ │ └── gcroutine.png │ │ ├── frontpage.png │ │ ├── frontpage_en.png │ │ ├── honops-logo.png │ │ ├── jiawei-logo.png │ │ ├── mongo-connector.png │ │ ├── page.png │ │ ├── qq.png │ │ ├── run-in-k8s.jpg │ │ ├── sence.png │ │ ├── transfer-service │ │ ├── id_generator.png │ │ ├── id_rule.png │ │ └── sync.png │ │ └── youole-logo.png ├── smart │ └── web │ │ ├── app_desc.yaml │ │ ├── extra-data │ │ ├── bin │ │ │ ├── envsubst │ │ │ ├── go-pre-compile │ │ │ ├── post-compile │ │ │ └── start-web.sh │ │ └── configure │ │ │ ├── readme.md │ │ │ └── web.yaml.tmpl │ │ ├── logo.png │ │ └── readme.md ├── support-file │ ├── bkpkg │ │ └── bk-cmdb.yaml │ ├── changelog │ │ └── release.md │ ├── changelog_user │ │ ├── ch │ │ │ ├── README.md │ │ │ ├── V3.10.16_2022-05-17.md │ │ │ ├── V3.10.17_2022-06-21.md │ │ │ ├── v3.10.10_2021-12-24.md │ │ │ ├── v3.10.11_2022-02-28.md │ │ │ ├── v3.10.12_2022-03-02.md │ │ │ ├── v3.10.13_2022-03-16.md │ │ │ ├── v3.10.14_2022-04-13.md │ │ │ ├── v3.10.15_2022-04-25.md │ │ │ ├── v3.10.18_2022-07-26.md │ │ │ ├── v3.10.19_2022-09-27.md │ │ │ ├── v3.10.1_2021-06-17.md │ │ │ ├── v3.10.20_2022-09-28.md │ │ │ ├── v3.10.21_2022-09-28.md │ │ │ ├── v3.10.22_2022-11-10.md │ │ │ ├── v3.10.2_2021-07-01.md │ │ │ ├── v3.10.3_2021-07-20.md │ │ │ ├── v3.10.4_2021-08-02.md │ │ │ ├── v3.10.5_2021-08-06.md │ │ │ ├── v3.10.6_2021-10-11.md │ │ │ ├── v3.10.7_2021-10-27.md │ │ │ ├── v3.10.8_2021-11-04.md │ │ │ ├── v3.10.9_2021-11-22.md │ │ │ ├── v3.11.1_2023-07-31.md │ │ │ ├── v3.11.2_2023-09-12.md │ │ │ ├── v3.11.3_2023-12-18.md │ │ │ ├── v3.11.4_2024-10-30.md │ │ │ ├── v3.12.1_2023-10-10.md │ │ │ ├── v3.12.2_2023-10-30.md │ │ │ ├── v3.12.3_2023-11-06.md │ │ │ ├── v3.12.4_2023-12-18.md │ │ │ ├── v3.13.10_2024-09-11.md │ │ │ ├── v3.13.12_2024-11-22.md │ │ │ ├── v3.13.13_2023-03-13.md │ │ │ ├── v3.13.1_2023-12-27.md │ │ │ ├── v3.13.2_2024-01-12.md │ │ │ ├── v3.13.3_2024-02-28.md │ │ │ ├── v3.13.4_2024-03-12.md │ │ │ ├── v3.13.5_2024-03-29.md │ │ │ ├── v3.13.6_2024-04-30.md │ │ │ ├── v3.13.7_2024-05-23.md │ │ │ ├── v3.13.8_2024-06-05.md │ │ │ ├── v3.13.9_2024-06-17.md │ │ │ ├── v3.14.1_2024-07-31.md │ │ │ ├── v3.14.2_2024-08-20.md │ │ │ ├── v3.14.3_2024-10-21.md │ │ │ ├── v3.14.4_2024-12-17.md │ │ │ └── v3.14.5_2025-02-19.md │ │ └── en │ │ │ ├── README.md │ │ │ ├── v3.10.10_2021-12-24.md │ │ │ ├── v3.10.11_2022-02-28.md │ │ │ ├── v3.10.12_2022-03-02.md │ │ │ ├── v3.10.13_2022-03-16.md │ │ │ ├── v3.10.14_2022-04-13.md │ │ │ ├── v3.10.15_2022-04-25.md │ │ │ ├── v3.10.16_2022-05-17.md │ │ │ ├── v3.10.17_2022-06-21.md │ │ │ ├── v3.10.18_2022-07-26.md │ │ │ ├── v3.10.19_2022-09-27.md │ │ │ ├── v3.10.1_2021-06-17.md │ │ │ ├── v3.10.20_2022-09-28.md │ │ │ ├── v3.10.21_2022-09-28.md │ │ │ ├── v3.10.22_2022-11-10.md │ │ │ ├── v3.10.2_2021-07-01.md │ │ │ ├── v3.10.3_2021-07-20.md │ │ │ ├── v3.10.4_2021-08-02.md │ │ │ ├── v3.10.5_2021-08-06.md │ │ │ ├── v3.10.6_2021-10-11.md │ │ │ ├── v3.10.7_2021-10-27.md │ │ │ ├── v3.10.8_2021-11-04.md │ │ │ ├── v3.10.9_2021-11-22.md │ │ │ ├── v3.11.1_2023-07-31.md │ │ │ ├── v3.11.2_2023-09-12.md │ │ │ ├── v3.11.3_2023-12-18.md │ │ │ ├── v3.11.4_2024-10-30.md │ │ │ ├── v3.12.1_2023-10-10.md │ │ │ ├── v3.12.2_2023-10-30.md │ │ │ ├── v3.12.3_2023-11-06.md │ │ │ ├── v3.12.4_2023-12-18.md │ │ │ ├── v3.13.10_2024-09-11.md │ │ │ ├── v3.13.12_2024-11-22.md │ │ │ ├── v3.13.13_2025-03-13.md │ │ │ ├── v3.13.1_2023-12-27.md │ │ │ ├── v3.13.2_2024-01-12.md │ │ │ ├── v3.13.3_2024-02-28.md │ │ │ ├── v3.13.4_2024-03-12.md │ │ │ ├── v3.13.5_2024-03-29.md │ │ │ ├── v3.13.6_2024-04-30.md │ │ │ ├── v3.13.7_2024-05-23.md │ │ │ ├── v3.13.8_2024-06-05.md │ │ │ ├── v3.13.9_2024-06-17.md │ │ │ ├── v3.14.1_2024-07-31.md │ │ │ ├── v3.14.2_2024-08-20.md │ │ │ ├── v3.14.3_2024-10-21.md │ │ │ ├── v3.14.4_2024-12-17.md │ │ │ └── v3.14.5_2024-02-19.md │ ├── config │ │ ├── projects.yaml │ │ └── templates │ │ │ ├── server#conf#common.yaml │ │ │ ├── server#conf#extra.yaml │ │ │ ├── server#conf#migrate.yaml │ │ │ ├── server#conf#mongodb.yaml │ │ │ ├── server#conf#redis.yaml │ │ │ └── server#conf#web.yaml │ ├── dockerfile │ │ ├── README.md │ │ ├── adminserver │ │ │ └── dockerfile │ │ ├── apigw │ │ │ └── dockerfile │ │ ├── apiserver │ │ │ └── dockerfile │ │ ├── authserver │ │ │ └── dockerfile │ │ ├── cacheservice │ │ │ └── dockerfile │ │ ├── cloudserver │ │ │ └── dockerfile │ │ ├── coreservice │ │ │ └── dockerfile │ │ ├── datacollection │ │ │ └── dockerfile │ │ ├── eventserver │ │ │ └── dockerfile │ │ ├── hostserver │ │ │ └── dockerfile │ │ ├── migrate │ │ │ └── dockerfile │ │ ├── monstache │ │ │ └── dockerfile │ │ ├── operationserver │ │ │ └── dockerfile │ │ ├── procserver │ │ │ └── dockerfile │ │ ├── synchronizeserver │ │ │ └── dockerfile │ │ ├── taskserver │ │ │ └── dockerfile │ │ ├── toposerver │ │ │ └── dockerfile │ │ ├── transferservice │ │ │ └── dockerfile │ │ └── webserver │ │ │ └── dockerfile │ └── helm │ │ ├── README.md │ │ ├── backend │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── adminserver │ │ │ │ ├── adminserver-dpl.yaml │ │ │ │ ├── adminserver-svc.yaml │ │ │ │ └── configmap.yaml │ │ │ ├── apiserver │ │ │ │ ├── apiserver-dpl.yaml │ │ │ │ ├── apiserver-svc.yaml │ │ │ │ └── ingress.yaml │ │ │ ├── authserver │ │ │ │ ├── authserver-dpl.yaml │ │ │ │ ├── authserver-svc.yaml │ │ │ │ └── ingress.yaml │ │ │ ├── bklogconfig.yaml │ │ │ ├── cacheservice │ │ │ │ ├── cacheservice-dpl.yaml │ │ │ │ └── cacheservice-svc.yaml │ │ │ ├── cert-configmap.yaml │ │ │ ├── cloudserver │ │ │ │ ├── cloudserver-dpl.yaml │ │ │ │ └── cloudserver-svc.yaml │ │ │ ├── coreservice │ │ │ │ ├── coreservice-dpl.yaml │ │ │ │ └── coreservice-svc.yaml │ │ │ ├── datacollection │ │ │ │ ├── datacollection-dpl.yaml │ │ │ │ └── datacollection-svc.yaml │ │ │ ├── elasticsearch-cert-configmap.yaml │ │ │ ├── eventserver │ │ │ │ ├── eventserver-dpl.yaml │ │ │ │ └── eventserver-svc.yaml │ │ │ ├── hostserver │ │ │ │ ├── hostserver-dpl.yaml │ │ │ │ └── hostserver-svc.yaml │ │ │ ├── job │ │ │ │ ├── apigw-job.yaml │ │ │ │ ├── auth-job.yaml │ │ │ │ ├── bootstrap-job.yaml │ │ │ │ ├── migrate-dataid-job.yaml │ │ │ │ ├── migrate-db-job.yaml │ │ │ │ └── migrate-old-dataid-job.yaml │ │ │ ├── mongodb-cert-configmap.yaml │ │ │ ├── monstache │ │ │ │ ├── configmap.yaml │ │ │ │ └── monstache-dpl.yaml │ │ │ ├── operationserver │ │ │ │ ├── operationserver-dpl.yaml │ │ │ │ └── operationserver-svc.yaml │ │ │ ├── procserver │ │ │ │ ├── procserver-dpl.yaml │ │ │ │ └── procserver-svc.yaml │ │ │ ├── redis-cert-configmap.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── synchronizeserver │ │ │ │ ├── synchronizeserver-dpl.yaml │ │ │ │ └── synchronizeserver-svc.yaml │ │ │ ├── taskserver │ │ │ │ ├── taskserver-dpl.yaml │ │ │ │ └── taskserver-svc.yaml │ │ │ ├── toposerver │ │ │ │ ├── toposerver-dpl.yaml │ │ │ │ └── toposerver-svc.yaml │ │ │ └── zookeeper-cert-configmap.yaml │ │ └── values.yaml │ │ ├── bkpkg.yaml │ │ └── web │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── bklogconfig.yaml │ │ ├── servicemonitor.yaml │ │ └── webserver │ │ │ ├── configmap.yaml │ │ │ ├── ingress.yaml │ │ │ ├── webserver-dpl.yaml │ │ │ ├── webserver-mongodb-cert-configmap.yaml │ │ │ ├── webserver-redis-cert-configmap.yaml │ │ │ ├── webserver-svc.yaml │ │ │ └── webserver-zookeeper-cert-configmap.yaml │ │ └── values.yaml └── wiki │ ├── blueking-golang-code-conduct.pdf │ ├── community-link.md │ ├── community.md │ ├── container-support.md │ ├── contribute.md │ ├── db_upgrade.md │ ├── faq.md │ ├── feature-plan.md │ ├── feature.md │ ├── img │ ├── cmdb_environment.png │ ├── cmdb_feature.png │ ├── cmdb_system.png │ ├── contribute-flow.png │ ├── feature-flow.png │ ├── flow_cmdb.png │ ├── fork.png │ ├── git_cmdb.png │ ├── image-check.png │ ├── join_blueking_opensource_community.png │ ├── join_us.png │ ├── pr-create.png │ ├── pr-finish.png │ ├── pr-submmit.png │ └── way_to_experience.png │ ├── issue.md │ ├── join-bk-community.md │ └── version-guidline.md ├── go.mod ├── go.sum ├── pkg ├── cache │ ├── full-sync-cond │ │ └── types.go │ └── general │ │ ├── key.go │ │ ├── keys.go │ │ ├── mapping │ │ └── event.go │ │ ├── resource.go │ │ ├── types.go │ │ └── unique_key.go ├── conv │ ├── dot.go │ └── dot_test.go ├── excel │ ├── cell.go │ ├── excel.go │ ├── reader.go │ ├── style.go │ └── validation.go ├── filter │ ├── README.md │ ├── expression.go │ ├── expression_test.go │ ├── match_test.go │ ├── match_util.go │ ├── operaor_test.go │ ├── operator.go │ ├── rule.go │ └── rule_test.go ├── id-gen │ └── types.go ├── synchronize │ └── types │ │ ├── medium.go │ │ ├── protocol.go │ │ ├── resource.go │ │ └── syncer.go └── tools │ └── filter │ └── gen.go ├── readme.md ├── readme_en.md ├── resources ├── errors │ ├── common │ │ └── default │ │ │ ├── apiserver.json │ │ │ ├── cloud_server.json │ │ │ ├── common.json │ │ │ ├── core_service.json │ │ │ ├── datacollection.json │ │ │ ├── event_server.json │ │ │ ├── host_controller.json │ │ │ ├── host_server.json │ │ │ ├── migrate.json │ │ │ ├── object_controller.json │ │ │ ├── operation_server.json │ │ │ ├── proc_controller.json │ │ │ ├── proc_server.json │ │ │ ├── statistics_server.json │ │ │ ├── synchronize.json │ │ │ ├── taskserver.json │ │ │ ├── topo_server.json │ │ │ └── web.json │ └── english │ │ └── en │ │ ├── apiserver.json │ │ ├── cloud_server.json │ │ ├── common.json │ │ ├── core_service.json │ │ ├── datacollection.json │ │ ├── event_server.json │ │ ├── host_controller.json │ │ ├── host_server.json │ │ ├── migrate.json │ │ ├── object_controller.json │ │ ├── operation_server.json │ │ ├── proc_controller.json │ │ ├── proc_server.json │ │ ├── statistics_server.json │ │ ├── synchronize.json │ │ ├── taskserver.json │ │ ├── topo_server.json │ │ └── web.json └── language │ ├── default │ ├── api.json │ ├── association.json │ ├── classification.json │ ├── common.json │ ├── enum.json │ ├── fieldtype.json │ ├── host_server.json │ ├── import_comment_sheet.json │ ├── import_comment_sheet_netcollect.json │ ├── import_instance.json │ ├── inst.json │ ├── model_attribute.json │ ├── object.json │ ├── operation.json │ ├── placeholder.json │ ├── proc.json │ ├── property.json │ ├── property_group.json │ ├── service_category.json │ ├── topo.json │ └── web.json │ └── en │ ├── api.json │ ├── association.json │ ├── classification.json │ ├── common.json │ ├── enum.json │ ├── fieldtype.json │ ├── host_server.json │ ├── import_comment_sheet.json │ ├── import_comment_sheet_netcollect.json │ ├── import_instance.json │ ├── inst.json │ ├── model_attribute.json │ ├── object.json │ ├── operation.json │ ├── placeholder.json │ ├── proc.json │ ├── property.json │ ├── property_group.json │ ├── service_category.json │ ├── topo.json │ └── web.json ├── scripts ├── Makefile ├── build.sh ├── generate.py ├── gotest.sh ├── image.sh ├── init.py ├── init_auth.sh ├── init_db.sh ├── ip.py ├── license.py ├── prepare_cfg.py ├── refresh_config.sh ├── restart.sh ├── start.sh ├── stop.sh ├── template.sh.start ├── template.sh.stop ├── tongsuo.sh ├── upgrade.sh └── validate.sh ├── src ├── Makefile ├── ac │ ├── auth.go │ ├── extensions │ │ ├── base.go │ │ ├── biz_set.go │ │ ├── business.go │ │ ├── host.go │ │ ├── instance.go │ │ ├── model.go │ │ ├── module.go │ │ ├── plat.go │ │ ├── process.go │ │ ├── resource_directory.go │ │ ├── servicetemplate.go │ │ ├── set.go │ │ └── types.go │ ├── iam │ │ ├── adaptor.go │ │ ├── client.go │ │ ├── gen_id.go │ │ ├── iam.go │ │ ├── initial_action_groups.go │ │ ├── initial_actions.go │ │ ├── initial_common_actions.go │ │ ├── initial_instance_selections.go │ │ ├── initial_resource_creator_actions.go │ │ ├── initial_resources.go │ │ ├── types.go │ │ └── viewer.go │ ├── meta │ │ ├── meta.go │ │ └── resource.go │ └── parser │ │ ├── admin.go │ │ ├── cache.go │ │ ├── chain.go │ │ ├── cloud.go │ │ ├── event.go │ │ ├── field_template.go │ │ ├── framework.go │ │ ├── host.go │ │ ├── hostapply.go │ │ ├── kube.go │ │ ├── model_quote.go │ │ ├── netcollector.go │ │ ├── operationstatistics.go │ │ ├── parser.go │ │ ├── process.go │ │ ├── processinstance.go │ │ ├── processtemplate.go │ │ ├── servicecategory.go │ │ ├── serviceinstance.go │ │ ├── servicetemplate.go │ │ ├── settemplate.go │ │ ├── topolatest.go │ │ ├── topology.go │ │ └── util.go ├── apimachinery │ ├── adminserver │ │ ├── adminserver.go │ │ └── api.go │ ├── apimachinery.go │ ├── apiserver │ │ ├── api.go │ │ ├── apiserver.go │ │ ├── biz.go │ │ ├── field_template │ │ │ ├── api.go │ │ │ ├── attribute_template.go │ │ │ └── field_template.go │ │ └── model_quote │ │ │ ├── api.go │ │ │ └── instance.go │ ├── authserver │ │ ├── api.go │ │ └── authserver.go │ ├── cacheservice │ │ ├── cache │ │ │ ├── event │ │ │ │ ├── api.go │ │ │ │ ├── cache.go │ │ │ │ └── event.go │ │ │ ├── general │ │ │ │ ├── api.go │ │ │ │ └── cache.go │ │ │ ├── host │ │ │ │ ├── api.go │ │ │ │ ├── cache.go │ │ │ │ └── host.go │ │ │ └── topology │ │ │ │ ├── api.go │ │ │ │ ├── cache.go │ │ │ │ └── topology.go │ │ └── cacheservice.go │ ├── clientset.go │ ├── clientset_coreservice_inst_test.go │ ├── clientset_coreservice_model_test.go │ ├── clientset_mock.go │ ├── clientset_test.go │ ├── cloudserver │ │ ├── api.go │ │ └── cloudserver.go │ ├── coreservice │ │ ├── association │ │ │ ├── api.go │ │ │ └── association.go │ │ ├── auditlog │ │ │ ├── api.go │ │ │ └── auditlog.go │ │ ├── auth │ │ │ ├── api.go │ │ │ └── auth.go │ │ ├── cloud │ │ │ ├── api.go │ │ │ └── cloud.go │ │ ├── common │ │ │ ├── api.go │ │ │ └── common.go │ │ ├── coreservice.go │ │ ├── count │ │ │ ├── api.go │ │ │ └── count.go │ │ ├── field_template │ │ │ ├── api.go │ │ │ ├── attribute_template.go │ │ │ ├── field_template.go │ │ │ ├── relation.go │ │ │ └── unique_template.go │ │ ├── host │ │ │ ├── api.go │ │ │ └── host.go │ │ ├── hostapplyrule │ │ │ ├── api.go │ │ │ └── hostapplyrule.go │ │ ├── id_rule │ │ │ ├── api.go │ │ │ └── id_rule.go │ │ ├── instance │ │ │ ├── api.go │ │ │ └── instance.go │ │ ├── kube │ │ │ ├── api.go │ │ │ └── kube.go │ │ ├── label │ │ │ ├── api.go │ │ │ └── label.go │ │ ├── mainline │ │ │ ├── api.go │ │ │ └── mainline.go │ │ ├── model │ │ │ ├── api.go │ │ │ └── model.go │ │ ├── model_quote │ │ │ ├── api.go │ │ │ ├── instance.go │ │ │ └── model.go │ │ ├── operation │ │ │ ├── api.go │ │ │ └── operation.go │ │ ├── process │ │ │ ├── api.go │ │ │ └── process.go │ │ ├── project │ │ │ ├── api.go │ │ │ └── project.go │ │ ├── settemplate │ │ │ ├── api.go │ │ │ └── settemplate.go │ │ ├── synchronize │ │ │ ├── api.go │ │ │ └── synchronize.go │ │ ├── system │ │ │ ├── api.go │ │ │ └── system.go │ │ └── topographics │ │ │ ├── api.go │ │ │ ├── graphic.go │ │ │ └── topographics.go │ ├── discovery │ │ ├── discovery.go │ │ ├── discovery_mock.go │ │ ├── empty_server.go │ │ ├── server.go │ │ └── server_test.go │ ├── eventserver │ │ ├── api.go │ │ └── eventserver.go │ ├── fake │ │ └── main.go │ ├── flowctrl │ │ ├── flowctrl.go │ │ └── throttle.go │ ├── healthz │ │ └── healthz.go │ ├── hostserver │ │ ├── apis.go │ │ └── hostserver.go │ ├── procserver │ │ ├── openapi │ │ │ ├── api.go │ │ │ └── openapi.go │ │ ├── process │ │ │ ├── api.go │ │ │ ├── instance.go │ │ │ ├── process.go │ │ │ └── template.go │ │ ├── procserver.go │ │ └── service │ │ │ ├── api.go │ │ │ ├── category.go │ │ │ ├── instance.go │ │ │ ├── service.go │ │ │ └── template.go │ ├── rest │ │ ├── client.go │ │ ├── request.go │ │ ├── rest.go │ │ └── wrapper.go │ ├── synchronize │ │ ├── synchronize.go │ │ ├── synchronizeserver │ │ │ ├── apis.go │ │ │ └── syncrhonize.go │ │ └── util │ │ │ └── discovery.go │ ├── taskserver │ │ ├── queue │ │ │ ├── apis.go │ │ │ └── queue.go │ │ ├── task │ │ │ ├── api.go │ │ │ └── task.go │ │ ├── taskserver.go │ │ └── util │ │ │ └── discovery.go │ ├── toposerver │ │ ├── association │ │ │ ├── apis.go │ │ │ └── association.go │ │ ├── fieldtemplate │ │ │ ├── api.go │ │ │ └── field_template.go │ │ ├── inst │ │ │ ├── api.go │ │ │ ├── app.go │ │ │ ├── biz_set.go │ │ │ ├── common.go │ │ │ ├── inst.go │ │ │ ├── module.go │ │ │ ├── project.go │ │ │ └── set.go │ │ ├── kube │ │ │ ├── apis.go │ │ │ └── kube.go │ │ ├── object │ │ │ ├── action.go │ │ │ ├── api.go │ │ │ ├── attribute.go │ │ │ ├── class.go │ │ │ ├── graphic.go │ │ │ ├── group.go │ │ │ ├── obj.go │ │ │ ├── object.go │ │ │ └── unique.go │ │ ├── resourcedir │ │ │ ├── apis.go │ │ │ └── resourcedir.go │ │ ├── settemplate │ │ │ ├── apis.go │ │ │ └── settemplate.go │ │ └── toposerver.go │ ├── transaction │ │ ├── api.go │ │ ├── client.go │ │ └── transaction.go │ └── util │ │ ├── client.go │ │ ├── type.go │ │ └── util.go ├── apiserver │ ├── Makefile │ ├── app │ │ ├── app.go │ │ ├── options │ │ │ └── options.go │ │ └── server.go │ ├── main.go │ ├── middleware │ │ ├── auth.go │ │ ├── middleware.go │ │ └── router.go │ ├── readme.md │ └── service │ │ ├── auth.go │ │ ├── count.go │ │ ├── filter.go │ │ ├── healthz.go │ │ ├── http.go │ │ ├── limiter.go │ │ ├── match │ │ ├── example.md │ │ ├── match.go │ │ └── match_server.go │ │ ├── service.go │ │ ├── type.go │ │ └── url.go ├── changelog.md ├── common │ ├── atomicfile.go │ ├── atomicfile_test.go │ ├── auditlog │ │ ├── association.go │ │ ├── attribute_group.go │ │ ├── audit.go │ │ ├── auditlog.go │ │ ├── cloud_account.go │ │ ├── cloud_area.go │ │ ├── cloud_sync_task.go │ │ ├── dynamic_grouping.go │ │ ├── field_template.go │ │ ├── host.go │ │ ├── hostmodule.go │ │ ├── instance.go │ │ ├── kube.go │ │ ├── metadata.go │ │ ├── object.go │ │ ├── object_attribute.go │ │ ├── object_classification.go │ │ ├── object_unique.go │ │ ├── platform_setting.go │ │ ├── quoted_inst.go │ │ ├── resource_directory.go │ │ └── service_instance.go │ ├── auth │ │ └── auth.go │ ├── backbone │ │ ├── backbone.go │ │ ├── backbone_mock.go │ │ ├── configcenter │ │ │ ├── cc.go │ │ │ ├── configcenter.go │ │ │ ├── manager.go │ │ │ ├── parse.go │ │ │ └── viper.go │ │ ├── context.go │ │ ├── http.go │ │ ├── notice.go │ │ ├── register.go │ │ ├── service_mange │ │ │ └── zk │ │ │ │ └── zk.go │ │ └── type.go │ ├── blog │ │ ├── blog.go │ │ ├── blog_test.go │ │ └── glog │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_method.go │ ├── common.go │ ├── condition │ │ ├── condition.go │ │ ├── condition_test.go │ │ ├── field.go │ │ ├── field_test.go │ │ ├── or.go │ │ ├── or_test.go │ │ ├── page.go │ │ └── types.go │ ├── confregdiscover │ │ ├── confregdiscover.go │ │ ├── regdiscoverIf.go │ │ └── zkregdiscover.go │ ├── core │ │ └── cc │ │ │ └── config │ │ │ └── config.go │ ├── criteria │ │ └── enumor │ │ │ └── column.go │ ├── cryptor │ │ ├── aes_cryptor.go │ │ ├── aes_cryptor_test.go │ │ ├── bk_crypto.go │ │ ├── cryptor.go │ │ ├── disable_crypto.go │ │ └── types.go │ ├── definitions.go │ ├── deployment.go │ ├── errInfo.go │ ├── errors │ │ ├── defaultError.go │ │ ├── defaultError_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── errorIf.go │ │ ├── error_test.go │ │ ├── errors.go │ │ ├── examples │ │ │ └── errorres │ │ │ │ ├── cn │ │ │ │ └── comon.json │ │ │ │ ├── default │ │ │ │ └── comon.json │ │ │ │ └── en │ │ │ │ └── comon.json │ │ ├── factory.go │ │ ├── type.go │ │ └── typefunc.go │ ├── find_common.go │ ├── http │ │ ├── header │ │ │ ├── accessor.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ └── util │ │ │ │ └── util.go │ │ ├── http.go │ │ ├── httpclient │ │ │ ├── client.go │ │ │ ├── forwardclient.go │ │ │ └── httpclient.go │ │ ├── httpserver │ │ │ ├── action.go │ │ │ ├── httpserver.go │ │ │ ├── server.go │ │ │ └── webserver │ │ │ │ ├── actions.go │ │ │ │ └── webserver.go │ │ ├── response.go │ │ └── rest │ │ │ ├── contexts.go │ │ │ ├── metric.go │ │ │ └── rest.go │ ├── identification.go │ ├── identification_test.go │ ├── index │ │ ├── README.md │ │ ├── association.go │ │ ├── collections │ │ │ ├── apitask.go │ │ │ ├── applicationbase.go │ │ │ ├── asstdes.go │ │ │ ├── auditlog.go │ │ │ ├── business_set.go │ │ │ ├── chartconfig.go │ │ │ ├── chartposition.go │ │ │ ├── cloudaccount.go │ │ │ ├── cloudsynchistory.go │ │ │ ├── cloudsynctask.go │ │ │ ├── delarchive.go │ │ │ ├── deprecatedindexname.go │ │ │ ├── dynamicgroup.go │ │ │ ├── field_template.go │ │ │ ├── field_template_relation.go │ │ │ ├── full_sync_cond.go │ │ │ ├── hostapplyrule.go │ │ │ ├── hostbase.go │ │ │ ├── hostlock.go │ │ │ ├── kube.go │ │ │ ├── manager.go │ │ │ ├── model_quote_relation.go │ │ │ ├── modulebase.go │ │ │ ├── modulehostconfig.go │ │ │ ├── netcollectdevice.go │ │ │ ├── netcollectproperty.go │ │ │ ├── obj_attr_des_template.go │ │ │ ├── objasst.go │ │ │ ├── objattdes.go │ │ │ ├── objclassification.go │ │ │ ├── objdes.go │ │ │ ├── object_unique_template.go │ │ │ ├── objectbasemapping.go │ │ │ ├── objectunique.go │ │ │ ├── platbase.go │ │ │ ├── process.go │ │ │ ├── processinstancerelation.go │ │ │ ├── processtemplate.go │ │ │ ├── project.go │ │ │ ├── propertygroup.go │ │ │ ├── servicecategory.go │ │ │ ├── serviceinstance.go │ │ │ ├── servicetemplate.go │ │ │ ├── servicetemplateattr.go │ │ │ ├── setbase.go │ │ │ ├── setservicetemplaterelation.go │ │ │ ├── settemplate.go │ │ │ ├── settemplateattr.go │ │ │ └── topographics.go │ │ ├── compare.go │ │ ├── index.go │ │ └── instance.go │ ├── ipv6base.go │ ├── json │ │ ├── json.go │ │ └── tool.go │ ├── language │ │ ├── defaultLanguage.go │ │ ├── examples │ │ │ └── errorres │ │ │ │ ├── cn │ │ │ │ └── comon.json │ │ │ │ ├── default │ │ │ │ └── comon.json │ │ │ │ └── en │ │ │ │ └── comon.json │ │ ├── factory.go │ │ ├── language.go │ │ ├── languageIf.go │ │ ├── language_test.go │ │ ├── type.go │ │ ├── typefunc.go │ │ └── typefunc_test.go │ ├── lock │ │ ├── lock.go │ │ ├── lock_key.go │ │ └── lock_test.go │ ├── logics │ │ ├── logics.go │ │ └── model.go │ ├── mapping.go │ ├── mapping_test.go │ ├── mapstr │ │ ├── convert.go │ │ ├── deal_types.go │ │ ├── default_value.go │ │ ├── elem.go │ │ ├── factory.go │ │ ├── mapstr.go │ │ ├── mapstr_test.go │ │ ├── struct.go │ │ ├── struct_test.go │ │ ├── tag.go │ │ └── to_value.go │ ├── mapstruct │ │ ├── decode.go │ │ └── mapstruct.go │ ├── metadata │ │ ├── adminserver.go │ │ ├── apilimiter.go │ │ ├── apiserver.go │ │ ├── association.go │ │ ├── attribute.go │ │ ├── audit.go │ │ ├── auth.go │ │ ├── authserver.go │ │ ├── cache.go │ │ ├── classification.go │ │ ├── cloud.go │ │ ├── common.go │ │ ├── configadmin.go │ │ ├── core_service.go │ │ ├── core_service_synchronize.go │ │ ├── core_service_test.go │ │ ├── create.go │ │ ├── datacollection.go │ │ ├── dataid.go │ │ ├── delete.go │ │ ├── dynamic_grouping.go │ │ ├── eventserver.go │ │ ├── field_template.go │ │ ├── filter.go │ │ ├── fulltextsearch.go │ │ ├── graphic.go │ │ ├── group.go │ │ ├── group_by.go │ │ ├── host.go │ │ ├── host_apply_rule.go │ │ ├── hostcontroller.go │ │ ├── hostlock.go │ │ ├── hostserver.go │ │ ├── id_rule.go │ │ ├── inst.go │ │ ├── instance_struct.go │ │ ├── metadata.go │ │ ├── metadata_test.go │ │ ├── model_quote.go │ │ ├── netdevice.go │ │ ├── object.go │ │ ├── object_controller.go │ │ ├── operation.go │ │ ├── page.go │ │ ├── page_test.go │ │ ├── process.go │ │ ├── process_bind_info.go │ │ ├── process_request.go │ │ ├── procserver.go │ │ ├── query.go │ │ ├── querycondition.go │ │ ├── result.go │ │ ├── result_test.go │ │ ├── set.go │ │ ├── set_template.go │ │ ├── set_template_request.go │ │ ├── special.go │ │ ├── taskserver.go │ │ ├── time.go │ │ ├── time_test.go │ │ ├── toposerver.go │ │ ├── transaction.go │ │ ├── unique.go │ │ ├── update.go │ │ └── webserver.go │ ├── metric │ │ ├── README.md │ │ ├── api.go │ │ ├── client.go │ │ ├── floatOrStr.go │ │ ├── go-metric.go │ │ ├── metric.go │ │ ├── plugin │ │ │ ├── counter.go │ │ │ ├── integer.go │ │ │ └── plugin.go │ │ └── type.go │ ├── metrics │ │ ├── gauge.go │ │ └── metrics.go │ ├── paraparse │ │ ├── app.go │ │ ├── host.go │ │ └── paraparse_test.go │ ├── pattern.go │ ├── pidfile.go │ ├── pidfile_test.go │ ├── querybuilder │ │ ├── README.md │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── querybuilder.go │ │ ├── types.go │ │ ├── types_test.go │ │ └── validate.go │ ├── rdapi │ │ ├── rdapi.go │ │ └── rdfunc.go │ ├── readme.md │ ├── registerdiscover │ │ ├── interface.go │ │ ├── registerdiscover.go │ │ └── zkregdiscv.go │ ├── resource │ │ ├── apigw │ │ │ └── apigw.go │ │ ├── esb │ │ │ └── esb.go │ │ └── jwt │ │ │ └── jwt.go │ ├── selector │ │ ├── label.go │ │ ├── selector.go │ │ └── selector_test.go │ ├── ssl │ │ ├── ssl.go │ │ ├── ssl_test.go │ │ └── type.go │ ├── tablenames.go │ ├── tablenames_test.go │ ├── time │ │ └── time.go │ ├── types │ │ ├── manager.go │ │ ├── serverInfo.go │ │ └── types.go │ ├── universalsql │ │ ├── mongo │ │ │ ├── condition.go │ │ │ ├── condition_private.go │ │ │ ├── condition_test.go │ │ │ ├── element.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── mongo.go │ │ │ ├── result.go │ │ │ └── statement.go │ │ ├── type.go │ │ └── universalsql.go │ ├── util │ │ ├── array.go │ │ ├── array_test.go │ │ ├── calculate.go │ │ ├── chinese.go │ │ ├── collection.go │ │ ├── collection_test.go │ │ ├── conv.go │ │ ├── conv_test.go │ │ ├── errorfrequency.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── flags.go │ │ ├── ginkgo_conv_test.go │ │ ├── ginkgo_util_suite_test.go │ │ ├── lib.go │ │ ├── lib_test.go │ │ ├── map.go │ │ ├── mapbuilder.go │ │ ├── mapbuilder_test.go │ │ ├── model.go │ │ ├── net.go │ │ ├── net_test.go │ │ ├── ownerutil.go │ │ ├── ownerutil_test.go │ │ ├── struti.go │ │ ├── struti_test.go │ │ ├── table │ │ │ └── table.go │ │ ├── time.go │ │ └── time_test.go │ ├── valid │ │ ├── attribute │ │ │ ├── attribute.go │ │ │ ├── attribute_test.go │ │ │ ├── init │ │ │ │ ├── README.md │ │ │ │ └── init.go │ │ │ ├── manager │ │ │ │ ├── attribute.go │ │ │ │ └── register │ │ │ │ │ └── attribute.go │ │ │ └── plugins │ │ │ │ └── README.md │ │ ├── valid.go │ │ └── valid_test.go │ ├── version │ │ └── version.go │ ├── watch │ │ ├── cursor.go │ │ ├── cursor_test.go │ │ ├── types.go │ │ └── watch.go │ ├── webservice │ │ ├── ginservice │ │ │ ├── ginservice.go │ │ │ └── webservice.go │ │ └── restfulservice │ │ │ ├── restfulservice.go │ │ │ └── webservice.go │ └── zkclient │ │ ├── zkclient.go │ │ └── zkclient_test.go ├── kube │ ├── orm │ │ ├── tool.go │ │ └── tool_test.go │ └── types │ │ ├── cluster.go │ │ ├── cronjob.go │ │ ├── daemonset.go │ │ ├── deployment.go │ │ ├── gamedeployment.go │ │ ├── gamestatefulset.go │ │ ├── job.go │ │ ├── k8s_types.go │ │ ├── namespace.go │ │ ├── node.go │ │ ├── pod.go │ │ ├── pods_workload.go │ │ ├── spec.go │ │ ├── statefulset.go │ │ ├── topo.go │ │ ├── types.go │ │ ├── validate.go │ │ ├── validate_test.go │ │ └── workload.go ├── readme.md ├── scene_server │ ├── admin_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── change_asst_id.js │ │ ├── command │ │ │ ├── command.go │ │ │ ├── export.go │ │ │ ├── import.go │ │ │ ├── process_property.go │ │ │ └── types.go │ │ ├── common │ │ │ └── definitions.go │ │ ├── comparer │ │ │ └── compare.go │ │ ├── configures │ │ │ ├── checkconf.go │ │ │ ├── conf.go │ │ │ └── configures.go │ │ ├── fixes_att_id.js │ │ ├── fixes_inst_association.js │ │ ├── fixes_topo.js │ │ ├── iam │ │ │ ├── iam.go │ │ │ └── synciam.go │ │ ├── imports.go │ │ ├── imports_history.go │ │ ├── logics │ │ │ ├── index.go │ │ │ └── logics.go │ │ ├── migrate.go │ │ ├── readme.md │ │ ├── service │ │ │ ├── authcenter.go │ │ │ ├── configadmin.go │ │ │ ├── database.go │ │ │ ├── dataid.go │ │ │ ├── flag.go │ │ │ ├── index.go │ │ │ ├── migrate.go │ │ │ └── service.go │ │ └── upgrader │ │ │ ├── compare.go │ │ │ ├── configadmin.go │ │ │ ├── doc.go │ │ │ ├── history │ │ │ ├── v3.0.8 │ │ │ │ ├── addDefauleApp.go │ │ │ │ ├── addPlatData.go │ │ │ │ ├── addPresetObjects.go │ │ │ │ ├── addSystemData.go │ │ │ │ ├── createtable.go │ │ │ │ ├── objAttDescData.go │ │ │ │ ├── pkg.go │ │ │ │ └── upgradeBKBiz.go │ │ │ ├── v3.0.9-beta.1 │ │ │ │ ├── fixes_supplier_account.go │ │ │ │ └── pkg.go │ │ │ ├── v3.0.9-beta.3 │ │ │ │ ├── fixes_port_pattern.go │ │ │ │ └── pkg.go │ │ │ ├── v3.1.0-alpha.2 │ │ │ │ ├── addBkStartParamRegex.go │ │ │ │ └── pkg.go │ │ │ ├── x08.09.04.01 │ │ │ │ ├── pkg.go │ │ │ │ └── updateSystemProperty.go │ │ │ ├── x08.09.17.01 │ │ │ │ ├── create_table_netcollect.go │ │ │ │ └── pkg.go │ │ │ ├── x08.09.18.01 │ │ │ │ ├── pkg.go │ │ │ │ └── upgrader.go │ │ │ ├── x08.09.26.01 │ │ │ │ ├── pkg.go │ │ │ │ └── upgrader.go │ │ │ ├── x18.09.30.01 │ │ │ │ ├── pkg.go │ │ │ │ └── upgrader.go │ │ │ ├── x18.10.10.01 │ │ │ │ ├── pkg.go │ │ │ │ └── procsrv.go │ │ │ ├── x18.10.30.01 │ │ │ │ ├── association.go │ │ │ │ └── pkg.go │ │ │ ├── x18.11.19.01 │ │ │ │ ├── pkg.go │ │ │ │ ├── reconcil_asst_id.go │ │ │ │ └── reconcil_unique.go │ │ │ ├── x18.12.12.01 │ │ │ │ ├── add_aix_property.go │ │ │ │ ├── pkg.go │ │ │ │ ├── reconcil_unique.go │ │ │ │ └── set_tcp_default.go │ │ │ ├── x18.12.12.02 │ │ │ │ ├── fix_module_name_property_group.go │ │ │ │ └── pkg.go │ │ │ ├── x18.12.12.03 │ │ │ │ ├── fixAssociationTypeName.go │ │ │ │ ├── fixEventSubscribeLastTime.go │ │ │ │ └── pkg.go │ │ │ ├── x18.12.12.04 │ │ │ │ ├── fix_bk_obj_asst_id.go │ │ │ │ └── pkg.go │ │ │ ├── x18.12.12.05 │ │ │ │ ├── pkg.go │ │ │ │ └── remove_deleted_inst_asst.go │ │ │ ├── x18.12.12.06 │ │ │ │ ├── pkg.go │ │ │ │ └── reconcil_unique.go │ │ │ ├── x18.12.13.01 │ │ │ │ ├── addswitchAssociation.go │ │ │ │ └── pkg.go │ │ │ ├── x19.01.18.01 │ │ │ │ ├── drop_index.go │ │ │ │ └── pkg.go │ │ │ ├── x19.02.15.10 │ │ │ │ ├── fixAssociationTypeName.go │ │ │ │ ├── fixEventSubscribeLastTime.go │ │ │ │ └── pkg.go │ │ │ ├── x19.04.16.01 │ │ │ │ ├── pkg.go │ │ │ │ └── removeDescriptionField.go │ │ │ ├── x19.04.16.02 │ │ │ │ ├── pkg.go │ │ │ │ └── updateFranceName.go │ │ │ ├── x19.04.16.03 │ │ │ │ ├── pkg.go │ │ │ │ └── updateAttributeCreateTime.go │ │ │ ├── x19.05.16.01 │ │ │ │ ├── add_default_category.go │ │ │ │ ├── add_inner_category.go │ │ │ │ ├── add_module_property.go │ │ │ │ ├── change_process_name.go │ │ │ │ ├── create_table.go │ │ │ │ ├── pkg.go │ │ │ │ ├── update_process_property.go │ │ │ │ └── upgrade_service_template.go │ │ │ ├── x19.08.19.01 │ │ │ │ ├── pkg.go │ │ │ │ ├── remove_proc_fresh_instance.go │ │ │ │ └── update_ip_regex.go │ │ │ ├── x19.08.20.01 │ │ │ │ ├── delete_host_plat_association.go │ │ │ │ └── pkg.go │ │ │ ├── x19.08.26.02 │ │ │ │ ├── fix_service_instance_max_id.go │ │ │ │ └── pkg.go │ │ │ ├── x19.09.03.01 │ │ │ │ ├── model_attr_group_collapse_flag.go │ │ │ │ ├── pkg.go │ │ │ │ └── update_set_description_property.go │ │ │ ├── x19.09.03.02 │ │ │ │ ├── pkg.go │ │ │ │ └── set_module_set_template_field_uneditable.go │ │ │ ├── x19.09.03.03 │ │ │ │ ├── pkg.go │ │ │ │ └── set_module_set_template_field_uneditable.go │ │ │ ├── x19.09.03.04 │ │ │ │ ├── pkg.go │ │ │ │ └── set_module_set_template_field_uneditable.go │ │ │ ├── x19.09.03.05 │ │ │ │ ├── create_inst_name_index.go │ │ │ │ ├── create_object_id_index.go │ │ │ │ └── pkg.go │ │ │ ├── x19.09.03.06 │ │ │ │ ├── pkg.go │ │ │ │ ├── update_proc_start_param_placeholder.go │ │ │ │ └── update_set_description_field_type.go │ │ │ ├── x19.09.03.07 │ │ │ │ ├── pkg.go │ │ │ │ └── remove_metadata.go │ │ │ ├── x19.09.03.08 │ │ │ │ ├── pkg.go │ │ │ │ └── update_process_property.go │ │ │ ├── x19.10.22.01 │ │ │ │ ├── pkg.go │ │ │ │ └── update_cpu_unit.go │ │ │ ├── x19.10.22.02 │ │ │ │ ├── add_host_index.go │ │ │ │ └── pkg.go │ │ │ ├── x19.10.22.03 │ │ │ │ ├── pkg.go │ │ │ │ └── remove_mainline_property_required.go │ │ │ ├── x20.01.13.01 │ │ │ │ ├── pkg.go │ │ │ │ └── update_none_property_group.go │ │ │ ├── x20.02.17.01 │ │ │ │ ├── fix_proctemp_procname.go │ │ │ │ └── pkg.go │ │ │ ├── y3.6.201909062359 │ │ │ │ ├── add_module_property.go │ │ │ │ ├── add_set_property.go │ │ │ │ ├── create_table.go │ │ │ │ ├── initialize_set_template_field.go │ │ │ │ └── pkg.go │ │ │ ├── y3.6.201909272359 │ │ │ │ ├── pkg.go │ │ │ │ └── task.go │ │ │ ├── y3.6.201910091234 │ │ │ │ ├── pkg.go │ │ │ │ └── settemplate_sync_status.go │ │ │ ├── y3.6.201911121930 │ │ │ │ ├── add_recycle_module.go │ │ │ │ └── pkg.go │ │ │ ├── y3.6.201911122106 │ │ │ │ ├── pkg.go │ │ │ │ └── set_process_auto_start.go │ │ │ ├── y3.6.201911141015 │ │ │ │ ├── pkg.go │ │ │ │ └── remove_metadata.go │ │ │ ├── y3.6.201911141516 │ │ │ │ ├── obj_host_add_field_type_list.go │ │ │ │ └── pkg.go │ │ │ ├── y3.6.201911261109 │ │ │ │ ├── create_table.go │ │ │ │ ├── init_chart.go │ │ │ │ └── pkg.go │ │ │ ├── y3.6.201912241627 │ │ │ │ ├── pkg.go │ │ │ │ └── sort_bk_property_index.go │ │ │ ├── y3.7.201911141719 │ │ │ │ ├── init_host_property_apply.go │ │ │ │ └── pkg.go │ │ │ ├── y3.7.201912121117 │ │ │ │ ├── add_host_outer_ip_unique.go │ │ │ │ └── pkg.go │ │ │ ├── y3.7.201912171427 │ │ │ │ ├── add_set_template_version.go │ │ │ │ └── pkg.go │ │ │ ├── y3.7.202002231026 │ │ │ │ ├── add_bk_port_enable_property.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202001172032 │ │ │ │ ├── create_audit_log_table.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202002101113 │ │ │ │ ├── migrate_event_id.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202004141131 │ │ │ │ ├── add_bk_port_enable_property.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202004151435 │ │ │ │ ├── add_proc_gateway_attr.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202004241035 │ │ │ │ ├── fix_set_template_version_time_empty.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202004291536 │ │ │ │ ├── add_index.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202006021120 │ │ │ │ ├── add_service_instance_index.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202006092135 │ │ │ │ ├── init_config_admin.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202006231730 │ │ │ │ ├── create_table_del_archive.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202006241144 │ │ │ │ ├── change_host_ip_user_to_array.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202006281530 │ │ │ │ ├── change_attr_sla_editable.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202007011748 │ │ │ │ ├── change_bk_mainlin_set_biz_asst.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202008051650 │ │ │ │ ├── add_module_attr.go │ │ │ │ └── pkg.go │ │ │ ├── y3.8.202008111026 │ │ │ │ ├── pkg.go │ │ │ │ └── remove_bk_supplier_id.go │ │ │ ├── y3.8.202008241747 │ │ │ │ ├── addCpuMemDiskUnit.go │ │ │ │ └── pkg.go │ │ │ └── y3.8.202009101702 │ │ │ │ ├── pkg.go │ │ │ │ └── proc_bind_change.go │ │ │ ├── register.go │ │ │ ├── upgrader.go │ │ │ ├── util.go │ │ │ ├── y3.10.202104221702 │ │ │ ├── drop_plat_vpcid_index.go │ │ │ ├── inner_object_index.go │ │ │ ├── mapping.go │ │ │ ├── pkg.go │ │ │ └── split_inst_table.go │ │ │ ├── y3.10.202105251041 │ │ │ ├── pkg.go │ │ │ └── unqiue_index_delete_must_check.go │ │ │ ├── y3.10.202105261459 │ │ │ ├── pkg.go │ │ │ └── update_config_admin.go │ │ │ ├── y3.10.202106031151 │ │ │ ├── add_unix_property.go │ │ │ ├── pkg.go │ │ │ └── update_process_pri_range.go │ │ │ ├── y3.10.202107011735 │ │ │ ├── drop_set_template_version_column.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202107021056 │ │ │ ├── change_host_attr_editable.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202107161611 │ │ │ ├── pkg.go │ │ │ └── proc_bind_change.go │ │ │ ├── y3.10.202107271945 │ │ │ ├── delete_history_task.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202107301510 │ │ │ ├── add_solaris_property.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202107311844 │ │ │ ├── pkg.go │ │ │ └── set_proc_bind_ip_not_reuqired.go │ │ │ ├── y3.10.202109131607 │ │ │ ├── migrate_iam_sysinstances.go │ │ │ ├── pkg.go │ │ │ └── util.go │ │ │ ├── y3.10.202109181134 │ │ │ ├── migrate_svc_inst_id_to_proc.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202112071130 │ │ │ ├── migrate_api_task.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202112071431 │ │ │ ├── pkg.go │ │ │ └── updateAdminConfigc.go │ │ │ ├── y3.10.202112171521 │ │ │ ├── add_bind_info_option.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202203011516 │ │ │ ├── add_biz_set.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202203021455 │ │ │ ├── add_classification.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202203031512 │ │ │ ├── add_agent_id_and_ipv6_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202204181447 │ │ │ ├── add_business_set.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202204271725 │ │ │ ├── pkg.go │ │ │ └── service_template_host_apply.go │ │ │ ├── y3.10.202205182148 │ │ │ ├── pkg.go │ │ │ └── update_business_set.go │ │ │ ├── y3.10.202206081408 │ │ │ ├── init_template_attribute.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202208032125 │ │ │ ├── add_host_favourite_type_column.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202209231617 │ │ │ ├── add_cloud_host_related_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202209281408 │ │ │ ├── init_kube_collection.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202302031117 │ │ │ ├── objattrdes_ismultichoice.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202302062350 │ │ │ ├── add_project.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202303072103 │ │ │ ├── add_freebsd_property.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202303301611 │ │ │ ├── pkg.go │ │ │ ├── update_host_outeripv6_option.go │ │ │ └── update_process_ipv6attr_option.go │ │ │ ├── y3.10.202303301718 │ │ │ ├── objattrdes_default.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202304012150 │ │ │ ├── add_model_quote_relation.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202305110949 │ │ │ ├── add_agent_id_related_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.10.202305151505 │ │ │ ├── pkg.go │ │ │ └── update_bk_cloud_word.go │ │ │ ├── y3.10.202307171520 │ │ │ ├── add_field_template.go │ │ │ ├── add_template_id_column.go │ │ │ └── pkg.go │ │ │ ├── y3.11.202309050900 │ │ │ ├── delete_host_apply_rule.go │ │ │ └── pkg.go │ │ │ ├── y3.12.202309211735 │ │ │ ├── init_shared_cluster_table.go │ │ │ └── pkg.go │ │ │ ├── y3.12.202310301633 │ │ │ ├── add_recorded_fields.go │ │ │ └── pkg.go │ │ │ ├── y3.12.202311061800 │ │ │ ├── add_sort_number_column.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202401221600 │ │ │ ├── encode_pod_label.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202402191140 │ │ │ ├── migrate_inner_classification.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202402281158 │ │ │ ├── add_mac_os_type.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202403151855 │ │ │ ├── migrate_host_message.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202404221100 │ │ │ ├── add_unassigned_cloud_area.go │ │ │ ├── change_default_area_default_field.go │ │ │ ├── pkg.go │ │ │ └── update_host_field.go │ │ │ ├── y3.13.202405080955 │ │ │ ├── add_cloud_region_zone_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202407191507 │ │ │ ├── pkg.go │ │ │ ├── upgrade_container.go │ │ │ └── upgrade_del_archive.go │ │ │ ├── y3.13.202408011044 │ │ │ ├── del_kube_audit.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202408071435 │ │ │ ├── pkg.go │ │ │ └── update_config_admin.go │ │ │ ├── y3.13.202410091435 │ │ │ ├── add_pod_table_node_index.go │ │ │ └── pkg.go │ │ │ ├── y3.13.202410311500 │ │ │ ├── pkg.go │ │ │ └── updateCloudVendor.go │ │ │ ├── y3.14.202404031701 │ │ │ ├── init_full_sync_cond_table.go │ │ │ └── pkg.go │ │ │ ├── y3.14.202405141035 │ │ │ ├── add_self_incr_id.go │ │ │ └── pkg.go │ │ │ ├── y3.14.202410100930 │ │ │ ├── pkg.go │ │ │ └── updateAdminConfigc.go │ │ │ ├── y3.14.202502101200 │ │ │ ├── addKernelVersionField.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202002131522 │ │ │ ├── add_cloud_host_attr.go │ │ │ ├── add_cloud_host_index.go │ │ │ ├── add_cloud_host_unique.go │ │ │ ├── add_cloud_sync_tables.go │ │ │ ├── add_plat_index.go │ │ │ ├── add_plat_unique_key.go │ │ │ ├── init_plat_attr.go │ │ │ ├── pkg.go │ │ │ ├── remove_old_tables.go │ │ │ ├── remove_resource_fault_recycle.go │ │ │ └── upgrade_cloud_area.go │ │ │ ├── y3.9.202008101530 │ │ │ ├── change_metadata_to_bizid.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202008121631 │ │ │ ├── add_objectl_field_ishidden.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202008172134 │ │ │ ├── pkg.go │ │ │ └── update_audit_table.go │ │ │ ├── y3.9.202010131456 │ │ │ ├── create_table.go │ │ │ ├── migrate_history.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202010151455 │ │ │ ├── add_bizid_on_common_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202010151650 │ │ │ ├── add_cloudid_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202010211805 │ │ │ ├── add_host_lock_table.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202010281615 │ │ │ ├── pkg.go │ │ │ └── update_inst_time_val.go │ │ │ ├── y3.9.202011021415 │ │ │ ├── create_unique_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202011021501 │ │ │ ├── change_attr_bkosType_editable.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202011171550 │ │ │ ├── change_process_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202011172152 │ │ │ ├── pkg.go │ │ │ └── remove_field.go │ │ │ ├── y3.9.202011192014 │ │ │ ├── change_unique_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202011201146 │ │ │ ├── pkg.go │ │ │ └── remove_redundant_items.go │ │ │ ├── y3.9.202011241510 │ │ │ ├── add_bizid_on_self_defined_node.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202011251014 │ │ │ ├── pkg.go │ │ │ └── proc_bind_change.go │ │ │ ├── y3.9.202011301723 │ │ │ ├── pkg.go │ │ │ └── remove_default_field.go │ │ │ ├── y3.9.202012011450 │ │ │ ├── change_proc_attr_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202101061721 │ │ │ ├── add_del_archive_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202102011055 │ │ │ ├── add_os_type_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202102261105 │ │ │ ├── add_instass_proc_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202103031533 │ │ │ ├── pkg.go │ │ │ └── remove_bk_cpu_mhz_field.go │ │ │ ├── y3.9.202103231621 │ │ │ ├── pkg.go │ │ │ └── update_host_empty_special_field.go │ │ │ ├── y3.9.202104011012 │ │ │ ├── add_bk_cpu_architecture_attr.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202104211151 │ │ │ ├── change_set_unique_index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202105261459 │ │ │ ├── pkg.go │ │ │ └── update_config_admin.go │ │ │ ├── y3.9.202106031151 │ │ │ ├── add_unix_property.go │ │ │ ├── pkg.go │ │ │ └── update_process_pri_range.go │ │ │ ├── y3.9.202106291420 │ │ │ ├── index.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202106301910 │ │ │ ├── change_host_attr_editable.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202107011154 │ │ │ ├── drop_set_template_version_column.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202107161611 │ │ │ ├── pkg.go │ │ │ └── proc_bind_change.go │ │ │ ├── y3.9.202107271940 │ │ │ ├── delete_history_task.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202107301510 │ │ │ ├── add_solaris_property.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202107311844 │ │ │ ├── pkg.go │ │ │ └── set_proc_bind_ip_not_reuqired.go │ │ │ ├── y3.9.202112061431 │ │ │ ├── add_bind_info_option.go │ │ │ └── pkg.go │ │ │ ├── y3.9.202112071130 │ │ │ ├── migrate_api_task.go │ │ │ └── pkg.go │ │ │ └── y3.9.202112071431 │ │ │ ├── pkg.go │ │ │ └── updateAdminConfigc.go │ ├── auth_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── auth.go │ │ ├── logics │ │ │ ├── fetch_instance_info.go │ │ │ ├── list_attr.go │ │ │ ├── list_attr_value.go │ │ │ ├── list_instance.go │ │ │ ├── list_instance_by_policy.go │ │ │ ├── logics.go │ │ │ ├── parser.go │ │ │ ├── permissions_to_apply.go │ │ │ └── util.go │ │ ├── readme.md │ │ ├── sdk │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── authorize.go │ │ │ │ ├── calculate.go │ │ │ │ └── count.go │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── policy.go │ │ │ │ └── type.go │ │ │ ├── operator │ │ │ │ ├── calculate.go │ │ │ │ ├── kit.go │ │ │ │ ├── operator.go │ │ │ │ ├── policy.go │ │ │ │ └── policy_test.go │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── const.go │ │ │ │ └── types.go │ │ ├── service │ │ │ ├── auth.go │ │ │ ├── gen_method.go │ │ │ ├── health.go │ │ │ ├── pull_resource.go │ │ │ └── service.go │ │ └── types │ │ │ └── types.go │ ├── cloud_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── cloud.go │ │ ├── cloudsync │ │ │ ├── cloudsync.go │ │ │ ├── hostsyncor.go │ │ │ ├── taskprocessor.go │ │ │ └── taskscheduler.go │ │ ├── cloudvendor │ │ │ ├── aws.go │ │ │ ├── aws_test.go │ │ │ ├── cloudvendor.go │ │ │ ├── tencent_cloud.go │ │ │ ├── tencent_cloud_test.go │ │ │ └── vendorclient.go │ │ ├── common │ │ │ ├── common.go │ │ │ ├── types.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── logics │ │ │ ├── cloud.go │ │ │ ├── logics.go │ │ │ └── synctask.go │ │ ├── readme.md │ │ └── service │ │ │ ├── account.go │ │ │ ├── health.go │ │ │ ├── service.go │ │ │ └── synctask.go │ ├── datacollection │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── collections │ │ │ ├── collections.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── hostsnap │ │ │ │ ├── filter.go │ │ │ │ ├── ginkgo_parsesetter_test.go │ │ │ │ ├── ginkgo_suite_test.go │ │ │ │ ├── hostsnap.go │ │ │ │ ├── parse.go │ │ │ │ ├── snapshot.json │ │ │ │ └── window.go │ │ │ ├── kafkaporter.go │ │ │ ├── manager.go │ │ │ ├── middleware │ │ │ │ ├── discover.go │ │ │ │ ├── handler.go │ │ │ │ ├── middleware.go │ │ │ │ └── readme.md │ │ │ ├── netcollect │ │ │ │ ├── netcollect.go │ │ │ │ └── netdevice.go │ │ │ ├── porter.go │ │ │ └── types.go │ │ ├── logics │ │ │ ├── collector.go │ │ │ ├── common.go │ │ │ ├── device.go │ │ │ ├── logics.go │ │ │ ├── property.go │ │ │ └── report.go │ │ ├── main.go │ │ ├── readme.md │ │ └── service │ │ │ ├── collector.go │ │ │ ├── device.go │ │ │ ├── property.go │ │ │ ├── report.go │ │ │ └── service.go │ ├── event_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── main.go │ │ ├── readme.md │ │ ├── service │ │ │ ├── service.go │ │ │ ├── sync.go │ │ │ └── watch.go │ │ ├── sync │ │ │ └── hostidentifier │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── event.go │ │ │ │ ├── hostIdentifier.go │ │ │ │ ├── observer.go │ │ │ │ └── task.go │ │ └── types │ │ │ ├── const.go │ │ │ └── types.go │ ├── host_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ │ └── server.go │ │ ├── host.go │ │ ├── logics │ │ │ ├── agent_test.go │ │ │ ├── app.go │ │ │ ├── dynamic_grouping.go │ │ │ ├── host.go │ │ │ ├── hostlock.go │ │ │ ├── hostsearch.go │ │ │ ├── import.go │ │ │ ├── instance.go │ │ │ ├── logics.go │ │ │ ├── module.go │ │ │ ├── object.go │ │ │ ├── plat.go │ │ │ ├── set.go │ │ │ └── special.go │ │ ├── readme.md │ │ ├── service │ │ │ ├── agent.go │ │ │ ├── cloud_host.go │ │ │ ├── cloudarea.go │ │ │ ├── dynamic_grouping.go │ │ │ ├── favourite.go │ │ │ ├── findhost.go │ │ │ ├── host.go │ │ │ ├── hostapplyrule.go │ │ │ ├── hostlock.go │ │ │ ├── module.go │ │ │ ├── service.go │ │ │ ├── service_initfunc.go │ │ │ ├── special.go │ │ │ ├── transfer.go │ │ │ └── usercustom.go │ │ └── util │ │ │ ├── gseconfig.go │ │ │ ├── gseconfig_test.go │ │ │ └── util.go │ ├── operation_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── logics │ │ │ ├── core.go │ │ │ └── logics.go │ │ ├── main.go │ │ ├── readme.md │ │ └── service │ │ │ ├── init_func.go │ │ │ ├── operation.go │ │ │ └── service.go │ ├── proc_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ │ └── server.go │ │ ├── logics │ │ │ ├── logics.go │ │ │ ├── processinstance.go │ │ │ └── servicetemplate.go │ │ ├── process.go │ │ ├── readme.md │ │ └── service │ │ │ ├── processinstance.go │ │ │ ├── processtemplate.go │ │ │ ├── service.go │ │ │ ├── servicecategory.go │ │ │ ├── serviceinstance.go │ │ │ └── servicetemplate.go │ ├── synchronize_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ │ └── server.go │ │ ├── logics │ │ │ ├── assocation.go │ │ │ ├── background_synchronize.go │ │ │ ├── exception │ │ │ │ └── file │ │ │ │ │ ├── exception.go │ │ │ │ │ └── file.go │ │ │ ├── find.go │ │ │ ├── inst.go │ │ │ ├── logics.go │ │ │ ├── model.go │ │ │ ├── statistics.go │ │ │ └── synchronize.go │ │ ├── service │ │ │ ├── service.go │ │ │ └── synchronize.go │ │ └── synchronize.go │ ├── task_server │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ │ └── server.go │ │ ├── logics │ │ │ ├── logics.go │ │ │ └── task.go │ │ ├── readme.md │ │ ├── service │ │ │ ├── queue.go │ │ │ ├── service.go │ │ │ └── task.go │ │ ├── task.go │ │ └── taskconfig │ │ │ └── taskconfig.go │ └── topo_server │ │ ├── Makefile │ │ ├── app │ │ ├── app.go │ │ ├── options │ │ │ ├── options.go │ │ │ └── options_test.go │ │ └── server.go │ │ ├── logics │ │ ├── field_template │ │ │ ├── compare.go │ │ │ ├── compare_attr.go │ │ │ ├── compare_unique.go │ │ │ └── field_template.go │ │ ├── inst │ │ │ ├── association.go │ │ │ ├── business.go │ │ │ ├── business_set.go │ │ │ ├── del_business.go │ │ │ ├── inst.go │ │ │ ├── mainline_association.go │ │ │ ├── module.go │ │ │ ├── project.go │ │ │ └── set.go │ │ ├── kube │ │ │ └── kube.go │ │ ├── logics.go │ │ ├── model │ │ │ ├── association.go │ │ │ ├── attribute.go │ │ │ ├── classification.go │ │ │ ├── group.go │ │ │ ├── mainline_association.go │ │ │ ├── model.go │ │ │ └── object.go │ │ ├── model_quote │ │ │ └── model_quote.go │ │ ├── operation │ │ │ ├── graphics.go │ │ │ ├── identifier.go │ │ │ ├── import_association.go │ │ │ └── operation.go │ │ └── settemplate │ │ │ ├── settemplate.go │ │ │ ├── sync_status.go │ │ │ └── worker.go │ │ ├── readme.md │ │ ├── service │ │ ├── association.go │ │ ├── auditlog.go │ │ ├── capability │ │ │ └── capability.go │ │ ├── field_template │ │ │ ├── attribute_template.go │ │ │ ├── compare.go │ │ │ ├── field_template.go │ │ │ ├── object_relation.go │ │ │ ├── service.go │ │ │ ├── sync.go │ │ │ └── unique_template.go │ │ ├── fulltextsearch.go │ │ ├── graphics.go │ │ ├── health.go │ │ ├── id_rule │ │ │ ├── id_rule.go │ │ │ └── service.go │ │ ├── identifier.go │ │ ├── inst.go │ │ ├── inst_business.go │ │ ├── inst_business_set.go │ │ ├── inst_module.go │ │ ├── inst_set.go │ │ ├── internal_task.go │ │ ├── kube │ │ │ ├── cluster.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── pod.go │ │ │ ├── public.go │ │ │ ├── service.go │ │ │ └── workload.go │ │ ├── object.go │ │ ├── object_association.go │ │ ├── object_attribute.go │ │ ├── object_classification.go │ │ ├── object_group.go │ │ ├── project.go │ │ ├── quoted_instance.go │ │ ├── resource_directory.go │ │ ├── service.go │ │ ├── service_business_initfunc.go │ │ ├── service_init_internal.go │ │ ├── service_initfunc.go │ │ ├── service_model_quote_initfunc.go │ │ ├── service_settemplate_initfunc.go │ │ ├── set_template.go │ │ └── unique.go │ │ └── topo.go ├── source_controller │ ├── cacheservice │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── audit │ │ │ ├── audit.go │ │ │ ├── client.go │ │ │ ├── config │ │ │ │ └── config.go │ │ │ └── watch.go │ │ ├── cache │ │ │ ├── biz-topo │ │ │ │ ├── client.go │ │ │ │ ├── key │ │ │ │ │ ├── key.go │ │ │ │ │ └── kube.go │ │ │ │ ├── level │ │ │ │ │ ├── common.go │ │ │ │ │ ├── kube.go │ │ │ │ │ └── level.go │ │ │ │ ├── logics │ │ │ │ │ ├── node │ │ │ │ │ │ └── node.go │ │ │ │ │ └── topo │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ └── topo.go │ │ │ │ ├── topo.go │ │ │ │ ├── topo │ │ │ │ │ ├── kube.go │ │ │ │ │ └── topo.go │ │ │ │ ├── tree │ │ │ │ │ ├── count.go │ │ │ │ │ └── tree.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── watch │ │ │ │ │ ├── kube.go │ │ │ │ │ └── watch.go │ │ │ ├── cache.go │ │ │ ├── custom │ │ │ │ ├── cache.go │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── count.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── label.go │ │ │ │ │ ├── shared_ns_rel.go │ │ │ │ │ └── string.go │ │ │ │ ├── client.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── watch │ │ │ │ │ ├── label.go │ │ │ │ │ ├── shared_ns_rel.go │ │ │ │ │ └── watch.go │ │ │ ├── general │ │ │ │ ├── cache.go │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_with_id.go │ │ │ │ │ ├── cache_with_id_and_sub_res.go │ │ │ │ │ ├── cache_with_oid.go │ │ │ │ │ ├── detail.go │ │ │ │ │ ├── full_sync_cond.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── id_list.go │ │ │ │ │ ├── obj_inst.go │ │ │ │ │ └── util.go │ │ │ │ ├── client.go │ │ │ │ ├── full-sync-cond │ │ │ │ │ ├── client.go │ │ │ │ │ ├── full_sync_cond.go │ │ │ │ │ └── watch.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── watch │ │ │ │ │ └── watch.go │ │ │ ├── mainline │ │ │ │ ├── biz.go │ │ │ │ ├── client.go │ │ │ │ ├── custom.go │ │ │ │ ├── handler.go │ │ │ │ ├── key.go │ │ │ │ ├── key_test.go │ │ │ │ ├── logic.go │ │ │ │ ├── mainline.go │ │ │ │ ├── module.go │ │ │ │ ├── set.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── token-handler │ │ │ │ ├── memory.go │ │ │ │ ├── mix.go │ │ │ │ └── single.go │ │ │ ├── tools │ │ │ │ ├── kube.go │ │ │ │ ├── lock.go │ │ │ │ └── tools.go │ │ │ ├── topology │ │ │ │ ├── client.go │ │ │ │ ├── key.go │ │ │ │ ├── logic.go │ │ │ │ ├── readme.md │ │ │ │ ├── topology.go │ │ │ │ ├── types.go │ │ │ │ └── watch.go │ │ │ └── topotree │ │ │ │ ├── doc.go │ │ │ │ ├── path.go │ │ │ │ └── type.go │ │ ├── event │ │ │ ├── bsrelation │ │ │ │ ├── bsrelation.go │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ └── event.go │ │ │ ├── event.go │ │ │ ├── flow │ │ │ │ ├── details.go │ │ │ │ ├── event.go │ │ │ │ ├── flow.go │ │ │ │ ├── handler.go │ │ │ │ ├── inst_asst_flow.go │ │ │ │ ├── instance_flow.go │ │ │ │ ├── parser.go │ │ │ │ └── workload_flow.go │ │ │ ├── identifier │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ └── identifier.go │ │ │ ├── key.go │ │ │ ├── metric.go │ │ │ ├── mix-event │ │ │ │ ├── flow.go │ │ │ │ └── handler.go │ │ │ ├── util.go │ │ │ └── watch │ │ │ │ ├── client.go │ │ │ │ └── watch.go │ │ ├── main.go │ │ ├── readme.md │ │ └── service │ │ │ ├── cache.go │ │ │ ├── health.go │ │ │ ├── service.go │ │ │ └── service_initfunc.go │ ├── coreservice │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ └── server.go │ │ ├── core │ │ │ ├── association │ │ │ │ ├── association.go │ │ │ │ ├── dependences.go │ │ │ │ ├── instance.go │ │ │ │ ├── instance_test.go │ │ │ │ ├── kind.go │ │ │ │ ├── kind_crud.go │ │ │ │ ├── kind_test.go │ │ │ │ ├── mock_test.go │ │ │ │ ├── model.go │ │ │ │ ├── model_crud.go │ │ │ │ ├── model_private.go │ │ │ │ └── model_test.go │ │ │ ├── auditlog │ │ │ │ ├── audit.go │ │ │ │ ├── audit_test.go │ │ │ │ └── auditlog.go │ │ │ ├── auth │ │ │ │ └── auth.go │ │ │ ├── cloud │ │ │ │ ├── account.go │ │ │ │ ├── cloud.go │ │ │ │ ├── synctask.go │ │ │ │ └── validator.go │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── core.go │ │ │ ├── datasynchronize │ │ │ │ ├── association.go │ │ │ │ ├── data_clear.go │ │ │ │ ├── dependences.go │ │ │ │ ├── find.go │ │ │ │ ├── identifier.go │ │ │ │ ├── instance.go │ │ │ │ ├── model.go │ │ │ │ ├── synchronize.go │ │ │ │ └── util.go │ │ │ ├── host │ │ │ │ ├── cloudarea.go │ │ │ │ ├── host.go │ │ │ │ ├── identifier.go │ │ │ │ ├── identifier │ │ │ │ │ └── identifier.go │ │ │ │ ├── lock.go │ │ │ │ ├── searcher.go │ │ │ │ ├── searcher │ │ │ │ │ └── searcher.go │ │ │ │ ├── transfer.go │ │ │ │ ├── transfer │ │ │ │ │ ├── manager.go │ │ │ │ │ └── transfer.go │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ ├── hostapplyrule │ │ │ │ ├── hostapplyrule.go │ │ │ │ ├── plan.go │ │ │ │ └── rule.go │ │ │ ├── instances │ │ │ │ ├── dependences.go │ │ │ │ ├── instance.go │ │ │ │ ├── instance_crud.go │ │ │ │ ├── instance_test.go │ │ │ │ ├── instance_validate.go │ │ │ │ ├── instances.go │ │ │ │ ├── mock_test.go │ │ │ │ ├── validator.go │ │ │ │ ├── validator_unique.go │ │ │ │ └── validator_util.go │ │ │ ├── kube │ │ │ │ ├── container.go │ │ │ │ └── kube.go │ │ │ ├── label │ │ │ │ └── label.go │ │ │ ├── mainline │ │ │ │ ├── README.md │ │ │ │ ├── class.go │ │ │ │ ├── instance.go │ │ │ │ ├── mainline.go │ │ │ │ ├── manager.go │ │ │ │ └── model.go │ │ │ ├── model │ │ │ │ ├── attribute.go │ │ │ │ ├── attribute_curd.go │ │ │ │ ├── attribute_private.go │ │ │ │ ├── attribute_test.go │ │ │ │ ├── classification.go │ │ │ │ ├── classification_crud.go │ │ │ │ ├── classification_private.go │ │ │ │ ├── classification_test.go │ │ │ │ ├── dependences.go │ │ │ │ ├── mock_test.go │ │ │ │ ├── model.go │ │ │ │ ├── model_attribute_group.go │ │ │ │ ├── model_attribute_group_crud.go │ │ │ │ ├── model_attribute_group_private.go │ │ │ │ ├── model_attribute_group_test.go │ │ │ │ ├── model_crud.go │ │ │ │ ├── model_private.go │ │ │ │ ├── model_tables.go │ │ │ │ ├── model_test.go │ │ │ │ ├── unique.go │ │ │ │ ├── unique.md │ │ │ │ ├── unique_crud.go │ │ │ │ └── validator_util.go │ │ │ ├── operation │ │ │ │ ├── chart_operation.go │ │ │ │ ├── inner_chart.go │ │ │ │ └── operation.go │ │ │ ├── process │ │ │ │ ├── base.go │ │ │ │ ├── process.go │ │ │ │ ├── process_instance_relation.go │ │ │ │ ├── process_template.go │ │ │ │ ├── service_category.go │ │ │ │ ├── service_instance.go │ │ │ │ ├── service_template.go │ │ │ │ └── service_template_attr.go │ │ │ ├── settemplate │ │ │ │ ├── set_template.go │ │ │ │ ├── set_template_attr.go │ │ │ │ └── settemplate.go │ │ │ └── system │ │ │ │ └── system.go │ │ ├── main.go │ │ ├── multilingual │ │ │ ├── buildin_instance.go │ │ │ └── multilingual.go │ │ ├── readme.md │ │ └── service │ │ │ ├── association.go │ │ │ ├── association_dependence.go │ │ │ ├── auditlog.go │ │ │ ├── auth.go │ │ │ ├── capability │ │ │ └── capability.go │ │ │ ├── cloudaccount.go │ │ │ ├── cloudarea.go │ │ │ ├── cloudsynctask.go │ │ │ ├── common.go │ │ │ ├── count.go │ │ │ ├── data_synchronize.go │ │ │ ├── dynamic_grouping.go │ │ │ ├── field_template │ │ │ ├── attribute_template.go │ │ │ ├── field_template.go │ │ │ ├── object_relation.go │ │ │ ├── service.go │ │ │ └── unique_template.go │ │ │ ├── health.go │ │ │ ├── host.go │ │ │ ├── host_apply_rule.go │ │ │ ├── hostfavourite.go │ │ │ ├── hostlock.go │ │ │ ├── hostmodule.go │ │ │ ├── hostsearch.go │ │ │ ├── hostuser.go │ │ │ ├── id_rule │ │ │ ├── id_rule.go │ │ │ └── service.go │ │ │ ├── instances.go │ │ │ ├── instances_dependence.go │ │ │ ├── kube │ │ │ ├── cluster.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── pod.go │ │ │ ├── service.go │ │ │ ├── shared_cluster.go │ │ │ └── workload.go │ │ │ ├── label.go │ │ │ ├── mainline.go │ │ │ ├── model.go │ │ │ ├── model_association_test.go │ │ │ ├── model_attribute_group_test.go │ │ │ ├── model_attribute_test.go │ │ │ ├── model_classification_test.go │ │ │ ├── model_dependencs.go │ │ │ ├── model_quote.go │ │ │ ├── model_quote │ │ │ ├── quoted_inst.go │ │ │ └── quoted_inst_validate.go │ │ │ ├── model_test.go │ │ │ ├── operation.go │ │ │ ├── process_instance_relation.go │ │ │ ├── process_template.go │ │ │ ├── project.go │ │ │ ├── service.go │ │ │ ├── service_category.go │ │ │ ├── service_datasync_initfunc.go │ │ │ ├── service_host_apply_rule_initfunc.go │ │ │ ├── service_initfunc.go │ │ │ ├── service_instance.go │ │ │ ├── service_process_initfunc.go │ │ │ ├── service_set_template_initfunc.go │ │ │ ├── service_template.go │ │ │ ├── service_template_attr.go │ │ │ ├── service_test.go │ │ │ ├── set_template.go │ │ │ ├── system.go │ │ │ ├── topographics.go │ │ │ ├── transaction.go │ │ │ └── translate.go │ └── transfer-service │ │ ├── Makefile │ │ ├── app │ │ ├── options │ │ │ ├── config.go │ │ │ └── options.go │ │ └── server.go │ │ ├── main.go │ │ ├── readme.md │ │ ├── service │ │ ├── health.go │ │ ├── service.go │ │ └── sync.go │ │ └── sync │ │ ├── client.go │ │ ├── dest_full_sync.go │ │ ├── dest_incre_sync.go │ │ ├── logics │ │ ├── biz.go │ │ ├── data_with_id.go │ │ ├── host.go │ │ ├── instance.go │ │ ├── logics.go │ │ ├── process.go │ │ ├── relation.go │ │ └── util.go │ │ ├── medium │ │ ├── client.go │ │ ├── discovery.go │ │ └── medium.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── src_full_sync.go │ │ ├── sync.go │ │ ├── util │ │ ├── kit.go │ │ └── util.go │ │ └── watch │ │ ├── token_handler.go │ │ ├── watch.go │ │ ├── watch_api.go │ │ └── watch_db.go ├── storage │ ├── dal │ │ ├── dal.go │ │ ├── kafka │ │ │ ├── config.go │ │ │ ├── kafka.go │ │ │ └── scram.go │ │ ├── mongo │ │ │ ├── config.go │ │ │ ├── local │ │ │ │ ├── bson_decode_test.go │ │ │ │ ├── bson_register_decode.go │ │ │ │ ├── bson_register_struct_decode.go │ │ │ │ ├── local.go │ │ │ │ ├── metric.go │ │ │ │ ├── mongo.go │ │ │ │ ├── mongo_test.go │ │ │ │ ├── session_exposer.go │ │ │ │ ├── transaction.go │ │ │ │ └── txn_manager.go │ │ │ └── mongo.go │ │ ├── reademe.md │ │ ├── redis │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── commands.go │ │ │ ├── example │ │ │ │ └── example.go │ │ │ ├── pipeline.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── redis_store.go │ │ │ ├── result.go │ │ │ └── test │ │ │ │ ├── commands_test.go │ │ │ │ ├── redis_suit_test.go │ │ │ │ └── redis_test.go │ │ ├── table │ │ │ └── table.go │ │ └── types │ │ │ └── types.go │ ├── driver │ │ ├── mongodb │ │ │ ├── README.md │ │ │ ├── instancemapping │ │ │ │ ├── inst_mapping.go │ │ │ │ └── instancemapping.go │ │ │ ├── mongodb.go │ │ │ ├── mongodb_test.go │ │ │ ├── monogdb.go │ │ │ └── table.go │ │ └── redis │ │ │ ├── redis.go │ │ │ └── redis_test.go │ ├── reflector │ │ ├── reflector.go │ │ └── types.go │ ├── stream │ │ ├── event │ │ │ ├── event.go │ │ │ ├── list.go │ │ │ ├── list_watch.go │ │ │ ├── utils.go │ │ │ └── watch.go │ │ ├── loop │ │ │ ├── loop.go │ │ │ └── loop_watch.go │ │ ├── stream.go │ │ └── types │ │ │ └── types.go │ ├── types │ │ ├── types.go │ │ └── types_test.go │ └── util │ │ └── util.go ├── test │ ├── business │ │ ├── business_suite_test.go │ │ └── business_test.go │ ├── cache_service │ │ ├── cache_service_suite_test.go │ │ ├── full_sync_cond_test.go │ │ └── host_test.go │ ├── cloud_server │ │ ├── cloud_account_test.go │ │ ├── cloud_server_suite_test.go │ │ └── cloud_sync_task_test.go │ ├── datacollection │ │ └── benchmark │ │ │ ├── README.md │ │ │ └── benchmark.go │ ├── event_server │ │ └── event_server_suite_test.go │ ├── healthz │ │ └── healthz_suite_test.go │ ├── host_server │ │ ├── cloudarea_test.go │ │ ├── host_abnormal_test.go │ │ ├── host_apply_test.go │ │ ├── host_ip_array_test.go │ │ ├── host_server_suite_test.go │ │ ├── host_test.go │ │ └── user_test.go │ ├── load │ │ ├── db_load_test.go │ │ └── load_suite_test.go │ ├── proc_server │ │ ├── no_service_template_test.go │ │ ├── proc_server_suite_test.go │ │ └── service_template_test.go │ ├── reporter │ │ ├── html_reporter.go │ │ ├── reporter.go │ │ └── template.go │ ├── run │ │ ├── color.go │ │ ├── limiter.go │ │ ├── run.go │ │ └── stats.go │ ├── test.go │ ├── topo_server │ │ ├── asst_test.go │ │ ├── biz_set_test.go │ │ ├── business_test.go │ │ ├── cluster_test.go │ │ ├── field_template_test.go │ │ ├── inst_test.go │ │ ├── model_quote_test.go │ │ ├── namespace_test.go │ │ ├── node_test.go │ │ ├── object_test.go │ │ ├── pod_test.go │ │ ├── project_test.go │ │ ├── resource_dir_test.go │ │ ├── set_template_test.go │ │ ├── topo_server_suite_test.go │ │ └── workload_test.go │ ├── txn │ │ ├── txn_suite_test.go │ │ └── txn_test.go │ └── util │ │ ├── fail.go │ │ └── util.go ├── thirdparty │ ├── apigw │ │ ├── apigw.go │ │ ├── apigwutil │ │ │ ├── auth.go │ │ │ ├── common.go │ │ │ └── service.go │ │ ├── cmdb │ │ │ ├── api.go │ │ │ └── service.go │ │ ├── gse │ │ │ ├── api.go │ │ │ ├── common.go │ │ │ └── service.go │ │ └── notice │ │ │ ├── api.go │ │ │ ├── common.go │ │ │ └── service.go │ ├── dataid │ │ └── dataid.go │ ├── elasticsearch │ │ ├── elasticsearch.go │ │ └── esclient.go │ ├── esbserver │ │ ├── esb.go │ │ ├── esbserver.go │ │ ├── esbutil │ │ │ ├── common.go │ │ │ └── esbdiscovery.go │ │ ├── gse │ │ │ ├── api.go │ │ │ └── esbserv.go │ │ ├── iam │ │ │ ├── api.go │ │ │ └── iam.go │ │ ├── login │ │ │ ├── api.go │ │ │ └── esbserv.go │ │ ├── nodeman │ │ │ ├── api.go │ │ │ └── nodeman.go │ │ └── user │ │ │ ├── api.go │ │ │ └── esbserv.go │ ├── gse │ │ ├── client │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ └── gseclient.go │ │ ├── get_agent_state_forsyncdata │ │ │ ├── GoUnusedProtection__.go │ │ │ ├── get_agent_state_forsyncdata-consts.go │ │ │ └── get_agent_state_forsyncdata.go │ │ └── push_file_forsyncdata │ │ │ ├── GoUnusedProtection__.go │ │ │ ├── push_file_forsyncdata-consts.go │ │ │ └── push_file_forsyncdata.go │ ├── hooks │ │ ├── hooks.go │ │ ├── process.go │ │ ├── process │ │ │ └── process.go │ │ ├── regex.go │ │ ├── topology.go │ │ ├── types.go │ │ └── validator.go │ ├── logplatform │ │ └── opentelemetry │ │ │ ├── config.go │ │ │ ├── opentelemetry.go │ │ │ ├── tracer.go │ │ │ └── util.go │ ├── monitor │ │ ├── README.md │ │ ├── config │ │ │ └── config.go │ │ ├── meta │ │ │ ├── content.go │ │ │ ├── meta.go │ │ │ └── type.go │ │ ├── monitor.go │ │ └── plugins │ │ │ ├── blueking │ │ │ └── blueking.go │ │ │ ├── noop │ │ │ └── noop.go │ │ │ ├── plugin.go │ │ │ └── plugins.go │ └── secrets │ │ ├── api.go │ │ └── secrets.go ├── tools │ ├── cmdb_ctl │ │ ├── Makefile │ │ ├── app │ │ │ ├── app.go │ │ │ └── config │ │ │ │ └── config.go │ │ ├── cmd │ │ │ ├── auth.go │ │ │ ├── conf.go │ │ │ ├── dbOperation.go │ │ │ ├── echo.go │ │ │ ├── limiter.go │ │ │ ├── log.go │ │ │ ├── migrate_check.go │ │ │ ├── redis.go │ │ │ ├── root.go │ │ │ ├── shutdown.go │ │ │ ├── snapshot.go │ │ │ ├── topo.go │ │ │ ├── util.go │ │ │ ├── watch.go │ │ │ └── zk.go │ │ ├── main.go │ │ └── readme.md │ ├── mongo_script │ │ ├── clear_redundancy_servicetemplate.js │ │ ├── fix_duplicated_service_instance_id.js │ │ ├── fix_inner_model.js │ │ ├── fix_max_primary_id.js │ │ ├── fix_module_missed_fields.js │ │ ├── fix_service_category_field.js │ │ └── migrate_time_field.js │ └── monstache │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── build │ │ └── monstache │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── etc │ │ │ ├── config.toml │ │ │ └── extra.toml │ │ │ └── monstache.sh │ │ ├── etc │ │ ├── config.toml │ │ └── extra.toml │ │ ├── monstache.sh │ │ └── plugin.go ├── ui │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── build.sh │ ├── builder │ │ ├── build.js │ │ ├── config │ │ │ ├── dev.env.js │ │ │ ├── index.js │ │ │ └── prod.env.js │ │ ├── dev.js │ │ ├── serve.js │ │ ├── utils │ │ │ ├── add-license.js │ │ │ ├── build-hash-plugin.js │ │ │ ├── find-missing-translations.js │ │ │ ├── grab-api-loader.js │ │ │ ├── grab-api-plugin.js │ │ │ ├── index.js │ │ │ └── replace-static-url-plugin.js │ │ └── webpack │ │ │ ├── devserver.js │ │ │ ├── index.js │ │ │ ├── module.js │ │ │ ├── optimization.js │ │ │ └── plugins.js │ ├── index.html │ ├── jsconfig.json │ ├── login.html │ ├── mock │ │ └── index.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.vue │ │ ├── IframeEntry.vue │ │ ├── api │ │ │ ├── _cached-promise.js │ │ │ ├── _request-queue.js │ │ │ ├── combine-request.js │ │ │ ├── custom-header.js │ │ │ ├── index.js │ │ │ └── jsonp.js │ │ ├── assets │ │ │ ├── icon │ │ │ │ ├── bk-icon-cmdb-colorful │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── iconcool.eot │ │ │ │ │ │ ├── iconcool.svg │ │ │ │ │ │ ├── iconcool.ttf │ │ │ │ │ │ └── iconcool.woff │ │ │ │ │ ├── iconcool.js │ │ │ │ │ ├── iconcool.json │ │ │ │ │ └── style.css │ │ │ │ └── bk-icon-cmdb │ │ │ │ │ ├── fonts │ │ │ │ │ ├── iconcool.eot │ │ │ │ │ ├── iconcool.svg │ │ │ │ │ ├── iconcool.ttf │ │ │ │ │ └── iconcool.woff │ │ │ │ │ ├── iconcool.js │ │ │ │ │ ├── iconcool.json │ │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ ├── 403.png │ │ │ │ ├── 404.png │ │ │ │ ├── add-node.png │ │ │ │ ├── agent-import-guide.png │ │ │ │ ├── box-circle.png │ │ │ │ ├── box-light.png │ │ │ │ ├── box.png │ │ │ │ ├── checkbox-sprite.png │ │ │ │ ├── doc-title-tooltip.png │ │ │ │ ├── empty-content.png │ │ │ │ ├── error.png │ │ │ │ ├── full-text-search.png │ │ │ │ ├── icon │ │ │ │ │ ├── down_icon.png │ │ │ │ │ ├── down_model_icon.png │ │ │ │ │ ├── icon-add-active.png │ │ │ │ │ ├── icon-add-hover.png │ │ │ │ │ ├── icon-add.png │ │ │ │ │ ├── icon-attribute.png │ │ │ │ │ ├── icon-business.png │ │ │ │ │ ├── icon-clear.png │ │ │ │ │ ├── icon-cloud.png │ │ │ │ │ ├── icon-dot-hover.png │ │ │ │ │ ├── icon-dot.png │ │ │ │ │ ├── icon-down-shape-hover.png │ │ │ │ │ ├── icon-down-shape.png │ │ │ │ │ ├── icon-host.png │ │ │ │ │ ├── icon-import.png │ │ │ │ │ ├── icon-info-tips.png │ │ │ │ │ ├── icon-info.png │ │ │ │ │ ├── icon-language-hover.png │ │ │ │ │ ├── icon-language.png │ │ │ │ │ ├── icon-locks.png │ │ │ │ │ ├── icon-mainframe.png │ │ │ │ │ ├── icon-model-setting.png │ │ │ │ │ ├── icon-model.png │ │ │ │ │ ├── icon-r-collect.png │ │ │ │ │ ├── icon-result-slide-hover.png │ │ │ │ │ ├── icon-result-slide.png │ │ │ │ │ ├── icon-search-hover.png │ │ │ │ │ ├── icon-search.png │ │ │ │ │ ├── icon-show.png │ │ │ │ │ ├── icon-sort-on.png │ │ │ │ │ ├── icon-sort.png │ │ │ │ │ ├── icon-sub-active.png │ │ │ │ │ ├── icon-sub-hover.png │ │ │ │ │ ├── icon-sub.png │ │ │ │ │ ├── icon-triple-dot.png │ │ │ │ │ ├── icon-zoom-active.png │ │ │ │ │ ├── icon-zoom-hover.png │ │ │ │ │ ├── icon-zoom.png │ │ │ │ │ ├── loading.svg │ │ │ │ │ ├── loading_2_16x16.gif │ │ │ │ │ ├── tree-icon.jpg │ │ │ │ │ ├── tree_down.png │ │ │ │ │ ├── tree_down_on.png │ │ │ │ │ ├── tree_up.png │ │ │ │ │ └── tree_up_on.png │ │ │ │ ├── import-package.png │ │ │ │ ├── latest-data.png │ │ │ │ ├── lock-closed.svg │ │ │ │ ├── lock-closed02.svg │ │ │ │ ├── lock-opened.svg │ │ │ │ ├── lock-opening.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── logo-cn.svg │ │ │ │ ├── logo-en.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── map.svg │ │ │ │ ├── no-authority.png │ │ │ │ ├── no-content.png │ │ │ │ ├── no_model_prompting.png │ │ │ │ ├── notice-pane.png │ │ │ │ ├── package.png │ │ │ │ ├── relevance-empty.png │ │ │ │ ├── simplify-tips.png │ │ │ │ ├── tip.png │ │ │ │ ├── up_file.png │ │ │ │ ├── user-none.png │ │ │ │ └── zip-package.png │ │ │ ├── json │ │ │ │ ├── event-push-example.json │ │ │ │ └── model-icon.json │ │ │ ├── prism-vsc-dark-plus.css │ │ │ └── scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _vars.scss │ │ │ │ ├── common.scss │ │ │ │ ├── model-manage.scss │ │ │ │ └── model.scss │ │ ├── components │ │ │ ├── audit-history │ │ │ │ ├── audit-business-selector.vue │ │ │ │ ├── details-json.vue │ │ │ │ ├── details-slider.vue │ │ │ │ ├── details-table.vue │ │ │ │ └── details.js │ │ │ ├── batch-export │ │ │ │ ├── content.vue │ │ │ │ └── index.js │ │ │ ├── batch-selection-column │ │ │ │ ├── README.md │ │ │ │ └── index.vue │ │ │ ├── business-scope │ │ │ │ ├── preview.vue │ │ │ │ ├── settings-details.vue │ │ │ │ └── settings-form.vue │ │ │ ├── columns-config │ │ │ │ ├── columns-config.js │ │ │ │ └── columns-config.vue │ │ │ ├── condition-picker │ │ │ │ ├── index.vue │ │ │ │ └── property-selector.vue │ │ │ ├── editable-block │ │ │ │ └── index.vue │ │ │ ├── export-fields │ │ │ │ ├── export-fields.js │ │ │ │ └── export-fields.vue │ │ │ ├── export-file │ │ │ │ ├── export-property.vue │ │ │ │ ├── export-relation.vue │ │ │ │ ├── export-status.vue │ │ │ │ ├── export-task.vue │ │ │ │ ├── export.vue │ │ │ │ ├── index.js │ │ │ │ ├── state.js │ │ │ │ └── task.js │ │ │ ├── filters │ │ │ │ ├── filter-collection.vue │ │ │ │ ├── filter-fast-search.vue │ │ │ │ ├── filter-form.js │ │ │ │ ├── filter-form.vue │ │ │ │ ├── filter-tag-form.vue │ │ │ │ ├── filter-tag-ip.vue │ │ │ │ ├── filter-tag-item.vue │ │ │ │ ├── filter-tag.vue │ │ │ │ ├── general-model-filter-form.vue │ │ │ │ ├── general-model-filter-tag-form.vue │ │ │ │ ├── general-model-filter-tag-item.vue │ │ │ │ ├── general-model-filter-tag.vue │ │ │ │ ├── general-model-filter.js │ │ │ │ ├── general-model-property-selector.js │ │ │ │ ├── general-model-property-selector.vue │ │ │ │ ├── operator-selector.vue │ │ │ │ ├── property-selector.js │ │ │ │ ├── property-selector.vue │ │ │ │ ├── store.js │ │ │ │ └── utils.js │ │ │ ├── host-apply │ │ │ │ ├── conflict-resolve.vue │ │ │ │ ├── property-confirm-table.vue │ │ │ │ └── property-form-element.vue │ │ │ ├── host-topo-path │ │ │ │ ├── host-topo-path.vue │ │ │ │ └── proxy.js │ │ │ ├── import-file │ │ │ │ ├── file.js │ │ │ │ ├── import-file.vue │ │ │ │ ├── import-relation.vue │ │ │ │ ├── import-state.vue │ │ │ │ ├── import.vue │ │ │ │ ├── index.js │ │ │ │ └── step.js │ │ │ ├── import │ │ │ │ └── import.vue │ │ │ ├── instance │ │ │ │ ├── association │ │ │ │ │ ├── graphics-config.js │ │ │ │ │ ├── graphics.js │ │ │ │ │ └── index.vue │ │ │ │ └── details │ │ │ │ │ └── index.js │ │ │ ├── layout │ │ │ │ ├── dynamic-breadcrumbs.vue │ │ │ │ ├── dynamic-navigation.vue │ │ │ │ ├── dynamic-router-view.vue │ │ │ │ ├── header.vue │ │ │ │ └── main-inject.vue │ │ │ ├── loading │ │ │ │ ├── index.vue │ │ │ │ └── loading.vue │ │ │ ├── modal │ │ │ │ ├── permission-main.vue │ │ │ │ ├── permission-resource-name.js │ │ │ │ ├── permission-resource-name.vue │ │ │ │ └── permission.vue │ │ │ ├── model-fast-link │ │ │ │ └── index.vue │ │ │ ├── model-instance │ │ │ │ ├── audit-history.vue │ │ │ │ ├── mixin-auth.js │ │ │ │ ├── model-instance-selector.vue │ │ │ │ ├── model-selector.vue │ │ │ │ ├── property.vue │ │ │ │ └── relation │ │ │ │ │ ├── create.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── list-table.vue │ │ │ │ │ ├── list.vue │ │ │ │ │ └── property-filter.vue │ │ │ ├── model-manage │ │ │ │ ├── _create-model.vue │ │ │ │ ├── choose-icon │ │ │ │ │ ├── _choose-icon.vue │ │ │ │ │ └── icon-set.vue │ │ │ │ ├── field-card.vue │ │ │ │ ├── field-grid.vue │ │ │ │ └── field-group │ │ │ │ │ ├── field-detail │ │ │ │ │ ├── bool.vue │ │ │ │ │ ├── char.vue │ │ │ │ │ ├── config.vue │ │ │ │ │ ├── enum.vue │ │ │ │ │ ├── enumquote.vue │ │ │ │ │ ├── float.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── inner-table │ │ │ │ │ │ ├── field-settings-model.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── int.vue │ │ │ │ │ └── list.vue │ │ │ │ │ ├── field-view.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── preview-field.vue │ │ │ │ │ └── table-default-settings.vue │ │ │ ├── notice │ │ │ │ └── index.vue │ │ │ ├── property-config │ │ │ │ ├── details.vue │ │ │ │ ├── diff-table.vue │ │ │ │ ├── index.vue │ │ │ │ ├── property-modal.vue │ │ │ │ └── use-property.js │ │ │ ├── property-selector │ │ │ │ └── index.vue │ │ │ ├── refresh │ │ │ │ └── index.vue │ │ │ ├── search │ │ │ │ ├── array.vue │ │ │ │ ├── biz.vue │ │ │ │ ├── bool.vue │ │ │ │ ├── date.vue │ │ │ │ ├── enum.vue │ │ │ │ ├── enummulti.vue │ │ │ │ ├── enumquote.vue │ │ │ │ ├── float.vue │ │ │ │ ├── foreignkey.vue │ │ │ │ ├── index.js │ │ │ │ ├── int.vue │ │ │ │ ├── list.vue │ │ │ │ ├── longchar.vue │ │ │ │ ├── map.vue │ │ │ │ ├── mixins │ │ │ │ │ ├── active.js │ │ │ │ │ ├── autocomplete-biz.js │ │ │ │ │ ├── autocomplete-set-module.js │ │ │ │ │ └── autocomplete.js │ │ │ │ ├── module.vue │ │ │ │ ├── object.vue │ │ │ │ ├── objuser.vue │ │ │ │ ├── organization.vue │ │ │ │ ├── service-template.vue │ │ │ │ ├── set.vue │ │ │ │ ├── singlechar.vue │ │ │ │ ├── table.vue │ │ │ │ ├── time.vue │ │ │ │ └── timezone.vue │ │ │ ├── service │ │ │ │ ├── form │ │ │ │ │ ├── form-multiple.js │ │ │ │ │ ├── form-multiple.vue │ │ │ │ │ ├── form.js │ │ │ │ │ ├── form.vue │ │ │ │ │ ├── process-form-append-render.js │ │ │ │ │ ├── process-form-append.vue │ │ │ │ │ ├── process-form-property-ip.vue │ │ │ │ │ ├── process-form-property-table.vue │ │ │ │ │ └── symbol.js │ │ │ │ ├── instance-name-edit-form.vue │ │ │ │ ├── instance-table.vue │ │ │ │ └── process-bind-info-value.vue │ │ │ ├── switcher │ │ │ │ ├── switcher-group.vue │ │ │ │ └── switcher-item.vue │ │ │ ├── ui │ │ │ │ ├── auth │ │ │ │ │ ├── auth-mask.vue │ │ │ │ │ ├── auth-option.vue │ │ │ │ │ ├── auth-queue.js │ │ │ │ │ └── auth.vue │ │ │ │ ├── button │ │ │ │ │ ├── icon-button.vue │ │ │ │ │ ├── icon-text-button.vue │ │ │ │ │ ├── link-button.vue │ │ │ │ │ └── lock-button.vue │ │ │ │ ├── code-viewer │ │ │ │ │ └── index.vue │ │ │ │ ├── collapse │ │ │ │ │ └── collapse.vue │ │ │ │ ├── data-empty │ │ │ │ │ └── data-empty.vue │ │ │ │ ├── details │ │ │ │ │ ├── details.vue │ │ │ │ │ ├── editable-field.vue │ │ │ │ │ ├── editable-property.vue │ │ │ │ │ ├── general-layout.vue │ │ │ │ │ └── topo-inst-base-info.vue │ │ │ │ ├── dialog │ │ │ │ │ ├── confirm-store.js │ │ │ │ │ ├── dialog.vue │ │ │ │ │ └── leave-confirm.vue │ │ │ │ ├── dot-menu │ │ │ │ │ └── dot-menu.vue │ │ │ │ ├── flex-tag │ │ │ │ │ └── index.vue │ │ │ │ ├── form │ │ │ │ │ ├── bool-input.vue │ │ │ │ │ ├── bool.vue │ │ │ │ │ ├── date-range.vue │ │ │ │ │ ├── date.vue │ │ │ │ │ ├── enum.vue │ │ │ │ │ ├── enummulti.vue │ │ │ │ │ ├── enumquote.vue │ │ │ │ │ ├── float.vue │ │ │ │ │ ├── form-append.js │ │ │ │ │ ├── form-multiple.vue │ │ │ │ │ ├── form-tips.js │ │ │ │ │ ├── form.vue │ │ │ │ │ ├── inner-table │ │ │ │ │ │ ├── data-row.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── input.vue │ │ │ │ │ ├── int.vue │ │ │ │ │ ├── list.vue │ │ │ │ │ ├── longchar.vue │ │ │ │ │ ├── mixins │ │ │ │ │ │ └── z-index.js │ │ │ │ │ ├── organization.vue │ │ │ │ │ ├── property-form-element.vue │ │ │ │ │ ├── search-input.vue │ │ │ │ │ ├── singlechar.vue │ │ │ │ │ ├── table-custom-content-render.js │ │ │ │ │ ├── table.vue │ │ │ │ │ ├── time.vue │ │ │ │ │ ├── timezone.json │ │ │ │ │ ├── timezone.vue │ │ │ │ │ └── user.vue │ │ │ │ ├── index.js │ │ │ │ ├── other │ │ │ │ │ ├── button-group.vue │ │ │ │ │ ├── default-value-picker.vue │ │ │ │ │ ├── drawer.vue │ │ │ │ │ ├── enumquote-value.vue │ │ │ │ │ ├── flex-row.vue │ │ │ │ │ ├── grid-item.vue │ │ │ │ │ ├── grid-layout.vue │ │ │ │ │ ├── inner-table-value.vue │ │ │ │ │ ├── json-value.vue │ │ │ │ │ ├── mapstring-value.vue │ │ │ │ │ ├── mini-tag.vue │ │ │ │ │ ├── org-value.vue │ │ │ │ │ ├── property-value.vue │ │ │ │ │ ├── resize.vue │ │ │ │ │ ├── router-subview.vue │ │ │ │ │ ├── steps.vue │ │ │ │ │ ├── sticky-layout.vue │ │ │ │ │ ├── sync-status.vue │ │ │ │ │ ├── table-value.vue │ │ │ │ │ ├── tips.vue │ │ │ │ │ ├── user-value.vue │ │ │ │ │ └── vendor.vue │ │ │ │ ├── permission │ │ │ │ │ └── embed-permission.vue │ │ │ │ ├── selector │ │ │ │ │ ├── business-mix.vue │ │ │ │ │ ├── business.vue │ │ │ │ │ ├── clipboard.vue │ │ │ │ │ ├── cloud.vue │ │ │ │ │ ├── input-select.vue │ │ │ │ │ ├── model.vue │ │ │ │ │ ├── selector.vue │ │ │ │ │ └── service-category.vue │ │ │ │ ├── tab │ │ │ │ │ └── index.vue │ │ │ │ ├── table-empty │ │ │ │ │ └── table-empty.vue │ │ │ │ ├── tag-input │ │ │ │ │ ├── alternate-item.vue │ │ │ │ │ ├── alternate-list.vue │ │ │ │ │ ├── render-alternate.js │ │ │ │ │ ├── render-list.js │ │ │ │ │ ├── render-tag.js │ │ │ │ │ ├── style.scss │ │ │ │ │ └── tag-input.vue │ │ │ │ ├── transition │ │ │ │ │ └── collapse.js │ │ │ │ └── vendor │ │ │ │ │ ├── index.vue │ │ │ │ │ └── vendor-icon.js │ │ │ └── version-log │ │ │ │ └── index.vue │ │ ├── dictionary │ │ │ ├── audit.js │ │ │ ├── cloud-resource-type.js │ │ │ ├── cloud-vendor.js │ │ │ ├── container.js │ │ │ ├── dynamic-group.js │ │ │ ├── global-constants.js │ │ │ ├── host-transfer-type.js │ │ │ ├── iam-auth.js │ │ │ ├── ip-with-cloud-symbol.js │ │ │ ├── menu-symbol.js │ │ │ ├── menu.js │ │ │ ├── model-constants.js │ │ │ ├── parameter-types.js │ │ │ ├── process-bind-ip.js │ │ │ ├── process-bind-protocol.js │ │ │ ├── property-constants.js │ │ │ ├── regexp.js │ │ │ ├── request-symbol.js │ │ │ ├── storage-keys.js │ │ │ ├── table-header.js │ │ │ └── test-id.js │ │ ├── directives │ │ │ ├── autofocus.js │ │ │ ├── cursor.js │ │ │ ├── index.js │ │ │ ├── scroll.js │ │ │ ├── set-test-id.js │ │ │ └── transfer-dom.js │ │ ├── factory │ │ │ └── sideslider.js │ │ ├── filters │ │ │ ├── formatter.js │ │ │ ├── host.js │ │ │ ├── pod.js │ │ │ └── unit.js │ │ ├── global.d.ts │ │ ├── hooks │ │ │ ├── association │ │ │ │ └── all.js │ │ │ ├── instance │ │ │ │ ├── association.js │ │ │ │ └── instance.js │ │ │ ├── model │ │ │ │ ├── association.js │ │ │ │ ├── group.js │ │ │ │ └── property.js │ │ │ ├── unique-check │ │ │ │ ├── batch.js │ │ │ │ └── index.js │ │ │ ├── use-sideslider.js │ │ │ ├── use-timeout-poll.js │ │ │ └── utils │ │ │ │ ├── clone.js │ │ │ │ ├── filter.js │ │ │ │ ├── group-property.js │ │ │ │ └── pending.js │ │ ├── i18n │ │ │ ├── constants.js │ │ │ ├── index.js │ │ │ └── lang │ │ │ │ ├── cn.json │ │ │ │ ├── en.json │ │ │ │ └── messages.js │ │ ├── login │ │ │ ├── assets │ │ │ │ ├── blueking_cn.svg │ │ │ │ ├── login_bg.png │ │ │ │ ├── login_bg_1280.png │ │ │ │ ├── password.svg │ │ │ │ └── user.svg │ │ │ ├── index.js │ │ │ └── index.vue │ │ ├── magicbox │ │ │ ├── index.js │ │ │ └── magicbox.scss │ │ ├── main.js │ │ ├── mixins │ │ │ ├── app.js │ │ │ ├── auth.js │ │ │ ├── classify.js │ │ │ ├── edit-multiple-host.js │ │ │ ├── form.js │ │ │ ├── number-form-type.js │ │ │ ├── permission.js │ │ │ ├── request.js │ │ │ └── table.js │ │ ├── public-path.js │ │ ├── router │ │ │ ├── StatusError.js │ │ │ ├── actions.js │ │ │ ├── business-interceptor.js │ │ │ ├── index.js │ │ │ ├── meta.js │ │ │ └── query.js │ │ ├── service │ │ │ ├── association │ │ │ │ └── index.js │ │ │ ├── auth.js │ │ │ ├── business-set │ │ │ │ ├── business.js │ │ │ │ ├── host.js │ │ │ │ ├── index.js │ │ │ │ ├── module.js │ │ │ │ ├── process-instance.js │ │ │ │ ├── process-template.js │ │ │ │ ├── service-instance.js │ │ │ │ ├── set.js │ │ │ │ └── topology.js │ │ │ ├── business │ │ │ │ └── search.js │ │ │ ├── container │ │ │ │ ├── cluster.js │ │ │ │ ├── common.js │ │ │ │ ├── container.js │ │ │ │ ├── host.js │ │ │ │ ├── namespace.js │ │ │ │ ├── node.js │ │ │ │ ├── pod.js │ │ │ │ ├── property-group.js │ │ │ │ ├── property.js │ │ │ │ ├── transition.js │ │ │ │ └── workload.js │ │ │ ├── field-template │ │ │ │ └── index.js │ │ │ ├── global-config.js │ │ │ ├── host │ │ │ │ ├── import.js │ │ │ │ └── search.js │ │ │ ├── instance │ │ │ │ ├── association.js │ │ │ │ ├── common.js │ │ │ │ ├── import.js │ │ │ │ ├── instance.js │ │ │ │ ├── search.js │ │ │ │ └── table.js │ │ │ ├── model │ │ │ │ ├── association.js │ │ │ │ └── import-export.js │ │ │ ├── project │ │ │ │ └── index.js │ │ │ ├── property │ │ │ │ ├── group.js │ │ │ │ └── property.js │ │ │ ├── service-template │ │ │ │ └── index.js │ │ │ ├── set-template │ │ │ │ └── index.js │ │ │ ├── topology │ │ │ │ └── instance.js │ │ │ ├── unique-check │ │ │ │ └── index.js │ │ │ └── utils.js │ │ ├── setup │ │ │ ├── afterload.js │ │ │ ├── build-in-vars.js │ │ │ ├── cookie.js │ │ │ ├── duplicate-remote-validate.js │ │ │ ├── permission.js │ │ │ ├── preload.js │ │ │ ├── regular-remote-validate.js │ │ │ ├── string-remote-validate.js │ │ │ ├── validate.js │ │ │ └── worker-task.js │ │ ├── shims-vue.d.ts │ │ ├── store │ │ │ ├── index.js │ │ │ └── modules │ │ │ │ ├── api │ │ │ │ ├── audit.js │ │ │ │ ├── auth.js │ │ │ │ ├── business-synchronous.js │ │ │ │ ├── cloud-account.js │ │ │ │ ├── cloud-discover.js │ │ │ │ ├── cloud.js │ │ │ │ ├── cloudarea.js │ │ │ │ ├── dynamic-group.js │ │ │ │ ├── full-text-search.js │ │ │ │ ├── global-models.js │ │ │ │ ├── host-apply.js │ │ │ │ ├── host-batch.js │ │ │ │ ├── host-delete.js │ │ │ │ ├── host-favorites.js │ │ │ │ ├── host-relation.js │ │ │ │ ├── host-search-history.js │ │ │ │ ├── host-search.js │ │ │ │ ├── host-update.js │ │ │ │ ├── instance-label.js │ │ │ │ ├── net-collect-device.js │ │ │ │ ├── net-collect-property.js │ │ │ │ ├── net-data-collection.js │ │ │ │ ├── net-discovery.js │ │ │ │ ├── object-association.js │ │ │ │ ├── object-batch.js │ │ │ │ ├── object-biz.js │ │ │ │ ├── object-common-inst.js │ │ │ │ ├── object-main-line-module.js │ │ │ │ ├── object-model-classify.js │ │ │ │ ├── object-model-field-group.js │ │ │ │ ├── object-model-property.js │ │ │ │ ├── object-model.js │ │ │ │ ├── object-module.js │ │ │ │ ├── object-relation.js │ │ │ │ ├── object-set.js │ │ │ │ ├── object-unique.js │ │ │ │ ├── operation-chart.js │ │ │ │ ├── organization.js │ │ │ │ ├── proc-config.js │ │ │ │ ├── process-instance.js │ │ │ │ ├── process-template.js │ │ │ │ ├── resource-directory.js │ │ │ │ ├── resource.js │ │ │ │ ├── service-classification.js │ │ │ │ ├── service-instance.js │ │ │ │ ├── service-template.js │ │ │ │ ├── set-sync.js │ │ │ │ ├── set-template.js │ │ │ │ ├── user-custom.js │ │ │ │ ├── user-privilege.js │ │ │ │ └── version-log.js │ │ │ │ ├── biz-set.js │ │ │ │ ├── global-config.js │ │ │ │ ├── global.js │ │ │ │ ├── request.js │ │ │ │ └── view │ │ │ │ ├── business-host.js │ │ │ │ ├── business-sync.js │ │ │ │ ├── business-topology.js │ │ │ │ ├── field-template.js │ │ │ │ ├── host-details.js │ │ │ │ ├── hosts.js │ │ │ │ ├── index.js │ │ │ │ ├── resource-host.js │ │ │ │ ├── service-process.js │ │ │ │ └── set-features.js │ │ ├── typings │ │ │ └── index.d.ts │ │ ├── utils │ │ │ ├── apply-permission.js │ │ │ ├── bus.js │ │ │ ├── business-set-helper.js │ │ │ ├── change-document-title.js │ │ │ ├── check-version.js │ │ │ ├── interval.js │ │ │ ├── login-helper.js │ │ │ ├── main-scroller.js │ │ │ ├── polling.js │ │ │ ├── query-builder-operator.js │ │ │ ├── resize-events.js │ │ │ ├── scrollbar-width.js │ │ │ ├── tools.js │ │ │ └── util.js │ │ ├── views │ │ │ ├── audit │ │ │ │ ├── children │ │ │ │ │ ├── audit-action-selector.vue │ │ │ │ │ ├── audit-business-options.vue │ │ │ │ │ ├── audit-host-options.vue │ │ │ │ │ ├── audit-model-selector.vue │ │ │ │ │ ├── audit-other-options.vue │ │ │ │ │ ├── audit-resource-options.vue │ │ │ │ │ ├── audit-target-selector.vue │ │ │ │ │ └── audit-user-selector.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── business-set-topology │ │ │ │ ├── children │ │ │ │ │ ├── host-list │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── options.vue │ │ │ │ │ ├── service-instance │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── instance │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── instance-list.vue │ │ │ │ │ │ │ └── options.vue │ │ │ │ │ │ └── process │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── options.vue │ │ │ │ │ │ │ └── process-list.vue │ │ │ │ │ ├── service-node-info.vue │ │ │ │ │ └── topology-tree.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── business-set │ │ │ │ ├── children │ │ │ │ │ ├── columns-config.vue │ │ │ │ │ └── management-form.vue │ │ │ │ ├── details.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── business-synchronous │ │ │ │ ├── children │ │ │ │ │ ├── module-instance.vue │ │ │ │ │ ├── process-difference.vue │ │ │ │ │ ├── property-difference.vue │ │ │ │ │ └── service-instance-details.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── business-topology │ │ │ │ ├── children │ │ │ │ │ ├── container-node-info.vue │ │ │ │ │ ├── create-module.vue │ │ │ │ │ ├── create-node.vue │ │ │ │ │ ├── create-set.vue │ │ │ │ │ ├── form-service-category.vue │ │ │ │ │ ├── node-extra-info-service-template.vue │ │ │ │ │ ├── node-extra-info-set-template.vue │ │ │ │ │ ├── node-extra-info.vue │ │ │ │ │ ├── service-node-info.vue │ │ │ │ │ ├── simple-node-info.vue │ │ │ │ │ ├── topology-tree-node.vue │ │ │ │ │ └── topology-tree.vue │ │ │ │ ├── host │ │ │ │ │ ├── across-business-confirm.vue │ │ │ │ │ ├── across-business-module-selector.vue │ │ │ │ │ ├── edit-multiple-host.vue │ │ │ │ │ ├── host-list-options.vue │ │ │ │ │ ├── host-list.vue │ │ │ │ │ ├── host-selector-custom.vue │ │ │ │ │ ├── host-selector-new │ │ │ │ │ │ ├── host-selector-custom.vue │ │ │ │ │ │ ├── host-selector-topology.vue │ │ │ │ │ │ ├── host-table.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── host-selector.vue │ │ │ │ │ ├── invalid-list.vue │ │ │ │ │ ├── module-checked-list.vue │ │ │ │ │ ├── module-selector-with-tab.vue │ │ │ │ │ ├── module-selector.vue │ │ │ │ │ ├── move-to-resource-confirm.vue │ │ │ │ │ └── no-permission.vue │ │ │ │ ├── index.vue │ │ │ │ ├── pod │ │ │ │ │ ├── pod-list-options.vue │ │ │ │ │ └── pod-list.vue │ │ │ │ ├── router.config.js │ │ │ │ └── service-instance │ │ │ │ │ ├── common │ │ │ │ │ ├── bus.js │ │ │ │ │ ├── host-selector.vue │ │ │ │ │ └── view-switcher.vue │ │ │ │ │ ├── instance │ │ │ │ │ ├── create-process-mixin.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── label-batch-dialog-content.vue │ │ │ │ │ │ ├── label-batch-dialog.js │ │ │ │ │ │ ├── label-batch-dialog.vue │ │ │ │ │ │ ├── label-dialog-content.vue │ │ │ │ │ │ ├── label-dialog.js │ │ │ │ │ │ └── label-dialog.vue │ │ │ │ │ ├── expand-list.vue │ │ │ │ │ ├── list-cell-count.vue │ │ │ │ │ ├── list-cell-name.vue │ │ │ │ │ ├── list-cell-operation.vue │ │ │ │ │ ├── list-cell-tag.vue │ │ │ │ │ ├── list-sticky-row.vue │ │ │ │ │ ├── list.vue │ │ │ │ │ ├── options.vue │ │ │ │ │ └── view.vue │ │ │ │ │ ├── process │ │ │ │ │ ├── expand-list.vue │ │ │ │ │ ├── list.vue │ │ │ │ │ ├── options.vue │ │ │ │ │ └── view.vue │ │ │ │ │ └── view.vue │ │ │ ├── business │ │ │ │ ├── archived.vue │ │ │ │ ├── details.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── cloud-account │ │ │ │ ├── children │ │ │ │ │ ├── account-details.vue │ │ │ │ │ ├── account-form.vue │ │ │ │ │ └── account-sideslider.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── cloud-area │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── cloud-resource │ │ │ │ ├── children │ │ │ │ │ ├── task-account-selector.vue │ │ │ │ │ ├── task-cloud-area-input.vue │ │ │ │ │ ├── task-details-history-content.vue │ │ │ │ │ ├── task-details-history.vue │ │ │ │ │ ├── task-details-info.vue │ │ │ │ │ ├── task-details.vue │ │ │ │ │ ├── task-directory-selector.vue │ │ │ │ │ ├── task-form-table-header.vue │ │ │ │ │ ├── task-form-table.vue │ │ │ │ │ ├── task-form.vue │ │ │ │ │ ├── task-region-selector.vue │ │ │ │ │ ├── task-resource-selector.vue │ │ │ │ │ ├── task-sideslider.vue │ │ │ │ │ └── task-vpc-selector.vue │ │ │ │ ├── common │ │ │ │ │ └── symbol.js │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── custom-fields │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── dynamic-group │ │ │ │ ├── children │ │ │ │ │ └── search-select.vue │ │ │ │ ├── form │ │ │ │ │ ├── form-fields-selector.vue │ │ │ │ │ ├── form-property-list.vue │ │ │ │ │ ├── form-property-selector.js │ │ │ │ │ ├── form-property-selector.vue │ │ │ │ │ ├── form-target.vue │ │ │ │ │ ├── form.js │ │ │ │ │ └── form.vue │ │ │ │ ├── index.vue │ │ │ │ ├── preview │ │ │ │ │ ├── preview-result.vue │ │ │ │ │ ├── preview.js │ │ │ │ │ └── preview.vue │ │ │ │ ├── router.config.js │ │ │ │ └── store.js │ │ │ ├── field-template │ │ │ │ ├── bind.vue │ │ │ │ ├── children │ │ │ │ │ ├── basic-form.vue │ │ │ │ │ ├── bind-model.vue │ │ │ │ │ ├── clone-dialog.vue │ │ │ │ │ ├── create-success.vue │ │ │ │ │ ├── diff-brand.vue │ │ │ │ │ ├── field-diff-details-drawer.vue │ │ │ │ │ ├── field-diff.vue │ │ │ │ │ ├── field-manage.vue │ │ │ │ │ ├── field-preview-drawer.vue │ │ │ │ │ ├── model-field-selector.vue │ │ │ │ │ ├── model-sync-status.vue │ │ │ │ │ ├── result-status.vue │ │ │ │ │ ├── search-select.vue │ │ │ │ │ ├── select-model-dialog.vue │ │ │ │ │ ├── sync-results.vue │ │ │ │ │ ├── top-steps.vue │ │ │ │ │ ├── unique-diff.vue │ │ │ │ │ ├── unique-manage-drawer.vue │ │ │ │ │ ├── unique-manage.vue │ │ │ │ │ ├── use-field.js │ │ │ │ │ ├── use-model-sync-status.js │ │ │ │ │ ├── use-template.js │ │ │ │ │ └── use-unique.js │ │ │ │ ├── create-basic.vue │ │ │ │ ├── create-field-settings.vue │ │ │ │ ├── details-field.vue │ │ │ │ ├── details-model.vue │ │ │ │ ├── details-unique.vue │ │ │ │ ├── details.vue │ │ │ │ ├── edit-basic.vue │ │ │ │ ├── edit-binding.vue │ │ │ │ ├── edit-field-settings.vue │ │ │ │ ├── index.vue │ │ │ │ ├── router.config.js │ │ │ │ └── sync.vue │ │ │ ├── general-model │ │ │ │ ├── details.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── global-config │ │ │ │ ├── children │ │ │ │ │ ├── business-general-config.vue │ │ │ │ │ ├── id-generate.vue │ │ │ │ │ ├── idle-pool-config.vue │ │ │ │ │ ├── module-builder.vue │ │ │ │ │ ├── platform-info-config.vue │ │ │ │ │ ├── save-button.vue │ │ │ │ │ └── validation-rules-config.vue │ │ │ │ ├── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ └── zh-CN.json │ │ │ │ ├── index.vue │ │ │ │ ├── router.config.js │ │ │ │ └── style.scss │ │ │ ├── history │ │ │ │ └── index.vue │ │ │ ├── host-apply │ │ │ │ ├── children │ │ │ │ │ ├── apply-status.vue │ │ │ │ │ ├── batch-check-panel.vue │ │ │ │ │ ├── details.vue │ │ │ │ │ ├── host-property-modal.vue │ │ │ │ │ ├── multi-config.vue │ │ │ │ │ ├── property-config-table.vue │ │ │ │ │ ├── search-select-mix.vue │ │ │ │ │ ├── service-template-list.vue │ │ │ │ │ ├── service-template-tips.vue │ │ │ │ │ ├── sidebar.vue │ │ │ │ │ ├── single-config.vue │ │ │ │ │ ├── top-steps.vue │ │ │ │ │ └── topology-tree.vue │ │ │ │ ├── conflict-list.vue │ │ │ │ ├── edit.vue │ │ │ │ ├── failed-list.vue │ │ │ │ ├── index.vue │ │ │ │ ├── property-confirm.vue │ │ │ │ ├── property-run.vue │ │ │ │ ├── router.config.js │ │ │ │ └── task-helper.js │ │ │ ├── host-details │ │ │ │ ├── children │ │ │ │ │ ├── association-create.vue │ │ │ │ │ ├── association-list-table.vue │ │ │ │ │ ├── association-list.vue │ │ │ │ │ ├── association-property-filter.vue │ │ │ │ │ ├── association.vue │ │ │ │ │ ├── info.vue │ │ │ │ │ ├── pod-list.vue │ │ │ │ │ ├── property.vue │ │ │ │ │ ├── service-instance-table.vue │ │ │ │ │ └── service-list.vue │ │ │ │ ├── index.vue │ │ │ │ ├── landing.vue │ │ │ │ ├── mixin-auth.js │ │ │ │ ├── mixin-readonly.js │ │ │ │ ├── router.config.js │ │ │ │ └── service-proxy.js │ │ │ ├── host-operation │ │ │ │ ├── children │ │ │ │ │ ├── create-service-instance.vue │ │ │ │ │ ├── deleted-service-instance.vue │ │ │ │ │ ├── host-attrs-auto-apply.vue │ │ │ │ │ └── move-to-idle-host.vue │ │ │ │ └── index.vue │ │ │ ├── index.js │ │ │ ├── index │ │ │ │ ├── children │ │ │ │ │ ├── footer.vue │ │ │ │ │ ├── full-text-search │ │ │ │ │ │ ├── advanced-setting-popover.vue │ │ │ │ │ │ ├── advanced-setting-result.vue │ │ │ │ │ │ ├── item-biz.vue │ │ │ │ │ │ ├── item-bizset.vue │ │ │ │ │ │ ├── item-host.vue │ │ │ │ │ │ ├── item-instance.vue │ │ │ │ │ │ ├── item-model.vue │ │ │ │ │ │ ├── item-module.vue │ │ │ │ │ │ ├── item-set.vue │ │ │ │ │ │ ├── result-list.vue │ │ │ │ │ │ ├── result-tab.vue │ │ │ │ │ │ ├── search-bar.vue │ │ │ │ │ │ ├── use-advanced-setting.js │ │ │ │ │ │ ├── use-history.js │ │ │ │ │ │ ├── use-item.js │ │ │ │ │ │ ├── use-result.js │ │ │ │ │ │ ├── use-route.js │ │ │ │ │ │ ├── use-suggestion.js │ │ │ │ │ │ └── use-tab.js │ │ │ │ │ ├── host-search.vue │ │ │ │ │ └── map.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── model-association │ │ │ │ ├── _detail.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── model-manage │ │ │ │ ├── children │ │ │ │ │ ├── collapse-group-title.vue │ │ │ │ │ ├── dropdown-option-button.vue │ │ │ │ │ ├── model-details │ │ │ │ │ │ ├── editable-field.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── more-action-menu.vue │ │ │ │ │ │ ├── relation-detail.vue │ │ │ │ │ │ ├── relation.vue │ │ │ │ │ │ ├── verification-detail.vue │ │ │ │ │ │ └── verification.vue │ │ │ │ │ ├── model-import-export │ │ │ │ │ │ ├── content-confirm-layout.vue │ │ │ │ │ │ ├── dropdown-select.vue │ │ │ │ │ │ ├── model-export-pane │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── model-export-editor.vue │ │ │ │ │ │ │ ├── model-export-result.vue │ │ │ │ │ │ │ └── model-export-setting.vue │ │ │ │ │ │ ├── model-group-list.vue │ │ │ │ │ │ ├── model-import-pane │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── model-import-editor.vue │ │ │ │ │ │ │ ├── model-import-result.vue │ │ │ │ │ │ │ └── model-package-upload.vue │ │ │ │ │ │ ├── model-relation.vue │ │ │ │ │ │ ├── model-summary.vue │ │ │ │ │ │ ├── step-pane.vue │ │ │ │ │ │ └── user-notice.vue │ │ │ │ │ └── model-operation-list.vue │ │ │ │ ├── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ └── zh-CN.json │ │ │ │ ├── index.vue │ │ │ │ ├── router.config.js │ │ │ │ ├── style.scss │ │ │ │ └── use-associations.js │ │ │ ├── model-topology │ │ │ │ ├── children │ │ │ │ │ ├── create-relation.vue │ │ │ │ │ └── relation-detail.vue │ │ │ │ ├── index.new.vue │ │ │ │ └── router.config.js │ │ │ ├── operation │ │ │ │ ├── chart-detail.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── pod-details │ │ │ │ ├── children │ │ │ │ │ ├── container-details.vue │ │ │ │ │ └── container-list.vue │ │ │ │ └── index.vue │ │ │ ├── project │ │ │ │ ├── children │ │ │ │ │ └── instance-status-column.vue │ │ │ │ ├── details.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── resource-manage │ │ │ │ ├── children │ │ │ │ │ ├── classify-panel.vue │ │ │ │ │ ├── instance-count.vue │ │ │ │ │ └── use-instance-count.js │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── resource │ │ │ │ ├── children │ │ │ │ │ ├── directory.vue │ │ │ │ │ ├── host-list.vue │ │ │ │ │ └── host-options.vue │ │ │ │ ├── index.vue │ │ │ │ ├── router.config.js │ │ │ │ └── transfer │ │ │ │ │ ├── host-store.js │ │ │ │ │ └── transfer-menu.vue │ │ │ ├── service-category │ │ │ │ ├── children │ │ │ │ │ └── category-input.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── service-instance │ │ │ │ ├── children │ │ │ │ │ ├── clone-to-other.vue │ │ │ │ │ └── clone-to-source.vue │ │ │ │ ├── clone.vue │ │ │ │ ├── create.new.vue │ │ │ │ ├── create.vue │ │ │ │ └── router.config.js │ │ │ ├── service-operation │ │ │ │ ├── children │ │ │ │ │ ├── host-attrs-auto-apply.vue │ │ │ │ │ └── move-to-idle-host.vue │ │ │ │ └── index.vue │ │ │ ├── service-template │ │ │ │ ├── children │ │ │ │ │ ├── instance-status-column.vue │ │ │ │ │ ├── management-form.vue │ │ │ │ │ ├── process-form-property-ip.vue │ │ │ │ │ ├── process-form-property-table.vue │ │ │ │ │ ├── process-form.vue │ │ │ │ │ ├── process.vue │ │ │ │ │ ├── template-config.vue │ │ │ │ │ ├── template-instance.vue │ │ │ │ │ └── use-template-data.js │ │ │ │ ├── create.vue │ │ │ │ ├── details.vue │ │ │ │ ├── edit.vue │ │ │ │ ├── index.vue │ │ │ │ └── router.config.js │ │ │ ├── set-sync │ │ │ │ ├── module-difference.vue │ │ │ │ ├── property-difference.vue │ │ │ │ ├── router.config.js │ │ │ │ ├── set-instance.vue │ │ │ │ └── sync-index.vue │ │ │ ├── set-template │ │ │ │ ├── children │ │ │ │ │ ├── management-form.vue │ │ │ │ │ ├── service-template-info.vue │ │ │ │ │ ├── service-template-selector.vue │ │ │ │ │ ├── template-config.vue │ │ │ │ │ ├── template-instance.vue │ │ │ │ │ ├── template-tree.vue │ │ │ │ │ └── use-template-data.js │ │ │ │ ├── create.vue │ │ │ │ ├── details.vue │ │ │ │ ├── edit.vue │ │ │ │ ├── index.vue │ │ │ │ ├── router.config.js │ │ │ │ └── sync-history.vue │ │ │ └── status │ │ │ │ ├── 404.vue │ │ │ │ ├── error.vue │ │ │ │ ├── no-search-results.vue │ │ │ │ ├── non-exist-business-set.vue │ │ │ │ ├── non-exist-business.vue │ │ │ │ └── permission.vue │ │ └── workers │ │ │ ├── ccworker.js │ │ │ ├── iam.js │ │ │ └── utils.js │ ├── static │ │ ├── .gitkeep │ │ ├── 403.html │ │ ├── favicon.ico │ │ ├── login_success.html │ │ └── svg │ │ │ ├── cc-International.svg │ │ │ ├── cc-activeMQ.svg │ │ │ ├── cc-add-line.svg │ │ │ ├── cc-android.svg │ │ │ ├── cc-angle-left.svg │ │ │ ├── cc-angle-right.svg │ │ │ ├── cc-apache.svg │ │ │ ├── cc-apple.svg │ │ │ ├── cc-architecture.svg │ │ │ ├── cc-arrow-down.svg │ │ │ ├── cc-arrow.svg │ │ │ ├── cc-attribute.svg │ │ │ ├── cc-backstage.svg │ │ │ ├── cc-backward.svg │ │ │ ├── cc-balance.svg │ │ │ ├── cc-basic-resource.svg │ │ │ ├── cc-branch-company.svg │ │ │ ├── cc-branch-shop.svg │ │ │ ├── cc-broom.svg │ │ │ ├── cc-business-set.svg │ │ │ ├── cc-business.svg │ │ │ ├── cc-cabinet.svg │ │ │ ├── cc-camera.svg │ │ │ ├── cc-cbd.svg │ │ │ ├── cc-certificate.svg │ │ │ ├── cc-classroom.svg │ │ │ ├── cc-clear.svg │ │ │ ├── cc-cloud-host.svg │ │ │ ├── cc-cloud-to-uploa.svg │ │ │ ├── cc-collect.svg │ │ │ ├── cc-collection.svg │ │ │ ├── cc-columnar.svg │ │ │ ├── cc-compact.svg │ │ │ ├── cc-company.svg │ │ │ ├── cc-copy.svg │ │ │ ├── cc-cpu.svg │ │ │ ├── cc-create-business.svg │ │ │ ├── cc-cube-entity.svg │ │ │ ├── cc-cube.svg │ │ │ ├── cc-curve.svg │ │ │ ├── cc-database.svg │ │ │ ├── cc-db2.svg │ │ │ ├── cc-default-class.svg │ │ │ ├── cc-default.svg │ │ │ ├── cc-del.svg │ │ │ ├── cc-delete.svg │ │ │ ├── cc-department.svg │ │ │ ├── cc-derivation.svg │ │ │ ├── cc-details-copy.svg │ │ │ ├── cc-directory.svg │ │ │ ├── cc-disk.svg │ │ │ ├── cc-domain.svg │ │ │ ├── cc-edit-shape.svg │ │ │ ├── cc-edit.svg │ │ │ ├── cc-elastic-search.svg │ │ │ ├── cc-empty.svg │ │ │ ├── cc-engine-room.svg │ │ │ ├── cc-equipment.svg │ │ │ ├── cc-exclamation-tips.svg │ │ │ ├── cc-factory.svg │ │ │ ├── cc-failure.svg │ │ │ ├── cc-firewall.svg │ │ │ ├── cc-fit.svg │ │ │ ├── cc-forward.svg │ │ │ ├── cc-free-pool.svg │ │ │ ├── cc-fullscreen-outlined-reset.svg │ │ │ ├── cc-fullscreen-outlined.svg │ │ │ ├── cc-fullscreen.svg │ │ │ ├── cc-funnel.svg │ │ │ ├── cc-goback.svg │ │ │ ├── cc-group.svg │ │ │ ├── cc-hardware.svg │ │ │ ├── cc-headoffice.svg │ │ │ ├── cc-hide.svg │ │ │ ├── cc-history.svg │ │ │ ├── cc-history2.svg │ │ │ ├── cc-home.svg │ │ │ ├── cc-host-breakdown.svg │ │ │ ├── cc-host-free-pool.svg │ │ │ ├── cc-host.svg │ │ │ ├── cc-icon-city.svg │ │ │ ├── cc-idc.svg │ │ │ ├── cc-iis.svg │ │ │ ├── cc-import.svg │ │ │ ├── cc-influxdb.svg │ │ │ ├── cc-information.svg │ │ │ ├── cc-instance-path.svg │ │ │ ├── cc-instance-total.svg │ │ │ ├── cc-ip.svg │ │ │ ├── cc-kafka.svg │ │ │ ├── cc-key.svg │ │ │ ├── cc-label.svg │ │ │ ├── cc-lang.svg │ │ │ ├── cc-line.svg │ │ │ ├── cc-link.svg │ │ │ ├── cc-linux.svg │ │ │ ├── cc-list.svg │ │ │ ├── cc-loading.svg │ │ │ ├── cc-lock.svg │ │ │ ├── cc-log-02.svg │ │ │ ├── cc-log.svg │ │ │ ├── cc-logout.svg │ │ │ ├── cc-machine.svg │ │ │ ├── cc-mail-server.svg │ │ │ ├── cc-mainboard.svg │ │ │ ├── cc-map.svg │ │ │ ├── cc-market.svg │ │ │ ├── cc-memory.svg │ │ │ ├── cc-middleware.svg │ │ │ ├── cc-minicomputer.svg │ │ │ ├── cc-model-total.svg │ │ │ ├── cc-model.svg │ │ │ ├── cc-module.svg │ │ │ ├── cc-mongodb.svg │ │ │ ├── cc-mysql.svg │ │ │ ├── cc-nav-advanced-features.svg │ │ │ ├── cc-nav-associated.svg │ │ │ ├── cc-nav-audit-02.svg │ │ │ ├── cc-nav-audit.svg │ │ │ ├── cc-nav-authority.svg │ │ │ ├── cc-nav-auto-discovery.svg │ │ │ ├── cc-nav-business-level.svg │ │ │ ├── cc-nav-collection.svg │ │ │ ├── cc-nav-detective.svg │ │ │ ├── cc-nav-free-machine.svg │ │ │ ├── cc-nav-model-02.svg │ │ │ ├── cc-nav-model-topo.svg │ │ │ ├── cc-nav-model.svg │ │ │ ├── cc-nav-resource.svg │ │ │ ├── cc-nav-service-topo.svg │ │ │ ├── cc-nav-stick.svg │ │ │ ├── cc-nav-subscription.svg │ │ │ ├── cc-nav-toggle.svg │ │ │ ├── cc-net-port.svg │ │ │ ├── cc-network-card.svg │ │ │ ├── cc-network-equipment.svg │ │ │ ├── cc-network-manage.svg │ │ │ ├── cc-network-segment.svg │ │ │ ├── cc-networks.svg │ │ │ ├── cc-nginx.svg │ │ │ ├── cc-no-authority.svg │ │ │ ├── cc-node.svg │ │ │ ├── cc-not-allowed.svg │ │ │ ├── cc-operator.svg │ │ │ ├── cc-oracle.svg │ │ │ ├── cc-organization.svg │ │ │ ├── cc-other.svg │ │ │ ├── cc-pie-chart.svg │ │ │ ├── cc-pin.svg │ │ │ ├── cc-plus-circle.svg │ │ │ ├── cc-plus.svg │ │ │ ├── cc-port.svg │ │ │ ├── cc-postgresql.svg │ │ │ ├── cc-printer.svg │ │ │ ├── cc-process.svg │ │ │ ├── cc-program.svg │ │ │ ├── cc-progress.svg │ │ │ ├── cc-project.svg │ │ │ ├── cc-push-configuration.svg │ │ │ ├── cc-push-history.svg │ │ │ ├── cc-question.svg │ │ │ ├── cc-record.svg │ │ │ ├── cc-rect-add.svg │ │ │ ├── cc-rect-sub.svg │ │ │ ├── cc-redis.svg │ │ │ ├── cc-repeater.svg │ │ │ ├── cc-report.svg │ │ │ ├── cc-required.svg │ │ │ ├── cc-resize-full.svg │ │ │ ├── cc-resize-small.svg │ │ │ ├── cc-resource.svg │ │ │ ├── cc-resources.svg │ │ │ ├── cc-round-plus.svg │ │ │ ├── cc-router.svg │ │ │ ├── cc-security.svg │ │ │ ├── cc-security2.svg │ │ │ ├── cc-senior.svg │ │ │ ├── cc-server.svg │ │ │ ├── cc-service.svg │ │ │ ├── cc-set.svg │ │ │ ├── cc-setting.svg │ │ │ ├── cc-share.svg │ │ │ ├── cc-shift.svg │ │ │ ├── cc-show.svg │ │ │ ├── cc-skin.svg │ │ │ ├── cc-skip.svg │ │ │ ├── cc-sort.svg │ │ │ ├── cc-sql-server.svg │ │ │ ├── cc-sqlite.svg │ │ │ ├── cc-square.svg │ │ │ ├── cc-star.svg │ │ │ ├── cc-statement.svg │ │ │ ├── cc-stick.svg │ │ │ ├── cc-storage.svg │ │ │ ├── cc-subnet.svg │ │ │ ├── cc-switch2.svg │ │ │ ├── cc-syncing.svg │ │ │ ├── cc-template-management.svg │ │ │ ├── cc-thumbtack.svg │ │ │ ├── cc-tips-close.svg │ │ │ ├── cc-tips.svg │ │ │ ├── cc-tomcat.svg │ │ │ ├── cc-tree-triangle.svg │ │ │ ├── cc-tree.svg │ │ │ ├── cc-triangle-sider.svg │ │ │ ├── cc-triangle.svg │ │ │ ├── cc-unix.svg │ │ │ ├── cc-updating.svg │ │ │ ├── cc-ups.svg │ │ │ ├── cc-user.svg │ │ │ ├── cc-virtual.svg │ │ │ ├── cc-vmware.svg │ │ │ ├── cc-vsphere.svg │ │ │ ├── cc-weblogic.svg │ │ │ ├── cc-win.svg │ │ │ ├── cc-win7.svg │ │ │ ├── cc-wireless.svg │ │ │ ├── cc-zoom-in.svg │ │ │ └── cc-zoom-out.svg │ └── tsconfig.json └── web_server │ ├── Makefile │ ├── app │ ├── app.go │ ├── options │ │ └── options.go │ └── server.go │ ├── capability │ └── capability.go │ ├── common │ ├── common.go │ ├── definitions.go │ └── httpheader.go │ ├── logics │ ├── department.go │ ├── logics.go │ └── object.go │ ├── middleware │ ├── apigw.go │ ├── login.go │ ├── middleware.go │ ├── requestid.go │ ├── service │ │ └── service.go │ └── user │ │ ├── owner.go │ │ ├── plugins │ │ ├── manager │ │ │ └── manager.go │ │ ├── mananger.go │ │ ├── method │ │ │ ├── blueking │ │ │ │ └── userinfo.go │ │ │ ├── opensource │ │ │ │ └── userinfo.go │ │ │ └── skip │ │ │ │ └── userinfo.go │ │ └── register │ │ │ ├── blueking.go │ │ │ ├── open_source.go │ │ │ └── skip_login.go │ │ ├── public.go │ │ └── user.go │ ├── readme.md │ ├── service │ ├── apigw │ │ └── service.go │ ├── changelog.go │ ├── count.go │ ├── department.go │ ├── excel │ │ ├── core │ │ │ ├── asst_func.go │ │ │ ├── client.go │ │ │ ├── const.go │ │ │ ├── field_func.go │ │ │ ├── host_func.go │ │ │ ├── inst_func.go │ │ │ ├── object_func.go │ │ │ ├── property.go │ │ │ ├── topo_func.go │ │ │ └── types.go │ │ ├── operator │ │ │ ├── inst │ │ │ │ ├── exporter │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── inst_func.go │ │ │ │ │ ├── param.go │ │ │ │ │ ├── property_func.go │ │ │ │ │ ├── style.go │ │ │ │ │ └── tmpl_operator.go │ │ │ │ └── importer │ │ │ │ │ ├── importer.go │ │ │ │ │ ├── inst_func.go │ │ │ │ │ └── param.go │ │ │ ├── model │ │ │ │ └── operator.go │ │ │ └── op.go │ │ ├── scene.go │ │ └── service.go │ ├── field_template.go │ ├── host.go │ ├── index.go │ ├── login.go │ ├── notice │ │ └── service.go │ ├── object.go │ ├── regular.go │ ├── service.go │ ├── table.go │ ├── user.go │ └── util.go │ └── ui.go └── vetur.config.js /.code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/.code.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bkcodeai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/bkcodeai.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/apidoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/README.md -------------------------------------------------------------------------------- /docs/apidoc/apigw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/apigw/README.md -------------------------------------------------------------------------------- /docs/apidoc/apigw/definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/apigw/definition.yaml -------------------------------------------------------------------------------- /docs/apidoc/apigw/saas/en/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/apigw/saas/en/demo.md -------------------------------------------------------------------------------- /docs/apidoc/apigw/saas/zh/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/apigw/saas/zh/demo.md -------------------------------------------------------------------------------- /docs/apidoc/archived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/archived/README.md -------------------------------------------------------------------------------- /docs/apidoc/cc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/README.md -------------------------------------------------------------------------------- /docs/apidoc/cc/cc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/cc.yaml -------------------------------------------------------------------------------- /docs/apidoc/cc/en/add_host_lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/add_host_lock.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/create_inst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/create_inst.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/create_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/create_object.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/delete_inst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/delete_inst.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/delete_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/delete_object.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/list_kube_pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/list_kube_pod.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/list_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/list_project.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/search_inst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/search_inst.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/update_inst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/update_inst.md -------------------------------------------------------------------------------- /docs/apidoc/cc/en/update_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/cc/en/update_object.md -------------------------------------------------------------------------------- /docs/apidoc/esb-cc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/apidoc/esb-cc/README.md -------------------------------------------------------------------------------- /docs/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/README.md -------------------------------------------------------------------------------- /docs/db/built-in_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/built-in_model.md -------------------------------------------------------------------------------- /docs/db/business.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/business.md -------------------------------------------------------------------------------- /docs/db/cloud_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/cloud_resource.md -------------------------------------------------------------------------------- /docs/db/container_data_manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/container_data_manage.md -------------------------------------------------------------------------------- /docs/db/field_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/field_template.md -------------------------------------------------------------------------------- /docs/db/host_apply_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/host_apply_rule.md -------------------------------------------------------------------------------- /docs/db/instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/instance.md -------------------------------------------------------------------------------- /docs/db/mainline_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/mainline_model.md -------------------------------------------------------------------------------- /docs/db/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/model.md -------------------------------------------------------------------------------- /docs/db/operational_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/operational_analysis.md -------------------------------------------------------------------------------- /docs/db/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/other.md -------------------------------------------------------------------------------- /docs/db/plat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/plat.md -------------------------------------------------------------------------------- /docs/db/service_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/service_template.md -------------------------------------------------------------------------------- /docs/db/set_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/set_template.md -------------------------------------------------------------------------------- /docs/db/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/task.md -------------------------------------------------------------------------------- /docs/db/user_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/user_custom.md -------------------------------------------------------------------------------- /docs/db/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/db/watch.md -------------------------------------------------------------------------------- /docs/features/features.md: -------------------------------------------------------------------------------- 1 | ## 功能文档 -------------------------------------------------------------------------------- /docs/features/full_text_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/features/full_text_search.md -------------------------------------------------------------------------------- /docs/overview/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/architecture.md -------------------------------------------------------------------------------- /docs/overview/code_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/code_framework.md -------------------------------------------------------------------------------- /docs/overview/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/design.md -------------------------------------------------------------------------------- /docs/overview/experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/experience.md -------------------------------------------------------------------------------- /docs/overview/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/framework.md -------------------------------------------------------------------------------- /docs/overview/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/installation.md -------------------------------------------------------------------------------- /docs/overview/source_compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/source_compile.md -------------------------------------------------------------------------------- /docs/overview/upgrade-from-ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/upgrade-from-ce.md -------------------------------------------------------------------------------- /docs/overview/usecase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/overview/usecase.md -------------------------------------------------------------------------------- /docs/resource/img/BKCN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/BKCN.jpg -------------------------------------------------------------------------------- /docs/resource/img/art_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/art_en.png -------------------------------------------------------------------------------- /docs/resource/img/bk-cmdb-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/bk-cmdb-en.png -------------------------------------------------------------------------------- /docs/resource/img/bk-cmdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/bk-cmdb.png -------------------------------------------------------------------------------- /docs/resource/img/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/bk.png -------------------------------------------------------------------------------- /docs/resource/img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/code.png -------------------------------------------------------------------------------- /docs/resource/img/frontpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/frontpage.png -------------------------------------------------------------------------------- /docs/resource/img/frontpage_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/frontpage_en.png -------------------------------------------------------------------------------- /docs/resource/img/honops-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/honops-logo.png -------------------------------------------------------------------------------- /docs/resource/img/jiawei-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/jiawei-logo.png -------------------------------------------------------------------------------- /docs/resource/img/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/page.png -------------------------------------------------------------------------------- /docs/resource/img/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/qq.png -------------------------------------------------------------------------------- /docs/resource/img/run-in-k8s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/run-in-k8s.jpg -------------------------------------------------------------------------------- /docs/resource/img/sence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/sence.png -------------------------------------------------------------------------------- /docs/resource/img/youole-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/resource/img/youole-logo.png -------------------------------------------------------------------------------- /docs/smart/web/app_desc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/smart/web/app_desc.yaml -------------------------------------------------------------------------------- /docs/smart/web/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/smart/web/logo.png -------------------------------------------------------------------------------- /docs/smart/web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/smart/web/readme.md -------------------------------------------------------------------------------- /docs/support-file/changelog_user/ch/v3.13.4_2024-03-12.md: -------------------------------------------------------------------------------- 1 | ### 新增 2 | 3 | - [新增] 主机模型的`操作系统类型`字段增加`MacOS`枚举项 4 | -------------------------------------------------------------------------------- /docs/support-file/config/templates/server#conf#extra.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/support-file/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/support-file/helm/README.md -------------------------------------------------------------------------------- /docs/support-file/helm/bkpkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/support-file/helm/bkpkg.yaml -------------------------------------------------------------------------------- /docs/wiki/community-link.md: -------------------------------------------------------------------------------- 1 | 敬请期待... -------------------------------------------------------------------------------- /docs/wiki/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/community.md -------------------------------------------------------------------------------- /docs/wiki/container-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/container-support.md -------------------------------------------------------------------------------- /docs/wiki/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/contribute.md -------------------------------------------------------------------------------- /docs/wiki/db_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/db_upgrade.md -------------------------------------------------------------------------------- /docs/wiki/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/faq.md -------------------------------------------------------------------------------- /docs/wiki/feature-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/feature-plan.md -------------------------------------------------------------------------------- /docs/wiki/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/feature.md -------------------------------------------------------------------------------- /docs/wiki/img/cmdb_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/cmdb_environment.png -------------------------------------------------------------------------------- /docs/wiki/img/cmdb_feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/cmdb_feature.png -------------------------------------------------------------------------------- /docs/wiki/img/cmdb_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/cmdb_system.png -------------------------------------------------------------------------------- /docs/wiki/img/contribute-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/contribute-flow.png -------------------------------------------------------------------------------- /docs/wiki/img/feature-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/feature-flow.png -------------------------------------------------------------------------------- /docs/wiki/img/flow_cmdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/flow_cmdb.png -------------------------------------------------------------------------------- /docs/wiki/img/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/fork.png -------------------------------------------------------------------------------- /docs/wiki/img/git_cmdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/git_cmdb.png -------------------------------------------------------------------------------- /docs/wiki/img/image-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/image-check.png -------------------------------------------------------------------------------- /docs/wiki/img/join_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/join_us.png -------------------------------------------------------------------------------- /docs/wiki/img/pr-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/pr-create.png -------------------------------------------------------------------------------- /docs/wiki/img/pr-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/pr-finish.png -------------------------------------------------------------------------------- /docs/wiki/img/pr-submmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/img/pr-submmit.png -------------------------------------------------------------------------------- /docs/wiki/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/issue.md -------------------------------------------------------------------------------- /docs/wiki/join-bk-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/join-bk-community.md -------------------------------------------------------------------------------- /docs/wiki/version-guidline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/docs/wiki/version-guidline.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/cache/full-sync-cond/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/full-sync-cond/types.go -------------------------------------------------------------------------------- /pkg/cache/general/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/key.go -------------------------------------------------------------------------------- /pkg/cache/general/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/keys.go -------------------------------------------------------------------------------- /pkg/cache/general/mapping/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/mapping/event.go -------------------------------------------------------------------------------- /pkg/cache/general/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/resource.go -------------------------------------------------------------------------------- /pkg/cache/general/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/types.go -------------------------------------------------------------------------------- /pkg/cache/general/unique_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/cache/general/unique_key.go -------------------------------------------------------------------------------- /pkg/conv/dot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/conv/dot.go -------------------------------------------------------------------------------- /pkg/conv/dot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/conv/dot_test.go -------------------------------------------------------------------------------- /pkg/excel/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/excel/cell.go -------------------------------------------------------------------------------- /pkg/excel/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/excel/excel.go -------------------------------------------------------------------------------- /pkg/excel/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/excel/reader.go -------------------------------------------------------------------------------- /pkg/excel/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/excel/style.go -------------------------------------------------------------------------------- /pkg/excel/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/excel/validation.go -------------------------------------------------------------------------------- /pkg/filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/README.md -------------------------------------------------------------------------------- /pkg/filter/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/expression.go -------------------------------------------------------------------------------- /pkg/filter/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/expression_test.go -------------------------------------------------------------------------------- /pkg/filter/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/match_test.go -------------------------------------------------------------------------------- /pkg/filter/match_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/match_util.go -------------------------------------------------------------------------------- /pkg/filter/operaor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/operaor_test.go -------------------------------------------------------------------------------- /pkg/filter/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/operator.go -------------------------------------------------------------------------------- /pkg/filter/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/rule.go -------------------------------------------------------------------------------- /pkg/filter/rule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/filter/rule_test.go -------------------------------------------------------------------------------- /pkg/id-gen/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/id-gen/types.go -------------------------------------------------------------------------------- /pkg/synchronize/types/medium.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/synchronize/types/medium.go -------------------------------------------------------------------------------- /pkg/synchronize/types/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/synchronize/types/protocol.go -------------------------------------------------------------------------------- /pkg/synchronize/types/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/synchronize/types/resource.go -------------------------------------------------------------------------------- /pkg/synchronize/types/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/synchronize/types/syncer.go -------------------------------------------------------------------------------- /pkg/tools/filter/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/pkg/tools/filter/gen.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/readme.md -------------------------------------------------------------------------------- /readme_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/readme_en.md -------------------------------------------------------------------------------- /resources/language/default/topo.json: -------------------------------------------------------------------------------- 1 | { 2 | "topo_str_query_module_fail": "%s 获取主机模块关系失败", 3 | "":"" 4 | } 5 | -------------------------------------------------------------------------------- /resources/language/en/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/api.json -------------------------------------------------------------------------------- /resources/language/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/common.json -------------------------------------------------------------------------------- /resources/language/en/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/enum.json -------------------------------------------------------------------------------- /resources/language/en/inst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/inst.json -------------------------------------------------------------------------------- /resources/language/en/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/object.json -------------------------------------------------------------------------------- /resources/language/en/proc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/proc.json -------------------------------------------------------------------------------- /resources/language/en/topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/topo.json -------------------------------------------------------------------------------- /resources/language/en/web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/resources/language/en/web.json -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/generate.py -------------------------------------------------------------------------------- /scripts/gotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/gotest.sh -------------------------------------------------------------------------------- /scripts/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/image.sh -------------------------------------------------------------------------------- /scripts/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/init.py -------------------------------------------------------------------------------- /scripts/init_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/init_auth.sh -------------------------------------------------------------------------------- /scripts/init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/init_db.sh -------------------------------------------------------------------------------- /scripts/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/ip.py -------------------------------------------------------------------------------- /scripts/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/license.py -------------------------------------------------------------------------------- /scripts/prepare_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/prepare_cfg.py -------------------------------------------------------------------------------- /scripts/refresh_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/refresh_config.sh -------------------------------------------------------------------------------- /scripts/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/restart.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/stop.sh -------------------------------------------------------------------------------- /scripts/template.sh.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/template.sh.start -------------------------------------------------------------------------------- /scripts/template.sh.stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/template.sh.stop -------------------------------------------------------------------------------- /scripts/tongsuo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/tongsuo.sh -------------------------------------------------------------------------------- /scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/upgrade.sh -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/scripts/validate.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/ac/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/auth.go -------------------------------------------------------------------------------- /src/ac/extensions/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/base.go -------------------------------------------------------------------------------- /src/ac/extensions/biz_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/biz_set.go -------------------------------------------------------------------------------- /src/ac/extensions/business.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/business.go -------------------------------------------------------------------------------- /src/ac/extensions/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/host.go -------------------------------------------------------------------------------- /src/ac/extensions/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/instance.go -------------------------------------------------------------------------------- /src/ac/extensions/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/model.go -------------------------------------------------------------------------------- /src/ac/extensions/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/module.go -------------------------------------------------------------------------------- /src/ac/extensions/plat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/plat.go -------------------------------------------------------------------------------- /src/ac/extensions/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/process.go -------------------------------------------------------------------------------- /src/ac/extensions/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/set.go -------------------------------------------------------------------------------- /src/ac/extensions/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/extensions/types.go -------------------------------------------------------------------------------- /src/ac/iam/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/adaptor.go -------------------------------------------------------------------------------- /src/ac/iam/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/client.go -------------------------------------------------------------------------------- /src/ac/iam/gen_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/gen_id.go -------------------------------------------------------------------------------- /src/ac/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/iam.go -------------------------------------------------------------------------------- /src/ac/iam/initial_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/initial_actions.go -------------------------------------------------------------------------------- /src/ac/iam/initial_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/initial_resources.go -------------------------------------------------------------------------------- /src/ac/iam/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/types.go -------------------------------------------------------------------------------- /src/ac/iam/viewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/iam/viewer.go -------------------------------------------------------------------------------- /src/ac/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/meta/meta.go -------------------------------------------------------------------------------- /src/ac/meta/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/meta/resource.go -------------------------------------------------------------------------------- /src/ac/parser/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/admin.go -------------------------------------------------------------------------------- /src/ac/parser/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/cache.go -------------------------------------------------------------------------------- /src/ac/parser/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/chain.go -------------------------------------------------------------------------------- /src/ac/parser/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/cloud.go -------------------------------------------------------------------------------- /src/ac/parser/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/event.go -------------------------------------------------------------------------------- /src/ac/parser/field_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/field_template.go -------------------------------------------------------------------------------- /src/ac/parser/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/framework.go -------------------------------------------------------------------------------- /src/ac/parser/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/host.go -------------------------------------------------------------------------------- /src/ac/parser/hostapply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/hostapply.go -------------------------------------------------------------------------------- /src/ac/parser/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/kube.go -------------------------------------------------------------------------------- /src/ac/parser/model_quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/model_quote.go -------------------------------------------------------------------------------- /src/ac/parser/netcollector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/netcollector.go -------------------------------------------------------------------------------- /src/ac/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/parser.go -------------------------------------------------------------------------------- /src/ac/parser/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/process.go -------------------------------------------------------------------------------- /src/ac/parser/processinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/processinstance.go -------------------------------------------------------------------------------- /src/ac/parser/processtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/processtemplate.go -------------------------------------------------------------------------------- /src/ac/parser/servicecategory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/servicecategory.go -------------------------------------------------------------------------------- /src/ac/parser/serviceinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/serviceinstance.go -------------------------------------------------------------------------------- /src/ac/parser/servicetemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/servicetemplate.go -------------------------------------------------------------------------------- /src/ac/parser/settemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/settemplate.go -------------------------------------------------------------------------------- /src/ac/parser/topolatest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/topolatest.go -------------------------------------------------------------------------------- /src/ac/parser/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/topology.go -------------------------------------------------------------------------------- /src/ac/parser/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ac/parser/util.go -------------------------------------------------------------------------------- /src/apimachinery/apimachinery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/apimachinery.go -------------------------------------------------------------------------------- /src/apimachinery/apiserver/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/apiserver/api.go -------------------------------------------------------------------------------- /src/apimachinery/apiserver/biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/apiserver/biz.go -------------------------------------------------------------------------------- /src/apimachinery/authserver/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/authserver/api.go -------------------------------------------------------------------------------- /src/apimachinery/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/clientset.go -------------------------------------------------------------------------------- /src/apimachinery/clientset_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/clientset_mock.go -------------------------------------------------------------------------------- /src/apimachinery/clientset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/clientset_test.go -------------------------------------------------------------------------------- /src/apimachinery/fake/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/fake/main.go -------------------------------------------------------------------------------- /src/apimachinery/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/rest/client.go -------------------------------------------------------------------------------- /src/apimachinery/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/rest/request.go -------------------------------------------------------------------------------- /src/apimachinery/rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/rest/rest.go -------------------------------------------------------------------------------- /src/apimachinery/rest/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/rest/wrapper.go -------------------------------------------------------------------------------- /src/apimachinery/util/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/util/client.go -------------------------------------------------------------------------------- /src/apimachinery/util/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/util/type.go -------------------------------------------------------------------------------- /src/apimachinery/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apimachinery/util/util.go -------------------------------------------------------------------------------- /src/apiserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/Makefile -------------------------------------------------------------------------------- /src/apiserver/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/app/app.go -------------------------------------------------------------------------------- /src/apiserver/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/app/server.go -------------------------------------------------------------------------------- /src/apiserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/main.go -------------------------------------------------------------------------------- /src/apiserver/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/middleware/auth.go -------------------------------------------------------------------------------- /src/apiserver/middleware/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/middleware/router.go -------------------------------------------------------------------------------- /src/apiserver/readme.md: -------------------------------------------------------------------------------- 1 | api_server -------------------------------------------------------------------------------- /src/apiserver/service/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/auth.go -------------------------------------------------------------------------------- /src/apiserver/service/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/count.go -------------------------------------------------------------------------------- /src/apiserver/service/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/filter.go -------------------------------------------------------------------------------- /src/apiserver/service/healthz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/healthz.go -------------------------------------------------------------------------------- /src/apiserver/service/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/http.go -------------------------------------------------------------------------------- /src/apiserver/service/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/limiter.go -------------------------------------------------------------------------------- /src/apiserver/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/service.go -------------------------------------------------------------------------------- /src/apiserver/service/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/type.go -------------------------------------------------------------------------------- /src/apiserver/service/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/apiserver/service/url.go -------------------------------------------------------------------------------- /src/changelog.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/atomicfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/atomicfile.go -------------------------------------------------------------------------------- /src/common/atomicfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/atomicfile_test.go -------------------------------------------------------------------------------- /src/common/auditlog/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/association.go -------------------------------------------------------------------------------- /src/common/auditlog/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/audit.go -------------------------------------------------------------------------------- /src/common/auditlog/auditlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/auditlog.go -------------------------------------------------------------------------------- /src/common/auditlog/cloud_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/cloud_area.go -------------------------------------------------------------------------------- /src/common/auditlog/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/host.go -------------------------------------------------------------------------------- /src/common/auditlog/hostmodule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/hostmodule.go -------------------------------------------------------------------------------- /src/common/auditlog/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/instance.go -------------------------------------------------------------------------------- /src/common/auditlog/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/kube.go -------------------------------------------------------------------------------- /src/common/auditlog/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/metadata.go -------------------------------------------------------------------------------- /src/common/auditlog/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/object.go -------------------------------------------------------------------------------- /src/common/auditlog/quoted_inst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auditlog/quoted_inst.go -------------------------------------------------------------------------------- /src/common/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/auth/auth.go -------------------------------------------------------------------------------- /src/common/backbone/backbone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/backbone.go -------------------------------------------------------------------------------- /src/common/backbone/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/context.go -------------------------------------------------------------------------------- /src/common/backbone/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/http.go -------------------------------------------------------------------------------- /src/common/backbone/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/notice.go -------------------------------------------------------------------------------- /src/common/backbone/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/register.go -------------------------------------------------------------------------------- /src/common/backbone/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/backbone/type.go -------------------------------------------------------------------------------- /src/common/blog/blog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/blog/blog.go -------------------------------------------------------------------------------- /src/common/blog/blog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/blog/blog_test.go -------------------------------------------------------------------------------- /src/common/blog/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/blog/glog/glog.go -------------------------------------------------------------------------------- /src/common/blog/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/blog/glog/glog_file.go -------------------------------------------------------------------------------- /src/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/common.go -------------------------------------------------------------------------------- /src/common/condition/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/condition.go -------------------------------------------------------------------------------- /src/common/condition/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/field.go -------------------------------------------------------------------------------- /src/common/condition/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/field_test.go -------------------------------------------------------------------------------- /src/common/condition/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/or.go -------------------------------------------------------------------------------- /src/common/condition/or_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/or_test.go -------------------------------------------------------------------------------- /src/common/condition/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/page.go -------------------------------------------------------------------------------- /src/common/condition/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/condition/types.go -------------------------------------------------------------------------------- /src/common/cryptor/aes_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/cryptor/aes_cryptor.go -------------------------------------------------------------------------------- /src/common/cryptor/bk_crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/cryptor/bk_crypto.go -------------------------------------------------------------------------------- /src/common/cryptor/cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/cryptor/cryptor.go -------------------------------------------------------------------------------- /src/common/cryptor/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/cryptor/types.go -------------------------------------------------------------------------------- /src/common/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/definitions.go -------------------------------------------------------------------------------- /src/common/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/deployment.go -------------------------------------------------------------------------------- /src/common/errInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errInfo.go -------------------------------------------------------------------------------- /src/common/errors/defaultError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/defaultError.go -------------------------------------------------------------------------------- /src/common/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/doc.go -------------------------------------------------------------------------------- /src/common/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/error.go -------------------------------------------------------------------------------- /src/common/errors/errorIf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/errorIf.go -------------------------------------------------------------------------------- /src/common/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/error_test.go -------------------------------------------------------------------------------- /src/common/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/errors.go -------------------------------------------------------------------------------- /src/common/errors/examples/errorres/default/comon.json: -------------------------------------------------------------------------------- 1 | { 2 | "30000": "default error" 3 | } -------------------------------------------------------------------------------- /src/common/errors/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/factory.go -------------------------------------------------------------------------------- /src/common/errors/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/type.go -------------------------------------------------------------------------------- /src/common/errors/typefunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/errors/typefunc.go -------------------------------------------------------------------------------- /src/common/find_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/find_common.go -------------------------------------------------------------------------------- /src/common/http/header/accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/header/accessor.go -------------------------------------------------------------------------------- /src/common/http/header/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/header/header.go -------------------------------------------------------------------------------- /src/common/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/http.go -------------------------------------------------------------------------------- /src/common/http/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/response.go -------------------------------------------------------------------------------- /src/common/http/rest/contexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/rest/contexts.go -------------------------------------------------------------------------------- /src/common/http/rest/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/rest/metric.go -------------------------------------------------------------------------------- /src/common/http/rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/http/rest/rest.go -------------------------------------------------------------------------------- /src/common/identification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/identification.go -------------------------------------------------------------------------------- /src/common/identification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/identification_test.go -------------------------------------------------------------------------------- /src/common/index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/index/README.md -------------------------------------------------------------------------------- /src/common/index/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/index/association.go -------------------------------------------------------------------------------- /src/common/index/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/index/compare.go -------------------------------------------------------------------------------- /src/common/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/index/index.go -------------------------------------------------------------------------------- /src/common/index/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/index/instance.go -------------------------------------------------------------------------------- /src/common/ipv6base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/ipv6base.go -------------------------------------------------------------------------------- /src/common/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/json/json.go -------------------------------------------------------------------------------- /src/common/json/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/json/tool.go -------------------------------------------------------------------------------- /src/common/language/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/language/factory.go -------------------------------------------------------------------------------- /src/common/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/language/language.go -------------------------------------------------------------------------------- /src/common/language/languageIf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/language/languageIf.go -------------------------------------------------------------------------------- /src/common/language/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/language/type.go -------------------------------------------------------------------------------- /src/common/language/typefunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/language/typefunc.go -------------------------------------------------------------------------------- /src/common/lock/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/lock/lock.go -------------------------------------------------------------------------------- /src/common/lock/lock_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/lock/lock_key.go -------------------------------------------------------------------------------- /src/common/lock/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/lock/lock_test.go -------------------------------------------------------------------------------- /src/common/logics/logics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/logics/logics.go -------------------------------------------------------------------------------- /src/common/logics/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/logics/model.go -------------------------------------------------------------------------------- /src/common/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapping.go -------------------------------------------------------------------------------- /src/common/mapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapping_test.go -------------------------------------------------------------------------------- /src/common/mapstr/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/convert.go -------------------------------------------------------------------------------- /src/common/mapstr/deal_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/deal_types.go -------------------------------------------------------------------------------- /src/common/mapstr/default_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/default_value.go -------------------------------------------------------------------------------- /src/common/mapstr/elem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/elem.go -------------------------------------------------------------------------------- /src/common/mapstr/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/factory.go -------------------------------------------------------------------------------- /src/common/mapstr/mapstr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/mapstr.go -------------------------------------------------------------------------------- /src/common/mapstr/mapstr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/mapstr_test.go -------------------------------------------------------------------------------- /src/common/mapstr/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/struct.go -------------------------------------------------------------------------------- /src/common/mapstr/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/struct_test.go -------------------------------------------------------------------------------- /src/common/mapstr/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/tag.go -------------------------------------------------------------------------------- /src/common/mapstr/to_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstr/to_value.go -------------------------------------------------------------------------------- /src/common/mapstruct/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstruct/decode.go -------------------------------------------------------------------------------- /src/common/mapstruct/mapstruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/mapstruct/mapstruct.go -------------------------------------------------------------------------------- /src/common/metadata/adminserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/adminserver.go -------------------------------------------------------------------------------- /src/common/metadata/apilimiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/apilimiter.go -------------------------------------------------------------------------------- /src/common/metadata/apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/apiserver.go -------------------------------------------------------------------------------- /src/common/metadata/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/association.go -------------------------------------------------------------------------------- /src/common/metadata/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/attribute.go -------------------------------------------------------------------------------- /src/common/metadata/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/audit.go -------------------------------------------------------------------------------- /src/common/metadata/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/auth.go -------------------------------------------------------------------------------- /src/common/metadata/authserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/authserver.go -------------------------------------------------------------------------------- /src/common/metadata/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/cache.go -------------------------------------------------------------------------------- /src/common/metadata/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/cloud.go -------------------------------------------------------------------------------- /src/common/metadata/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/common.go -------------------------------------------------------------------------------- /src/common/metadata/configadmin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/configadmin.go -------------------------------------------------------------------------------- /src/common/metadata/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/create.go -------------------------------------------------------------------------------- /src/common/metadata/dataid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/dataid.go -------------------------------------------------------------------------------- /src/common/metadata/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/delete.go -------------------------------------------------------------------------------- /src/common/metadata/eventserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/eventserver.go -------------------------------------------------------------------------------- /src/common/metadata/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/filter.go -------------------------------------------------------------------------------- /src/common/metadata/graphic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/graphic.go -------------------------------------------------------------------------------- /src/common/metadata/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/group.go -------------------------------------------------------------------------------- /src/common/metadata/group_by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/group_by.go -------------------------------------------------------------------------------- /src/common/metadata/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/host.go -------------------------------------------------------------------------------- /src/common/metadata/hostlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/hostlock.go -------------------------------------------------------------------------------- /src/common/metadata/hostserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/hostserver.go -------------------------------------------------------------------------------- /src/common/metadata/id_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/id_rule.go -------------------------------------------------------------------------------- /src/common/metadata/inst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/inst.go -------------------------------------------------------------------------------- /src/common/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/metadata.go -------------------------------------------------------------------------------- /src/common/metadata/model_quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/model_quote.go -------------------------------------------------------------------------------- /src/common/metadata/netdevice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/netdevice.go -------------------------------------------------------------------------------- /src/common/metadata/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/object.go -------------------------------------------------------------------------------- /src/common/metadata/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/operation.go -------------------------------------------------------------------------------- /src/common/metadata/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/page.go -------------------------------------------------------------------------------- /src/common/metadata/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/page_test.go -------------------------------------------------------------------------------- /src/common/metadata/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/process.go -------------------------------------------------------------------------------- /src/common/metadata/procserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/procserver.go -------------------------------------------------------------------------------- /src/common/metadata/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/query.go -------------------------------------------------------------------------------- /src/common/metadata/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/result.go -------------------------------------------------------------------------------- /src/common/metadata/result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/result_test.go -------------------------------------------------------------------------------- /src/common/metadata/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/set.go -------------------------------------------------------------------------------- /src/common/metadata/special.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/special.go -------------------------------------------------------------------------------- /src/common/metadata/taskserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/taskserver.go -------------------------------------------------------------------------------- /src/common/metadata/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/time.go -------------------------------------------------------------------------------- /src/common/metadata/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/time_test.go -------------------------------------------------------------------------------- /src/common/metadata/toposerver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/toposerver.go -------------------------------------------------------------------------------- /src/common/metadata/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/transaction.go -------------------------------------------------------------------------------- /src/common/metadata/unique.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/unique.go -------------------------------------------------------------------------------- /src/common/metadata/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/update.go -------------------------------------------------------------------------------- /src/common/metadata/webserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metadata/webserver.go -------------------------------------------------------------------------------- /src/common/metric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/README.md -------------------------------------------------------------------------------- /src/common/metric/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/api.go -------------------------------------------------------------------------------- /src/common/metric/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/client.go -------------------------------------------------------------------------------- /src/common/metric/floatOrStr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/floatOrStr.go -------------------------------------------------------------------------------- /src/common/metric/go-metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/go-metric.go -------------------------------------------------------------------------------- /src/common/metric/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/metric.go -------------------------------------------------------------------------------- /src/common/metric/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/plugin/plugin.go -------------------------------------------------------------------------------- /src/common/metric/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metric/type.go -------------------------------------------------------------------------------- /src/common/metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metrics/gauge.go -------------------------------------------------------------------------------- /src/common/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/metrics/metrics.go -------------------------------------------------------------------------------- /src/common/paraparse/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/paraparse/app.go -------------------------------------------------------------------------------- /src/common/paraparse/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/paraparse/host.go -------------------------------------------------------------------------------- /src/common/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/pattern.go -------------------------------------------------------------------------------- /src/common/pidfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/pidfile.go -------------------------------------------------------------------------------- /src/common/pidfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/pidfile_test.go -------------------------------------------------------------------------------- /src/common/querybuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/querybuilder/README.md -------------------------------------------------------------------------------- /src/common/querybuilder/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/querybuilder/parser.go -------------------------------------------------------------------------------- /src/common/querybuilder/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/querybuilder/types.go -------------------------------------------------------------------------------- /src/common/rdapi/rdapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/rdapi/rdapi.go -------------------------------------------------------------------------------- /src/common/rdapi/rdfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/rdapi/rdfunc.go -------------------------------------------------------------------------------- /src/common/readme.md: -------------------------------------------------------------------------------- 1 | common files -------------------------------------------------------------------------------- /src/common/resource/apigw/apigw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/resource/apigw/apigw.go -------------------------------------------------------------------------------- /src/common/resource/esb/esb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/resource/esb/esb.go -------------------------------------------------------------------------------- /src/common/resource/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/resource/jwt/jwt.go -------------------------------------------------------------------------------- /src/common/selector/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/selector/label.go -------------------------------------------------------------------------------- /src/common/selector/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/selector/selector.go -------------------------------------------------------------------------------- /src/common/ssl/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/ssl/ssl.go -------------------------------------------------------------------------------- /src/common/ssl/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/ssl/ssl_test.go -------------------------------------------------------------------------------- /src/common/ssl/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/ssl/type.go -------------------------------------------------------------------------------- /src/common/tablenames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/tablenames.go -------------------------------------------------------------------------------- /src/common/tablenames_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/tablenames_test.go -------------------------------------------------------------------------------- /src/common/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/time/time.go -------------------------------------------------------------------------------- /src/common/types/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/types/manager.go -------------------------------------------------------------------------------- /src/common/types/serverInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/types/serverInfo.go -------------------------------------------------------------------------------- /src/common/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/types/types.go -------------------------------------------------------------------------------- /src/common/universalsql/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/universalsql/type.go -------------------------------------------------------------------------------- /src/common/util/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/array.go -------------------------------------------------------------------------------- /src/common/util/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/array_test.go -------------------------------------------------------------------------------- /src/common/util/calculate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/calculate.go -------------------------------------------------------------------------------- /src/common/util/chinese.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/chinese.go -------------------------------------------------------------------------------- /src/common/util/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/collection.go -------------------------------------------------------------------------------- /src/common/util/collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/collection_test.go -------------------------------------------------------------------------------- /src/common/util/conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/conv.go -------------------------------------------------------------------------------- /src/common/util/conv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/conv_test.go -------------------------------------------------------------------------------- /src/common/util/errorfrequency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/errorfrequency.go -------------------------------------------------------------------------------- /src/common/util/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/errors/errors.go -------------------------------------------------------------------------------- /src/common/util/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/flags.go -------------------------------------------------------------------------------- /src/common/util/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/lib.go -------------------------------------------------------------------------------- /src/common/util/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/lib_test.go -------------------------------------------------------------------------------- /src/common/util/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/map.go -------------------------------------------------------------------------------- /src/common/util/mapbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/mapbuilder.go -------------------------------------------------------------------------------- /src/common/util/mapbuilder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/mapbuilder_test.go -------------------------------------------------------------------------------- /src/common/util/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/model.go -------------------------------------------------------------------------------- /src/common/util/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/net.go -------------------------------------------------------------------------------- /src/common/util/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/net_test.go -------------------------------------------------------------------------------- /src/common/util/ownerutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/ownerutil.go -------------------------------------------------------------------------------- /src/common/util/ownerutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/ownerutil_test.go -------------------------------------------------------------------------------- /src/common/util/struti.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/struti.go -------------------------------------------------------------------------------- /src/common/util/struti_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/struti_test.go -------------------------------------------------------------------------------- /src/common/util/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/table/table.go -------------------------------------------------------------------------------- /src/common/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/time.go -------------------------------------------------------------------------------- /src/common/util/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/util/time_test.go -------------------------------------------------------------------------------- /src/common/valid/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/valid/valid.go -------------------------------------------------------------------------------- /src/common/valid/valid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/valid/valid_test.go -------------------------------------------------------------------------------- /src/common/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/version/version.go -------------------------------------------------------------------------------- /src/common/watch/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/watch/cursor.go -------------------------------------------------------------------------------- /src/common/watch/cursor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/watch/cursor_test.go -------------------------------------------------------------------------------- /src/common/watch/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/watch/types.go -------------------------------------------------------------------------------- /src/common/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/watch/watch.go -------------------------------------------------------------------------------- /src/common/zkclient/zkclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/common/zkclient/zkclient.go -------------------------------------------------------------------------------- /src/kube/orm/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/orm/tool.go -------------------------------------------------------------------------------- /src/kube/orm/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/orm/tool_test.go -------------------------------------------------------------------------------- /src/kube/types/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/cluster.go -------------------------------------------------------------------------------- /src/kube/types/cronjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/cronjob.go -------------------------------------------------------------------------------- /src/kube/types/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/daemonset.go -------------------------------------------------------------------------------- /src/kube/types/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/deployment.go -------------------------------------------------------------------------------- /src/kube/types/gamedeployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/gamedeployment.go -------------------------------------------------------------------------------- /src/kube/types/gamestatefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/gamestatefulset.go -------------------------------------------------------------------------------- /src/kube/types/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/job.go -------------------------------------------------------------------------------- /src/kube/types/k8s_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/k8s_types.go -------------------------------------------------------------------------------- /src/kube/types/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/namespace.go -------------------------------------------------------------------------------- /src/kube/types/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/node.go -------------------------------------------------------------------------------- /src/kube/types/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/pod.go -------------------------------------------------------------------------------- /src/kube/types/pods_workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/pods_workload.go -------------------------------------------------------------------------------- /src/kube/types/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/spec.go -------------------------------------------------------------------------------- /src/kube/types/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/statefulset.go -------------------------------------------------------------------------------- /src/kube/types/topo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/topo.go -------------------------------------------------------------------------------- /src/kube/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/types.go -------------------------------------------------------------------------------- /src/kube/types/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/validate.go -------------------------------------------------------------------------------- /src/kube/types/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/validate_test.go -------------------------------------------------------------------------------- /src/kube/types/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/kube/types/workload.go -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scene_server/auth_server/readme.md: -------------------------------------------------------------------------------- 1 | ## auth server 2 | > 用于新版权限中心资源回调 3 | -------------------------------------------------------------------------------- /src/scene_server/cloud_server/readme.md: -------------------------------------------------------------------------------- 1 | cloud server -------------------------------------------------------------------------------- /src/scene_server/host_server/readme.md: -------------------------------------------------------------------------------- 1 | host server -------------------------------------------------------------------------------- /src/scene_server/operation_server/readme.md: -------------------------------------------------------------------------------- 1 | operation_server -------------------------------------------------------------------------------- /src/scene_server/proc_server/readme.md: -------------------------------------------------------------------------------- 1 | proc server -------------------------------------------------------------------------------- /src/scene_server/topo_server/readme.md: -------------------------------------------------------------------------------- 1 | topo_server -------------------------------------------------------------------------------- /src/source_controller/cacheservice/readme.md: -------------------------------------------------------------------------------- 1 | cacheservice -------------------------------------------------------------------------------- /src/source_controller/coreservice/readme.md: -------------------------------------------------------------------------------- 1 | coreservice -------------------------------------------------------------------------------- /src/storage/dal/dal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/dal.go -------------------------------------------------------------------------------- /src/storage/dal/kafka/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/kafka/config.go -------------------------------------------------------------------------------- /src/storage/dal/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/kafka/kafka.go -------------------------------------------------------------------------------- /src/storage/dal/kafka/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/kafka/scram.go -------------------------------------------------------------------------------- /src/storage/dal/mongo/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/mongo/config.go -------------------------------------------------------------------------------- /src/storage/dal/mongo/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/mongo/mongo.go -------------------------------------------------------------------------------- /src/storage/dal/reademe.md: -------------------------------------------------------------------------------- 1 | 事务管理器 API Client -------------------------------------------------------------------------------- /src/storage/dal/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/README.md -------------------------------------------------------------------------------- /src/storage/dal/redis/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/client.go -------------------------------------------------------------------------------- /src/storage/dal/redis/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/commands.go -------------------------------------------------------------------------------- /src/storage/dal/redis/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/pipeline.go -------------------------------------------------------------------------------- /src/storage/dal/redis/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/pubsub.go -------------------------------------------------------------------------------- /src/storage/dal/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/redis.go -------------------------------------------------------------------------------- /src/storage/dal/redis/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/redis/result.go -------------------------------------------------------------------------------- /src/storage/dal/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/table/table.go -------------------------------------------------------------------------------- /src/storage/dal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/dal/types/types.go -------------------------------------------------------------------------------- /src/storage/driver/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/driver/redis/redis.go -------------------------------------------------------------------------------- /src/storage/reflector/reflector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/reflector/reflector.go -------------------------------------------------------------------------------- /src/storage/reflector/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/reflector/types.go -------------------------------------------------------------------------------- /src/storage/stream/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/event/event.go -------------------------------------------------------------------------------- /src/storage/stream/event/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/event/list.go -------------------------------------------------------------------------------- /src/storage/stream/event/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/event/utils.go -------------------------------------------------------------------------------- /src/storage/stream/event/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/event/watch.go -------------------------------------------------------------------------------- /src/storage/stream/loop/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/loop/loop.go -------------------------------------------------------------------------------- /src/storage/stream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/stream.go -------------------------------------------------------------------------------- /src/storage/stream/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/stream/types/types.go -------------------------------------------------------------------------------- /src/storage/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/types/types.go -------------------------------------------------------------------------------- /src/storage/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/types/types_test.go -------------------------------------------------------------------------------- /src/storage/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/storage/util/util.go -------------------------------------------------------------------------------- /src/test/business/business_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/business/business_test.go -------------------------------------------------------------------------------- /src/test/host_server/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/host_server/host_test.go -------------------------------------------------------------------------------- /src/test/host_server/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/host_server/user_test.go -------------------------------------------------------------------------------- /src/test/load/db_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/load/db_load_test.go -------------------------------------------------------------------------------- /src/test/load/load_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/load/load_suite_test.go -------------------------------------------------------------------------------- /src/test/reporter/html_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/reporter/html_reporter.go -------------------------------------------------------------------------------- /src/test/reporter/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/reporter/reporter.go -------------------------------------------------------------------------------- /src/test/reporter/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/reporter/template.go -------------------------------------------------------------------------------- /src/test/run/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/run/color.go -------------------------------------------------------------------------------- /src/test/run/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/run/limiter.go -------------------------------------------------------------------------------- /src/test/run/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/run/run.go -------------------------------------------------------------------------------- /src/test/run/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/run/stats.go -------------------------------------------------------------------------------- /src/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/test.go -------------------------------------------------------------------------------- /src/test/topo_server/asst_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/topo_server/asst_test.go -------------------------------------------------------------------------------- /src/test/topo_server/inst_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/topo_server/inst_test.go -------------------------------------------------------------------------------- /src/test/topo_server/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/topo_server/node_test.go -------------------------------------------------------------------------------- /src/test/topo_server/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/topo_server/pod_test.go -------------------------------------------------------------------------------- /src/test/txn/txn_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/txn/txn_suite_test.go -------------------------------------------------------------------------------- /src/test/txn/txn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/txn/txn_test.go -------------------------------------------------------------------------------- /src/test/util/fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/util/fail.go -------------------------------------------------------------------------------- /src/test/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/test/util/util.go -------------------------------------------------------------------------------- /src/thirdparty/apigw/apigw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/apigw/apigw.go -------------------------------------------------------------------------------- /src/thirdparty/apigw/cmdb/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/apigw/cmdb/api.go -------------------------------------------------------------------------------- /src/thirdparty/apigw/gse/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/apigw/gse/api.go -------------------------------------------------------------------------------- /src/thirdparty/apigw/gse/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/apigw/gse/common.go -------------------------------------------------------------------------------- /src/thirdparty/apigw/notice/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/apigw/notice/api.go -------------------------------------------------------------------------------- /src/thirdparty/dataid/dataid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/dataid/dataid.go -------------------------------------------------------------------------------- /src/thirdparty/esbserver/esb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/esbserver/esb.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/hooks.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/process.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/regex.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/topology.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/types.go -------------------------------------------------------------------------------- /src/thirdparty/hooks/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/hooks/validator.go -------------------------------------------------------------------------------- /src/thirdparty/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/monitor/README.md -------------------------------------------------------------------------------- /src/thirdparty/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/monitor/monitor.go -------------------------------------------------------------------------------- /src/thirdparty/secrets/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/secrets/api.go -------------------------------------------------------------------------------- /src/thirdparty/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/thirdparty/secrets/secrets.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/Makefile -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/app/app.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/auth.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/conf.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/echo.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/limiter.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/log.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/redis.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/root.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/shutdown.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/snapshot.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/topo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/topo.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/util.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/watch.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/cmd/zk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/cmd/zk.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/main.go -------------------------------------------------------------------------------- /src/tools/cmdb_ctl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/cmdb_ctl/readme.md -------------------------------------------------------------------------------- /src/tools/monstache/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/monstache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/monstache/Makefile -------------------------------------------------------------------------------- /src/tools/monstache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/monstache/README.md -------------------------------------------------------------------------------- /src/tools/monstache/build/monstache/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/monstache/etc/extra.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/monstache/etc/extra.toml -------------------------------------------------------------------------------- /src/tools/monstache/monstache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/monstache/monstache.sh -------------------------------------------------------------------------------- /src/tools/monstache/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/tools/monstache/plugin.go -------------------------------------------------------------------------------- /src/ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/.babelrc -------------------------------------------------------------------------------- /src/ui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/.eslintignore -------------------------------------------------------------------------------- /src/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/.eslintrc.js -------------------------------------------------------------------------------- /src/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/.gitignore -------------------------------------------------------------------------------- /src/ui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/.npmrc -------------------------------------------------------------------------------- /src/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/README.md -------------------------------------------------------------------------------- /src/ui/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/build.sh -------------------------------------------------------------------------------- /src/ui/builder/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/build.js -------------------------------------------------------------------------------- /src/ui/builder/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/config/dev.env.js -------------------------------------------------------------------------------- /src/ui/builder/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/config/index.js -------------------------------------------------------------------------------- /src/ui/builder/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/config/prod.env.js -------------------------------------------------------------------------------- /src/ui/builder/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/dev.js -------------------------------------------------------------------------------- /src/ui/builder/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/serve.js -------------------------------------------------------------------------------- /src/ui/builder/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/utils/index.js -------------------------------------------------------------------------------- /src/ui/builder/webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/webpack/index.js -------------------------------------------------------------------------------- /src/ui/builder/webpack/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/webpack/module.js -------------------------------------------------------------------------------- /src/ui/builder/webpack/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/builder/webpack/plugins.js -------------------------------------------------------------------------------- /src/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/index.html -------------------------------------------------------------------------------- /src/ui/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/jsconfig.json -------------------------------------------------------------------------------- /src/ui/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/login.html -------------------------------------------------------------------------------- /src/ui/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/mock/index.js -------------------------------------------------------------------------------- /src/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/package.json -------------------------------------------------------------------------------- /src/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/postcss.config.js -------------------------------------------------------------------------------- /src/ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/App.vue -------------------------------------------------------------------------------- /src/ui/src/IframeEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/IframeEntry.vue -------------------------------------------------------------------------------- /src/ui/src/api/_cached-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/_cached-promise.js -------------------------------------------------------------------------------- /src/ui/src/api/_request-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/_request-queue.js -------------------------------------------------------------------------------- /src/ui/src/api/combine-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/combine-request.js -------------------------------------------------------------------------------- /src/ui/src/api/custom-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/custom-header.js -------------------------------------------------------------------------------- /src/ui/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/index.js -------------------------------------------------------------------------------- /src/ui/src/api/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/api/jsonp.js -------------------------------------------------------------------------------- /src/ui/src/assets/images/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/403.png -------------------------------------------------------------------------------- /src/ui/src/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/404.png -------------------------------------------------------------------------------- /src/ui/src/assets/images/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/box.png -------------------------------------------------------------------------------- /src/ui/src/assets/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/error.png -------------------------------------------------------------------------------- /src/ui/src/assets/images/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/lock.svg -------------------------------------------------------------------------------- /src/ui/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/ui/src/assets/images/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/map.svg -------------------------------------------------------------------------------- /src/ui/src/assets/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/images/tip.png -------------------------------------------------------------------------------- /src/ui/src/assets/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/scss/_vars.scss -------------------------------------------------------------------------------- /src/ui/src/assets/scss/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/scss/common.scss -------------------------------------------------------------------------------- /src/ui/src/assets/scss/model.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/assets/scss/model.scss -------------------------------------------------------------------------------- /src/ui/src/components/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/components/ui/index.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/audit.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/container.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/iam-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/iam-auth.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/menu.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/regexp.js -------------------------------------------------------------------------------- /src/ui/src/dictionary/test-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/dictionary/test-id.js -------------------------------------------------------------------------------- /src/ui/src/directives/autofocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/directives/autofocus.js -------------------------------------------------------------------------------- /src/ui/src/directives/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/directives/cursor.js -------------------------------------------------------------------------------- /src/ui/src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/directives/index.js -------------------------------------------------------------------------------- /src/ui/src/directives/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/directives/scroll.js -------------------------------------------------------------------------------- /src/ui/src/factory/sideslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/factory/sideslider.js -------------------------------------------------------------------------------- /src/ui/src/filters/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/filters/formatter.js -------------------------------------------------------------------------------- /src/ui/src/filters/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/filters/host.js -------------------------------------------------------------------------------- /src/ui/src/filters/pod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/filters/pod.js -------------------------------------------------------------------------------- /src/ui/src/filters/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/filters/unit.js -------------------------------------------------------------------------------- /src/ui/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/global.d.ts -------------------------------------------------------------------------------- /src/ui/src/hooks/model/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/model/group.js -------------------------------------------------------------------------------- /src/ui/src/hooks/model/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/model/property.js -------------------------------------------------------------------------------- /src/ui/src/hooks/use-sideslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/use-sideslider.js -------------------------------------------------------------------------------- /src/ui/src/hooks/utils/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/utils/clone.js -------------------------------------------------------------------------------- /src/ui/src/hooks/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/utils/filter.js -------------------------------------------------------------------------------- /src/ui/src/hooks/utils/pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/hooks/utils/pending.js -------------------------------------------------------------------------------- /src/ui/src/i18n/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/i18n/constants.js -------------------------------------------------------------------------------- /src/ui/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/i18n/index.js -------------------------------------------------------------------------------- /src/ui/src/i18n/lang/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/i18n/lang/cn.json -------------------------------------------------------------------------------- /src/ui/src/i18n/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/i18n/lang/en.json -------------------------------------------------------------------------------- /src/ui/src/i18n/lang/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/i18n/lang/messages.js -------------------------------------------------------------------------------- /src/ui/src/login/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/login/assets/user.svg -------------------------------------------------------------------------------- /src/ui/src/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/login/index.js -------------------------------------------------------------------------------- /src/ui/src/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/login/index.vue -------------------------------------------------------------------------------- /src/ui/src/magicbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/magicbox/index.js -------------------------------------------------------------------------------- /src/ui/src/magicbox/magicbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/magicbox/magicbox.scss -------------------------------------------------------------------------------- /src/ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/main.js -------------------------------------------------------------------------------- /src/ui/src/mixins/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/app.js -------------------------------------------------------------------------------- /src/ui/src/mixins/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/auth.js -------------------------------------------------------------------------------- /src/ui/src/mixins/classify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/classify.js -------------------------------------------------------------------------------- /src/ui/src/mixins/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/form.js -------------------------------------------------------------------------------- /src/ui/src/mixins/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/permission.js -------------------------------------------------------------------------------- /src/ui/src/mixins/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/request.js -------------------------------------------------------------------------------- /src/ui/src/mixins/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/mixins/table.js -------------------------------------------------------------------------------- /src/ui/src/public-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/public-path.js -------------------------------------------------------------------------------- /src/ui/src/router/StatusError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/router/StatusError.js -------------------------------------------------------------------------------- /src/ui/src/router/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/router/actions.js -------------------------------------------------------------------------------- /src/ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/router/index.js -------------------------------------------------------------------------------- /src/ui/src/router/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/router/meta.js -------------------------------------------------------------------------------- /src/ui/src/router/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/router/query.js -------------------------------------------------------------------------------- /src/ui/src/service/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/service/auth.js -------------------------------------------------------------------------------- /src/ui/src/service/host/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/service/host/import.js -------------------------------------------------------------------------------- /src/ui/src/service/host/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/service/host/search.js -------------------------------------------------------------------------------- /src/ui/src/service/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/service/utils.js -------------------------------------------------------------------------------- /src/ui/src/setup/afterload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/afterload.js -------------------------------------------------------------------------------- /src/ui/src/setup/build-in-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/build-in-vars.js -------------------------------------------------------------------------------- /src/ui/src/setup/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/cookie.js -------------------------------------------------------------------------------- /src/ui/src/setup/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/permission.js -------------------------------------------------------------------------------- /src/ui/src/setup/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/preload.js -------------------------------------------------------------------------------- /src/ui/src/setup/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/validate.js -------------------------------------------------------------------------------- /src/ui/src/setup/worker-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/setup/worker-task.js -------------------------------------------------------------------------------- /src/ui/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/store/index.js -------------------------------------------------------------------------------- /src/ui/src/store/modules/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/store/modules/global.js -------------------------------------------------------------------------------- /src/ui/src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/typings/index.d.ts -------------------------------------------------------------------------------- /src/ui/src/utils/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/bus.js -------------------------------------------------------------------------------- /src/ui/src/utils/check-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/check-version.js -------------------------------------------------------------------------------- /src/ui/src/utils/interval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/interval.js -------------------------------------------------------------------------------- /src/ui/src/utils/login-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/login-helper.js -------------------------------------------------------------------------------- /src/ui/src/utils/main-scroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/main-scroller.js -------------------------------------------------------------------------------- /src/ui/src/utils/polling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/polling.js -------------------------------------------------------------------------------- /src/ui/src/utils/resize-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/resize-events.js -------------------------------------------------------------------------------- /src/ui/src/utils/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/tools.js -------------------------------------------------------------------------------- /src/ui/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/utils/util.js -------------------------------------------------------------------------------- /src/ui/src/views/audit/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/audit/index.vue -------------------------------------------------------------------------------- /src/ui/src/views/history/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/history/index.vue -------------------------------------------------------------------------------- /src/ui/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/index.js -------------------------------------------------------------------------------- /src/ui/src/views/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/index/index.vue -------------------------------------------------------------------------------- /src/ui/src/views/project/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/project/index.vue -------------------------------------------------------------------------------- /src/ui/src/views/status/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/status/404.vue -------------------------------------------------------------------------------- /src/ui/src/views/status/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/views/status/error.vue -------------------------------------------------------------------------------- /src/ui/src/workers/ccworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/workers/ccworker.js -------------------------------------------------------------------------------- /src/ui/src/workers/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/workers/iam.js -------------------------------------------------------------------------------- /src/ui/src/workers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/src/workers/utils.js -------------------------------------------------------------------------------- /src/ui/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ui/static/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/403.html -------------------------------------------------------------------------------- /src/ui/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/favicon.ico -------------------------------------------------------------------------------- /src/ui/static/login_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/login_success.html -------------------------------------------------------------------------------- /src/ui/static/svg/cc-activeMQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-activeMQ.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-add-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-add-line.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-android.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-apache.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-apple.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-arrow.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-attribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-attribute.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-backstage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-backstage.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-backward.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-balance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-balance.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-broom.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-business.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-cabinet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-cabinet.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-camera.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-cbd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-cbd.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-classroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-classroom.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-clear.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-collect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-collect.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-columnar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-columnar.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-compact.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-company.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-copy.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-cpu.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-cube.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-curve.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-database.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-db2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-db2.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-default.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-del.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-del.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-delete.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-directory.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-disk.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-domain.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-edit.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-empty.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-equipment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-equipment.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-factory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-factory.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-failure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-failure.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-firewall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-firewall.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-fit.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-forward.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-free-pool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-free-pool.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-funnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-funnel.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-goback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-goback.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-group.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-hardware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-hardware.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-hide.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-history.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-history2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-history2.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-home.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-host.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-host.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-icon-city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-icon-city.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-idc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-idc.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-iis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-iis.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-import.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-influxdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-influxdb.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-ip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-ip.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-kafka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-kafka.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-key.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-label.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-lang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-lang.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-line.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-link.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-linux.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-list.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-loading.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-lock.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-log-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-log-02.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-log.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-logout.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-machine.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-mainboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-mainboard.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-map.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-market.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-market.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-memory.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-model.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-module.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-module.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-mongodb.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-mysql.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-nav-audit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-nav-audit.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-nav-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-nav-model.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-nav-stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-nav-stick.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-net-port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-net-port.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-networks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-networks.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-nginx.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-node.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-operator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-operator.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-oracle.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-other.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-pie-chart.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-pin.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-plus.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-port.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-printer.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-process.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-program.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-program.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-progress.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-project.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-question.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-record.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-rect-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-rect-add.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-rect-sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-rect-sub.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-redis.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-repeater.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-repeater.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-report.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-required.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-required.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-resource.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-resources.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-router.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-security.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-security2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-security2.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-senior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-senior.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-server.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-service.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-set.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-setting.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-share.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-shift.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-show.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-skin.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-skip.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-sort.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-sqlite.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-square.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-star.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-statement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-statement.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-stick.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-storage.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-subnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-subnet.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-switch2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-switch2.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-syncing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-syncing.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-thumbtack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-thumbtack.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-tips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-tips.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-tomcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-tomcat.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-tree.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-triangle.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-unix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-unix.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-updating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-updating.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-ups.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-user.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-virtual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-virtual.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-vmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-vmware.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-vsphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-vsphere.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-weblogic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-weblogic.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-win.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-win.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-win7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-win7.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-wireless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-wireless.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-zoom-in.svg -------------------------------------------------------------------------------- /src/ui/static/svg/cc-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/static/svg/cc-zoom-out.svg -------------------------------------------------------------------------------- /src/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/ui/tsconfig.json -------------------------------------------------------------------------------- /src/web_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/Makefile -------------------------------------------------------------------------------- /src/web_server/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/app/app.go -------------------------------------------------------------------------------- /src/web_server/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/app/server.go -------------------------------------------------------------------------------- /src/web_server/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/common/common.go -------------------------------------------------------------------------------- /src/web_server/logics/logics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/logics/logics.go -------------------------------------------------------------------------------- /src/web_server/logics/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/logics/object.go -------------------------------------------------------------------------------- /src/web_server/middleware/apigw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/middleware/apigw.go -------------------------------------------------------------------------------- /src/web_server/middleware/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/middleware/login.go -------------------------------------------------------------------------------- /src/web_server/readme.md: -------------------------------------------------------------------------------- 1 | web_server -------------------------------------------------------------------------------- /src/web_server/service/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/count.go -------------------------------------------------------------------------------- /src/web_server/service/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/host.go -------------------------------------------------------------------------------- /src/web_server/service/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/index.go -------------------------------------------------------------------------------- /src/web_server/service/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/login.go -------------------------------------------------------------------------------- /src/web_server/service/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/object.go -------------------------------------------------------------------------------- /src/web_server/service/regular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/regular.go -------------------------------------------------------------------------------- /src/web_server/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/service.go -------------------------------------------------------------------------------- /src/web_server/service/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/table.go -------------------------------------------------------------------------------- /src/web_server/service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/user.go -------------------------------------------------------------------------------- /src/web_server/service/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/service/util.go -------------------------------------------------------------------------------- /src/web_server/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/src/web_server/ui.go -------------------------------------------------------------------------------- /vetur.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-cmdb/HEAD/vetur.config.js --------------------------------------------------------------------------------