├── .github ├── instructions │ └── base.instructions.md └── prompts │ └── code-review.prompt.md ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── settings.json ├── LICENSE.txt ├── Makefile ├── Readme.md ├── agents ├── fusion-collector │ ├── .gitignore │ ├── agent │ │ ├── Dockerfile │ │ ├── service.conf │ │ ├── sidecar.yml │ │ └── startup.sh │ ├── misc │ │ ├── install.sh │ │ ├── sidecar.service │ │ ├── sidecar.yml │ │ └── uninstall.sh │ ├── support-files │ │ └── mibs │ │ │ ├── AGENTX-MIB.txt │ │ │ ├── AIRPORT-BASESTATION-3-MIB.txt │ │ │ ├── BRIDGE-MIB.txt │ │ │ ├── DISMAN-EVENT-MIB.txt │ │ │ ├── DISMAN-SCHEDULE-MIB.txt │ │ │ ├── DISMAN-SCRIPT-MIB.txt │ │ │ ├── EtherLike-MIB.txt │ │ │ ├── HCNUM-TC.txt │ │ │ ├── HOST-RESOURCES-MIB.txt │ │ │ ├── HOST-RESOURCES-TYPES.txt │ │ │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt │ │ │ ├── IANA-LANGUAGE-MIB.txt │ │ │ ├── IANA-RTPROTO-MIB.txt │ │ │ ├── IANAifType-MIB.txt │ │ │ ├── IF-INVERTED-STACK-MIB.txt │ │ │ ├── IF-MIB.txt │ │ │ ├── INET-ADDRESS-MIB.txt │ │ │ ├── IP-FORWARD-MIB.txt │ │ │ ├── IP-MIB.txt │ │ │ ├── IPV6-FLOW-LABEL-MIB.txt │ │ │ ├── IPV6-ICMP-MIB.txt │ │ │ ├── IPV6-MIB.txt │ │ │ ├── IPV6-TC.txt │ │ │ ├── IPV6-TCP-MIB.txt │ │ │ ├── IPV6-UDP-MIB.txt │ │ │ ├── NET-SNMP-AGENT-MIB.txt │ │ │ ├── NET-SNMP-EXAMPLES-MIB.txt │ │ │ ├── NET-SNMP-EXTEND-MIB.txt │ │ │ ├── NET-SNMP-MIB.txt │ │ │ ├── NET-SNMP-PASS-MIB.txt │ │ │ ├── NET-SNMP-TC.txt │ │ │ ├── NET-SNMP-VACM-MIB.txt │ │ │ ├── NOTIFICATION-LOG-MIB.txt │ │ │ ├── RFC-1215.txt │ │ │ ├── RFC1155-SMI.txt │ │ │ ├── RFC1213-MIB.txt │ │ │ ├── RMON-MIB.txt │ │ │ ├── SCTP-MIB.txt │ │ │ ├── SMUX-MIB.txt │ │ │ ├── SNMP-COMMUNITY-MIB.txt │ │ │ ├── SNMP-FRAMEWORK-MIB.txt │ │ │ ├── SNMP-MPD-MIB.txt │ │ │ ├── SNMP-NOTIFICATION-MIB.txt │ │ │ ├── SNMP-PROXY-MIB.txt │ │ │ ├── SNMP-TARGET-MIB.txt │ │ │ ├── SNMP-USER-BASED-SM-MIB.txt │ │ │ ├── SNMP-USM-AES-MIB.txt │ │ │ ├── SNMP-USM-DH-OBJECTS-MIB.txt │ │ │ ├── SNMP-VIEW-BASED-ACM-MIB.txt │ │ │ ├── SNMPv2-CONF.txt │ │ │ ├── SNMPv2-MIB.txt │ │ │ ├── SNMPv2-SMI.txt │ │ │ ├── SNMPv2-TC.txt │ │ │ ├── SNMPv2-TM.txt │ │ │ ├── TCP-MIB.txt │ │ │ ├── TRANSPORT-ADDRESS-MIB.txt │ │ │ ├── TUNNEL-MIB.txt │ │ │ ├── UCD-DEMO-MIB.txt │ │ │ ├── UCD-DISKIO-MIB.txt │ │ │ ├── UCD-DLMOD-MIB.txt │ │ │ ├── UCD-IPFWACC-MIB.txt │ │ │ ├── UCD-SNMP-MIB.txt │ │ │ └── UDP-MIB.txt │ └── telegraf │ │ ├── Dockerfile │ │ ├── service.conf │ │ ├── startup.sh │ │ └── telegraf.conf ├── nats-executor │ ├── .gitignore │ ├── go.mod │ ├── jetstream │ │ └── server.go │ ├── local │ │ ├── entity.go │ │ ├── executor.go │ │ └── executor_test.go │ ├── main.go │ ├── ssh │ │ ├── entity.go │ │ └── executor.go │ ├── support-files │ │ ├── Dockerfile │ │ ├── service.conf │ │ └── startup.sh │ └── utils │ │ ├── nats.go │ │ ├── unzip.go │ │ └── unzip_test.go ├── stargazer │ ├── .dockerignore │ ├── .env.example │ ├── .gitignore │ ├── .python-version │ ├── Makefile │ ├── README.md │ ├── api │ │ ├── __init__.py │ │ ├── collect.py │ │ ├── example.py │ │ ├── health.py │ │ └── monitor.py │ ├── asserts │ │ └── banner.txt │ ├── common │ │ ├── __init__.py │ │ └── cmp │ │ │ ├── __init__.py │ │ │ ├── cloud_apis │ │ │ ├── __init__.py │ │ │ ├── apply_params.py │ │ │ ├── base.py │ │ │ ├── cloud_constant.py │ │ │ ├── cloud_object │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── collection.py │ │ │ ├── common.py │ │ │ ├── constant.py │ │ │ ├── exceptions.py │ │ │ ├── resource_apis │ │ │ │ ├── __init__.py │ │ │ │ ├── aliyun_dict.py │ │ │ │ ├── aliyunsdkasapi │ │ │ │ │ ├── ASClient.py │ │ │ │ │ ├── AsapiRequest.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── composer │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── rpc_signature_composer.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── http │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── http_response.py │ │ │ │ │ ├── request.py │ │ │ │ │ └── request_interceptor.py │ │ │ │ ├── constant.py │ │ │ │ ├── cw_aliyun.py │ │ │ │ ├── cw_amazonaws.py │ │ │ │ ├── cw_apsara.py │ │ │ │ ├── cw_cas.py │ │ │ │ ├── cw_easystack.py │ │ │ │ ├── cw_fusioncloud.py │ │ │ │ ├── cw_fusioncompute.py │ │ │ │ ├── cw_huaweicloud.py │ │ │ │ ├── cw_manageone.py │ │ │ │ ├── cw_openstack.py │ │ │ │ ├── cw_qcloud.py │ │ │ │ ├── cw_qingcloud.py │ │ │ │ ├── cw_qingcloud_private.py │ │ │ │ ├── cw_sangforhci.py │ │ │ │ ├── cw_tce.py │ │ │ │ ├── cw_tdsql.py │ │ │ │ ├── cw_tke.py │ │ │ │ ├── cw_tke_cloud.py │ │ │ │ ├── cw_tsf.py │ │ │ │ ├── cw_vmware.py │ │ │ │ ├── resource_format │ │ │ │ │ ├── TKE_Cloud │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── tke_cloud_format.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aliyun │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── aliyun_constant.py │ │ │ │ │ │ ├── aliyun_format.py │ │ │ │ │ │ └── aliyun_format_utils.py │ │ │ │ │ ├── amazonaws │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── amazonaws_constant.py │ │ │ │ │ │ ├── amazonaws_format.py │ │ │ │ │ │ └── amazonaws_format_utils.py │ │ │ │ │ ├── cas │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── cas_format.py │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base_format.py │ │ │ │ │ │ ├── common_format.py │ │ │ │ │ │ └── common_utils.py │ │ │ │ │ ├── easystack │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── easystack_format.py │ │ │ │ │ ├── fusioncloud │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fusioncloud_constant.py │ │ │ │ │ │ ├── fusioncloud_format.py │ │ │ │ │ │ └── fusioncloud_format_utils.py │ │ │ │ │ ├── huaweicloud │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── huaweicloud_constant.py │ │ │ │ │ │ ├── huaweicloud_format.py │ │ │ │ │ │ └── huaweicloud_format_utils.py │ │ │ │ │ ├── openstack │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── openstack_constant.py │ │ │ │ │ │ ├── openstack_format.py │ │ │ │ │ │ └── openstack_format_utils.py │ │ │ │ │ ├── qcloud │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── qcloud_constant.py │ │ │ │ │ │ ├── qcloud_format.py │ │ │ │ │ │ └── qcloud_format_utils.py │ │ │ │ │ ├── qingcloud │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── qingcloud_constant.py │ │ │ │ │ │ ├── qingcloud_format.py │ │ │ │ │ │ └── qingcloud_format_utils.py │ │ │ │ │ ├── tce │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── tce_constant.py │ │ │ │ │ │ ├── tce_format.py │ │ │ │ │ │ └── tce_format_utils.py │ │ │ │ │ ├── tdsql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── tdsql_constant.py │ │ │ │ │ │ ├── tdsql_format.py │ │ │ │ │ │ └── tdsql_format_utils.py │ │ │ │ │ ├── tsf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── tsf_format.py │ │ │ │ │ └── vmware │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── vmware_constant.py │ │ │ │ │ │ ├── vmware_format.py │ │ │ │ │ │ └── vmware_format_utils.py │ │ │ │ ├── sync_cloud_resource │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cloud_resource.py │ │ │ │ │ ├── sync_tce_resource.py │ │ │ │ │ ├── sync_tdsql_resource.py │ │ │ │ │ └── test_sync.py │ │ │ │ ├── tcecloud │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── amp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── v20180807 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── amp_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ │ └── v20190911 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── amp_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── bms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180813 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bms_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── cbs │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20170312 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cbs_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── cfs │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── v20180416 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cfs_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ │ └── v20190719 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cfs_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── ckafka │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20190819 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ckafka_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── clb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180317 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── clb_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── abstract_client.py │ │ │ │ │ │ ├── abstract_model.py │ │ │ │ │ │ ├── credential.py │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── tce_cloud_sdk_exception.py │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── request.py │ │ │ │ │ │ ├── profile │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── client_profile.py │ │ │ │ │ │ │ └── http_profile.py │ │ │ │ │ │ └── sign.py │ │ │ │ │ ├── csp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20200107 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── csp_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── cvm │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20170312 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cvm_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── dcdb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180411 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── dcdb_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── mariadb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20170312 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── mariadb_client.py │ │ │ │ │ │ │ └── models.py │ │ │ │ │ ├── mongodb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── v20180408 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── mongodb_client.py │ │ │ │ │ │ └── v20190725 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── mongodb_client.py │ │ │ │ │ ├── monitor │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── v20170312 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── monitor_client.py │ │ │ │ │ │ └── v20180724 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── monitor_client.py │ │ │ │ │ ├── redis │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180412 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── redis_client.py │ │ │ │ │ ├── tcr │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20190924 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── tcr_client.py │ │ │ │ │ ├── tke │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180525 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── tke_client.py │ │ │ │ │ ├── tsf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20180326 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── tsf_client.py │ │ │ │ │ └── vpc │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── v20170312 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── vpc_client.py │ │ │ │ └── utils.py │ │ │ └── resource_client.py │ │ │ ├── driver.py │ │ │ ├── exceptions.py │ │ │ ├── models.py │ │ │ ├── settings.py │ │ │ └── utils.py │ ├── config.yml │ ├── core │ │ ├── config.py │ │ ├── nats.py │ │ └── ssh_client.py │ ├── plugins │ │ ├── __init__.py │ │ ├── activemq_info.py │ │ ├── aliyun_info.py │ │ ├── apache_info.py │ │ ├── aws_info.py │ │ ├── base.py │ │ ├── base_utils.py │ │ ├── constants.py │ │ ├── dameng_info.py │ │ ├── db2_info.py │ │ ├── es_info.py │ │ ├── etcd_info.py │ │ ├── hbase_info.py │ │ ├── host_info.py │ │ ├── host_info_ssh.py │ │ ├── jetty_info.py │ │ ├── kafka_info.py │ │ ├── keepalived_info.py │ │ ├── mongodb_info.py │ │ ├── mssql_info.py │ │ ├── mysql_info.py │ │ ├── nginx_info.py │ │ ├── oracle_info.py │ │ ├── pgsql_info.py │ │ ├── qcloud_info.py │ │ ├── rabbitmq_info.py │ │ ├── redis_info.py │ │ ├── shell │ │ │ ├── activemq_default_discover.sh │ │ │ ├── apache_default_discover.sh │ │ │ ├── dameng_default_discover.sh │ │ │ ├── db2_default_discover.sh │ │ │ ├── es_default_discover.sh │ │ │ ├── etcd_default_discover.sh │ │ │ ├── hbase_default_discover.sh │ │ │ ├── host_default_discover.sh │ │ │ ├── jetty_default_discover.sh │ │ │ ├── kafka_default_discover.sh │ │ │ ├── keepalived_default_discover.sh │ │ │ ├── mongodb_default_discover.sh │ │ │ ├── nginx_default_discover.sh │ │ │ ├── pgsql_default_discover.sh │ │ │ ├── rabbitmq_default_discover.sh │ │ │ ├── redis_default_discover.sh │ │ │ ├── tidb_default_discover.sh │ │ │ ├── tomcat_default_discover.sh │ │ │ ├── tongweb_default_discover.sh │ │ │ ├── weblogic_default_discover.sh │ │ │ └── zookeeper_default_discover.sh │ │ ├── snmp_facts.py │ │ ├── snmp_topo.py │ │ ├── tidb_info.py │ │ ├── tomcat_info.py │ │ ├── tongweb_info.py │ │ ├── vmware_info.py │ │ ├── weblogic_info.py │ │ └── zookeeper_info.py │ ├── pyproject.toml │ ├── server.py │ ├── service │ │ ├── __init__.py │ │ ├── collect_service.py │ │ └── nats_server.py │ ├── support-files │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── pre-commit │ │ │ ├── .flake8 │ │ │ └── pre-commit-config.toml │ │ └── supervisor │ │ │ └── service.conf │ ├── utils │ │ └── convert.py │ └── uv.lock └── webhookd │ ├── Dockerfile │ ├── common.sh │ ├── compose │ ├── API.md │ ├── common.sh │ ├── setup.sh │ ├── start.sh │ ├── status.sh │ └── stop.sh │ └── kubernetes │ ├── start.sh │ ├── status.sh │ └── stop.sh ├── deploy ├── dist │ ├── bk-lite-kubernetes-collector │ │ ├── Readme.md │ │ ├── bk-lite-log-collector.yaml │ │ ├── bk-lite-metric-collector.yaml │ │ ├── secret.env.template │ │ └── secret.yaml.template │ └── vllm │ │ ├── Dockerfile │ │ └── README.md └── docker-compose │ ├── Readme.md │ ├── bootstrap.sh │ ├── compose │ ├── infra.yaml │ ├── log.yaml │ ├── monitor.yaml │ ├── ops_pilot.yaml │ ├── server.yaml │ ├── vllm.yaml │ └── web.yaml │ └── conf │ ├── certs │ └── .gitkeep │ ├── nats │ └── .gitkeep │ ├── postgres │ └── initdb.sql │ ├── telegraf │ └── telegraf.conf │ ├── traefik │ └── dynamic.yml │ └── vector │ └── vector.yaml ├── docs-website ├── .gitignore ├── Dockerfile ├── MEGAMENU_README.md ├── README.md ├── docs │ ├── alert │ │ ├── _category_.json │ │ ├── feature.md │ │ └── index.md │ ├── analysis │ │ ├── _category_.json │ │ └── index.md │ ├── asserts │ │ └── index.md │ ├── cmdb │ │ ├── _category_.json │ │ ├── feature.md │ │ └── index.md │ ├── console │ │ ├── _category_.json │ │ └── index.md │ ├── deploy │ │ ├── docker-compose.md │ │ └── k8s-cluster-integration.md │ ├── dev │ │ └── index.md │ ├── faq │ │ └── index.md │ ├── itsm │ │ ├── _category_.json │ │ └── feature.md │ ├── lab │ │ ├── _category_.json │ │ └── index.md │ ├── log │ │ ├── _category_.json │ │ ├── feature.md │ │ └── release.md │ ├── mlops │ │ ├── _category_.json │ │ └── feature.md │ ├── monitor │ │ ├── _category_.json │ │ ├── feature.md │ │ └── release.md │ ├── node │ │ ├── _category_.json │ │ ├── feature.md │ │ └── release.md │ ├── operations │ │ └── index.md │ ├── opspilot │ │ ├── _category_.json │ │ ├── capabities.md │ │ ├── feature.md │ │ ├── introduce.md │ │ └── release.md │ ├── playground │ │ ├── _category_.json │ │ └── index.md │ └── system │ │ ├── _category_.json │ │ └── feature.md ├── docusaurus.config.js ├── nginx.conf ├── package.json ├── pnpm-lock.yaml ├── sidebars.js ├── src │ ├── components │ │ ├── AIShowcase │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── FinalCTA │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── LiquidNavbar │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── MegaMenu │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── PartnersShowcase │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.js │ │ ├── index.module.css │ │ ├── pricing.js │ │ └── pricing.module.css │ └── theme │ │ ├── Navbar │ │ ├── Content │ │ │ └── index.js │ │ └── index.js │ │ └── NavbarItem │ │ └── DefaultNavbarItem.js └── static │ ├── .nojekyll │ └── img │ ├── community-qrcode.png │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo-site.png │ ├── logo.png │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg ├── docs ├── changelog │ └── release.md ├── db │ └── README.md ├── overview │ ├── api_doc.md │ ├── architecture.md │ ├── code_framework.md │ ├── design.md │ ├── installation.md │ └── source_compile.md ├── readme.md ├── resource │ └── img │ │ ├── intro.png │ │ ├── jiawei-logo.png │ │ ├── logo.png │ │ ├── qrcode.jpg │ │ ├── wx-2.png │ │ └── wx.jpg └── wiki │ └── db_upgrade.md ├── mobile ├── .android-env.sh ├── .gitignore ├── .husky │ └── pre-commit ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public │ ├── avatars │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ └── 04.png │ ├── file.svg │ ├── globe.svg │ ├── icon │ │ └── font │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ ├── logo-site.png │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── scripts │ ├── android-build.bat │ ├── android-build.mjs │ └── android-build.sh ├── src-tauri │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── android │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── bklite │ │ │ └── mobile │ │ │ └── MainActivity.kt │ ├── build.rs │ ├── capabilities │ │ └── default.json │ ├── icons │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── 32x32.png │ │ ├── Square107x107Logo.png │ │ ├── Square142x142Logo.png │ │ ├── Square150x150Logo.png │ │ ├── Square284x284Logo.png │ │ ├── Square30x30Logo.png │ │ ├── Square310x310Logo.png │ │ ├── Square44x44Logo.png │ │ ├── Square71x71Logo.png │ │ ├── Square89x89Logo.png │ │ ├── StoreLogo.png │ │ ├── android │ │ │ └── res │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── icon.png │ ├── src │ │ ├── api_proxy.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ └── permissions.rs │ └── tauri.conf.json ├── src │ ├── api │ │ ├── auth.ts │ │ ├── bot.ts │ │ └── request.ts │ ├── app │ │ ├── conversation │ │ │ ├── components │ │ │ │ ├── ApplicationForm.tsx │ │ │ │ ├── ConversationHeader.tsx │ │ │ │ ├── InformationCard.tsx │ │ │ │ ├── MessageList.tsx │ │ │ │ ├── SelectionButtons.tsx │ │ │ │ ├── ToolCallsDisplay.tsx │ │ │ │ ├── VoiceInput.tsx │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useMessages.ts │ │ │ │ └── useSpeechRecognition.ts │ │ │ ├── page.tsx │ │ │ └── utils │ │ │ │ ├── aiUtils.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── styles.ts │ │ │ │ └── timeUtils.ts │ │ ├── conversations │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── login │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── profile │ │ │ ├── accountDetails │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── search │ │ │ └── page.tsx │ │ └── workbench │ │ │ ├── detail │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── components │ │ ├── bottom-tab-bar.tsx │ │ ├── image-cropper.tsx │ │ └── language-selector.tsx │ ├── constants │ │ ├── mockData.ts │ │ └── mockResponses.tsx │ ├── context │ │ ├── auth.tsx │ │ ├── locale.tsx │ │ └── theme.tsx │ ├── locales │ │ ├── en.json │ │ └── zh.json │ ├── polyfills │ │ └── react-dom.ts │ ├── styles │ │ ├── globals.css │ │ ├── theme-overrides.css │ │ └── variables.css │ ├── types │ │ ├── ag-ui.ts │ │ ├── auth.ts │ │ ├── common.ts │ │ ├── conversation.ts │ │ └── user.ts │ └── utils │ │ ├── i18n.ts │ │ ├── tauriApiProxy.ts │ │ └── tauriFetch.ts └── tsconfig.json ├── readme_en.md ├── server ├── .coveragerc ├── .dockerignore ├── .flake8 ├── .github │ ├── instructions │ │ ├── checklist.instructions.md │ │ ├── cmdb.instructions.md │ │ ├── coding-styles.instructions.md │ │ ├── forbiddens.instructions.md │ │ ├── libs.instructions.md │ │ ├── principle.instructions.md │ │ └── role.instructions.md │ └── prompts │ │ └── code-review.prompt.md ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .python-version ├── .vscode │ ├── launch.json │ └── settings.json ├── Makefile ├── apps │ ├── __init__.py │ ├── alerts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── aggregation │ │ │ │ ├── __init__.py │ │ │ │ ├── agg_window.py │ │ │ │ ├── alert_engine.py │ │ │ │ ├── alert_processor.py │ │ │ │ ├── duckdb_engine.py │ │ │ │ ├── enum.py │ │ │ │ ├── util.py │ │ │ │ └── window_processor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── fixed.py │ │ │ │ │ ├── session.py │ │ │ │ │ └── sliding.py │ │ │ ├── assignment.py │ │ │ ├── auto_close.py │ │ │ ├── notify │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── notify.py │ │ │ ├── rules │ │ │ │ ├── __init__.py │ │ │ │ ├── json_converter_rule.py │ │ │ │ ├── rule_adapter.py │ │ │ │ ├── rule_manager.py │ │ │ │ ├── rules.py │ │ │ │ ├── template_engine.py │ │ │ │ └── windows_template.jinja │ │ │ ├── shield.py │ │ │ └── source_adapter │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── constants.py │ │ │ │ ├── monitor.py │ │ │ │ ├── prometheus.py │ │ │ │ ├── restful.py │ │ │ │ └── webhook.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── error.py │ │ ├── filters.py │ │ ├── images │ │ │ ├── critical_event_aggregation.png │ │ │ ├── error_scenario_handling.png │ │ │ └── high_level_event_aggregation.png │ │ ├── init_constants.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── create_builtin_rules.py │ │ │ │ ├── init_alert_levels.py │ │ │ │ ├── init_alert_sources.py │ │ │ │ └── init_system_settings.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_systemsetting.py │ │ │ ├── 0003_notifyresult.py │ │ │ ├── 0004_operatorlog.py │ │ │ ├── 0005_sessioneventrelation_aggregationrules_image_and_more.py │ │ │ ├── 0006_correlationrules_exec_time_and_more.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── nats.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── rule_serializers.py │ │ │ └── serializers.py │ │ ├── service │ │ │ ├── __init__.py │ │ │ ├── alter_operator.py │ │ │ ├── base.py │ │ │ ├── incident_operator.py │ │ │ ├── init_alert_sources.py │ │ │ ├── notify_service.py │ │ │ ├── reminder_service.py │ │ │ └── un_dispatch.py │ │ ├── tasks.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── mock.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── system_mgmt_util.py │ │ │ └── util.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── assignment_shield.py │ │ │ ├── rule_views.py │ │ │ ├── source.py │ │ │ └── view.py │ ├── base │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_userapisecret_team.py │ │ │ ├── 0003_quotarule.py │ │ │ ├── 0004_alter_userapisecret_options_and_more.py │ │ │ ├── 0005_user_domain.py │ │ │ ├── 0006_alter_userapisecret_team.py │ │ │ ├── 0007_alter_user_username_alter_user_unique_together.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── user.py │ │ ├── urls.py │ │ └── user_api_secret_mgmt │ │ │ ├── __init__.py │ │ │ ├── serializers.py │ │ │ └── views.py │ ├── cmdb │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── collect_tasks │ │ │ ├── __init__.py │ │ │ ├── aliyun.py │ │ │ ├── aws.py │ │ │ ├── bash.py │ │ │ ├── databases.py │ │ │ ├── host.py │ │ │ ├── job_collect.py │ │ │ ├── k8s.py │ │ │ ├── middleware.py │ │ │ ├── network.py │ │ │ ├── protocol.py │ │ │ ├── protocol_collect.py │ │ │ ├── qcloud.py │ │ │ └── vmware.py │ │ ├── collection │ │ │ ├── __init__.py │ │ │ ├── collect_plugin │ │ │ │ ├── __init__.py │ │ │ │ ├── aliyun.py │ │ │ │ ├── aws.py │ │ │ │ ├── base.py │ │ │ │ ├── databases.py │ │ │ │ ├── host.py │ │ │ │ ├── k8s.py │ │ │ │ ├── middleware.py │ │ │ │ ├── network.py │ │ │ │ ├── protocol.py │ │ │ │ ├── qcloud.py │ │ │ │ └── vmware.py │ │ │ ├── collect_util.py │ │ │ ├── common.py │ │ │ ├── constants.py │ │ │ ├── metrics_cannula.py │ │ │ └── query_vm.py │ │ ├── config.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ └── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── change_record.py │ │ │ └── collect_filters.py │ │ ├── graph │ │ │ ├── __init__.py │ │ │ ├── drivers │ │ │ │ └── graph_client.py │ │ │ ├── falkordb.py │ │ │ ├── falkordb_format.py │ │ │ ├── format_type.py │ │ │ └── neo4j.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ ├── service.py │ │ │ └── zh-Hans.yaml │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── init_oid.py │ │ │ │ └── model_init.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_showfield_options_alter_showfield_created_at_and_more.py │ │ │ ├── 0003_collectmodels.py │ │ │ ├── 0004_oidmapping.py │ │ │ ├── 0005_changerecord_message_changerecord_model_object_and_more.py │ │ │ ├── 0006_alter_collectmodels_task_type.py │ │ │ ├── 0007_alter_collectmodels_task_type.py │ │ │ ├── 0008_collectmodels_domain_collectmodels_updated_by_domain_and_more.py │ │ │ ├── 0008_collectmodels_domain_collectmodels_updated_by_domain_and_more.py 18-30-32-533.py │ │ │ ├── 0009_alter_collectmodels_task_type.py │ │ │ └── __init__.py │ │ ├── model_migrate │ │ │ ├── __init__.py │ │ │ └── migrete_service.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── change_record.py │ │ │ ├── collect_model.py │ │ │ └── show_field.py │ │ ├── nats │ │ │ ├── __init__.py │ │ │ └── nats.py │ │ ├── node_configs │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── cloud │ │ │ │ ├── __init__.py │ │ │ │ ├── aliyun.py │ │ │ │ ├── aws.py │ │ │ │ ├── qcloud.py │ │ │ │ └── vmware.py │ │ │ ├── config_factory.py │ │ │ ├── databases │ │ │ │ ├── __init__.py │ │ │ │ ├── dameng.py │ │ │ │ ├── db2.py │ │ │ │ ├── hbase.py │ │ │ │ ├── mongodb.py │ │ │ │ ├── mysql.py │ │ │ │ ├── oracle.py │ │ │ │ ├── pgsql.py │ │ │ │ └── tidb.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ └── network.py │ │ │ └── ssh │ │ │ │ ├── __init__.py │ │ │ │ ├── activemq.py │ │ │ │ ├── apache.py │ │ │ │ ├── base.py │ │ │ │ ├── es.py │ │ │ │ ├── etcd.py │ │ │ │ ├── host.py │ │ │ │ ├── jetty.py │ │ │ │ ├── kafka.py │ │ │ │ ├── keepalived.py │ │ │ │ ├── nginx.py │ │ │ │ ├── rabbitmq.py │ │ │ │ ├── redis.py │ │ │ │ ├── tomcat.py │ │ │ │ ├── tongweb.py │ │ │ │ ├── weblogic.py │ │ │ │ └── zookeeper.py │ │ ├── permissions │ │ │ ├── __init__.py │ │ │ ├── inst_task_permission.py │ │ │ └── instance_permission.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── change_record.py │ │ │ └── collect_serializer.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── classification.py │ │ │ ├── collect_service.py │ │ │ ├── instance.py │ │ │ └── model.py │ │ ├── support-files │ │ │ ├── base.child.toml.j2 │ │ │ ├── model_config.xlsx │ │ │ ├── plugins_doc │ │ │ │ ├── activemq.md │ │ │ │ ├── aliyun.md │ │ │ │ ├── etcd.md │ │ │ │ ├── host.md │ │ │ │ ├── k8s_cluster.md │ │ │ │ ├── kafka.md │ │ │ │ ├── mysql.md │ │ │ │ ├── network.md │ │ │ │ ├── nginx.md │ │ │ │ ├── qcloud.md │ │ │ │ ├── rabbitmq.md │ │ │ │ ├── redis.md │ │ │ │ ├── tomcat.md │ │ │ │ ├── vmware.md │ │ │ │ └── zookeeper.md │ │ │ ├── systemoid.json │ │ │ └── topo_config.json │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ └── celery_tasks.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── Import.py │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── change_record.py │ │ │ ├── credential.py │ │ │ ├── export.py │ │ │ └── permission_util.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── change_record.py │ │ │ ├── classfication.py │ │ │ ├── collect.py │ │ │ ├── instance.py │ │ │ ├── model.py │ │ │ └── show_field.py │ ├── console_mgmt │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── init_guest_role.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_userappset.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── notification.py │ │ │ └── user_app_set.py │ │ ├── nats_api.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── notification.py │ │ │ └── user_app_set.py │ │ ├── urls.py │ │ ├── views.py │ │ └── viewsets │ │ │ ├── __init__.py │ │ │ ├── notification.py │ │ │ └── user_app_set.py │ ├── core │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── admin │ │ │ └── __init__.py │ │ ├── apps.py │ │ ├── backends.py │ │ ├── celery.py │ │ ├── constants.py │ │ ├── decorators │ │ │ ├── __init__.py │ │ │ └── api_permission.py │ │ ├── encoders.py │ │ ├── entities │ │ │ ├── __init__.py │ │ │ └── user_token_entity.py │ │ ├── exceptions │ │ │ ├── __init__.py │ │ │ └── base_app_exception.py │ │ ├── fields │ │ │ ├── __init__.py │ │ │ └── s3_json_field.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── logger.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ ├── api_middleware.py │ │ │ ├── app_exception_middleware.py │ │ │ ├── auth_middleware.py │ │ │ └── drf_middleware.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── mixinx.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── group_info.py │ │ │ ├── maintainer_info.py │ │ │ ├── time_info.py │ │ │ └── vtype_mixin.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ └── user_auth_serializer.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── user_group.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ └── auditlog_flush_task.py │ │ ├── tests │ │ │ └── __init__.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── async_utils.py │ │ │ ├── celery_utils.py │ │ │ ├── crypto │ │ │ │ ├── __init__.py │ │ │ │ ├── aes_crypto.py │ │ │ │ ├── password_crypto.py │ │ │ │ └── rsa_crypto.py │ │ │ ├── download_local_file.py │ │ │ ├── exempt.py │ │ │ ├── group_query_mixin.py │ │ │ ├── i18n.py │ │ │ ├── loader.py │ │ │ ├── open_base.py │ │ │ ├── permission_utils.py │ │ │ ├── serializers.py │ │ │ ├── time_util.py │ │ │ ├── user_group.py │ │ │ ├── viewset_utils.py │ │ │ └── web_utils.py │ │ ├── views │ │ │ ├── __init__.py │ │ │ ├── index_view.py │ │ │ └── user_group.py │ │ └── viewsets │ │ │ └── __init__.py │ ├── lab │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── infra_instance.py │ │ │ ├── lab_env.py │ │ │ └── lab_image.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── infra_instance_serializer.py │ │ │ ├── lab_env_serializer.py │ │ │ └── lab_image_serializer.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── docker_lab_client.py │ │ │ ├── kubernetes_lab_client.py │ │ │ └── lab_utils.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── infra_instance_view.py │ │ │ ├── lab_env_view.py │ │ │ └── lab_image_view.py │ ├── log │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ ├── alert_policy.py │ │ │ ├── database.py │ │ │ ├── language.py │ │ │ ├── permission.py │ │ │ ├── plugin.py │ │ │ ├── victoriametrics.py │ │ │ └── web.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── collect_config.py │ │ │ ├── log_group.py │ │ │ └── policy.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ └── log_init.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── plugin.py │ │ │ │ └── stream.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_streamcollectinstance.py │ │ │ ├── 0003_alert_event_policy_eventrawdata_event_policy_and_more.py │ │ │ ├── 0004_alert_notice_alter_eventrawdata_data.py │ │ │ ├── 0005_remove_policy_organizations.py │ │ │ ├── 0006_loggroup_loggrouporganization_and_more.py │ │ │ ├── 0007_searchcondition.py │ │ │ ├── 0008_policy_show_fields.py │ │ │ ├── 0009_alter_eventrawdata_data.py │ │ │ ├── 0010_alertsnapshot.py │ │ │ ├── 0011_alter_alertsnapshot_snapshots.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── collect_type.py │ │ │ ├── instance.py │ │ │ ├── log_group.py │ │ │ └── policy.py │ │ ├── nats.py │ │ ├── nats │ │ │ ├── __init__.py │ │ │ ├── log.py │ │ │ └── permission.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── collect_config.py │ │ │ ├── log_group.py │ │ │ └── policy.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── collect_type.py │ │ │ ├── policy.py │ │ │ └── search.py │ │ ├── support-files │ │ │ └── plugins │ │ │ │ ├── Auditbeat │ │ │ │ ├── auditd │ │ │ │ │ ├── README.md │ │ │ │ │ ├── auditd.child.yaml.j2 │ │ │ │ │ └── collect_type.json │ │ │ │ └── file_integrity │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── file_integrity.child.yaml.j2 │ │ │ │ ├── Filebeat │ │ │ │ └── filestream │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── filestream.child.yaml.j2 │ │ │ │ ├── Metricbeat │ │ │ │ ├── docker │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── docker.child.yaml.j2 │ │ │ │ └── system │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── system.child.yaml.j2 │ │ │ │ ├── Packetbeat │ │ │ │ ├── dhcp │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── dhcp.child.yaml.j2 │ │ │ │ ├── dns │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── dns.child.yaml.j2 │ │ │ │ ├── flows │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── flows.child.yaml.j2 │ │ │ │ ├── http │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── http.child.yaml.j2 │ │ │ │ └── icmp │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collect_type.json │ │ │ │ │ └── icmp.child.yaml.j2 │ │ │ │ ├── Snmptrapd │ │ │ │ └── network │ │ │ │ │ └── collect_type.json │ │ │ │ └── Vector │ │ │ │ ├── docker │ │ │ │ ├── collect_type.json │ │ │ │ └── docker.child.toml.j2 │ │ │ │ ├── exec │ │ │ │ ├── collect_type.json │ │ │ │ └── exec.child.toml.j2 │ │ │ │ ├── file │ │ │ │ ├── collect_type.json │ │ │ │ └── file.child.toml.j2 │ │ │ │ ├── k8s │ │ │ │ └── collect_type.json │ │ │ │ └── syslog │ │ │ │ └── collect_type.json │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── policy.py │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── policy_scan.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── policy.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── log_group.py │ │ │ ├── plugin_controller.py │ │ │ ├── query_log.py │ │ │ └── time_util.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── collect_config.py │ │ │ ├── log_group.py │ │ │ ├── node.py │ │ │ ├── policy.py │ │ │ ├── search.py │ │ │ └── system_mgmt.py │ ├── mlops │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── anomaly_detection.py │ │ │ ├── classification.py │ │ │ ├── image_classification.py │ │ │ ├── log_clustering.py │ │ │ ├── object_detection.py │ │ │ ├── rasa.py │ │ │ └── timeseries_predict.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_rasadatasets.py │ │ │ ├── 0003_rasaintent.py │ │ │ ├── 0004_rasaresponse.py │ │ │ ├── 0005_rasarule.py │ │ │ ├── 0006_alter_rasarule_steps.py │ │ │ ├── 0007_rasastory.py │ │ │ ├── 0008_rasaentity.py │ │ │ ├── 0009_remove_rasaentity_example_count.py │ │ │ ├── 0010_remove_rasaintent_example_count_and_more.py │ │ │ ├── 0011_rasaslot.py │ │ │ ├── 0012_rename_solt_type_rasaslot_slot_type.py │ │ │ ├── 0013_alter_rasaslot_slot_type.py │ │ │ ├── 0014_rasaslot_values.py │ │ │ ├── 0015_alter_rasaslot_slot_type_alter_rasaslot_values.py │ │ │ ├── 0016_rasaform.py │ │ │ ├── 0017_remove_rasastory_intent_count_and_more.py │ │ │ ├── 0018_remove_rasarule_intent_count_and_more.py │ │ │ ├── 0019_rasaaction.py │ │ │ ├── 0020_rasapipeline.py │ │ │ ├── 0021_logclusteringdataset_logclusteringtraindata_and_more.py │ │ │ ├── 0022_alter_timeseriespredicttrainhistory_options_and_more.py │ │ │ ├── 0023_anomalydetectiontrainhistory.py │ │ │ ├── 0024_classificationdataset_classificationtraindata_and_more.py │ │ │ ├── 0025_classificationtrainjob_labels.py │ │ │ ├── 0026_imageclassificationdataset.py │ │ │ ├── 0027_imageclassificationtraindata.py │ │ │ ├── 0028_imageclassificationtraindata_image.py │ │ │ ├── 0029_rename_image_imageclassificationtraindata_images.py │ │ │ ├── 0030_remove_imageclassificationtraindata_images.py │ │ │ ├── 0031_objectdetectiondataset_objectdetectiontraindata.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── anomaly_detection.py │ │ │ ├── classification.py │ │ │ ├── data_points_features_info.py │ │ │ ├── image_classification.py │ │ │ ├── log_clustering.py │ │ │ ├── object_detection.py │ │ │ ├── rasa.py │ │ │ └── timeseries_predict.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── anomaly_detection.py │ │ │ ├── classification.py │ │ │ ├── image_classification.py │ │ │ ├── log_clustering.py │ │ │ ├── object_detection.py │ │ │ ├── rasa.py │ │ │ └── timeseries_predict.py │ │ ├── tasks │ │ │ └── __init__.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── anomaly_detection.py │ │ │ ├── classification.py │ │ │ ├── image_classification.py │ │ │ ├── log_clustering.py │ │ │ ├── object_detection.py │ │ │ ├── rasa.py │ │ │ └── timeseries_predict.py │ ├── monitor │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── config.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ ├── alert_policy.py │ │ │ ├── database.py │ │ │ ├── language.py │ │ │ ├── monitor_object.py │ │ │ ├── permission.py │ │ │ ├── plugin.py │ │ │ └── victoriametrics.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── monitor_alert.py │ │ │ ├── monitor_metrics.py │ │ │ ├── monitor_object.py │ │ │ ├── monitor_policy.py │ │ │ └── plugin.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── autodiscover.py │ │ │ │ └── plugin_init.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_migrate.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_collectconfig.py │ │ │ ├── 0003_monitorobject_icon.py │ │ │ ├── 0004_monitorobjectorganizationrule_and_more.py │ │ │ ├── 0005_monitorevent_event_time_monitorpolicy_enable_alerts.py │ │ │ ├── 0006_collectconfig_domain_collectconfig_updated_by_domain_and_more.py │ │ │ ├── 0007_policytemplate.py │ │ │ ├── 0008_monitorobject_default_metric_and_more.py │ │ │ ├── 0009_alter_monitorinstanceorganization_organization_and_more.py │ │ │ ├── 0010_monitoralertmetricsnapshot.py │ │ │ ├── 0011_monitorobjectorganizationrule_monitor_instance_id.py │ │ │ ├── 0012_monitorobjecttype_delete_setting_and_more.py │ │ │ ├── 0013_monitorplugin_collect_type_monitorplugin_collector.py │ │ │ ├── 0014_monitorpluginuitemplate_monitorpluginconfigtemplate.py │ │ │ ├── 0015_delete_monitoreventrawdata.py │ │ │ ├── 0016_monitoreventrawdata_and_more.py │ │ │ ├── 0017_alter_monitoralertmetricsnapshot_alert.py │ │ │ ├── 0018_alter_monitoralertmetricsnapshot_snapshots_and_more.py │ │ │ ├── 0019_monitorevent_alert_and_more.py │ │ │ ├── 0020_monitorplugin_status_query.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── collect_config.py │ │ │ ├── monitor_metrics.py │ │ │ ├── monitor_object.py │ │ │ ├── monitor_policy.py │ │ │ ├── plugin.py │ │ │ └── setting.py │ │ ├── nats │ │ │ ├── __init__.py │ │ │ ├── monitor.py │ │ │ └── permission.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── monitor_alert.py │ │ │ ├── monitor_instance.py │ │ │ ├── monitor_metrics.py │ │ │ ├── monitor_object.py │ │ │ ├── monitor_policy.py │ │ │ └── pligin.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── manual_collect.py │ │ │ ├── metrics.py │ │ │ ├── monitor_instance.py │ │ │ ├── monitor_object.py │ │ │ ├── node_mgmt.py │ │ │ ├── organization_rule.py │ │ │ ├── plugin.py │ │ │ └── policy.py │ │ ├── support-files │ │ │ └── plugins │ │ │ │ ├── JBoss-JMX │ │ │ │ └── jmx │ │ │ │ │ └── jboss │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── jboss.base.yaml.j2 │ │ │ │ │ └── jboss.child.toml.j2 │ │ │ │ ├── JVM-JMX │ │ │ │ └── jmx │ │ │ │ │ └── jvm │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── jvm.base.yaml.j2 │ │ │ │ │ ├── jvm.child.toml.j2 │ │ │ │ │ └── metrics.json │ │ │ │ ├── Jetty-JMX │ │ │ │ └── jmx │ │ │ │ │ └── jetty │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── jetty.base.yaml.j2 │ │ │ │ │ ├── jetty.child.toml.j2 │ │ │ │ │ ├── metrics.json │ │ │ │ │ └── policy.json │ │ │ │ ├── Kafka-Exporter │ │ │ │ └── exporter │ │ │ │ │ └── kafka │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── kafka.base.yaml.j2 │ │ │ │ │ ├── kafka.child.toml.j2 │ │ │ │ │ ├── metrics.json │ │ │ │ │ └── policy.json │ │ │ │ ├── Oracle-Exporter │ │ │ │ └── exporter │ │ │ │ │ └── oracle │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── metrics.json │ │ │ │ │ ├── oracle.base.yaml.j2 │ │ │ │ │ ├── oracle.child.toml.j2 │ │ │ │ │ └── policy.json │ │ │ │ ├── Telegraf │ │ │ │ ├── bkpull │ │ │ │ │ └── minio │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── minio.child.toml.j2 │ │ │ │ │ │ └── policy.json │ │ │ │ ├── database │ │ │ │ │ ├── elasticsearch │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── elasticsearch.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── mongodb │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── mongodb.child.toml.j2 │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── mssql │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── mssql.child.toml.j2 │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── mysql.child.toml.j2 │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── postgres │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── postgres.child.toml.j2 │ │ │ │ │ └── redis │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── redis.child.toml.j2 │ │ │ │ ├── docker │ │ │ │ │ └── docker │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── docker.child.toml.j2 │ │ │ │ │ │ └── metrics.json │ │ │ │ ├── host │ │ │ │ │ └── os │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── cpu.child.toml.j2 │ │ │ │ │ │ ├── disk.child.toml.j2 │ │ │ │ │ │ ├── diskio.child.toml.j2 │ │ │ │ │ │ ├── gpu.child.toml.j2 │ │ │ │ │ │ ├── mem.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── net.child.toml.j2 │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ ├── processes.child.toml.j2 │ │ │ │ │ │ └── system.child.toml.j2 │ │ │ │ ├── http │ │ │ │ │ └── vmware │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── vmware.child.toml.j2 │ │ │ │ ├── ipmi │ │ │ │ │ ├── hardware_server │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── hardware_server.child.toml.j2 │ │ │ │ │ │ └── metrics.json │ │ │ │ │ └── storage │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── storage.child.toml.j2 │ │ │ │ ├── middleware │ │ │ │ │ ├── activemq │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── activemq.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── apache │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── apache.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── consul │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── consul.child.toml.j2 │ │ │ │ │ │ └── metrics.json │ │ │ │ │ ├── net │ │ │ │ │ │ └── net.child.toml.j2 │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── nginx.child.toml.j2 │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── rabbitmq │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── rabbitmq.child.toml.j2 │ │ │ │ │ ├── tomcat │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── tomcat.child.toml.j2 │ │ │ │ │ └── zookeeper │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── zookeeper.child.toml.j2 │ │ │ │ ├── ping │ │ │ │ │ └── ping │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── ping.child.toml.j2 │ │ │ │ │ │ └── policy.json │ │ │ │ ├── snmp │ │ │ │ │ ├── firewall │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── firewall.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── hardware_server │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── hardware_server.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── loadbalance │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── loadbalance.child.toml.j2 │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ └── policy.json │ │ │ │ │ ├── router │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── router.child.toml.j2 │ │ │ │ │ └── switch │ │ │ │ │ │ ├── UI.json │ │ │ │ │ │ ├── metrics.json │ │ │ │ │ │ ├── policy.json │ │ │ │ │ │ └── switch.child.toml.j2 │ │ │ │ └── web │ │ │ │ │ └── web │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── http_response.child.toml.j2 │ │ │ │ │ ├── metrics.json │ │ │ │ │ └── policy.json │ │ │ │ ├── TongWeb6-JMX │ │ │ │ └── jmx │ │ │ │ │ └── tongweb6 │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── tongweb6.base.yaml.j2 │ │ │ │ │ └── tongweb6.child.toml.j2 │ │ │ │ ├── TongWeb7-JMX │ │ │ │ └── jmx │ │ │ │ │ └── tongweb7 │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── tongweb7.base.yaml.j2 │ │ │ │ │ └── tongweb7.child.toml.j2 │ │ │ │ ├── WebLogic-JMX │ │ │ │ └── jmx │ │ │ │ │ └── weblogic │ │ │ │ │ ├── UI.json │ │ │ │ │ ├── metrics.json │ │ │ │ │ ├── policy.json │ │ │ │ │ ├── weblogic.base.yaml.j2 │ │ │ │ │ └── weblogic.child.toml.j2 │ │ │ │ ├── readme.md │ │ │ │ └── unknown │ │ │ │ └── k8s │ │ │ │ └── k8s │ │ │ │ └── metrics.json │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── grouping_rule.py │ │ │ ├── monitor_policy.py │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ ├── policy_scan.py │ │ │ │ ├── rule_group.py │ │ │ │ └── sync_instance.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── metric_query.py │ │ │ │ ├── policy_calculate.py │ │ │ │ └── policy_methods.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── check_permission.py │ │ │ ├── config_format.py │ │ │ ├── instance.py │ │ │ ├── plugin_controller.py │ │ │ ├── system_mgmt_api.py │ │ │ └── victoriametrics_api.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── manual_collect.py │ │ │ ├── metrics_instance.py │ │ │ ├── monitor_alert.py │ │ │ ├── monitor_instance.py │ │ │ ├── monitor_metrics.py │ │ │ ├── monitor_object.py │ │ │ ├── monitor_policy.py │ │ │ ├── node_mgmt.py │ │ │ ├── organization_rule.py │ │ │ ├── plugin.py │ │ │ └── system_mgmt.py │ ├── node_mgmt │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── admin │ │ │ └── __init__.py │ │ ├── apps.py │ │ ├── config.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ ├── cloudregion_service.py │ │ │ ├── collector.py │ │ │ ├── controller.py │ │ │ ├── database.py │ │ │ ├── language.py │ │ │ ├── node.py │ │ │ └── package.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── child_config.py │ │ │ ├── cloud_region.py │ │ │ ├── collector.py │ │ │ ├── collector_configuration.py │ │ │ ├── controller.py │ │ │ ├── package.py │ │ │ └── sidecar_env.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── collector_package_init.py │ │ │ │ ├── controller_package_init.py │ │ │ │ ├── node_init.py │ │ │ │ ├── node_token_init.py │ │ │ │ └── repair_node_config.py │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── node_init │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cloud_init.py │ │ │ │ │ ├── collector_init.py │ │ │ │ │ └── controller_init.py │ │ │ └── utils.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_controllertasknode_node_name.py │ │ │ ├── 0003_sidecarenv_type.py │ │ │ ├── 0004_collectorconfigurationenv.py │ │ │ ├── 0005_collectorconfiguration_env_config_and_more.py │ │ │ ├── 0006_childconfig_env_config.py │ │ │ ├── 0007_action_domain_action_updated_by_domain_and_more.py │ │ │ ├── 0008_collector_default_config_and_more.py │ │ │ ├── 0009_alter_nodeorganization_organization.py │ │ │ ├── 0010_sidecarenv_is_pre.py │ │ │ ├── 0011_alter_childconfig_options_childconfig_sort_order.py │ │ │ ├── 0012_sidecarapitoken_node_id_alter_sidecarapitoken_token.py │ │ │ ├── 0013_node_install_method.py │ │ │ ├── 0014_collector_tags.py │ │ │ ├── 0015_collector_package_name.py │ │ │ ├── 0016_cloudregionservice.py │ │ │ ├── 0017_cloudregionservice_is_deployed.py │ │ │ ├── 0018_remove_cloudregionservice_is_deployed_and_more.py │ │ │ ├── 0019_node_node_type.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── cloud_region.py │ │ │ ├── installer.py │ │ │ ├── package.py │ │ │ └── sidecar.py │ │ ├── nats │ │ │ ├── __init__.py │ │ │ ├── node.py │ │ │ └── permission.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── child_config.py │ │ │ ├── cloud_region.py │ │ │ ├── collector.py │ │ │ ├── collector_configuration.py │ │ │ ├── controller.py │ │ │ ├── node.py │ │ │ ├── package.py │ │ │ └── sidecar_env.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── cloudregion.py │ │ │ ├── collector_configuration.py │ │ │ ├── installer.py │ │ │ ├── node.py │ │ │ ├── package.py │ │ │ └── sidecar.py │ │ ├── support-files │ │ │ └── collectors │ │ │ │ ├── Auditbeat.json │ │ │ │ ├── Filebeat.json │ │ │ │ ├── JBoss-JMX.json │ │ │ │ ├── JVM-JMX.json │ │ │ │ ├── Jetty-JMX.json │ │ │ │ ├── Kafka-Exporter.json │ │ │ │ ├── Metricbeat.json │ │ │ │ ├── NATS-Executor.json │ │ │ │ ├── Oracle-Exporter.json │ │ │ │ ├── Packetbeat.json │ │ │ │ ├── Snmptrapd.json │ │ │ │ ├── Telegraf.json │ │ │ │ ├── TongWeb6-JMX.json │ │ │ │ ├── TongWeb7-JMX.json │ │ │ │ ├── Vector.json │ │ │ │ └── WebLogic-JMX.json │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── cloud_server_deployed.py │ │ │ ├── cloudregion.py │ │ │ ├── installer.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ └── cloud_service_check_health.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── crypto_helper.py │ │ │ ├── installer.py │ │ │ ├── s3.py │ │ │ ├── sidecar.py │ │ │ └── token_auth.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── child_config.py │ │ │ ├── cloud_region.py │ │ │ ├── collector.py │ │ │ ├── collector_configuration.py │ │ │ ├── controller.py │ │ │ ├── installer.py │ │ │ ├── node.py │ │ │ ├── package.py │ │ │ ├── sidecar.py │ │ │ └── sidecar_env.py │ ├── operation_analysis │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── get_nats_source_data.py │ │ │ └── load_json_data.py │ │ ├── config.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ └── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── base_filters.py │ │ │ ├── datasource_filters.py │ │ │ └── filters.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── export_source_api_data.py │ │ │ │ ├── init_default_groups.py │ │ │ │ ├── init_default_namespace.py │ │ │ │ └── init_source_api_data.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_datasourceapimodel_options_dashboard_and_more.py │ │ │ ├── 0003_remove_dashboard_unique_session_event_and_more.py │ │ │ ├── 0004_directory_remove_dashboard_unique_name_type_and_more.py │ │ │ ├── 0005_topology.py │ │ │ ├── 0006_namespace_datasourceapimodel_namespaces.py │ │ │ ├── 0007_datasourcetag_datasourceapimodel_chart_type_and_more.py │ │ │ ├── 0008_architecture.py │ │ │ ├── 0009_architecture_groups_dashboard_groups_and_more.py │ │ │ ├── 0010_remove_namespace_groups.py │ │ │ ├── 0011_namespace_nats_namespace.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── datasource_models.py │ │ │ └── models.py │ │ ├── nats │ │ │ ├── __init__.py │ │ │ ├── nats.py │ │ │ └── nats_client.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── base_serializers.py │ │ │ ├── datasource_serializers.py │ │ │ └── directory_serializers.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── directory_service.py │ │ │ └── node_tree.py │ │ ├── support-files │ │ │ ├── namespace.json │ │ │ ├── source_api.json │ │ │ └── tags.json │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ └── tasks.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── datasource_view.py │ │ │ └── view.py │ ├── opspilot │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── config.py │ │ ├── enum.py │ │ ├── language │ │ │ ├── en.yaml │ │ │ └── zh-Hans.yaml │ │ ├── lobe │ │ │ ├── deployment.yml │ │ │ ├── ingress.yml │ │ │ ├── middleware.yml │ │ │ └── svc.yml │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── init_bot.py │ │ │ │ ├── init_channel.py │ │ │ │ ├── init_llm.py │ │ │ │ ├── init_provider_model.py │ │ │ │ └── parse_tools_yml.py │ │ │ ├── json_file │ │ │ │ ├── embed_model.json │ │ │ │ ├── llm_model.json │ │ │ │ ├── mode_type.json │ │ │ │ ├── ocr_model.json │ │ │ │ └── rerank_model.json │ │ │ └── tools │ │ │ │ └── tools.yml │ │ ├── metis │ │ │ ├── __init__.py │ │ │ ├── llm │ │ │ │ ├── __init__.py │ │ │ │ ├── agent │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chatbot_workflow.py │ │ │ │ │ ├── deep_agent.py │ │ │ │ │ ├── lats_agent.py │ │ │ │ │ ├── plan_and_execute_agent.py │ │ │ │ │ ├── react_agent.py │ │ │ │ │ └── supervisor_multi_agent.py │ │ │ │ ├── chain │ │ │ │ │ ├── entity.py │ │ │ │ │ ├── graph.py │ │ │ │ │ ├── node.py │ │ │ │ │ └── state.py │ │ │ │ ├── chunk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base_chunk.py │ │ │ │ │ ├── fixed_size_chunk.py │ │ │ │ │ ├── full_chunk.py │ │ │ │ │ ├── recursive_chunk.py │ │ │ │ │ └── semantic_chunk.py │ │ │ │ ├── common │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── llm_client_factory.py │ │ │ │ │ ├── structured_output_parser.py │ │ │ │ │ └── tracing.py │ │ │ │ ├── embed │ │ │ │ │ └── embed_manager.py │ │ │ │ ├── loader │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── doc_loader.py │ │ │ │ │ ├── excel_loader.py │ │ │ │ │ ├── image_loader.py │ │ │ │ │ ├── markdown_loader.py │ │ │ │ │ ├── pdf_loader.py │ │ │ │ │ ├── ppt_loader.py │ │ │ │ │ ├── raw_loader.py │ │ │ │ │ ├── text_loader.py │ │ │ │ │ └── website_loader.py │ │ │ │ ├── rag │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── enhance │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── qa_generation.py │ │ │ │ │ ├── graph_rag │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── graphiti │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── graphiti_rag.py │ │ │ │ │ │ │ ├── metis_embedder.py │ │ │ │ │ │ │ ├── metis_embedder_config.py │ │ │ │ │ │ │ ├── metis_reranker_client.py │ │ │ │ │ │ │ ├── metis_reranker_config.py │ │ │ │ │ │ │ └── openai_client_patch.py │ │ │ │ │ ├── graph_rag_entity.py │ │ │ │ │ ├── naive_rag │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── pgvector │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── database_connection_pool.py │ │ │ │ │ │ │ ├── database_manager.py │ │ │ │ │ │ │ ├── pgvector_rag.py │ │ │ │ │ │ │ └── query_builder.py │ │ │ │ │ │ └── recall_strategies │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base_recall_strategy.py │ │ │ │ │ │ │ ├── chunk_recall_strategy.py │ │ │ │ │ │ │ ├── origin_recall_strategy.py │ │ │ │ │ │ │ ├── recall_strategy_factory.py │ │ │ │ │ │ │ └── segment_recall_strategy.py │ │ │ │ │ ├── naive_rag_entity.py │ │ │ │ │ └── rag_enhance_entity.py │ │ │ │ ├── rerank │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── rerank_config.py │ │ │ │ │ └── rerank_manager.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── date │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── current_time.py │ │ │ │ │ ├── github │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commits.py │ │ │ │ │ ├── jenkins │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── build.py │ │ │ │ │ ├── kubernetes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analysis.py │ │ │ │ │ ├── batch_operations.py │ │ │ │ │ ├── cluster.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── diagnostics_advanced.py │ │ │ │ │ ├── node_diagnostics.py │ │ │ │ │ ├── optimization.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── remediation.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── tracing.py │ │ │ │ │ └── utils.py │ │ │ │ │ ├── python │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── executor.py │ │ │ │ │ ├── search │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── duckduckgo.py │ │ │ │ │ ├── shell │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── shell_tools.py │ │ │ │ │ └── tools_loader.py │ │ │ ├── ocr │ │ │ │ ├── __init__.py │ │ │ │ ├── azure_ocr.py │ │ │ │ ├── base_ocr.py │ │ │ │ ├── ocr_manager.py │ │ │ │ └── olm_ocr.py │ │ │ └── utils │ │ │ │ └── template_loader.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_initial.py │ │ │ ├── 0003_knowledgetask.py │ │ │ ├── 0004_knowledgetask_knowledge_base_id.py │ │ │ ├── 0005_ocrprovider_is_build_in.py │ │ │ ├── 0006_bot_domain_botconversationhistory_domain_and_more.py │ │ │ ├── 0007_llmskill_enable_rag_strict_mode_and_more.py │ │ │ ├── 0008_knowledgetask_is_qa_task.py │ │ │ ├── 0009_knowledgegraph_graphchunkmap.py │ │ │ ├── 0010_knowledgedocument_enable_graph_rag_and_more.py │ │ │ ├── 0011_rename_result_count_knowledgebase_rag_size_and_more.py │ │ │ ├── 0012_llmskill_enable_km_route_llmskill_km_llm_model.py │ │ │ ├── 0013_alter_qapairs_llm_model.py │ │ │ ├── 0014_llmskill_guide_alter_llmskill_skill_type.py │ │ │ ├── 0015_bot_bot_type_knowledgegraph_status.py │ │ │ ├── 0016_qapairs_generate_count_qapairs_status.py │ │ │ ├── 0017_knowledgetask_completed_count_and_more.py │ │ │ ├── 0018_qapairs_create_type.py │ │ │ ├── 0019_modeltype_alter_llmmodel_llm_model_type_and_more.py │ │ │ ├── 0020_llmmodel_label_modeltype_is_build_in_and_more.py │ │ │ ├── 0021_remove_embedprovider_embed_model_type_and_more.py │ │ │ ├── 0022_remove_knowledgebase_enable_text_search_and_more.py │ │ │ ├── 0023_remove_knowledgebase_rag_k.py │ │ │ ├── 0024_modeltype_tags.py │ │ │ ├── 0025_knowledgebase_rag_recall_mode.py │ │ │ ├── 0026_llmskill_enable_suggest.py │ │ │ ├── 0027_botworkflow_alter_bot_bot_type_workflowtaskresult_and_more.py │ │ │ ├── 0028_llmskill_enable_query_rewrite.py │ │ │ ├── 0029_delete_teamtokenuseinfo_remove_quotarule_token_set.py │ │ │ ├── 0030_workflowtaskresult_execute_type.py │ │ │ ├── 0031_delete_tokenconsumption.py │ │ │ ├── 0032_skilltools_tools_workflowconversationhistory.py │ │ │ ├── 0033_bot_instance_id_knowledgedocument_instance_id_and_more.py │ │ │ ├── 0034_workflowconversationhistory_node_id_and_more.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── bot_mgmt.py │ │ │ ├── channel_mgmt.py │ │ │ ├── knowledge_mgmt.py │ │ │ ├── model_provider_mgmt.py │ │ │ └── quota_rule_mgmt.py │ │ ├── nats_api.py │ │ ├── pilot │ │ │ ├── deployment.yml │ │ │ ├── ingress.yml │ │ │ ├── middleware.yml │ │ │ └── svc.yml │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── bot_serializer.py │ │ │ ├── channel_serializer.py │ │ │ ├── embed_serializer.py │ │ │ ├── file_knowledge_serializers.py │ │ │ ├── history_serializer.py │ │ │ ├── knowledge_base_serializers.py │ │ │ ├── knowledge_document_serializers.py │ │ │ ├── knowledge_graph_serializers.py │ │ │ ├── llm_serializer.py │ │ │ ├── manual_knowledge_serializers.py │ │ │ ├── model_type_serializer.py │ │ │ ├── ocr_serializer.py │ │ │ ├── qa_pairs_serializers.py │ │ │ ├── quota_rule_serializers.py │ │ │ ├── rasa_model_serializer.py │ │ │ ├── rerank_serializer.py │ │ │ ├── rule_serializer.py │ │ │ ├── web_page_knowledge_serializers.py │ │ │ └── workflow_task_result_serializer.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── bot_init_service.py │ │ │ ├── channel_init_service.py │ │ │ ├── chat_service.py │ │ │ ├── ding_talk_client.py │ │ │ ├── history_service.py │ │ │ ├── knowledge_search_service.py │ │ │ ├── llm_service.py │ │ │ ├── model_provider_init_service.py │ │ │ ├── rag_service.py │ │ │ ├── skill_excute_service.py │ │ │ └── skill_init_json.py │ │ ├── signals │ │ │ ├── __init__.py │ │ │ ├── knowledge_signals.py │ │ │ └── user_create_signal.py │ │ ├── support-files │ │ │ └── prompts │ │ │ │ ├── answer_generation │ │ │ │ ├── input_prompt.jinja2 │ │ │ │ └── system_prompt.jinja2 │ │ │ │ ├── graph │ │ │ │ ├── base_node_system_message.jinja2 │ │ │ │ ├── deepagent_system_message.jinja2 │ │ │ │ ├── json_format_prompt.jinja2 │ │ │ │ ├── knowledge_route_selection_prompt.jinja2 │ │ │ │ ├── naive_rag_node_prompt.jinja2 │ │ │ │ ├── query_rewrite_prompt.jinja2 │ │ │ │ ├── react_agent_system_message.jinja2 │ │ │ │ ├── structured_output_schema.jinja2 │ │ │ │ ├── suggest_question_prompt.jinja2 │ │ │ │ └── supervisor_decision_prompt.jinja2 │ │ │ │ ├── lats_agent │ │ │ │ ├── candidate_generation.jinja2 │ │ │ │ ├── final_answer_synthesis.jinja2 │ │ │ │ ├── initial_response.jinja2 │ │ │ │ ├── intelligent_assistant.jinja2 │ │ │ │ └── multi_dimensional_evaluation.jinja2 │ │ │ │ ├── plan_and_execute_agent │ │ │ │ ├── execute_node_prompt.jinja2 │ │ │ │ ├── planning_prompt.jinja2 │ │ │ │ ├── replan_prompt.jinja2 │ │ │ │ └── summary_prompt.jinja2 │ │ │ │ ├── qa_pair │ │ │ │ ├── input_prompt.jinja2 │ │ │ │ └── system_prompt.jinja2 │ │ │ │ ├── question_generation │ │ │ │ ├── input_prompt.jinja2 │ │ │ │ └── system_prompt.jinja2 │ │ │ │ └── tools │ │ │ │ └── dynamic_param_generation.jinja2 │ │ ├── tasks.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── docker_client_test.py │ │ ├── urls.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── agent_factory.py │ │ │ ├── agui_chat.py │ │ │ ├── bot_utils.py │ │ │ ├── chat_flow_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── engine │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── core │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base_executor.py │ │ │ │ │ │ ├── enums.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── variable_manager.py │ │ │ │ │ ├── engine.py │ │ │ │ │ ├── factory.py │ │ │ │ │ └── node_registry.py │ │ │ │ └── nodes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── action.py │ │ │ │ │ ├── agent │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── agent.py │ │ │ │ │ ├── basic │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── entry_exit.py │ │ │ │ │ ├── condition │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── branch.py │ │ │ │ │ └── function │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── function.py │ │ │ ├── chat_server_helper.py │ │ │ ├── chunk_helper.py │ │ │ ├── dingtalk_chat_flow_utils.py │ │ │ ├── graph_utils.py │ │ │ ├── knowledge_utils.py │ │ │ ├── mcp_client.py │ │ │ ├── permission_check.py │ │ │ ├── pilot_client.py │ │ │ ├── quota_utils.py │ │ │ ├── rasa_app │ │ │ │ ├── __init__.py │ │ │ │ ├── docker_client.py │ │ │ │ └── kubernetes_client.py │ │ │ ├── safe_eval.py │ │ │ ├── sse_chat.py │ │ │ ├── template_loader.py │ │ │ ├── wechat_chat_flow_utils.py │ │ │ └── wechat_official_chat_flow_utils.py │ │ ├── views.py │ │ └── viewsets │ │ │ ├── __init__.py │ │ │ ├── bot_view.py │ │ │ ├── channel_view.py │ │ │ ├── embed_view.py │ │ │ ├── file_knowledge_view.py │ │ │ ├── history_view.py │ │ │ ├── knowledge_base_view.py │ │ │ ├── knowledge_document_view.py │ │ │ ├── knowledge_graph_view.py │ │ │ ├── llm_view.py │ │ │ ├── manual_knowledge_view.py │ │ │ ├── model_type_view.py │ │ │ ├── ocr_view.py │ │ │ ├── qa_pairs_view.py │ │ │ ├── quota_rule_view.py │ │ │ ├── rasa_model_view.py │ │ │ ├── rerank_view.py │ │ │ ├── rule_view.py │ │ │ ├── view_filter.py │ │ │ ├── web_page_knowledge_view.py │ │ │ └── workflow_task_result_view.py │ ├── playground │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── playground_capability.py │ │ │ ├── playground_category.py │ │ │ └── playground_example.py │ │ ├── init_constant.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── category_init.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_playgroundfile.py │ │ │ ├── 0003_alter_playgroundfile_capability.py │ │ │ ├── 0004_rename_capability_playgroundfile_serving.py │ │ │ ├── 0005_alter_playgroundfile_serving.py │ │ │ ├── 0006_playgroundanomalydetectionexample_and_more.py │ │ │ ├── 0007_alter_playgroundcategory_name.py │ │ │ ├── 0008_alter_playgroundcategory_name.py │ │ │ ├── 0009_alter_playgroundcategory_name.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── playground_capability.py │ │ │ ├── playground_category.py │ │ │ └── playground_example.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── playground_capability.py │ │ │ ├── playground_category.py │ │ │ └── playground_example.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── playground_capability.py │ │ │ ├── playground_category.py │ │ │ └── playground_example.py │ ├── rpc │ │ ├── __init__.py │ │ ├── alerts.py │ │ ├── base.py │ │ ├── cmdb.py │ │ ├── console_mgmt.py │ │ ├── executor.py │ │ ├── jetstream.py │ │ ├── log.py │ │ ├── monitor.py │ │ ├── node_mgmt.py │ │ ├── operation_analysis.py │ │ ├── opspilot.py │ │ ├── stargazer.py │ │ └── system_mgmt.py │ └── system_mgmt │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── guest_menus.py │ │ ├── language │ │ ├── en.yaml │ │ └── zh-Hans.yaml │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── clean_group_data.py │ │ │ ├── create_user.py │ │ │ ├── init_bk_login_settings.py │ │ │ ├── init_custom_menu.py │ │ │ ├── init_login_settings.py │ │ │ └── init_realm_resource.py │ │ ├── middleware │ │ ├── __init__.py │ │ └── error_log_middleware.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_initial.py │ │ ├── 0003_initial.py │ │ ├── 0004_app_is_build_in.py │ │ ├── 0005_app_tags.py │ │ ├── 0006_user_otp_secret_loginmodule.py │ │ ├── 0007_alter_loginmodule_app_secret_and_more.py │ │ ├── 0008_alter_groupdatarule_group_id.py │ │ ├── 0009_group_external_id_user_domain_and_more.py │ │ ├── 0010_alter_groupdatarule_unique_together.py │ │ ├── 0011_userrule_domain.py │ │ ├── 0012_user_last_login.py │ │ ├── 0013_group_roles.py │ │ ├── 0014_group_is_virtual.py │ │ ├── 0015_create_default_virtual_group.py │ │ ├── 0016_userloginlog_custommenugroup.py │ │ ├── 0017_operationlog.py │ │ ├── 0018_errorlog.py │ │ ├── 0019_init_password_settings.py │ │ ├── 0020_user_account_locked_until_user_password_error_count_and_more.py │ │ └── __init__.py │ │ ├── models │ │ ├── __init__.py │ │ ├── app.py │ │ ├── channel.py │ │ ├── custom_menu_group.py │ │ ├── error_log.py │ │ ├── group_data_rule.py │ │ ├── login_module.py │ │ ├── menu.py │ │ ├── operation_log.py │ │ ├── role.py │ │ ├── system_settings.py │ │ ├── user.py │ │ └── user_login_log.py │ │ ├── nats_api.py │ │ ├── serializers │ │ ├── __init__.py │ │ ├── app_serializer.py │ │ ├── channel_serializer.py │ │ ├── custom_menu_group_serializer.py │ │ ├── error_log_serializer.py │ │ ├── group_data_rule_serializer.py │ │ ├── group_serializer.py │ │ ├── login_module_serializer.py │ │ ├── operation_log_serializer.py │ │ ├── role_serializer.py │ │ ├── system_settings_serializer.py │ │ ├── user_login_log_serializer.py │ │ └── user_serializer.py │ │ ├── services │ │ ├── __init__.py │ │ └── role_manage.py │ │ ├── signals │ │ └── __init__.py │ │ ├── tasks.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── nats_api_test.py │ │ ├── urls.py │ │ ├── utils │ │ ├── __init__.py │ │ ├── bk_user_utils.py │ │ ├── channel_utils.py │ │ ├── db_utils.py │ │ ├── group_filter_mixin.py │ │ ├── group_utils.py │ │ ├── login_log_utils.py │ │ ├── operation_log_utils.py │ │ ├── password_validator.py │ │ └── viewset_utils.py │ │ └── viewset │ │ ├── __init__.py │ │ ├── app_viewset.py │ │ ├── channel_viewset.py │ │ ├── custom_menu_group_viewset.py │ │ ├── error_log_viewset.py │ │ ├── group_data_rule_viewset.py │ │ ├── group_viewset.py │ │ ├── login_module_viewset.py │ │ ├── operation_log_viewset.py │ │ ├── role_viewset.py │ │ ├── system_settings_viewset.py │ │ ├── user_login_log_viewset.py │ │ └── user_viewset.py ├── asgi.py ├── assets │ ├── .gitkeep │ └── img │ │ └── default-logo.png ├── config │ ├── __init__.py │ ├── components │ │ ├── __init__.py │ │ ├── app.py │ │ ├── base.py │ │ ├── cache.py │ │ ├── celery.py │ │ ├── database.py │ │ ├── drf.py │ │ ├── extra.py │ │ ├── locale.py │ │ ├── log.py │ │ ├── minio.py │ │ ├── mlflow.py │ │ └── nats.py │ ├── context_processors │ │ ├── __init__.py │ │ └── web_env.py │ ├── default.py │ └── drf │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── pagination.py │ │ ├── renderers.py │ │ └── viewsets.py ├── envs │ ├── .env.example │ └── .env.node.example ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── manage.py ├── nats_client │ ├── __init__.py │ ├── apps.py │ ├── clients.py │ ├── exceptions.py │ ├── handlers.py │ ├── management │ │ └── commands │ │ │ └── nats_listener.py │ ├── registry.py │ ├── types.py │ └── utils.py ├── pyproject.toml ├── pytest.ini ├── scripts │ ├── check_commit_message.py │ ├── check_migrate │ │ ├── check_migrate.py │ │ ├── field_library.csv │ │ └── field_library.json │ ├── check_requirements.py │ └── who_is_big.py ├── settings.py ├── support-files │ ├── data │ │ └── ops-pilot.tar.gz │ ├── env │ │ ├── .env.cmdb.example │ │ ├── .env.opspilot.example │ │ └── .env.system_mgmt.example │ ├── release │ │ ├── Dockerfile │ │ ├── startup.sh │ │ └── supervisor │ │ │ ├── app.conf │ │ │ ├── beat.conf │ │ │ ├── celery.conf │ │ │ └── nats.conf │ └── system_mgmt │ │ └── menus │ │ ├── alarm.json │ │ ├── cmdb.json │ │ ├── lab.json │ │ ├── log.json │ │ ├── mlops.json │ │ ├── monitor.json │ │ ├── node.json │ │ ├── ops-analysis.json │ │ ├── ops-console.json │ │ ├── opspilot.json │ │ ├── playground.json │ │ └── system-manager.json ├── templates │ └── .gitkeep └── urls.py ├── support-files └── lang-syncer │ ├── .gitignore │ ├── .python-version │ ├── Makefile │ ├── README.md │ ├── lang-syncer.py │ ├── pyproject.toml │ ├── src │ └── lang_syncer │ │ ├── __init__.py │ │ ├── base_syncer.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── notion_helper.py │ │ ├── server_syncer.py │ │ ├── utils.py │ │ └── web_syncer.py │ └── uv.lock ├── web ├── .dockerignore ├── .env.example ├── .eslintrc.json ├── .github │ └── copilot-instructions.md ├── .gitignore ├── .gitkeep ├── .husky │ └── pre-commit ├── .storybook │ ├── main.ts │ └── preview.tsx ├── Dockerfile ├── LICENSE ├── Makefile ├── next-auth.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public │ ├── file.svg │ ├── globe.svg │ ├── iconfont.js │ ├── iconfont.json │ ├── logo-site.png │ ├── next.svg │ ├── page-tip.gif │ ├── system-bg.jpg │ ├── system-login-bg.jpg │ ├── vercel.svg │ └── window.svg ├── scripts │ ├── build-timer.js │ ├── generate-tsconfig.js │ └── generate-workspace.js ├── src │ ├── app │ │ ├── (core) │ │ │ ├── api │ │ │ │ ├── auth │ │ │ │ │ ├── [...nextauth] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── federated-logout │ │ │ │ │ │ └── route.ts │ │ │ │ ├── locales │ │ │ │ │ └── route.ts │ │ │ │ ├── markdown │ │ │ │ │ └── route.ts │ │ │ │ ├── menu │ │ │ │ │ └── route.ts │ │ │ │ ├── proxy │ │ │ │ │ └── [...path] │ │ │ │ │ │ └── route.ts │ │ │ │ └── versions │ │ │ │ │ └── route.ts │ │ │ └── auth │ │ │ │ ├── signin │ │ │ │ ├── OtpVerificationForm.tsx │ │ │ │ ├── PasswordResetForm.tsx │ │ │ │ ├── SigninClient.tsx │ │ │ │ └── page.tsx │ │ │ │ └── signout │ │ │ │ └── page.tsx │ │ ├── alarm │ │ │ ├── (pages) │ │ │ │ ├── alarms │ │ │ │ │ ├── components │ │ │ │ │ │ ├── alarmAction.tsx │ │ │ │ │ │ ├── alarmDetail.tsx │ │ │ │ │ │ ├── alarmTable.tsx │ │ │ │ │ │ ├── assignModal.tsx │ │ │ │ │ │ ├── baseInfo.tsx │ │ │ │ │ │ └── declareIncident.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ ├── incidents │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ganttChart │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── linkModal │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── page.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ ├── integration │ │ │ │ │ ├── detail │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── settings │ │ │ │ │ ├── alertAssign │ │ │ │ │ ├── components │ │ │ │ │ │ ├── operateModal.scss │ │ │ │ │ │ └── operateModal.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ ├── effectiveTime.tsx │ │ │ │ │ ├── match.module.scss │ │ │ │ │ └── matchRule.tsx │ │ │ │ │ ├── correlationRules │ │ │ │ │ ├── components │ │ │ │ │ │ └── operateModal.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── globalConfig │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── operationLog │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── shieldStrategy │ │ │ │ │ ├── components │ │ │ │ │ └── operateModal.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── api │ │ │ │ ├── alarms.ts │ │ │ │ ├── common.ts │ │ │ │ ├── incidents.ts │ │ │ │ ├── integration.ts │ │ │ │ └── settings.ts │ │ │ ├── components │ │ │ │ ├── alarmFilters │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── customBreadcrumb │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── eventTable │ │ │ │ │ └── index.tsx │ │ │ │ ├── introduction │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── searchFilter │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── stackedBarChart.tsx │ │ │ ├── constants │ │ │ │ ├── alarm.ts │ │ │ │ ├── menu.json │ │ │ │ └── settings.ts │ │ │ ├── context │ │ │ │ └── common.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── fixed_window.png │ │ │ │ ├── session_window.png │ │ │ │ └── sliding_window.png │ │ │ ├── types │ │ │ │ ├── alarms.ts │ │ │ │ ├── incidents.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ ├── settings.ts │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ ├── alarmChart.ts │ │ │ │ └── common.ts │ │ ├── cmdb │ │ │ ├── (pages) │ │ │ │ ├── assetData │ │ │ │ │ ├── components │ │ │ │ │ │ ├── exportModal.tsx │ │ │ │ │ │ └── sub-layout │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── side-menu.tsx │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── baseInfo │ │ │ │ │ │ │ ├── list.module.scss │ │ │ │ │ │ │ ├── list.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── changeRecords │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ ├── recordDetail.module.scss │ │ │ │ │ │ │ └── recordDetail.tsx │ │ │ │ │ │ ├── layout.module.scss │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── relationships │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ ├── list.tsx │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ ├── selectInstance.tsx │ │ │ │ │ │ │ ├── topo.tsx │ │ │ │ │ │ │ └── topoData.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── list │ │ │ │ │ │ ├── fieldModal.tsx │ │ │ │ │ │ ├── importInst.tsx │ │ │ │ │ │ ├── searchFilter.module.scss │ │ │ │ │ │ └── searchFilter.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── assetManage │ │ │ │ │ ├── autoDiscovery │ │ │ │ │ │ ├── collection │ │ │ │ │ │ │ ├── full │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ └── profess │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── baseTask.tsx │ │ │ │ │ │ │ │ ├── cloudTask.tsx │ │ │ │ │ │ │ │ ├── hostTask.tsx │ │ │ │ │ │ │ │ ├── k8sTask.tsx │ │ │ │ │ │ │ │ ├── snmpTask.tsx │ │ │ │ │ │ │ │ ├── sqlTask.tsx │ │ │ │ │ │ │ │ ├── taskDetail.tsx │ │ │ │ │ │ │ │ └── vmTask.tsx │ │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ └── useTaskForm.ts │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── featureLibrary │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ ├── scanFeature │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── soid │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── operateOid.tsx │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── scan │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── management │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── associations │ │ │ │ │ │ │ │ ├── associationsModal.module.scss │ │ │ │ │ │ │ │ ├── associationsModal.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── attributes │ │ │ │ │ │ │ │ ├── attributesModal.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── context.tsx │ │ │ │ │ │ │ ├── layout.module.scss │ │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── groupModal.tsx │ │ │ │ │ │ │ ├── modelModal.tsx │ │ │ │ │ │ │ ├── selectIcon.module.scss │ │ │ │ │ │ │ └── selectIcon.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── operationLog │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── assetOverview │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ ├── assetSearch │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── api │ │ │ │ ├── changeRecord.ts │ │ │ │ ├── classification.ts │ │ │ │ ├── collect.ts │ │ │ │ ├── index.ts │ │ │ │ ├── instance.ts │ │ │ │ ├── model.ts │ │ │ │ └── oid.ts │ │ │ ├── components │ │ │ │ ├── introduction │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── ipInput │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ ├── constants │ │ │ │ ├── asset.ts │ │ │ │ ├── menu.json │ │ │ │ └── professCollection.ts │ │ │ ├── context │ │ │ │ ├── common.tsx │ │ │ │ └── relationships.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── asset-search.png │ │ │ │ └── assets │ │ │ │ │ └── assetModelIcon │ │ │ │ │ ├── cc-active-directory_AD.svg │ │ │ │ │ ├── cc-active_directory_AD.svg │ │ │ │ │ ├── cc-apache_Apache.svg │ │ │ │ │ ├── cc-application_子应用.svg │ │ │ │ │ ├── cc-balance_负载均衡.svg │ │ │ │ │ ├── cc-business_业务.svg │ │ │ │ │ ├── cc-certificate_证书.svg │ │ │ │ │ ├── cc-cloud-elb_云负载均衡.svg │ │ │ │ │ ├── cc-cloud-host_云主机.svg │ │ │ │ │ ├── cc-cloud-plat_云平台.svg │ │ │ │ │ ├── cc-cloud-server_云服务器.svg │ │ │ │ │ ├── cc-cloud-sp_云存储.svg │ │ │ │ │ ├── cc-cloud-volume_虚拟卷.svg │ │ │ │ │ ├── cc-cloud-云主机.svg │ │ │ │ │ ├── cc-cloud_云.svg │ │ │ │ │ ├── cc-dameng_达梦.svg │ │ │ │ │ ├── cc-datacenter-dc_数据中心.svg │ │ │ │ │ ├── cc-datacenter-rack_机柜.svg │ │ │ │ │ ├── cc-datacenter-room_机房.svg │ │ │ │ │ ├── cc-db-cluster_数据库集群.svg │ │ │ │ │ ├── cc-db2_DB2.svg │ │ │ │ │ ├── cc-db_数据库.svg │ │ │ │ │ ├── cc-default_默认.svg │ │ │ │ │ ├── cc-docker-container_Docker容器.svg │ │ │ │ │ ├── cc-docker-image_Docker镜像.svg │ │ │ │ │ ├── cc-docker-network_Docker网络.svg │ │ │ │ │ ├── cc-docker-volume_Docker卷.svg │ │ │ │ │ ├── cc-docker_Docker.svg │ │ │ │ │ ├── cc-elasticsearch_ElasticSearch.svg │ │ │ │ │ ├── cc-equipment_设备.svg │ │ │ │ │ ├── cc-esxi-host_ESXi.svg │ │ │ │ │ ├── cc-firewall_防火墙.svg │ │ │ │ │ ├── cc-group1_小组1.svg │ │ │ │ │ ├── cc-group2_小组2.svg │ │ │ │ │ ├── cc-hard-server_硬件服务器.svg │ │ │ │ │ ├── cc-host_主机.svg │ │ │ │ │ ├── cc-ibmmq_IBM MQ.svg │ │ │ │ │ ├── cc-iis-IIS.svg │ │ │ │ │ ├── cc-iis_IIS.svg │ │ │ │ │ ├── cc-ip_IP.svg │ │ │ │ │ ├── cc-k8s-cluster_K8S集群.svg │ │ │ │ │ ├── cc-k8s-namespace_K8S命名空间.svg │ │ │ │ │ ├── cc-k8s-workload_K8S工作负载.svg │ │ │ │ │ ├── cc-kafka_Kafka.svg │ │ │ │ │ ├── cc-mail-server_邮件服务.svg │ │ │ │ │ ├── cc-middleware_中间件.svg │ │ │ │ │ ├── cc-minio_Minio.svg │ │ │ │ │ ├── cc-module_模块.svg │ │ │ │ │ ├── cc-mongodb_MongoDB.svg │ │ │ │ │ ├── cc-mysql_MySQL.svg │ │ │ │ │ ├── cc-nacos_Nacos.svg │ │ │ │ │ ├── cc-nginx_Nginx.svg │ │ │ │ │ ├── cc-node_Node.svg │ │ │ │ │ ├── cc-oracle_Oracle.svg │ │ │ │ │ ├── cc-pepole1_人员1.svg │ │ │ │ │ ├── cc-pepole2_人员2.svg │ │ │ │ │ ├── cc-pod_Pod.svg │ │ │ │ │ ├── cc-postgresql_PostgreSQL.svg │ │ │ │ │ ├── cc-profile_配置文件.svg │ │ │ │ │ ├── cc-rabbitmq_RabbitMQ.svg │ │ │ │ │ ├── cc-redis_REDIS.svg │ │ │ │ │ ├── cc-router_路由器.svg │ │ │ │ │ ├── cc-security-equipment_安全设备.svg │ │ │ │ │ ├── cc-set_集群.svg │ │ │ │ │ ├── cc-sql-server_MSSQL.svg │ │ │ │ │ ├── cc-storage_存储.svg │ │ │ │ │ ├── cc-subnet_子网.svg │ │ │ │ │ ├── cc-switch2_交换机.svg │ │ │ │ │ ├── cc-tidb_TiDB.svg │ │ │ │ │ ├── cc-tomcat_Tomcat.svg │ │ │ │ │ ├── cc-weblogic_WebLogic.svg │ │ │ │ │ ├── cc-websphere_websphere.svg │ │ │ │ │ └── cc-zookeeper_ZooKeeper.svg │ │ │ ├── types │ │ │ │ ├── assetData.ts │ │ │ │ ├── assetManage.ts │ │ │ │ └── autoDiscovery.ts │ │ │ └── utils │ │ │ │ ├── common.tsx │ │ │ │ └── utils.ts │ │ ├── lab │ │ │ ├── (pages) │ │ │ │ ├── env │ │ │ │ │ ├── infraInstanceModal.tsx │ │ │ │ │ ├── labEnvModal.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── mirror │ │ │ │ │ ├── labImageModal.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── api │ │ │ │ ├── env.ts │ │ │ │ └── mirror.ts │ │ │ ├── constants │ │ │ │ └── menu.json │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── styles │ │ │ │ └── index.module.scss │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── layout.tsx │ │ ├── log │ │ │ ├── (pages) │ │ │ │ ├── analysis │ │ │ │ │ ├── dashBoard │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── chartLegend.tsx │ │ │ │ │ │ │ └── widgetWrapper.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ ├── comBar.tsx │ │ │ │ │ │ │ ├── comLine.tsx │ │ │ │ │ │ │ ├── comPie.tsx │ │ │ │ │ │ │ ├── comSankey.tsx │ │ │ │ │ │ │ ├── comSingle.tsx │ │ │ │ │ │ │ ├── comTable.tsx │ │ │ │ │ │ │ └── msgTable.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── event │ │ │ │ │ ├── alert │ │ │ │ │ │ ├── alertDetail.tsx │ │ │ │ │ │ ├── eventDetail.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── information.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── strategy │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── alertConditionsForm.tsx │ │ │ │ │ │ ├── basicInfoForm.tsx │ │ │ │ │ │ ├── conditionSelector.tsx │ │ │ │ │ │ ├── notificationForm.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── selectCard.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── integration │ │ │ │ │ ├── grouping │ │ │ │ │ │ ├── editInstance.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── list │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── configure │ │ │ │ │ │ │ │ ├── automatic.tsx │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ │ ├── snmpTrapConfiguration.tsx │ │ │ │ │ │ │ │ └── syslogConfiguration.tsx │ │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── receive │ │ │ │ │ │ ├── editInstance.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── updateConfig.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── search │ │ │ │ │ ├── addConditions.tsx │ │ │ │ │ ├── conditionList.tsx │ │ │ │ │ ├── customPopover.tsx │ │ │ │ │ ├── fieldList.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── logTerminal │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── searchTable.tsx │ │ │ │ │ └── smartSearchInput.tsx │ │ │ ├── api │ │ │ │ ├── data │ │ │ │ │ └── route.ts │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ └── search.ts │ │ │ ├── components │ │ │ │ ├── charts │ │ │ │ │ ├── barChart.tsx │ │ │ │ │ ├── customTooltips.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── stackedBarChart.tsx │ │ │ │ ├── operate-drawer │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── tree-selector │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ ├── constants │ │ │ │ ├── index.ts │ │ │ │ └── menu.json │ │ │ ├── context │ │ │ │ └── common.tsx │ │ │ ├── hooks │ │ │ │ ├── analysis │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── packetbeatDashboard.tsx │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ └── integration │ │ │ │ │ ├── collectTypes │ │ │ │ │ ├── auditd.tsx │ │ │ │ │ ├── dhcp.tsx │ │ │ │ │ ├── dns.tsx │ │ │ │ │ ├── docker.tsx │ │ │ │ │ ├── exec.tsx │ │ │ │ │ ├── file.tsx │ │ │ │ │ ├── fileIntegrity.tsx │ │ │ │ │ ├── filestream.tsx │ │ │ │ │ ├── flows.tsx │ │ │ │ │ ├── http.tsx │ │ │ │ │ ├── icmp.tsx │ │ │ │ │ ├── kubernetes.tsx │ │ │ │ │ ├── syslog.tsx │ │ │ │ │ └── system.tsx │ │ │ │ │ ├── collectors │ │ │ │ │ ├── auditbeat │ │ │ │ │ │ ├── auditd.tsx │ │ │ │ │ │ └── fileIntegrity.tsx │ │ │ │ │ ├── filebeat │ │ │ │ │ │ └── filestream.tsx │ │ │ │ │ ├── metricbeat │ │ │ │ │ │ ├── docker.tsx │ │ │ │ │ │ └── system.tsx │ │ │ │ │ ├── packetbeat │ │ │ │ │ │ ├── dhcp.tsx │ │ │ │ │ │ ├── dns.tsx │ │ │ │ │ │ ├── flows.tsx │ │ │ │ │ │ ├── http.tsx │ │ │ │ │ │ └── icmp.tsx │ │ │ │ │ └── vector │ │ │ │ │ │ ├── docker.tsx │ │ │ │ │ │ ├── exec.tsx │ │ │ │ │ │ ├── file.tsx │ │ │ │ │ │ └── syslog.tsx │ │ │ │ │ ├── common │ │ │ │ │ ├── auditdAuditbeatFormItems.tsx │ │ │ │ │ ├── commonColumns.tsx │ │ │ │ │ ├── dhcpPacketbeatFormItems.tsx │ │ │ │ │ ├── dnsPacketbeatFormItems.tsx │ │ │ │ │ ├── dockerMetricbeatFormItems.tsx │ │ │ │ │ ├── dockerVectorFormItems.tsx │ │ │ │ │ ├── execVectorFormItems.tsx │ │ │ │ │ ├── fileIntegrityAuditbeatFormItems.tsx │ │ │ │ │ ├── fileVectorFormItems.tsx │ │ │ │ │ ├── filestreamFilebeatFormItems.tsx │ │ │ │ │ ├── flowsPacketbeatFormItems.tsx │ │ │ │ │ ├── getCollectTypeConfig.ts │ │ │ │ │ ├── httpPacketbeatFormItems.tsx │ │ │ │ │ ├── icmpPacketbeatFormItems.tsx │ │ │ │ │ ├── other.tsx │ │ │ │ │ ├── syslogVectorFormItems.tsx │ │ │ │ │ └── systemMetricbeatFormItems.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── grammar_explanation │ │ │ │ │ ├── en │ │ │ │ │ │ └── index.md │ │ │ │ │ └── zh │ │ │ │ │ │ └── index.md │ │ │ │ ├── outputs │ │ │ │ │ ├── en │ │ │ │ │ │ ├── auditdAuditbeat.md │ │ │ │ │ │ ├── dhcpPacketbeat.md │ │ │ │ │ │ ├── dnsPacketbeat.md │ │ │ │ │ │ ├── dockerMetricbeat.md │ │ │ │ │ │ ├── dockerVector.md │ │ │ │ │ │ ├── execVector.md │ │ │ │ │ │ ├── fileVector.md │ │ │ │ │ │ ├── file_integrityAuditbeat.md │ │ │ │ │ │ ├── filestreamFilebeat.md │ │ │ │ │ │ ├── flowsPacketbeat.md │ │ │ │ │ │ ├── httpPacketbeat.md │ │ │ │ │ │ ├── icmpPacketbeat.md │ │ │ │ │ │ ├── kubernetesVector.md │ │ │ │ │ │ ├── syslogVector.md │ │ │ │ │ │ └── systemMetricbeat.md │ │ │ │ │ └── zh │ │ │ │ │ │ ├── auditdAuditbeat.md │ │ │ │ │ │ ├── dhcpPacketbeat.md │ │ │ │ │ │ ├── dnsPacketbeat.md │ │ │ │ │ │ ├── dockerMetricbeat.md │ │ │ │ │ │ ├── dockerVector.md │ │ │ │ │ │ ├── execVector.md │ │ │ │ │ │ ├── fileVector.md │ │ │ │ │ │ ├── file_integrityAuditbeat.md │ │ │ │ │ │ ├── filestreamFilebeat.md │ │ │ │ │ │ ├── flowsPacketbeat.md │ │ │ │ │ │ ├── httpPacketbeat.md │ │ │ │ │ │ ├── icmpPacketbeat.md │ │ │ │ │ │ ├── kubernetesVector.md │ │ │ │ │ │ ├── syslogVector.md │ │ │ │ │ │ └── systemMetricbeat.md │ │ │ │ └── versions │ │ │ │ │ └── log │ │ │ │ │ ├── en │ │ │ │ │ ├── V3.6.md │ │ │ │ │ ├── V3.7.md │ │ │ │ │ └── V3.8.md │ │ │ │ │ └── zh │ │ │ │ │ ├── V3.6.md │ │ │ │ │ ├── V3.7.md │ │ │ │ │ └── V3.8.md │ │ │ ├── styles │ │ │ │ └── index.css │ │ │ ├── types │ │ │ │ ├── analysis.ts │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ └── search.ts │ │ │ └── utils │ │ │ │ ├── chartDataTransform.ts │ │ │ │ ├── common.tsx │ │ │ │ └── randomColorForChart.ts │ │ ├── mlops │ │ │ ├── (pages) │ │ │ │ ├── layout.tsx │ │ │ │ ├── manage │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── aside │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── charContent.tsx │ │ │ │ │ │ ├── imageContent.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── objectDetection.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── tableContent.tsx │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── anomaly │ │ │ │ │ │ │ │ └── AnomalyDetail.tsx │ │ │ │ │ │ │ ├── classification │ │ │ │ │ │ │ │ └── classificationDetail.tsx │ │ │ │ │ │ │ ├── image-classification │ │ │ │ │ │ │ │ └── imageClassificationDetail.tsx │ │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ │ └── LogDetail.tsx │ │ │ │ │ │ │ ├── object-detection │ │ │ │ │ │ │ │ └── objectDetection.tsx │ │ │ │ │ │ │ ├── rasa │ │ │ │ │ │ │ │ ├── RasaDetail.tsx │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── StoryFlow.tsx │ │ │ │ │ │ │ │ │ ├── exampleContent.tsx │ │ │ │ │ │ │ │ │ └── index.module.scss │ │ │ │ │ │ │ │ └── rasaModal.tsx │ │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ │ └── TimeSeriesPredict.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── uploadModal.tsx │ │ │ │ │ ├── list │ │ │ │ │ │ ├── dataSetsModal.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── model-release │ │ │ │ │ ├── list │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── releaseModal.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── task │ │ │ │ │ ├── list │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── traintaskDetail.tsx │ │ │ │ │ ├── traintaskDrawer.tsx │ │ │ │ │ ├── traintaskHistory.tsx │ │ │ │ │ └── traintaskModal.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── api │ │ │ │ ├── manage.ts │ │ │ │ ├── modelRelease.ts │ │ │ │ └── task.ts │ │ │ ├── components │ │ │ │ ├── charts │ │ │ │ │ ├── barChart.tsx │ │ │ │ │ ├── customTooltips.tsx │ │ │ │ │ ├── dimensionFilter.tsx │ │ │ │ │ ├── dimensionTable.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── lineChart.tsx │ │ │ │ │ └── simpleLineChart.tsx │ │ │ │ ├── flows │ │ │ │ │ ├── ButtonEdge.tsx │ │ │ │ │ ├── CustomNodes.tsx │ │ │ │ │ ├── FlowProvider.tsx │ │ │ │ │ ├── NodeDetail.tsx │ │ │ │ │ ├── NodeFlow.tsx │ │ │ │ │ ├── NodePanel.tsx │ │ │ │ │ └── index.module.scss │ │ │ │ └── range-input │ │ │ │ │ └── index.tsx │ │ │ ├── constants │ │ │ │ ├── index.ts │ │ │ │ └── menu.json │ │ │ ├── hooks │ │ │ │ ├── manage │ │ │ │ │ ├── entitySelectModal.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── useRasaForm.tsx │ │ │ │ └── task │ │ │ │ │ ├── forms │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useAnomalyForm.tsx │ │ │ │ │ └── useRasaForm.tsx │ │ │ │ │ ├── useParamsUtil.tsx │ │ │ │ │ ├── useRasaParamsToForm.tsx │ │ │ │ │ ├── useTrainDataLoader.ts │ │ │ │ │ └── useTrainTaskForm.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── styles │ │ │ │ └── index.css │ │ │ ├── types │ │ │ │ ├── index.ts │ │ │ │ ├── manage.ts │ │ │ │ └── task.ts │ │ │ └── utils │ │ │ │ └── common.ts │ │ ├── monitor │ │ │ ├── (pages) │ │ │ │ ├── event │ │ │ │ │ ├── alert │ │ │ │ │ │ ├── alertDetail.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── information.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── strategy │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── alertConditionsForm.tsx │ │ │ │ │ │ │ ├── basicInfoForm.tsx │ │ │ │ │ │ │ ├── conditionSelector.tsx │ │ │ │ │ │ │ ├── metricDefinitionForm.tsx │ │ │ │ │ │ │ ├── notificationForm.tsx │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ ├── selectCard.tsx │ │ │ │ │ │ │ └── thresholdList.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── selectAssets.tsx │ │ │ │ │ │ └── selectInstance.module.scss │ │ │ │ │ └── template │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── integration │ │ │ │ │ ├── asset │ │ │ │ │ │ ├── editInstance.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── selectInstance.module.scss │ │ │ │ │ │ ├── selectInstance.tsx │ │ │ │ │ │ ├── templateConfigDrawer.tsx │ │ │ │ │ │ └── updateConfig.tsx │ │ │ │ │ ├── group │ │ │ │ │ │ ├── deleteRuleModal.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── ruleModal.tsx │ │ │ │ │ ├── list │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── configure │ │ │ │ │ │ │ │ ├── automatic.tsx │ │ │ │ │ │ │ │ ├── batchEditModal.tsx │ │ │ │ │ │ │ │ ├── excelImportModal.tsx │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ ├── k8s │ │ │ │ │ │ │ │ │ ├── accessComplete.tsx │ │ │ │ │ │ │ │ │ ├── accessConfig.tsx │ │ │ │ │ │ │ │ │ ├── collectorInstall.tsx │ │ │ │ │ │ │ │ │ ├── commonIssuesDrawer.tsx │ │ │ │ │ │ │ │ │ └── k8sConfiguration.tsx │ │ │ │ │ │ │ │ ├── manual.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ │ ├── metric │ │ │ │ │ │ │ │ ├── groupModal.tsx │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ ├── metricModal.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── importModal.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── search │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ └── view │ │ │ │ │ ├── detail │ │ │ │ │ ├── metric.tsx │ │ │ │ │ ├── overview.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── hiveModal.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── lazyMetricItem.tsx │ │ │ │ │ ├── monitorAlarm.tsx │ │ │ │ │ ├── monitorView.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── viewHive.tsx │ │ │ │ │ ├── viewList.tsx │ │ │ │ │ └── viewModal.tsx │ │ │ ├── api │ │ │ │ ├── data │ │ │ │ │ └── route.ts │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ └── view.ts │ │ │ ├── components │ │ │ │ ├── charts │ │ │ │ │ ├── barChart.tsx │ │ │ │ │ ├── customTooltips.tsx │ │ │ │ │ ├── dimensionFilter.tsx │ │ │ │ │ ├── dimensionTable.tsx │ │ │ │ │ ├── eventBar.tsx │ │ │ │ │ ├── guageChart.tsx │ │ │ │ │ ├── hexgrid.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── lineChart.tsx │ │ │ │ │ ├── singleValue.tsx │ │ │ │ │ └── stackedBarChart.tsx │ │ │ │ ├── codeEditor │ │ │ │ │ └── index.tsx │ │ │ │ ├── operate-drawer │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── treeSelector │ │ │ │ │ └── index.tsx │ │ │ ├── constants │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ ├── menu.json │ │ │ │ └── view.ts │ │ │ ├── context │ │ │ │ └── common.tsx │ │ │ ├── hooks │ │ │ │ ├── event.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── integration │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── common │ │ │ │ │ │ ├── activeMQFormItems.tsx │ │ │ │ │ │ ├── assetMenuItems.tsx │ │ │ │ │ │ ├── clickHouseExporterFormItems.tsx │ │ │ │ │ │ ├── commonColumns.tsx │ │ │ │ │ │ ├── db2ExporterFormItems.tsx │ │ │ │ │ │ ├── dmExporterFormItems.tsx │ │ │ │ │ │ ├── elasticSearchFormItems.tsx │ │ │ │ │ │ ├── gBase8aExporterFormItems.tsx │ │ │ │ │ │ ├── getObjectConfig.ts │ │ │ │ │ │ ├── greenPlumExporterFormItems.tsx │ │ │ │ │ │ ├── hostFormItems.tsx │ │ │ │ │ │ ├── ipmiCommonFormItems.tsx │ │ │ │ │ │ ├── jmxCommonFormItems.tsx │ │ │ │ │ │ ├── kafkaExporterFormItems.tsx │ │ │ │ │ │ ├── kingBaseExporterFormItems.tsx │ │ │ │ │ │ ├── mongoDBFormItems.tsx │ │ │ │ │ │ ├── mssqlFormItems.tsx │ │ │ │ │ │ ├── mysqlFormItems.tsx │ │ │ │ │ │ ├── openGaussExporterFormItems.tsx │ │ │ │ │ │ ├── oracleFormItems.tsx │ │ │ │ │ │ ├── postgresFormItems.tsx │ │ │ │ │ │ ├── rabbitMQFormItems.tsx │ │ │ │ │ │ ├── redisFormItems.tsx │ │ │ │ │ │ ├── snmpCommonFormItems.tsx │ │ │ │ │ │ ├── tcpFormItems.tsx │ │ │ │ │ │ ├── tomcatFormItems.tsx │ │ │ │ │ │ ├── vCenterFormItems.tsx │ │ │ │ │ │ ├── vastBaseExporterFormItems.tsx │ │ │ │ │ │ └── zookeeperFormItems.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── jsonModal.md │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── containerManagement │ │ │ │ │ │ │ ├── docker.tsx │ │ │ │ │ │ │ └── dockerContainer.tsx │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── clickHouse.tsx │ │ │ │ │ │ │ ├── db2.tsx │ │ │ │ │ │ │ ├── dm.tsx │ │ │ │ │ │ │ ├── elasticSearch.tsx │ │ │ │ │ │ │ ├── gBase8a.tsx │ │ │ │ │ │ │ ├── greenPlum.tsx │ │ │ │ │ │ │ ├── kingBase.tsx │ │ │ │ │ │ │ ├── mongoDB.tsx │ │ │ │ │ │ │ ├── mssql.tsx │ │ │ │ │ │ │ ├── mysql.tsx │ │ │ │ │ │ │ ├── openGauss.tsx │ │ │ │ │ │ │ ├── oracle.tsx │ │ │ │ │ │ │ ├── postgres.tsx │ │ │ │ │ │ │ ├── redis.tsx │ │ │ │ │ │ │ └── vastBase.tsx │ │ │ │ │ │ ├── hardwareDevice │ │ │ │ │ │ │ ├── bastionHost.tsx │ │ │ │ │ │ │ ├── hardware.tsx │ │ │ │ │ │ │ └── storage.tsx │ │ │ │ │ │ ├── k8s │ │ │ │ │ │ │ ├── cluster.tsx │ │ │ │ │ │ │ ├── node.tsx │ │ │ │ │ │ │ └── pod.tsx │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ │ ├── activeMQ.tsx │ │ │ │ │ │ │ ├── apache.tsx │ │ │ │ │ │ │ ├── consul.tsx │ │ │ │ │ │ │ ├── jboss.tsx │ │ │ │ │ │ │ ├── jetty.tsx │ │ │ │ │ │ │ ├── kafka.tsx │ │ │ │ │ │ │ ├── minio.tsx │ │ │ │ │ │ │ ├── nginx.tsx │ │ │ │ │ │ │ ├── rabbitMQ.tsx │ │ │ │ │ │ │ ├── tomcat.tsx │ │ │ │ │ │ │ ├── tongWeb.tsx │ │ │ │ │ │ │ ├── webLogic.tsx │ │ │ │ │ │ │ └── zookeeper.tsx │ │ │ │ │ │ ├── networkDevice │ │ │ │ │ │ │ ├── detectionDevice.tsx │ │ │ │ │ │ │ ├── firewall.tsx │ │ │ │ │ │ │ ├── loadbalance.tsx │ │ │ │ │ │ │ ├── router.tsx │ │ │ │ │ │ │ ├── scanningDevice.tsx │ │ │ │ │ │ │ └── switch.tsx │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── host.tsx │ │ │ │ │ │ ├── other │ │ │ │ │ │ │ ├── jvm.tsx │ │ │ │ │ │ │ └── snmpTrap.tsx │ │ │ │ │ │ ├── tencentCloud │ │ │ │ │ │ │ ├── cvm.tsx │ │ │ │ │ │ │ └── tcp.tsx │ │ │ │ │ │ ├── vmWare │ │ │ │ │ │ │ ├── dataStorage.tsx │ │ │ │ │ │ │ ├── esxi.tsx │ │ │ │ │ │ │ ├── vCenter.tsx │ │ │ │ │ │ │ └── vm.tsx │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── ping.tsx │ │ │ │ │ │ │ └── website.tsx │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── containerManagement │ │ │ │ │ │ │ └── dockerTelegraf.tsx │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── clickHouseExporter.tsx │ │ │ │ │ │ │ ├── clickHouseTelegraf.tsx │ │ │ │ │ │ │ ├── db2Exporter.tsx │ │ │ │ │ │ │ ├── dmExporter.tsx │ │ │ │ │ │ │ ├── elasticSearchTelegraf.tsx │ │ │ │ │ │ │ ├── gBase8aExporter.tsx │ │ │ │ │ │ │ ├── greenPlumExporter.tsx │ │ │ │ │ │ │ ├── kingBaseExporter.tsx │ │ │ │ │ │ │ ├── mongoDBTelegraf.tsx │ │ │ │ │ │ │ ├── mssqlTelegraf.tsx │ │ │ │ │ │ │ ├── mysqlTelegraf .tsx │ │ │ │ │ │ │ ├── openGaussExporter.tsx │ │ │ │ │ │ │ ├── oracleExporter.tsx │ │ │ │ │ │ │ ├── postgresTelegraf.tsx │ │ │ │ │ │ │ ├── redisTelegraf.tsx │ │ │ │ │ │ │ └── vastBaseExporter.tsx │ │ │ │ │ │ ├── hardwareDevice │ │ │ │ │ │ │ ├── hardwareIpmi.tsx │ │ │ │ │ │ │ ├── hardwareSnmp.tsx │ │ │ │ │ │ │ └── storageIpmi.tsx │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ │ ├── activeMQTelegraf.tsx │ │ │ │ │ │ │ ├── apacheTelegraf.tsx │ │ │ │ │ │ │ ├── consulTelegraf.tsx │ │ │ │ │ │ │ ├── jbossJmx.tsx │ │ │ │ │ │ │ ├── jettyJmx.tsx │ │ │ │ │ │ │ ├── kafkaExporter.tsx │ │ │ │ │ │ │ ├── minioBkpull.tsx │ │ │ │ │ │ │ ├── nginxTelegraf.tsx │ │ │ │ │ │ │ ├── rabbitMQTelegraf.tsx │ │ │ │ │ │ │ ├── tomcatTelegraf.tsx │ │ │ │ │ │ │ ├── tongWeb6Jmx.tsx │ │ │ │ │ │ │ ├── tongWeb7Jmx.tsx │ │ │ │ │ │ │ ├── webLogicJmx.tsx │ │ │ │ │ │ │ └── zookeeperTelegraf.tsx │ │ │ │ │ │ ├── networkDevice │ │ │ │ │ │ │ ├── firewallSnmp.tsx │ │ │ │ │ │ │ ├── loadbalanceSnmp.tsx │ │ │ │ │ │ │ ├── routerSnmp.tsx │ │ │ │ │ │ │ └── switchSnmp.tsx │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── hostTelegraf.tsx │ │ │ │ │ │ ├── other │ │ │ │ │ │ │ ├── jvmJmx.tsx │ │ │ │ │ │ │ └── snmpTrapTelegraf.tsx │ │ │ │ │ │ ├── tencentCloud │ │ │ │ │ │ │ └── tcpTelegraf.tsx │ │ │ │ │ │ ├── vmWare │ │ │ │ │ │ │ └── vCenterTelegraf.tsx │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── pingTelegraf.tsx │ │ │ │ │ │ │ └── websiteTelegraf.tsx │ │ │ │ │ ├── useConfigRenderer.tsx │ │ │ │ │ ├── useDataMapper.ts │ │ │ │ │ └── usePluginFromJson.tsx │ │ │ │ └── view.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── systemLogo.png │ │ │ │ └── versions │ │ │ │ │ └── monitor │ │ │ │ │ ├── en │ │ │ │ │ ├── V3.0.md │ │ │ │ │ └── V3.1.md │ │ │ │ │ └── zh │ │ │ │ │ ├── V3.0.md │ │ │ │ │ └── V3.1.md │ │ │ ├── styles │ │ │ │ └── index.css │ │ │ ├── types │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration.ts │ │ │ │ ├── search.ts │ │ │ │ └── view.ts │ │ │ └── utils │ │ │ │ ├── common.tsx │ │ │ │ └── integration.tsx │ │ ├── no-permission │ │ │ └── page.tsx │ │ ├── node-manager │ │ │ ├── (pages) │ │ │ │ ├── cloudregion │ │ │ │ │ ├── cloudregionModal.tsx │ │ │ │ │ ├── deployModal.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── mainlayout │ │ │ │ │ │ └── layout.tsx │ │ │ │ │ ├── node │ │ │ │ │ │ ├── batchEditModal.tsx │ │ │ │ │ │ ├── collectorDetailDrawer.tsx │ │ │ │ │ │ ├── collectorModal.tsx │ │ │ │ │ │ ├── configModal.tsx │ │ │ │ │ │ ├── controllerInstall.tsx │ │ │ │ │ │ ├── controllerTable.tsx │ │ │ │ │ │ ├── controllerUninstall.tsx │ │ │ │ │ │ ├── editNode.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── installGuidance.tsx │ │ │ │ │ │ ├── manualInstall.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── searchCombination.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── variable │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── variableModal.tsx │ │ │ │ ├── collector │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── controller │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── api │ │ │ │ ├── index.ts │ │ │ │ ├── useCloudRegionApi.ts │ │ │ │ ├── useCollectorApi.ts │ │ │ │ ├── useConfigApi.ts │ │ │ │ ├── useControllerApi.ts │ │ │ │ ├── useNodeApi.ts │ │ │ │ ├── usePackageApi.ts │ │ │ │ └── useVariableApi.ts │ │ │ ├── components │ │ │ │ ├── autocard │ │ │ │ │ └── index.tsx │ │ │ │ ├── codeEditor │ │ │ │ │ └── index.tsx │ │ │ │ ├── operate-drawer │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── sidecar │ │ │ │ │ ├── collectorModal.tsx │ │ │ │ │ └── detail.tsx │ │ │ ├── constants │ │ │ │ ├── cloudregion.ts │ │ │ │ ├── collector.ts │ │ │ │ └── menu.json │ │ │ ├── context │ │ │ │ └── common.tsx │ │ │ ├── hooks │ │ │ │ ├── collector.tsx │ │ │ │ ├── configuration.tsx │ │ │ │ ├── controller.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── node.tsx │ │ │ │ ├── useCloudRegionId.ts │ │ │ │ └── variable.tsx │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── md │ │ │ │ ├── telegraf_linux.md │ │ │ │ └── telegraf_windows.md │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ └── versions │ │ │ │ │ └── node-manager │ │ │ │ │ ├── en │ │ │ │ │ ├── V3.0.md │ │ │ │ │ └── V3.1.md │ │ │ │ │ └── zh │ │ │ │ │ ├── V3.0.md │ │ │ │ │ └── V3.1.md │ │ │ ├── styles │ │ │ │ └── index.css │ │ │ ├── types │ │ │ │ ├── cloudregion.ts │ │ │ │ ├── collector.ts │ │ │ │ ├── controller.ts │ │ │ │ ├── index.ts │ │ │ │ └── node.ts │ │ │ └── utils │ │ │ │ └── safeStorage.ts │ │ ├── not-found.tsx │ │ ├── ops-analysis │ │ │ ├── (pages) │ │ │ │ ├── page.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── dataSource │ │ │ │ │ │ ├── operateModal.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── namespace │ │ │ │ │ │ ├── operateModal.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── view │ │ │ │ │ ├── architecture │ │ │ │ │ ├── components │ │ │ │ │ │ └── toolbar.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── dashBoard │ │ │ │ │ ├── components │ │ │ │ │ │ ├── chartLegend.tsx │ │ │ │ │ │ ├── viewConfig.tsx │ │ │ │ │ │ ├── viewSelector.tsx │ │ │ │ │ │ └── widgetWrapper.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── comBar.tsx │ │ │ │ │ │ ├── comLine.tsx │ │ │ │ │ │ └── comPie.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── topology │ │ │ │ │ ├── components │ │ │ │ │ ├── chartNode.tsx │ │ │ │ │ ├── contextMenu.tsx │ │ │ │ │ ├── edgeConfPanel.tsx │ │ │ │ │ ├── nodeConfPanel.tsx │ │ │ │ │ ├── nodeSidebar.tsx │ │ │ │ │ └── toolbar.tsx │ │ │ │ │ ├── constants │ │ │ │ │ └── nodeDefaults.ts │ │ │ │ │ ├── hooks │ │ │ │ │ ├── useGraphData.ts │ │ │ │ │ ├── useGraphHistory.ts │ │ │ │ │ ├── useGraphInteractions.ts │ │ │ │ │ ├── useGraphOperations.ts │ │ │ │ │ └── useTopologyState.ts │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils │ │ │ │ │ ├── dataTreeUtils.ts │ │ │ │ │ ├── registerEdge.ts │ │ │ │ │ ├── registerNode.ts │ │ │ │ │ ├── thresholdUtils.ts │ │ │ │ │ └── topologyUtils.ts │ │ │ ├── api │ │ │ │ ├── architecture.ts │ │ │ │ ├── dashBoard.ts │ │ │ │ ├── dataSource.ts │ │ │ │ ├── index.ts │ │ │ │ ├── namespace.ts │ │ │ │ └── topology.ts │ │ │ ├── components │ │ │ │ ├── dataSourceSelect.tsx │ │ │ │ ├── paramsConfig.tsx │ │ │ │ └── sidebar.tsx │ │ │ ├── constants │ │ │ │ ├── common.ts │ │ │ │ ├── menu.json │ │ │ │ └── threshold.ts │ │ │ ├── context │ │ │ │ └── common.tsx │ │ │ ├── hooks │ │ │ │ └── useDataSource.ts │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── types │ │ │ │ ├── architecture.ts │ │ │ │ ├── dashBoard.ts │ │ │ │ ├── dataSource.ts │ │ │ │ ├── index.ts │ │ │ │ ├── namespace.ts │ │ │ │ └── topology.ts │ │ │ └── utils │ │ │ │ ├── chartDataTransform.ts │ │ │ │ ├── common.ts │ │ │ │ ├── permissionChecker.ts │ │ │ │ ├── randomColorForChart.ts │ │ │ │ └── widgetDataTransform.ts │ │ ├── ops-console │ │ │ ├── (pages) │ │ │ │ └── home │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ ├── constants │ │ │ │ └── menu.json │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ └── public │ │ │ │ ├── console_bg.jpg │ │ │ │ └── console_bg_dark.jpg │ │ ├── opspilot │ │ │ ├── (pages) │ │ │ │ ├── knowledge │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── documents │ │ │ │ │ │ │ ├── graph │ │ │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ ├── modify │ │ │ │ │ │ │ │ ├── customQAForm.tsx │ │ │ │ │ │ │ │ ├── customTextForm.tsx │ │ │ │ │ │ │ │ ├── extractionStep.tsx │ │ │ │ │ │ │ │ ├── localFileUpload.tsx │ │ │ │ │ │ │ │ ├── modify.module.scss │ │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ │ ├── preprocessStep.tsx │ │ │ │ │ │ │ │ ├── qaPairForm.tsx │ │ │ │ │ │ │ │ └── webLinkForm.tsx │ │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ │ ├── qapair │ │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── selectSourceModal.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── modifyKnowledge.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── preview │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── provider │ │ │ │ │ └── page.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── manage │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── quotaModal.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── quota │ │ │ │ │ │ ├── customProgressBar.tsx │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── skill │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── invocationLogs │ │ │ │ │ │ │ ├── collapsibleSection.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ ├── modifyRuleModal.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── studio │ │ │ │ │ ├── chat │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── channel │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── logInfo │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── statistics │ │ │ │ │ │ │ ├── index.module.scss │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── tool │ │ │ │ │ └── page.tsx │ │ │ ├── api │ │ │ │ ├── docFile │ │ │ │ │ └── route.ts │ │ │ │ ├── knowledge.ts │ │ │ │ ├── provider.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── skill.ts │ │ │ │ ├── studio.ts │ │ │ │ ├── tool.ts │ │ │ │ └── webhook │ │ │ │ │ └── route.ts │ │ │ ├── components │ │ │ │ ├── ai-editor │ │ │ │ │ └── index.tsx │ │ │ │ ├── block-result │ │ │ │ │ └── index.tsx │ │ │ │ ├── chatflow │ │ │ │ │ ├── ChatflowEditor.module.scss │ │ │ │ │ ├── ChatflowEditor.tsx │ │ │ │ │ ├── ExecuteNodeDrawer.tsx │ │ │ │ │ ├── NodeConfigDrawer.tsx │ │ │ │ │ ├── NodeConfigForm.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useKeyValueRows.ts │ │ │ │ │ │ ├── useNodeConfigData.ts │ │ │ │ │ │ ├── useNodeDeletion.ts │ │ │ │ │ │ ├── useNodeDrop.ts │ │ │ │ │ │ └── useNodeExecution.ts │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── BaseNode.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── formatConfigInfo.ts │ │ │ │ ├── chunk-detail │ │ │ │ │ └── index.tsx │ │ │ │ ├── custom-chat-sse │ │ │ │ │ ├── aguiMessageHandler.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useReferenceHandler.ts │ │ │ │ │ │ ├── useSSEStream.ts │ │ │ │ │ │ └── useSendMessage.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── toolCallRenderer.tsx │ │ │ │ ├── custom-chat │ │ │ │ │ ├── actions.tsx │ │ │ │ │ ├── annotationModal.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── knowledgeBase.tsx │ │ │ │ ├── entity-card │ │ │ │ │ └── index.tsx │ │ │ │ ├── entity-list │ │ │ │ │ └── index.tsx │ │ │ │ ├── generic-modify-modal │ │ │ │ │ └── index.tsx │ │ │ │ ├── knowledge │ │ │ │ │ ├── EdgeDetailDrawer.tsx │ │ │ │ │ ├── NodeDetailDrawer.tsx │ │ │ │ │ ├── actionButtons.tsx │ │ │ │ │ ├── commonForm.tsx │ │ │ │ │ ├── config.tsx │ │ │ │ │ ├── generateQAPairModal.tsx │ │ │ │ │ ├── knowledgeGraphPage.tsx │ │ │ │ │ ├── knowledgeGraphView.tsx │ │ │ │ │ ├── qaDetailDrawer.tsx │ │ │ │ │ ├── qaEditDrawer.tsx │ │ │ │ │ └── tableColumns.tsx │ │ │ │ ├── oneline-ellipsis-intro │ │ │ │ │ └── index.tsx │ │ │ │ ├── provider │ │ │ │ │ ├── configModal.tsx │ │ │ │ │ ├── grid.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── modelGroupModal.tsx │ │ │ │ │ ├── modelTree.tsx │ │ │ │ │ └── skeleton.tsx │ │ │ │ ├── skill │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── knowledgeBaseSelector.tsx │ │ │ │ │ ├── operateModal.tsx │ │ │ │ │ ├── skillCard.tsx │ │ │ │ │ └── toolSelector.tsx │ │ │ │ ├── studio │ │ │ │ │ ├── chatflowSettings.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ ├── operateModal.tsx │ │ │ │ │ ├── proChat.tsx │ │ │ │ │ └── studioCard.tsx │ │ │ │ ├── task-progress │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── tool │ │ │ │ │ ├── urlInputWithButton.tsx │ │ │ │ │ └── variableList.tsx │ │ │ ├── constants │ │ │ │ ├── chatflow.ts │ │ │ │ ├── knowledge.ts │ │ │ │ ├── menu.json │ │ │ │ └── provider.ts │ │ │ ├── context │ │ │ │ └── documentsContext.tsx │ │ │ ├── file-viewer.d.ts │ │ │ ├── hooks │ │ │ │ ├── useContentDrawer.ts │ │ │ │ ├── useFetchConfigData.ts │ │ │ │ ├── useGroups.ts │ │ │ │ └── useUnsavedChanges.ts │ │ │ ├── img │ │ │ │ ├── chapter_extraction.png │ │ │ │ ├── fixed_chunk.png │ │ │ │ ├── full_text_extraction.png │ │ │ │ ├── lats_agent.png │ │ │ │ ├── none_chunk.png │ │ │ │ ├── overlap_chunk.png │ │ │ │ ├── page_extraction.png │ │ │ │ ├── plan_agent.png │ │ │ │ ├── rag_agent.png │ │ │ │ ├── reAct_agent.png │ │ │ │ ├── row_level_extraction.png │ │ │ │ ├── semantic_chunk-en.png │ │ │ │ ├── semantic_chunk-zh.png │ │ │ │ └── worksheet_extraction.png │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── banner_bg_1.jpg │ │ │ │ ├── banner_bg_2.jpg │ │ │ │ ├── models │ │ │ │ │ ├── Alibaba.svg │ │ │ │ │ ├── BAAI.svg │ │ │ │ │ ├── Baichuan.svg │ │ │ │ │ ├── Baidu.svg │ │ │ │ │ ├── ChatGLM.svg │ │ │ │ │ ├── CodeGeeX.svg │ │ │ │ │ ├── DeepSeek.svg │ │ │ │ │ ├── Default.svg │ │ │ │ │ ├── GPT.svg │ │ │ │ │ ├── Gemma.svg │ │ │ │ │ ├── HuggingFace.svg │ │ │ │ │ ├── Intern.svg │ │ │ │ │ ├── Jina.svg │ │ │ │ │ ├── Meta.svg │ │ │ │ │ ├── MetaAI.svg │ │ │ │ │ ├── Mistral.svg │ │ │ │ │ ├── Qwen.svg │ │ │ │ │ ├── Yi.svg │ │ │ │ │ └── Zhipu.svg │ │ │ │ ├── module_api │ │ │ │ │ ├── en │ │ │ │ │ │ ├── knowledge_api.md │ │ │ │ │ │ ├── skill_api.md │ │ │ │ │ │ └── studio_api.md │ │ │ │ │ └── zh │ │ │ │ │ │ ├── knowledge_api.md │ │ │ │ │ │ ├── skill_api.md │ │ │ │ │ │ └── studio_api.md │ │ │ │ ├── tours │ │ │ │ │ ├── knowledge_tour.png │ │ │ │ │ └── model_tour.png │ │ │ │ └── versions │ │ │ │ │ └── opspilot │ │ │ │ │ ├── en │ │ │ │ │ ├── 3.0.md │ │ │ │ │ ├── 3.1.md │ │ │ │ │ ├── 3.2.md │ │ │ │ │ ├── 3.3.md │ │ │ │ │ ├── 3.4.md │ │ │ │ │ ├── 3.5.md │ │ │ │ │ ├── 3.6.md │ │ │ │ │ ├── 3.7.md │ │ │ │ │ └── 3.8.md │ │ │ │ │ └── zh │ │ │ │ │ ├── 3.0.md │ │ │ │ │ ├── 3.1.md │ │ │ │ │ ├── 3.2.md │ │ │ │ │ ├── 3.3.md │ │ │ │ │ ├── 3.4.md │ │ │ │ │ ├── 3.5.md │ │ │ │ │ ├── 3.6.md │ │ │ │ │ ├── 3.7.md │ │ │ │ │ └── 3.8.md │ │ │ ├── styles │ │ │ │ └── common.module.scss │ │ │ ├── types │ │ │ │ ├── chat.ts │ │ │ │ ├── global.ts │ │ │ │ ├── knowledge.ts │ │ │ │ ├── provider.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── skill.ts │ │ │ │ ├── studio.ts │ │ │ │ └── tool.ts │ │ │ └── utils │ │ │ │ ├── extractionUtils.ts │ │ │ │ ├── graphUtils.ts │ │ │ │ ├── knowledgeBaseUtils.ts │ │ │ │ ├── logUtils.ts │ │ │ │ └── upload.ts │ │ ├── page.tsx │ │ ├── playground │ │ │ ├── (pages) │ │ │ │ ├── home │ │ │ │ │ ├── components │ │ │ │ │ │ ├── AnomalyDetection.tsx │ │ │ │ │ │ ├── Classification.tsx │ │ │ │ │ │ ├── HomePage.tsx │ │ │ │ │ │ ├── LogClustering.tsx │ │ │ │ │ │ ├── TimeseriesPredict.tsx │ │ │ │ │ │ └── index.module.scss │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── page.tsx │ │ │ │ └── manage │ │ │ │ │ ├── categoryManageModal.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── sampleManageModal.tsx │ │ │ ├── api │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ └── charts │ │ │ │ │ ├── customTooltips.tsx │ │ │ │ │ ├── dimensionFilter.tsx │ │ │ │ │ ├── dimensionTable.tsx │ │ │ │ │ ├── index.module.scss │ │ │ │ │ └── lineChart.tsx │ │ │ ├── constants │ │ │ │ ├── index.ts │ │ │ │ └── menu.json │ │ │ ├── hooks │ │ │ │ └── useModelExperience.ts │ │ │ ├── locales │ │ │ │ ├── en.json │ │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ │ ├── anomaly_detection_1.png │ │ │ │ ├── anomaly_detection_2.png │ │ │ │ ├── anomaly_detection_3.png │ │ │ │ ├── anomaly_detection_4.png │ │ │ │ └── pg_banner_1.png │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ └── common.ts │ │ └── system-manager │ │ │ ├── (pages) │ │ │ ├── application │ │ │ │ ├── manage │ │ │ │ │ ├── data │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── role │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── permissionTable.tsx │ │ │ │ │ │ └── roleList.tsx │ │ │ │ └── page.tsx │ │ │ ├── channel │ │ │ │ ├── detail │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── settings │ │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── security │ │ │ │ ├── auth-sources │ │ │ │ │ └── page.tsx │ │ │ │ ├── error-logs │ │ │ │ │ └── page.tsx │ │ │ │ ├── login-logs │ │ │ │ │ └── page.tsx │ │ │ │ ├── operation-logs │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── settings │ │ │ │ │ └── page.tsx │ │ │ ├── settings │ │ │ │ ├── key │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── user │ │ │ │ ├── adminstrator │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── structure │ │ │ │ ├── index.module.scss │ │ │ │ ├── page.tsx │ │ │ │ └── userModal.tsx │ │ │ ├── .gitkeep │ │ │ ├── api │ │ │ ├── application │ │ │ │ └── index.ts │ │ │ ├── channel │ │ │ │ └── index.ts │ │ │ ├── group │ │ │ │ └── index.ts │ │ │ ├── security │ │ │ │ └── index.ts │ │ │ ├── settings │ │ │ │ └── index.ts │ │ │ └── user │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ ├── application │ │ │ │ ├── menu │ │ │ │ │ ├── groupCard.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useDragDrop.ts │ │ │ │ │ │ └── useMenuConfig.ts │ │ │ │ │ ├── pageCard.tsx │ │ │ │ │ └── sourceTree.tsx │ │ │ │ ├── modify-applicaiton │ │ │ │ │ └── index.tsx │ │ │ │ ├── permission │ │ │ │ │ ├── moduleContent.tsx │ │ │ │ │ ├── subModuleTabs.tsx │ │ │ │ │ ├── tableCells.tsx │ │ │ │ │ └── tabs.module.scss │ │ │ │ └── permissionRule.tsx │ │ │ ├── channel │ │ │ │ └── channelModal.tsx │ │ │ ├── group │ │ │ │ └── GroupEditModal.tsx │ │ │ ├── introduction-info │ │ │ │ ├── index.module.scss │ │ │ │ └── index.tsx │ │ │ ├── security │ │ │ │ ├── authSettings.tsx │ │ │ │ ├── authSourceFormConfig.tsx │ │ │ │ ├── loginLogs.tsx │ │ │ │ └── sourcesList.tsx │ │ │ └── user │ │ │ │ ├── GroupTree.tsx │ │ │ │ ├── passwordModal.tsx │ │ │ │ ├── permissionModal.tsx │ │ │ │ ├── roleTransfer.tsx │ │ │ │ └── tableColumns.tsx │ │ │ ├── constants │ │ │ ├── application.ts │ │ │ ├── authSources.ts │ │ │ ├── menu.json │ │ │ └── userDropdowns.ts │ │ │ ├── img │ │ │ └── wechat_auth.png │ │ │ ├── locales │ │ │ ├── en.json │ │ │ └── zh.json │ │ │ ├── package.json │ │ │ ├── page.tsx │ │ │ ├── public │ │ │ └── .gitkeep │ │ │ ├── styles │ │ │ └── common.module.scss │ │ │ ├── types │ │ │ ├── application.ts │ │ │ ├── channel.ts │ │ │ ├── group.ts │ │ │ ├── menu.ts │ │ │ ├── permission.ts │ │ │ ├── security.ts │ │ │ └── user.ts │ │ │ └── utils │ │ │ ├── authSourceUtils.ts │ │ │ └── index.ts │ ├── components │ │ ├── collapse │ │ │ └── index.tsx │ │ ├── content-drawer │ │ │ └── index.tsx │ │ ├── custom-cascader │ │ │ └── index.tsx │ │ ├── custom-table │ │ │ ├── fieldSettingModal.tsx │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── dynamic-form │ │ │ ├── editPasswordField.tsx │ │ │ └── index.tsx │ │ ├── ellipsis-with-tooltip │ │ │ └── index.tsx │ │ ├── entity-list │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── group-tree-select │ │ │ ├── index.tsx │ │ │ ├── strategies.ts │ │ │ └── types.ts │ │ ├── heat-map │ │ │ └── index.tsx │ │ ├── icon │ │ │ └── index.tsx │ │ ├── markdown │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── multi-cascade-panel │ │ │ └── index.tsx │ │ ├── notifications │ │ │ └── index.tsx │ │ ├── operate-modal │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── page-layout │ │ │ └── index.tsx │ │ ├── password │ │ │ └── index.tsx │ │ ├── permission │ │ │ └── index.tsx │ │ ├── redirect-menu │ │ │ └── index.tsx │ │ ├── spin │ │ │ └── index.tsx │ │ ├── sub-layout │ │ │ ├── index.module.scss │ │ │ ├── index.tsx │ │ │ └── side-menu.tsx │ │ ├── theme │ │ │ └── index.tsx │ │ ├── time-selector │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── top-menu │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── top-section │ │ │ └── index.tsx │ │ ├── user-avatar │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ └── user-info │ │ │ ├── index.tsx │ │ │ ├── passwordModal.tsx │ │ │ ├── userInformation.tsx │ │ │ └── versionModal.tsx │ ├── constants │ │ ├── authOptions.ts │ │ ├── dayjsLocales.ts │ │ ├── locales.ts │ │ ├── shared.ts │ │ └── theme.ts │ ├── context │ │ ├── auth.tsx │ │ ├── client.tsx │ │ ├── locale.tsx │ │ ├── menus.tsx │ │ ├── permissions.tsx │ │ ├── theme.tsx │ │ └── userInfo.tsx │ ├── hooks │ │ ├── useCopy.ts │ │ ├── useLocalizedTime.ts │ │ ├── usePermissions.ts │ │ ├── usePolling.ts │ │ └── useRedirectFirstChild.ts │ ├── lib │ │ ├── auth.ts │ │ └── wechatProvider.ts │ ├── locales │ │ ├── en.json │ │ └── zh.json │ ├── stories │ │ ├── collapse.stories.tsx │ │ ├── content-draw.stories.tsx │ │ ├── custom-cascader.stories.tsx │ │ ├── custom-table.stories.tsx │ │ ├── dynamic-form.stories.tsx │ │ ├── ellipsis-with-tooltip.stories.tsx │ │ ├── entity-list.stories.tsx │ │ ├── group-tree-select.stories.tsx │ │ ├── icon.stories.tsx │ │ ├── operate-modal.stories.tsx │ │ ├── page-layout.stories.tsx │ │ ├── permission.stories.tsx │ │ ├── spin.stories.tsx │ │ ├── sub-layout.stories.tsx │ │ ├── theme.stories.tsx │ │ ├── time-selector.stories.tsx │ │ ├── top-menu.stories.tsx │ │ ├── top-section.stories.tsx │ │ └── user-info.stories.tsx │ ├── styles │ │ └── globals.css │ ├── types │ │ ├── index.ts │ │ └── json.d.ts │ └── utils │ │ ├── crossDomainAuth.ts │ │ ├── dynamicsMerged.mjs │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── menuHelpers.ts │ │ ├── organizationTree.ts │ │ ├── request.ts │ │ └── route.ts ├── tailwind.config.ts └── tsconfig.json └── webchat ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INTEGRATION.md ├── LICENSE ├── README.md ├── package.json ├── packages ├── webchat-core │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── sessionManager.ts │ │ ├── sse.ts │ │ ├── stateMachine.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json ├── webchat-demo │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── chat-wrapper.tsx │ │ ├── globals.css │ │ ├── layout.css │ │ ├── layout.tsx │ │ ├── page.css │ │ └── page.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── bot.png │ │ └── user.png │ ├── tailwind.config.js │ └── tsconfig.json └── webchat-ui │ ├── BROWSER_INTEGRATION.md │ ├── dist │ └── browser │ │ ├── style.css │ │ ├── webchat.js │ │ └── webchat.js.map │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── Chat.tsx │ ├── FloatingButton.tsx │ ├── agui.ts │ ├── assets │ │ ├── bot.png │ │ └── user.png │ ├── browser-entry.ts │ ├── components │ │ ├── ConfirmDialog.tsx │ │ ├── MessageActions.tsx │ │ ├── MessageBubble.tsx │ │ └── ToolCallDisplay.tsx │ ├── hooks │ │ └── useMessageHandlers.ts │ ├── index.ts │ └── styles │ │ ├── chat.css │ │ ├── floating-button.css │ │ └── tailwind.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── vite.config.ts │ └── vite.config.umd.ts ├── start.sh ├── test.html ├── tsconfig.json └── vite.config.ts /.github/prompts/code-review.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/.github/prompts/code-review.prompt.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/Readme.md -------------------------------------------------------------------------------- /agents/fusion-collector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/fusion-collector/.gitignore -------------------------------------------------------------------------------- /agents/fusion-collector/misc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/fusion-collector/misc/install.sh -------------------------------------------------------------------------------- /agents/fusion-collector/telegraf/startup.sh: -------------------------------------------------------------------------------- 1 | supervisord -n -------------------------------------------------------------------------------- /agents/nats-executor/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | go.sum 3 | nats-executor -------------------------------------------------------------------------------- /agents/nats-executor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/go.mod -------------------------------------------------------------------------------- /agents/nats-executor/local/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/local/entity.go -------------------------------------------------------------------------------- /agents/nats-executor/local/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/local/executor.go -------------------------------------------------------------------------------- /agents/nats-executor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/main.go -------------------------------------------------------------------------------- /agents/nats-executor/ssh/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/ssh/entity.go -------------------------------------------------------------------------------- /agents/nats-executor/ssh/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/ssh/executor.go -------------------------------------------------------------------------------- /agents/nats-executor/utils/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/utils/nats.go -------------------------------------------------------------------------------- /agents/nats-executor/utils/unzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/nats-executor/utils/unzip.go -------------------------------------------------------------------------------- /agents/stargazer/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv -------------------------------------------------------------------------------- /agents/stargazer/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/.env.example -------------------------------------------------------------------------------- /agents/stargazer/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /agents/stargazer/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /agents/stargazer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/Makefile -------------------------------------------------------------------------------- /agents/stargazer/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/api/__init__.py -------------------------------------------------------------------------------- /agents/stargazer/api/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/api/collect.py -------------------------------------------------------------------------------- /agents/stargazer/api/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/api/example.py -------------------------------------------------------------------------------- /agents/stargazer/api/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/api/health.py -------------------------------------------------------------------------------- /agents/stargazer/api/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/api/monitor.py -------------------------------------------------------------------------------- /agents/stargazer/asserts/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/asserts/banner.txt -------------------------------------------------------------------------------- /agents/stargazer/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/__init__.py -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/cmp/__init__.py -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/cloud_object/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/aliyunsdkasapi/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0" 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/aliyunsdkasapi/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/aliyunsdkasapi/auth/composer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/aliyunsdkasapi/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/TKE_Cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/aliyun/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/amazonaws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/cas/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/easystack/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/qingcloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/qingcloud/qingcloud_format_utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/tdsql/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/resource_format/vmware/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/sync_cloud_resource/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/amp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/amp/v20180807/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/amp/v20190911/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/bms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/bms/v20180813/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cbs/v20170312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cfs/v20180416/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cfs/v20190719/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/ckafka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/ckafka/v20190819/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/clb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/clb/v20180317/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/common/exception/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/common/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/common/profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/csp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/csp/v20200107/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/cvm/v20170312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/dcdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/dcdb/v20180411/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/mariadb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/mariadb/v20170312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/mongodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/mongodb/v20180408/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/mongodb/v20190725/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/monitor/v20170312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/monitor/v20180724/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/redis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/redis/v20180412/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tcr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tcr/v20190924/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tke/v20180525/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tsf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/tsf/v20180326/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/vpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/cloud_apis/resource_apis/tcecloud/vpc/v20170312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/cmp/driver.py -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/cmp/models.py -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/cmp/settings.py -------------------------------------------------------------------------------- /agents/stargazer/common/cmp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/common/cmp/utils.py -------------------------------------------------------------------------------- /agents/stargazer/config.yml: -------------------------------------------------------------------------------- 1 | CORS_ORIGINS: "*" 2 | -------------------------------------------------------------------------------- /agents/stargazer/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/core/config.py -------------------------------------------------------------------------------- /agents/stargazer/core/nats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/core/nats.py -------------------------------------------------------------------------------- /agents/stargazer/core/ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/core/ssh_client.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/__init__.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/aliyun_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/aliyun_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/apache_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/apache_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/aws_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/aws_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/base.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/base_utils.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/constants.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/dameng_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/dameng_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/db2_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/db2_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/es_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/es_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/etcd_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/etcd_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/hbase_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/hbase_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/host_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/host_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/jetty_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/jetty_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/kafka_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/kafka_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/mssql_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/mssql_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/mysql_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/mysql_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/nginx_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/nginx_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/oracle_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/oracle_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/pgsql_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/pgsql_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/qcloud_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/qcloud_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/redis_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/redis_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/snmp_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/snmp_facts.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/snmp_topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/snmp_topo.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/tidb_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/tidb_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/tomcat_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/tomcat_info.py -------------------------------------------------------------------------------- /agents/stargazer/plugins/vmware_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/plugins/vmware_info.py -------------------------------------------------------------------------------- /agents/stargazer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/pyproject.toml -------------------------------------------------------------------------------- /agents/stargazer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/server.py -------------------------------------------------------------------------------- /agents/stargazer/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/service/__init__.py -------------------------------------------------------------------------------- /agents/stargazer/service/nats_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/service/nats_server.py -------------------------------------------------------------------------------- /agents/stargazer/utils/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/utils/convert.py -------------------------------------------------------------------------------- /agents/stargazer/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/stargazer/uv.lock -------------------------------------------------------------------------------- /agents/webhookd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/Dockerfile -------------------------------------------------------------------------------- /agents/webhookd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/common.sh -------------------------------------------------------------------------------- /agents/webhookd/compose/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/API.md -------------------------------------------------------------------------------- /agents/webhookd/compose/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/common.sh -------------------------------------------------------------------------------- /agents/webhookd/compose/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/setup.sh -------------------------------------------------------------------------------- /agents/webhookd/compose/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/start.sh -------------------------------------------------------------------------------- /agents/webhookd/compose/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/status.sh -------------------------------------------------------------------------------- /agents/webhookd/compose/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/agents/webhookd/compose/stop.sh -------------------------------------------------------------------------------- /agents/webhookd/kubernetes/start.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/webhookd/kubernetes/status.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/webhookd/kubernetes/stop.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/dist/vllm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/dist/vllm/Dockerfile -------------------------------------------------------------------------------- /deploy/dist/vllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/dist/vllm/README.md -------------------------------------------------------------------------------- /deploy/docker-compose/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/docker-compose/Readme.md -------------------------------------------------------------------------------- /deploy/docker-compose/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/docker-compose/bootstrap.sh -------------------------------------------------------------------------------- /deploy/docker-compose/compose/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/docker-compose/compose/log.yaml -------------------------------------------------------------------------------- /deploy/docker-compose/compose/vllm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/docker-compose/compose/vllm.yaml -------------------------------------------------------------------------------- /deploy/docker-compose/compose/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/deploy/docker-compose/compose/web.yaml -------------------------------------------------------------------------------- /deploy/docker-compose/conf/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/docker-compose/conf/nats/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/.gitignore -------------------------------------------------------------------------------- /docs-website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/Dockerfile -------------------------------------------------------------------------------- /docs-website/MEGAMENU_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/MEGAMENU_README.md -------------------------------------------------------------------------------- /docs-website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/README.md -------------------------------------------------------------------------------- /docs-website/docs/alert/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/alert/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/alert/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/alert/feature.md -------------------------------------------------------------------------------- /docs-website/docs/alert/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/alert/index.md -------------------------------------------------------------------------------- /docs-website/docs/analysis/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # 介绍 -------------------------------------------------------------------------------- /docs-website/docs/asserts/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/docs/cmdb/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/cmdb/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/cmdb/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/cmdb/feature.md -------------------------------------------------------------------------------- /docs-website/docs/cmdb/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/cmdb/index.md -------------------------------------------------------------------------------- /docs-website/docs/console/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/console/index.md -------------------------------------------------------------------------------- /docs-website/docs/dev/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/docs/faq/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/docs/itsm/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/itsm/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/itsm/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/itsm/feature.md -------------------------------------------------------------------------------- /docs-website/docs/lab/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/lab/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/lab/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # 介绍 -------------------------------------------------------------------------------- /docs-website/docs/log/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/log/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/log/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/log/feature.md -------------------------------------------------------------------------------- /docs-website/docs/log/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/log/release.md -------------------------------------------------------------------------------- /docs-website/docs/mlops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/mlops/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/mlops/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/mlops/feature.md -------------------------------------------------------------------------------- /docs-website/docs/monitor/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/monitor/feature.md -------------------------------------------------------------------------------- /docs-website/docs/monitor/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/monitor/release.md -------------------------------------------------------------------------------- /docs-website/docs/node/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/node/_category_.json -------------------------------------------------------------------------------- /docs-website/docs/node/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/node/feature.md -------------------------------------------------------------------------------- /docs-website/docs/node/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/node/release.md -------------------------------------------------------------------------------- /docs-website/docs/operations/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/docs/opspilot/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/opspilot/feature.md -------------------------------------------------------------------------------- /docs-website/docs/opspilot/introduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/opspilot/introduce.md -------------------------------------------------------------------------------- /docs-website/docs/opspilot/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/opspilot/release.md -------------------------------------------------------------------------------- /docs-website/docs/playground/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # 介绍 -------------------------------------------------------------------------------- /docs-website/docs/system/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docs/system/feature.md -------------------------------------------------------------------------------- /docs-website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/docusaurus.config.js -------------------------------------------------------------------------------- /docs-website/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/nginx.conf -------------------------------------------------------------------------------- /docs-website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/package.json -------------------------------------------------------------------------------- /docs-website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs-website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/sidebars.js -------------------------------------------------------------------------------- /docs-website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/src/css/custom.css -------------------------------------------------------------------------------- /docs-website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/src/pages/index.js -------------------------------------------------------------------------------- /docs-website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/src/pages/index.module.css -------------------------------------------------------------------------------- /docs-website/src/pages/pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/src/pages/pricing.js -------------------------------------------------------------------------------- /docs-website/src/theme/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/src/theme/Navbar/index.js -------------------------------------------------------------------------------- /docs-website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs-website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/static/img/favicon.ico -------------------------------------------------------------------------------- /docs-website/static/img/logo-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/static/img/logo-site.png -------------------------------------------------------------------------------- /docs-website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/static/img/logo.png -------------------------------------------------------------------------------- /docs-website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs-website/static/img/logo.svg -------------------------------------------------------------------------------- /docs/changelog/release.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/db/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/api_doc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/architecture.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/code_framework.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/design.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/installation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/overview/source_compile.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/resource/img/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/intro.png -------------------------------------------------------------------------------- /docs/resource/img/jiawei-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/jiawei-logo.png -------------------------------------------------------------------------------- /docs/resource/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/logo.png -------------------------------------------------------------------------------- /docs/resource/img/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/qrcode.jpg -------------------------------------------------------------------------------- /docs/resource/img/wx-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/wx-2.png -------------------------------------------------------------------------------- /docs/resource/img/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/docs/resource/img/wx.jpg -------------------------------------------------------------------------------- /docs/wiki/db_upgrade.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/.android-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/.android-env.sh -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/.husky/pre-commit -------------------------------------------------------------------------------- /mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/README.md -------------------------------------------------------------------------------- /mobile/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/eslint.config.mjs -------------------------------------------------------------------------------- /mobile/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/next.config.ts -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/pnpm-lock.yaml -------------------------------------------------------------------------------- /mobile/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/postcss.config.mjs -------------------------------------------------------------------------------- /mobile/public/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/avatars/01.png -------------------------------------------------------------------------------- /mobile/public/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/avatars/02.png -------------------------------------------------------------------------------- /mobile/public/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/avatars/03.png -------------------------------------------------------------------------------- /mobile/public/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/avatars/04.png -------------------------------------------------------------------------------- /mobile/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/file.svg -------------------------------------------------------------------------------- /mobile/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/globe.svg -------------------------------------------------------------------------------- /mobile/public/icon/font/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/demo.css -------------------------------------------------------------------------------- /mobile/public/icon/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/iconfont.css -------------------------------------------------------------------------------- /mobile/public/icon/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/iconfont.js -------------------------------------------------------------------------------- /mobile/public/icon/font/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/iconfont.json -------------------------------------------------------------------------------- /mobile/public/icon/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/iconfont.ttf -------------------------------------------------------------------------------- /mobile/public/icon/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/icon/font/iconfont.woff -------------------------------------------------------------------------------- /mobile/public/logo-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/logo-site.png -------------------------------------------------------------------------------- /mobile/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/next.svg -------------------------------------------------------------------------------- /mobile/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/vercel.svg -------------------------------------------------------------------------------- /mobile/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/public/window.svg -------------------------------------------------------------------------------- /mobile/scripts/android-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/scripts/android-build.bat -------------------------------------------------------------------------------- /mobile/scripts/android-build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/scripts/android-build.mjs -------------------------------------------------------------------------------- /mobile/scripts/android-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/scripts/android-build.sh -------------------------------------------------------------------------------- /mobile/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/.gitignore -------------------------------------------------------------------------------- /mobile/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /mobile/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /mobile/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/build.rs -------------------------------------------------------------------------------- /mobile/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /mobile/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /mobile/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /mobile/src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /mobile/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /mobile/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /mobile/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /mobile/src-tauri/src/api_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/src/api_proxy.rs -------------------------------------------------------------------------------- /mobile/src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /mobile/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/src/main.rs -------------------------------------------------------------------------------- /mobile/src-tauri/src/permissions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/src/permissions.rs -------------------------------------------------------------------------------- /mobile/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /mobile/src/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/api/auth.ts -------------------------------------------------------------------------------- /mobile/src/api/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/api/bot.ts -------------------------------------------------------------------------------- /mobile/src/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/api/request.ts -------------------------------------------------------------------------------- /mobile/src/app/conversation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/conversation/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/conversations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/conversations/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/layout.tsx -------------------------------------------------------------------------------- /mobile/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/login/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/profile/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/search/page.tsx -------------------------------------------------------------------------------- /mobile/src/app/workbench/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/app/workbench/page.tsx -------------------------------------------------------------------------------- /mobile/src/constants/mockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/constants/mockData.ts -------------------------------------------------------------------------------- /mobile/src/context/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/context/auth.tsx -------------------------------------------------------------------------------- /mobile/src/context/locale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/context/locale.tsx -------------------------------------------------------------------------------- /mobile/src/context/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/context/theme.tsx -------------------------------------------------------------------------------- /mobile/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/locales/en.json -------------------------------------------------------------------------------- /mobile/src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/locales/zh.json -------------------------------------------------------------------------------- /mobile/src/polyfills/react-dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/polyfills/react-dom.ts -------------------------------------------------------------------------------- /mobile/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/styles/globals.css -------------------------------------------------------------------------------- /mobile/src/styles/theme-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/styles/theme-overrides.css -------------------------------------------------------------------------------- /mobile/src/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/styles/variables.css -------------------------------------------------------------------------------- /mobile/src/types/ag-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/types/ag-ui.ts -------------------------------------------------------------------------------- /mobile/src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/types/auth.ts -------------------------------------------------------------------------------- /mobile/src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/types/common.ts -------------------------------------------------------------------------------- /mobile/src/types/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/types/conversation.ts -------------------------------------------------------------------------------- /mobile/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/types/user.ts -------------------------------------------------------------------------------- /mobile/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/utils/i18n.ts -------------------------------------------------------------------------------- /mobile/src/utils/tauriApiProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/utils/tauriApiProxy.ts -------------------------------------------------------------------------------- /mobile/src/utils/tauriFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/src/utils/tauriFetch.ts -------------------------------------------------------------------------------- /mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/mobile/tsconfig.json -------------------------------------------------------------------------------- /readme_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/readme_en.md -------------------------------------------------------------------------------- /server/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | *_test.py -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.dockerignore -------------------------------------------------------------------------------- /server/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.flake8 -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.isort.cfg -------------------------------------------------------------------------------- /server/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.pre-commit-config.yaml -------------------------------------------------------------------------------- /server/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.vscode/launch.json -------------------------------------------------------------------------------- /server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/.vscode/settings.json -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/alerts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/__init__.py -------------------------------------------------------------------------------- /server/apps/alerts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/admin.py -------------------------------------------------------------------------------- /server/apps/alerts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/apps.py -------------------------------------------------------------------------------- /server/apps/alerts/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/common/__init__.py -------------------------------------------------------------------------------- /server/apps/alerts/common/rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/alerts/common/shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/common/shield.py -------------------------------------------------------------------------------- /server/apps/alerts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/config.py -------------------------------------------------------------------------------- /server/apps/alerts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/constants.py -------------------------------------------------------------------------------- /server/apps/alerts/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/error.py -------------------------------------------------------------------------------- /server/apps/alerts/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/filters.py -------------------------------------------------------------------------------- /server/apps/alerts/init_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/init_constants.py -------------------------------------------------------------------------------- /server/apps/alerts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/models.py -------------------------------------------------------------------------------- /server/apps/alerts/nats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/nats.py -------------------------------------------------------------------------------- /server/apps/alerts/service/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/service/base.py -------------------------------------------------------------------------------- /server/apps/alerts/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/tasks.py -------------------------------------------------------------------------------- /server/apps/alerts/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/test/__init__.py -------------------------------------------------------------------------------- /server/apps/alerts/test/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/test/mock.py -------------------------------------------------------------------------------- /server/apps/alerts/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/alerts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/urls.py -------------------------------------------------------------------------------- /server/apps/alerts/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/utils/__init__.py -------------------------------------------------------------------------------- /server/apps/alerts/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/utils/util.py -------------------------------------------------------------------------------- /server/apps/alerts/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/views/__init__.py -------------------------------------------------------------------------------- /server/apps/alerts/views/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/views/source.py -------------------------------------------------------------------------------- /server/apps/alerts/views/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/alerts/views/view.py -------------------------------------------------------------------------------- /server/apps/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/base/admin.py -------------------------------------------------------------------------------- /server/apps/base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/base/apps.py -------------------------------------------------------------------------------- /server/apps/base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/base/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/base/models/__init__.py -------------------------------------------------------------------------------- /server/apps/base/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/base/models/user.py -------------------------------------------------------------------------------- /server/apps/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/base/urls.py -------------------------------------------------------------------------------- /server/apps/base/user_api_secret_mgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/admin.py -------------------------------------------------------------------------------- /server/apps/cmdb/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/apps.py -------------------------------------------------------------------------------- /server/apps/cmdb/collect_tasks/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/collect_tasks/aws.py -------------------------------------------------------------------------------- /server/apps/cmdb/collect_tasks/k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/collect_tasks/k8s.py -------------------------------------------------------------------------------- /server/apps/cmdb/collection/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/collection/common.py -------------------------------------------------------------------------------- /server/apps/cmdb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/config.py -------------------------------------------------------------------------------- /server/apps/cmdb/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/graph/falkordb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/graph/falkordb.py -------------------------------------------------------------------------------- /server/apps/cmdb/graph/format_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/graph/format_type.py -------------------------------------------------------------------------------- /server/apps/cmdb/graph/neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/graph/neo4j.py -------------------------------------------------------------------------------- /server/apps/cmdb/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/language/en.yaml -------------------------------------------------------------------------------- /server/apps/cmdb/language/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/language/service.py -------------------------------------------------------------------------------- /server/apps/cmdb/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/model_migrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/models/__init__.py -------------------------------------------------------------------------------- /server/apps/cmdb/models/show_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/models/show_field.py -------------------------------------------------------------------------------- /server/apps/cmdb/nats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/nats/__init__.py -------------------------------------------------------------------------------- /server/apps/cmdb/nats/nats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/nats/nats.py -------------------------------------------------------------------------------- /server/apps/cmdb/node_configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/node_configs/base.py -------------------------------------------------------------------------------- /server/apps/cmdb/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/services/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/services/instance.py -------------------------------------------------------------------------------- /server/apps/cmdb/services/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/services/model.py -------------------------------------------------------------------------------- /server/apps/cmdb/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/tasks/__init__.py -------------------------------------------------------------------------------- /server/apps/cmdb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/tests.py -------------------------------------------------------------------------------- /server/apps/cmdb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/urls.py -------------------------------------------------------------------------------- /server/apps/cmdb/utils/Import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/utils/Import.py -------------------------------------------------------------------------------- /server/apps/cmdb/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/utils/base.py -------------------------------------------------------------------------------- /server/apps/cmdb/utils/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/utils/credential.py -------------------------------------------------------------------------------- /server/apps/cmdb/utils/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/utils/export.py -------------------------------------------------------------------------------- /server/apps/cmdb/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/cmdb/views/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/views/collect.py -------------------------------------------------------------------------------- /server/apps/cmdb/views/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/views/instance.py -------------------------------------------------------------------------------- /server/apps/cmdb/views/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/views/model.py -------------------------------------------------------------------------------- /server/apps/cmdb/views/show_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/cmdb/views/show_field.py -------------------------------------------------------------------------------- /server/apps/console_mgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/console_mgmt/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/console_mgmt/apps.py -------------------------------------------------------------------------------- /server/apps/console_mgmt/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/console_mgmt/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/console_mgmt/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/console_mgmt/nats_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/console_mgmt/nats_api.py -------------------------------------------------------------------------------- /server/apps/console_mgmt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/console_mgmt/urls.py -------------------------------------------------------------------------------- /server/apps/console_mgmt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/console_mgmt/views.py -------------------------------------------------------------------------------- /server/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /server/apps/core/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/apps.py -------------------------------------------------------------------------------- /server/apps/core/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/backends.py -------------------------------------------------------------------------------- /server/apps/core/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/celery.py -------------------------------------------------------------------------------- /server/apps/core/constants.py: -------------------------------------------------------------------------------- 1 | DEFAULT_PERMISSION = ["view", "operate"] -------------------------------------------------------------------------------- /server/apps/core/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/encoders.py -------------------------------------------------------------------------------- /server/apps/core/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/fields/__init__.py -------------------------------------------------------------------------------- /server/apps/core/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/language/en.yaml -------------------------------------------------------------------------------- /server/apps/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/logger.py -------------------------------------------------------------------------------- /server/apps/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/mixinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/mixinx.py -------------------------------------------------------------------------------- /server/apps/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/models/group_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/models/group_info.py -------------------------------------------------------------------------------- /server/apps/core/models/time_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/models/time_info.py -------------------------------------------------------------------------------- /server/apps/core/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Core模块测试包 2 | # 包含核心功能的单元测试 3 | 4 | -------------------------------------------------------------------------------- /server/apps/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/urls.py -------------------------------------------------------------------------------- /server/apps/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/async_utils.py -------------------------------------------------------------------------------- /server/apps/core/utils/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/utils/exempt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/exempt.py -------------------------------------------------------------------------------- /server/apps/core/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/i18n.py -------------------------------------------------------------------------------- /server/apps/core/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/loader.py -------------------------------------------------------------------------------- /server/apps/core/utils/open_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/open_base.py -------------------------------------------------------------------------------- /server/apps/core/utils/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/serializers.py -------------------------------------------------------------------------------- /server/apps/core/utils/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/time_util.py -------------------------------------------------------------------------------- /server/apps/core/utils/user_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/user_group.py -------------------------------------------------------------------------------- /server/apps/core/utils/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/utils/web_utils.py -------------------------------------------------------------------------------- /server/apps/core/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/core/views/index_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/views/index_view.py -------------------------------------------------------------------------------- /server/apps/core/views/user_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/core/views/user_group.py -------------------------------------------------------------------------------- /server/apps/core/viewsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/lab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/lab/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/admin.py -------------------------------------------------------------------------------- /server/apps/lab/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/apps.py -------------------------------------------------------------------------------- /server/apps/lab/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/lab/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/models/__init__.py -------------------------------------------------------------------------------- /server/apps/lab/models/lab_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/models/lab_env.py -------------------------------------------------------------------------------- /server/apps/lab/models/lab_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/models/lab_image.py -------------------------------------------------------------------------------- /server/apps/lab/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/urls.py -------------------------------------------------------------------------------- /server/apps/lab/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/utils/__init__.py -------------------------------------------------------------------------------- /server/apps/lab/utils/lab_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/utils/lab_utils.py -------------------------------------------------------------------------------- /server/apps/lab/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/views/__init__.py -------------------------------------------------------------------------------- /server/apps/lab/views/lab_env_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/lab/views/lab_env_view.py -------------------------------------------------------------------------------- /server/apps/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/apps.py -------------------------------------------------------------------------------- /server/apps/log/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/constants/database.py: -------------------------------------------------------------------------------- 1 | 2 | class DatabaseConstants: 3 | DEFAULT_BATCH_SIZE = 100 4 | -------------------------------------------------------------------------------- /server/apps/log/constants/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/constants/language.py -------------------------------------------------------------------------------- /server/apps/log/constants/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/constants/plugin.py -------------------------------------------------------------------------------- /server/apps/log/constants/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/constants/web.py -------------------------------------------------------------------------------- /server/apps/log/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/filters/log_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/filters/log_group.py -------------------------------------------------------------------------------- /server/apps/log/filters/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/filters/policy.py -------------------------------------------------------------------------------- /server/apps/log/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/language/en.yaml -------------------------------------------------------------------------------- /server/apps/log/language/zh-Hans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/language/zh-Hans.yaml -------------------------------------------------------------------------------- /server/apps/log/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/management/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/models/__init__.py -------------------------------------------------------------------------------- /server/apps/log/models/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/models/instance.py -------------------------------------------------------------------------------- /server/apps/log/models/log_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/models/log_group.py -------------------------------------------------------------------------------- /server/apps/log/models/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/models/policy.py -------------------------------------------------------------------------------- /server/apps/log/nats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/nats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/nats/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/nats/log.py -------------------------------------------------------------------------------- /server/apps/log/nats/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/nats/permission.py -------------------------------------------------------------------------------- /server/apps/log/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/serializers/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/serializers/policy.py -------------------------------------------------------------------------------- /server/apps/log/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/services/policy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/services/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/services/search.py -------------------------------------------------------------------------------- /server/apps/log/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/tasks/__init__.py -------------------------------------------------------------------------------- /server/apps/log/tasks/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/tasks/policy.py -------------------------------------------------------------------------------- /server/apps/log/tasks/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/tasks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/tasks/utils/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/tasks/utils/policy.py -------------------------------------------------------------------------------- /server/apps/log/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/urls.py -------------------------------------------------------------------------------- /server/apps/log/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/utils/log_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/utils/log_group.py -------------------------------------------------------------------------------- /server/apps/log/utils/query_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/utils/query_log.py -------------------------------------------------------------------------------- /server/apps/log/utils/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/utils/time_util.py -------------------------------------------------------------------------------- /server/apps/log/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/log/views/log_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/views/log_group.py -------------------------------------------------------------------------------- /server/apps/log/views/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/views/node.py -------------------------------------------------------------------------------- /server/apps/log/views/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/views/policy.py -------------------------------------------------------------------------------- /server/apps/log/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/views/search.py -------------------------------------------------------------------------------- /server/apps/log/views/system_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/log/views/system_mgmt.py -------------------------------------------------------------------------------- /server/apps/mlops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/admin.py -------------------------------------------------------------------------------- /server/apps/mlops/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/apps.py -------------------------------------------------------------------------------- /server/apps/mlops/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/filters/rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/filters/rasa.py -------------------------------------------------------------------------------- /server/apps/mlops/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/models/rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/models/rasa.py -------------------------------------------------------------------------------- /server/apps/mlops/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/serializers/rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/serializers/rasa.py -------------------------------------------------------------------------------- /server/apps/mlops/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/urls.py -------------------------------------------------------------------------------- /server/apps/mlops/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/mlops/views/rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/mlops/views/rasa.py -------------------------------------------------------------------------------- /server/apps/monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/admin.py -------------------------------------------------------------------------------- /server/apps/monitor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/apps.py -------------------------------------------------------------------------------- /server/apps/monitor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/config.py -------------------------------------------------------------------------------- /server/apps/monitor/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/filters/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/filters/plugin.py -------------------------------------------------------------------------------- /server/apps/monitor/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/language/en.yaml -------------------------------------------------------------------------------- /server/apps/monitor/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/management/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/models/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/models/plugin.py -------------------------------------------------------------------------------- /server/apps/monitor/models/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/models/setting.py -------------------------------------------------------------------------------- /server/apps/monitor/nats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/nats/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/nats/monitor.py -------------------------------------------------------------------------------- /server/apps/monitor/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/support-files/plugins/Kafka-Exporter/exporter/kafka/kafka.base.yaml.j2: -------------------------------------------------------------------------------- 1 | # config is null -------------------------------------------------------------------------------- /server/apps/monitor/support-files/plugins/Oracle-Exporter/exporter/oracle/oracle.base.yaml.j2: -------------------------------------------------------------------------------- 1 | # config is null -------------------------------------------------------------------------------- /server/apps/monitor/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/tasks/__init__.py -------------------------------------------------------------------------------- /server/apps/monitor/tasks/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/tasks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/urls.py -------------------------------------------------------------------------------- /server/apps/monitor/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/utils/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/utils/instance.py -------------------------------------------------------------------------------- /server/apps/monitor/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/monitor/views/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/monitor/views/plugin.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/admin.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/apps.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/config.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/management/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/management/services/node_init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/nats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/nats/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/nats/node.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/tasks/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/urls.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/utils/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/utils/s3.py -------------------------------------------------------------------------------- /server/apps/node_mgmt/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/node_mgmt/views/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/node_mgmt/views/node.py -------------------------------------------------------------------------------- /server/apps/opspilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/apps.py -------------------------------------------------------------------------------- /server/apps/opspilot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/config.py -------------------------------------------------------------------------------- /server/apps/opspilot/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/enum.py -------------------------------------------------------------------------------- /server/apps/opspilot/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/language/en.yaml -------------------------------------------------------------------------------- /server/apps/opspilot/lobe/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/lobe/ingress.yml -------------------------------------------------------------------------------- /server/apps/opspilot/lobe/svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/lobe/svc.yml -------------------------------------------------------------------------------- /server/apps/opspilot/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/enhance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/graph_rag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/graph_rag/graphiti/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/naive_rag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/naive_rag/pgvector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rag/naive_rag/recall_strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/rerank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/llm/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/metis/ocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/nats_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/nats_api.py -------------------------------------------------------------------------------- /server/apps/opspilot/pilot/svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/pilot/svc.yml -------------------------------------------------------------------------------- /server/apps/opspilot/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/support-files/prompts/graph/json_format_prompt.jinja2: -------------------------------------------------------------------------------- 1 | 请以JSON格式返回结果。 2 | -------------------------------------------------------------------------------- /server/apps/opspilot/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/tasks.py -------------------------------------------------------------------------------- /server/apps/opspilot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/urls.py -------------------------------------------------------------------------------- /server/apps/opspilot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/engine/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/condition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/chat_flow_utils/nodes/function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/utils/rasa_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/opspilot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/opspilot/views.py -------------------------------------------------------------------------------- /server/apps/playground/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/playground/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/playground/admin.py -------------------------------------------------------------------------------- /server/apps/playground/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/playground/apps.py -------------------------------------------------------------------------------- /server/apps/playground/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/playground/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/playground/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/playground/tests.py -------------------------------------------------------------------------------- /server/apps/playground/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/playground/urls.py -------------------------------------------------------------------------------- /server/apps/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/rpc/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/alerts.py -------------------------------------------------------------------------------- /server/apps/rpc/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/base.py -------------------------------------------------------------------------------- /server/apps/rpc/cmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/cmdb.py -------------------------------------------------------------------------------- /server/apps/rpc/console_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/console_mgmt.py -------------------------------------------------------------------------------- /server/apps/rpc/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/executor.py -------------------------------------------------------------------------------- /server/apps/rpc/jetstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/jetstream.py -------------------------------------------------------------------------------- /server/apps/rpc/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/log.py -------------------------------------------------------------------------------- /server/apps/rpc/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/monitor.py -------------------------------------------------------------------------------- /server/apps/rpc/node_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/node_mgmt.py -------------------------------------------------------------------------------- /server/apps/rpc/operation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/operation_analysis.py -------------------------------------------------------------------------------- /server/apps/rpc/opspilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/opspilot.py -------------------------------------------------------------------------------- /server/apps/rpc/stargazer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/stargazer.py -------------------------------------------------------------------------------- /server/apps/rpc/system_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/rpc/system_mgmt.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/system_mgmt/apps.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/models/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/system_mgmt/models/app.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/nats_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/system_mgmt/nats_api.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/system_mgmt/tasks.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/apps/system_mgmt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/apps/system_mgmt/urls.py -------------------------------------------------------------------------------- /server/apps/system_mgmt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/asgi.py -------------------------------------------------------------------------------- /server/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/assets/img/default-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/assets/img/default-logo.png -------------------------------------------------------------------------------- /server/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/__init__.py -------------------------------------------------------------------------------- /server/config/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config/components/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/app.py -------------------------------------------------------------------------------- /server/config/components/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/base.py -------------------------------------------------------------------------------- /server/config/components/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/cache.py -------------------------------------------------------------------------------- /server/config/components/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/celery.py -------------------------------------------------------------------------------- /server/config/components/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/database.py -------------------------------------------------------------------------------- /server/config/components/drf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/drf.py -------------------------------------------------------------------------------- /server/config/components/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/extra.py -------------------------------------------------------------------------------- /server/config/components/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/locale.py -------------------------------------------------------------------------------- /server/config/components/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/log.py -------------------------------------------------------------------------------- /server/config/components/minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/minio.py -------------------------------------------------------------------------------- /server/config/components/mlflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/mlflow.py -------------------------------------------------------------------------------- /server/config/components/nats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/components/nats.py -------------------------------------------------------------------------------- /server/config/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/default.py -------------------------------------------------------------------------------- /server/config/drf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /server/config/drf/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/drf/filters.py -------------------------------------------------------------------------------- /server/config/drf/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/drf/pagination.py -------------------------------------------------------------------------------- /server/config/drf/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/drf/renderers.py -------------------------------------------------------------------------------- /server/config/drf/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/config/drf/viewsets.py -------------------------------------------------------------------------------- /server/envs/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/envs/.env.example -------------------------------------------------------------------------------- /server/envs/.env.node.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/envs/.env.node.example -------------------------------------------------------------------------------- /server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/manage.py -------------------------------------------------------------------------------- /server/nats_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/__init__.py -------------------------------------------------------------------------------- /server/nats_client/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/apps.py -------------------------------------------------------------------------------- /server/nats_client/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/clients.py -------------------------------------------------------------------------------- /server/nats_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/exceptions.py -------------------------------------------------------------------------------- /server/nats_client/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/handlers.py -------------------------------------------------------------------------------- /server/nats_client/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/registry.py -------------------------------------------------------------------------------- /server/nats_client/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/types.py -------------------------------------------------------------------------------- /server/nats_client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/nats_client/utils.py -------------------------------------------------------------------------------- /server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/pyproject.toml -------------------------------------------------------------------------------- /server/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/pytest.ini -------------------------------------------------------------------------------- /server/scripts/check_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/scripts/check_requirements.py -------------------------------------------------------------------------------- /server/scripts/who_is_big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/scripts/who_is_big.py -------------------------------------------------------------------------------- /server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/settings.py -------------------------------------------------------------------------------- /server/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/server/urls.py -------------------------------------------------------------------------------- /support-files/lang-syncer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/support-files/lang-syncer/.gitignore -------------------------------------------------------------------------------- /support-files/lang-syncer/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /support-files/lang-syncer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/support-files/lang-syncer/Makefile -------------------------------------------------------------------------------- /support-files/lang-syncer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/support-files/lang-syncer/README.md -------------------------------------------------------------------------------- /support-files/lang-syncer/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/support-files/lang-syncer/uv.lock -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | .husky 4 | .env.local -------------------------------------------------------------------------------- /web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.env.example -------------------------------------------------------------------------------- /web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.eslintrc.json -------------------------------------------------------------------------------- /web/.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.github/copilot-instructions.md -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.husky/pre-commit -------------------------------------------------------------------------------- /web/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.storybook/main.ts -------------------------------------------------------------------------------- /web/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/.storybook/preview.tsx -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/next-auth.d.ts -------------------------------------------------------------------------------- /web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/next.config.mjs -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/postcss.config.mjs -------------------------------------------------------------------------------- /web/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/file.svg -------------------------------------------------------------------------------- /web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/globe.svg -------------------------------------------------------------------------------- /web/public/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/iconfont.js -------------------------------------------------------------------------------- /web/public/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/iconfont.json -------------------------------------------------------------------------------- /web/public/logo-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/logo-site.png -------------------------------------------------------------------------------- /web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/next.svg -------------------------------------------------------------------------------- /web/public/page-tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/page-tip.gif -------------------------------------------------------------------------------- /web/public/system-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/system-bg.jpg -------------------------------------------------------------------------------- /web/public/system-login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/system-login-bg.jpg -------------------------------------------------------------------------------- /web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/vercel.svg -------------------------------------------------------------------------------- /web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/public/window.svg -------------------------------------------------------------------------------- /web/scripts/build-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/scripts/build-timer.js -------------------------------------------------------------------------------- /web/scripts/generate-tsconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/scripts/generate-tsconfig.js -------------------------------------------------------------------------------- /web/scripts/generate-workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/scripts/generate-workspace.js -------------------------------------------------------------------------------- /web/src/app/(core)/api/menu/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/(core)/api/menu/route.ts -------------------------------------------------------------------------------- /web/src/app/alarm/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/(pages)/layout.tsx -------------------------------------------------------------------------------- /web/src/app/alarm/(pages)/settings/alertAssign/index.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/alarm/api/alarms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/api/alarms.ts -------------------------------------------------------------------------------- /web/src/app/alarm/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/api/common.ts -------------------------------------------------------------------------------- /web/src/app/alarm/api/incidents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/api/incidents.ts -------------------------------------------------------------------------------- /web/src/app/alarm/api/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/api/integration.ts -------------------------------------------------------------------------------- /web/src/app/alarm/api/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/api/settings.ts -------------------------------------------------------------------------------- /web/src/app/alarm/constants/alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/constants/alarm.ts -------------------------------------------------------------------------------- /web/src/app/alarm/constants/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/constants/menu.json -------------------------------------------------------------------------------- /web/src/app/alarm/context/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/context/common.tsx -------------------------------------------------------------------------------- /web/src/app/alarm/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/locales/en.json -------------------------------------------------------------------------------- /web/src/app/alarm/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/alarm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/package.json -------------------------------------------------------------------------------- /web/src/app/alarm/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/page.tsx -------------------------------------------------------------------------------- /web/src/app/alarm/types/alarms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/types/alarms.ts -------------------------------------------------------------------------------- /web/src/app/alarm/types/incidents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/types/incidents.ts -------------------------------------------------------------------------------- /web/src/app/alarm/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/types/index.ts -------------------------------------------------------------------------------- /web/src/app/alarm/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/types/settings.ts -------------------------------------------------------------------------------- /web/src/app/alarm/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/types/types.ts -------------------------------------------------------------------------------- /web/src/app/alarm/utils/alarmChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/utils/alarmChart.ts -------------------------------------------------------------------------------- /web/src/app/alarm/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/alarm/utils/common.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/(pages)/layout.tsx -------------------------------------------------------------------------------- /web/src/app/cmdb/api/changeRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/changeRecord.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/api/collect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/collect.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/index.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/api/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/instance.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/api/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/model.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/api/oid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/api/oid.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/constants/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/constants/asset.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/constants/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/constants/menu.json -------------------------------------------------------------------------------- /web/src/app/cmdb/context/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/context/common.tsx -------------------------------------------------------------------------------- /web/src/app/cmdb/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/locales/en.json -------------------------------------------------------------------------------- /web/src/app/cmdb/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/cmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/package.json -------------------------------------------------------------------------------- /web/src/app/cmdb/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/page.tsx -------------------------------------------------------------------------------- /web/src/app/cmdb/types/assetData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/types/assetData.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/types/assetManage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/types/assetManage.ts -------------------------------------------------------------------------------- /web/src/app/cmdb/utils/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/utils/common.tsx -------------------------------------------------------------------------------- /web/src/app/cmdb/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/cmdb/utils/utils.ts -------------------------------------------------------------------------------- /web/src/app/lab/(pages)/env/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/(pages)/env/page.tsx -------------------------------------------------------------------------------- /web/src/app/lab/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/(pages)/layout.tsx -------------------------------------------------------------------------------- /web/src/app/lab/api/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/api/env.ts -------------------------------------------------------------------------------- /web/src/app/lab/api/mirror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/api/mirror.ts -------------------------------------------------------------------------------- /web/src/app/lab/constants/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/constants/menu.json -------------------------------------------------------------------------------- /web/src/app/lab/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/locales/en.json -------------------------------------------------------------------------------- /web/src/app/lab/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/lab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/package.json -------------------------------------------------------------------------------- /web/src/app/lab/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/page.tsx -------------------------------------------------------------------------------- /web/src/app/lab/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/lab/types/index.ts -------------------------------------------------------------------------------- /web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/layout.tsx -------------------------------------------------------------------------------- /web/src/app/log/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/(pages)/layout.tsx -------------------------------------------------------------------------------- /web/src/app/log/api/data/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/api/data/route.ts -------------------------------------------------------------------------------- /web/src/app/log/api/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/api/event.ts -------------------------------------------------------------------------------- /web/src/app/log/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/api/index.ts -------------------------------------------------------------------------------- /web/src/app/log/api/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/api/integration.ts -------------------------------------------------------------------------------- /web/src/app/log/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/api/search.ts -------------------------------------------------------------------------------- /web/src/app/log/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/constants/index.ts -------------------------------------------------------------------------------- /web/src/app/log/constants/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/constants/menu.json -------------------------------------------------------------------------------- /web/src/app/log/context/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/context/common.tsx -------------------------------------------------------------------------------- /web/src/app/log/hooks/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/hooks/event.ts -------------------------------------------------------------------------------- /web/src/app/log/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/hooks/index.ts -------------------------------------------------------------------------------- /web/src/app/log/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/locales/en.json -------------------------------------------------------------------------------- /web/src/app/log/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/package.json -------------------------------------------------------------------------------- /web/src/app/log/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/page.tsx -------------------------------------------------------------------------------- /web/src/app/log/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/styles/index.css -------------------------------------------------------------------------------- /web/src/app/log/types/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/types/analysis.ts -------------------------------------------------------------------------------- /web/src/app/log/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/types/event.ts -------------------------------------------------------------------------------- /web/src/app/log/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/types/index.ts -------------------------------------------------------------------------------- /web/src/app/log/types/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/types/integration.ts -------------------------------------------------------------------------------- /web/src/app/log/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/types/search.ts -------------------------------------------------------------------------------- /web/src/app/log/utils/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/log/utils/common.tsx -------------------------------------------------------------------------------- /web/src/app/mlops/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/(pages)/layout.tsx -------------------------------------------------------------------------------- /web/src/app/mlops/api/manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/api/manage.ts -------------------------------------------------------------------------------- /web/src/app/mlops/api/modelRelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/api/modelRelease.ts -------------------------------------------------------------------------------- /web/src/app/mlops/api/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/api/task.ts -------------------------------------------------------------------------------- /web/src/app/mlops/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/constants/index.ts -------------------------------------------------------------------------------- /web/src/app/mlops/constants/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/constants/menu.json -------------------------------------------------------------------------------- /web/src/app/mlops/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/locales/en.json -------------------------------------------------------------------------------- /web/src/app/mlops/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/mlops/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/package.json -------------------------------------------------------------------------------- /web/src/app/mlops/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/page.tsx -------------------------------------------------------------------------------- /web/src/app/mlops/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/styles/index.css -------------------------------------------------------------------------------- /web/src/app/mlops/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/types/index.ts -------------------------------------------------------------------------------- /web/src/app/mlops/types/manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/types/manage.ts -------------------------------------------------------------------------------- /web/src/app/mlops/types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/types/task.ts -------------------------------------------------------------------------------- /web/src/app/mlops/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/mlops/utils/common.ts -------------------------------------------------------------------------------- /web/src/app/monitor/api/data/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/api/data/route.ts -------------------------------------------------------------------------------- /web/src/app/monitor/api/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/api/event.ts -------------------------------------------------------------------------------- /web/src/app/monitor/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/api/index.ts -------------------------------------------------------------------------------- /web/src/app/monitor/api/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/api/view.ts -------------------------------------------------------------------------------- /web/src/app/monitor/constants/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/constants/view.ts -------------------------------------------------------------------------------- /web/src/app/monitor/hooks/event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/hooks/event.tsx -------------------------------------------------------------------------------- /web/src/app/monitor/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/hooks/index.tsx -------------------------------------------------------------------------------- /web/src/app/monitor/hooks/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/hooks/view.tsx -------------------------------------------------------------------------------- /web/src/app/monitor/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/locales/en.json -------------------------------------------------------------------------------- /web/src/app/monitor/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/package.json -------------------------------------------------------------------------------- /web/src/app/monitor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/page.tsx -------------------------------------------------------------------------------- /web/src/app/monitor/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/styles/index.css -------------------------------------------------------------------------------- /web/src/app/monitor/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/types/event.ts -------------------------------------------------------------------------------- /web/src/app/monitor/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/types/index.ts -------------------------------------------------------------------------------- /web/src/app/monitor/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/types/search.ts -------------------------------------------------------------------------------- /web/src/app/monitor/types/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/types/view.ts -------------------------------------------------------------------------------- /web/src/app/monitor/utils/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/monitor/utils/common.tsx -------------------------------------------------------------------------------- /web/src/app/no-permission/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/no-permission/page.tsx -------------------------------------------------------------------------------- /web/src/app/node-manager/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/node-manager/api/index.ts -------------------------------------------------------------------------------- /web/src/app/node-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/node-manager/package.json -------------------------------------------------------------------------------- /web/src/app/node-manager/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/node-manager/page.tsx -------------------------------------------------------------------------------- /web/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/not-found.tsx -------------------------------------------------------------------------------- /web/src/app/ops-analysis/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/ops-analysis/api/index.ts -------------------------------------------------------------------------------- /web/src/app/ops-analysis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/ops-analysis/package.json -------------------------------------------------------------------------------- /web/src/app/opspilot/api/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/knowledge.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/api/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/provider.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/api/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/settings.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/api/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/skill.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/api/studio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/studio.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/api/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/api/tool.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/file-viewer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/file-viewer.d.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/locales/en.json -------------------------------------------------------------------------------- /web/src/app/opspilot/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/locales/zh.json -------------------------------------------------------------------------------- /web/src/app/opspilot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/package.json -------------------------------------------------------------------------------- /web/src/app/opspilot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/page.tsx -------------------------------------------------------------------------------- /web/src/app/opspilot/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/types/chat.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/types/global.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/types/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/types/skill.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/types/studio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/types/studio.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/types/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/types/tool.ts -------------------------------------------------------------------------------- /web/src/app/opspilot/utils/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/opspilot/utils/upload.ts -------------------------------------------------------------------------------- /web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/page.tsx -------------------------------------------------------------------------------- /web/src/app/playground/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/playground/api/index.ts -------------------------------------------------------------------------------- /web/src/app/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/playground/package.json -------------------------------------------------------------------------------- /web/src/app/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/playground/page.tsx -------------------------------------------------------------------------------- /web/src/app/playground/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/playground/types/index.ts -------------------------------------------------------------------------------- /web/src/app/system-manager/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/system-manager/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/app/system-manager/page.tsx -------------------------------------------------------------------------------- /web/src/app/system-manager/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/components/collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/collapse/index.tsx -------------------------------------------------------------------------------- /web/src/components/heat-map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/heat-map/index.tsx -------------------------------------------------------------------------------- /web/src/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/icon/index.tsx -------------------------------------------------------------------------------- /web/src/components/markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/markdown/index.tsx -------------------------------------------------------------------------------- /web/src/components/password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/password/index.tsx -------------------------------------------------------------------------------- /web/src/components/spin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/spin/index.tsx -------------------------------------------------------------------------------- /web/src/components/theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/theme/index.tsx -------------------------------------------------------------------------------- /web/src/components/top-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/components/top-menu/index.tsx -------------------------------------------------------------------------------- /web/src/constants/authOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/constants/authOptions.ts -------------------------------------------------------------------------------- /web/src/constants/dayjsLocales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/constants/dayjsLocales.ts -------------------------------------------------------------------------------- /web/src/constants/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/constants/locales.ts -------------------------------------------------------------------------------- /web/src/constants/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/constants/shared.ts -------------------------------------------------------------------------------- /web/src/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/constants/theme.ts -------------------------------------------------------------------------------- /web/src/context/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/auth.tsx -------------------------------------------------------------------------------- /web/src/context/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/client.tsx -------------------------------------------------------------------------------- /web/src/context/locale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/locale.tsx -------------------------------------------------------------------------------- /web/src/context/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/menus.tsx -------------------------------------------------------------------------------- /web/src/context/permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/permissions.tsx -------------------------------------------------------------------------------- /web/src/context/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/theme.tsx -------------------------------------------------------------------------------- /web/src/context/userInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/context/userInfo.tsx -------------------------------------------------------------------------------- /web/src/hooks/useCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/hooks/useCopy.ts -------------------------------------------------------------------------------- /web/src/hooks/useLocalizedTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/hooks/useLocalizedTime.ts -------------------------------------------------------------------------------- /web/src/hooks/usePermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/hooks/usePermissions.ts -------------------------------------------------------------------------------- /web/src/hooks/usePolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/hooks/usePolling.ts -------------------------------------------------------------------------------- /web/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/lib/auth.ts -------------------------------------------------------------------------------- /web/src/lib/wechatProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/lib/wechatProvider.ts -------------------------------------------------------------------------------- /web/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/locales/en.json -------------------------------------------------------------------------------- /web/src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/locales/zh.json -------------------------------------------------------------------------------- /web/src/stories/collapse.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/collapse.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/icon.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/spin.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/spin.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/theme.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/theme.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/top-menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/top-menu.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/user-info.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/stories/user-info.stories.tsx -------------------------------------------------------------------------------- /web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/styles/globals.css -------------------------------------------------------------------------------- /web/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/types/index.ts -------------------------------------------------------------------------------- /web/src/types/json.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/types/json.d.ts -------------------------------------------------------------------------------- /web/src/utils/crossDomainAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/crossDomainAuth.ts -------------------------------------------------------------------------------- /web/src/utils/dynamicsMerged.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/dynamicsMerged.mjs -------------------------------------------------------------------------------- /web/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/i18n.ts -------------------------------------------------------------------------------- /web/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/index.ts -------------------------------------------------------------------------------- /web/src/utils/menuHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/menuHelpers.ts -------------------------------------------------------------------------------- /web/src/utils/organizationTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/organizationTree.ts -------------------------------------------------------------------------------- /web/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/request.ts -------------------------------------------------------------------------------- /web/src/utils/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/src/utils/route.ts -------------------------------------------------------------------------------- /web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/tailwind.config.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /webchat/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/.github/workflows/build.yml -------------------------------------------------------------------------------- /webchat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/.gitignore -------------------------------------------------------------------------------- /webchat/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | cache=false 3 | -------------------------------------------------------------------------------- /webchat/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/.prettierrc -------------------------------------------------------------------------------- /webchat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/CHANGELOG.md -------------------------------------------------------------------------------- /webchat/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/CONTRIBUTING.md -------------------------------------------------------------------------------- /webchat/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/INTEGRATION.md -------------------------------------------------------------------------------- /webchat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/LICENSE -------------------------------------------------------------------------------- /webchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/README.md -------------------------------------------------------------------------------- /webchat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/package.json -------------------------------------------------------------------------------- /webchat/packages/webchat-demo/app/layout.css: -------------------------------------------------------------------------------- 1 | /* Layout styles can be handled by Tailwind now */ 2 | -------------------------------------------------------------------------------- /webchat/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/start.sh -------------------------------------------------------------------------------- /webchat/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/test.html -------------------------------------------------------------------------------- /webchat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/tsconfig.json -------------------------------------------------------------------------------- /webchat/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lite/HEAD/webchat/vite.config.ts --------------------------------------------------------------------------------