├── .github └── workflows │ ├── py2-build.yaml │ ├── py3-build.yaml │ └── py3-test.yaml ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── README.md ├── README_CN.md ├── RELEASE_CN.md ├── aliyunlogcli ├── __init__.py ├── cli.py ├── cli_core.py ├── config.py ├── exceptions.py ├── parser.py └── version.py ├── doc ├── Makefile ├── make.bat ├── source │ ├── api.rst │ ├── conf.py │ ├── index.rst │ └── tutorials │ │ ├── jmes_filter_usage.rst │ │ ├── tutorial_cn.rst │ │ ├── tutorial_en.rst │ │ └── tutorial_log_upload.rst └── tutorials │ ├── tutorial_configure_accounts_in_file_cn.md │ ├── tutorial_configure_cli_cn.md │ ├── tutorial_configure_cli_en.md │ ├── tutorial_copy_data.md │ ├── tutorial_create_logtail_config.md │ ├── tutorial_es_migration_cn.md │ ├── tutorial_etl_deployment_management.md │ ├── tutorial_etl_extension_udf.md │ ├── tutorial_etl_intro_scenario.md │ ├── tutorial_etl_orchestration_transform.md │ ├── tutorial_get_logs.md │ ├── tutorial_get_logs_en.md │ ├── tutorial_get_resource_usage.md │ ├── tutorial_human_readable_datetime.md │ ├── tutorial_manage_cross_region_copy.md │ ├── tutorial_manage_cross_region_copy_index_dashboard.md │ ├── tutorial_pull_logs.md │ └── tutorial_split_shard.md ├── options.txt ├── requirements-doc.txt ├── requirements.txt ├── setup.py └── tests ├── cmd_list.txt ├── config ├── alert_1.json ├── dashboard_1.json ├── external_storage_rds_1.json └── savedsearch_1.json ├── create_index.json ├── create_logtail_config_file.json ├── create_machine_group.json ├── create_odps_shipper_config.json ├── create_oss_shipper_config.json ├── index ├── aegis_log_index.json ├── oss_log_index.json └── python_logging_handler_index.json ├── logtail ├── docker-stdout-config.json ├── feitian_1.json ├── feitian_2.json ├── json_1.json ├── json_2.json ├── json_3.json ├── json_4_docker.json ├── mysql-binlog-config.json ├── mysql-rawsql-config.json ├── nginx-status-config.json ├── ngnix_1.json ├── reg_1.json ├── reg_2.json ├── reg_3.json ├── reg_4_docker.json ├── sep_1.json ├── sep_2.json ├── sep_3.json ├── sep_4_docker.json ├── simple_1.json ├── simple_2.json ├── simple_3.json ├── simple_4_docker.json └── syslog_1.json ├── shipper ├── oss_csv.json ├── oss_json.json └── oss_parquet.json ├── test_cli.py ├── test_cmd_format.py ├── test_error_message.py ├── transform_data_config1.py ├── transform_data_config2.py ├── update_index.json └── util.py /.github/workflows/py2-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/.github/workflows/py2-build.yaml -------------------------------------------------------------------------------- /.github/workflows/py3-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/.github/workflows/py3-build.yaml -------------------------------------------------------------------------------- /.github/workflows/py3-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/.github/workflows/py3-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc 3 | .DS_Store 4 | build/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/README_CN.md -------------------------------------------------------------------------------- /RELEASE_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/RELEASE_CN.md -------------------------------------------------------------------------------- /aliyunlogcli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/__init__.py -------------------------------------------------------------------------------- /aliyunlogcli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/cli.py -------------------------------------------------------------------------------- /aliyunlogcli/cli_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/cli_core.py -------------------------------------------------------------------------------- /aliyunlogcli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/config.py -------------------------------------------------------------------------------- /aliyunlogcli/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/exceptions.py -------------------------------------------------------------------------------- /aliyunlogcli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/parser.py -------------------------------------------------------------------------------- /aliyunlogcli/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/aliyunlogcli/version.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/api.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/tutorials/jmes_filter_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/tutorials/jmes_filter_usage.rst -------------------------------------------------------------------------------- /doc/source/tutorials/tutorial_cn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/tutorials/tutorial_cn.rst -------------------------------------------------------------------------------- /doc/source/tutorials/tutorial_en.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/tutorials/tutorial_en.rst -------------------------------------------------------------------------------- /doc/source/tutorials/tutorial_log_upload.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/source/tutorials/tutorial_log_upload.rst -------------------------------------------------------------------------------- /doc/tutorials/tutorial_configure_accounts_in_file_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_configure_accounts_in_file_cn.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_configure_cli_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_configure_cli_cn.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_configure_cli_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_configure_cli_en.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_copy_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_copy_data.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_create_logtail_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_create_logtail_config.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_es_migration_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_es_migration_cn.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_etl_deployment_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_etl_deployment_management.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_etl_extension_udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_etl_extension_udf.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_etl_intro_scenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_etl_intro_scenario.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_etl_orchestration_transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_etl_orchestration_transform.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_get_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_get_logs.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_get_logs_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_get_logs_en.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_get_resource_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_get_resource_usage.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_human_readable_datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_human_readable_datetime.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_manage_cross_region_copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_manage_cross_region_copy.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_manage_cross_region_copy_index_dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_manage_cross_region_copy_index_dashboard.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_pull_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_pull_logs.md -------------------------------------------------------------------------------- /doc/tutorials/tutorial_split_shard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/doc/tutorials/tutorial_split_shard.md -------------------------------------------------------------------------------- /options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/options.txt -------------------------------------------------------------------------------- /requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/requirements-doc.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/cmd_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/cmd_list.txt -------------------------------------------------------------------------------- /tests/config/alert_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/config/alert_1.json -------------------------------------------------------------------------------- /tests/config/dashboard_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/config/dashboard_1.json -------------------------------------------------------------------------------- /tests/config/external_storage_rds_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/config/external_storage_rds_1.json -------------------------------------------------------------------------------- /tests/config/savedsearch_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/config/savedsearch_1.json -------------------------------------------------------------------------------- /tests/create_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/create_index.json -------------------------------------------------------------------------------- /tests/create_logtail_config_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/create_logtail_config_file.json -------------------------------------------------------------------------------- /tests/create_machine_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/create_machine_group.json -------------------------------------------------------------------------------- /tests/create_odps_shipper_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/create_odps_shipper_config.json -------------------------------------------------------------------------------- /tests/create_oss_shipper_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/create_oss_shipper_config.json -------------------------------------------------------------------------------- /tests/index/aegis_log_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/index/aegis_log_index.json -------------------------------------------------------------------------------- /tests/index/oss_log_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/index/oss_log_index.json -------------------------------------------------------------------------------- /tests/index/python_logging_handler_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/index/python_logging_handler_index.json -------------------------------------------------------------------------------- /tests/logtail/docker-stdout-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/docker-stdout-config.json -------------------------------------------------------------------------------- /tests/logtail/feitian_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/feitian_1.json -------------------------------------------------------------------------------- /tests/logtail/feitian_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/feitian_2.json -------------------------------------------------------------------------------- /tests/logtail/json_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/json_1.json -------------------------------------------------------------------------------- /tests/logtail/json_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/json_2.json -------------------------------------------------------------------------------- /tests/logtail/json_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/json_3.json -------------------------------------------------------------------------------- /tests/logtail/json_4_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/json_4_docker.json -------------------------------------------------------------------------------- /tests/logtail/mysql-binlog-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/mysql-binlog-config.json -------------------------------------------------------------------------------- /tests/logtail/mysql-rawsql-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/mysql-rawsql-config.json -------------------------------------------------------------------------------- /tests/logtail/nginx-status-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/nginx-status-config.json -------------------------------------------------------------------------------- /tests/logtail/ngnix_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/ngnix_1.json -------------------------------------------------------------------------------- /tests/logtail/reg_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/reg_1.json -------------------------------------------------------------------------------- /tests/logtail/reg_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/reg_2.json -------------------------------------------------------------------------------- /tests/logtail/reg_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/reg_3.json -------------------------------------------------------------------------------- /tests/logtail/reg_4_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/reg_4_docker.json -------------------------------------------------------------------------------- /tests/logtail/sep_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/sep_1.json -------------------------------------------------------------------------------- /tests/logtail/sep_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/sep_2.json -------------------------------------------------------------------------------- /tests/logtail/sep_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/sep_3.json -------------------------------------------------------------------------------- /tests/logtail/sep_4_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/sep_4_docker.json -------------------------------------------------------------------------------- /tests/logtail/simple_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/simple_1.json -------------------------------------------------------------------------------- /tests/logtail/simple_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/simple_2.json -------------------------------------------------------------------------------- /tests/logtail/simple_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/simple_3.json -------------------------------------------------------------------------------- /tests/logtail/simple_4_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/simple_4_docker.json -------------------------------------------------------------------------------- /tests/logtail/syslog_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/logtail/syslog_1.json -------------------------------------------------------------------------------- /tests/shipper/oss_csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/shipper/oss_csv.json -------------------------------------------------------------------------------- /tests/shipper/oss_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/shipper/oss_json.json -------------------------------------------------------------------------------- /tests/shipper/oss_parquet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/shipper/oss_parquet.json -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_cmd_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/test_cmd_format.py -------------------------------------------------------------------------------- /tests/test_error_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/test_error_message.py -------------------------------------------------------------------------------- /tests/transform_data_config1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/transform_data_config1.py -------------------------------------------------------------------------------- /tests/transform_data_config2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/transform_data_config2.py -------------------------------------------------------------------------------- /tests/update_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/update_index.json -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-log-cli/HEAD/tests/util.py --------------------------------------------------------------------------------