├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement.md │ └── support.md └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG-developer.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CODE_OF_CONDUCT_EN.md ├── CONTRIBUTING.md ├── CONTRIBUTING_EN.md ├── Dockerfile ├── LICENSE ├── LICENSE.txt ├── Makefile ├── README.md ├── README_EN.md ├── VERSION ├── beater ├── acker.go ├── beater.go └── manager.go ├── bkunifylogbeat.reference.yml ├── bkunifylogbeat_main.yml ├── config ├── config.go ├── config_test.go ├── input │ ├── log.go │ ├── log_test.go │ ├── redis.go │ ├── wineventlog.go │ └── wineventlog_test.go ├── operator.go ├── task.go └── task_test.go ├── docs ├── overview │ ├── architecture.md │ ├── architecture_en.md │ ├── code_framework.md │ └── code_framework_en.md ├── resource │ └── img │ │ ├── architecture.png │ │ ├── logo-en.png │ │ ├── logo.png │ │ ├── product.jpeg │ │ └── wiki │ │ ├── blueking.png │ │ ├── community-flow.png │ │ ├── community.jpg │ │ └── join-bk-community.jpg └── wiki │ ├── README.md │ ├── _Footer.md │ ├── _Sidebar.md │ ├── community.md │ ├── faq.md │ ├── issues-guideline.md │ ├── join-bk-community.md │ └── specification │ ├── review.md │ └── review_en.md ├── go.mod ├── go.sum ├── include └── default.go ├── json ├── sonic.go └── std.go ├── main.go ├── registrar ├── registrar.go └── registrar_test.go ├── support-files └── templates │ ├── aix │ └── powerpc │ │ ├── etc │ │ ├── bkunifylogbeat.conf │ │ ├── bkunifylogbeat.conf.tpl │ │ ├── bkunifylogbeat_kafka.conf.tpl │ │ ├── bkunifylogbeat_main.conf.tpl │ │ └── bkunifylogbeat_syslog.conf.tpl │ │ └── project.yaml │ ├── linux │ ├── aarch64 │ │ ├── etc │ │ │ ├── bkunifylogbeat.conf │ │ │ ├── bkunifylogbeat.conf.tpl │ │ │ ├── bkunifylogbeat_kafka.conf.tpl │ │ │ ├── bkunifylogbeat_main.conf.tpl │ │ │ ├── bkunifylogbeat_redis_slowlog.conf.tpl │ │ │ └── bkunifylogbeat_syslog.conf.tpl │ │ └── project.yaml │ ├── x86 │ │ ├── etc │ │ │ ├── bkunifylogbeat.conf │ │ │ ├── bkunifylogbeat.conf.tpl │ │ │ ├── bkunifylogbeat_kafka.conf.tpl │ │ │ ├── bkunifylogbeat_main.conf.tpl │ │ │ ├── bkunifylogbeat_redis_slowlog.conf.tpl │ │ │ └── bkunifylogbeat_syslog.conf.tpl │ │ └── project.yaml │ └── x86_64 │ │ ├── etc │ │ ├── bkunifylogbeat.conf │ │ ├── bkunifylogbeat.conf.tpl │ │ ├── bkunifylogbeat_kafka.conf.tpl │ │ ├── bkunifylogbeat_main.conf.tpl │ │ ├── bkunifylogbeat_redis_slowlog.conf.tpl │ │ └── bkunifylogbeat_syslog.conf.tpl │ │ └── project.yaml │ └── windows │ ├── x86 │ ├── etc │ │ ├── bkunifylogbeat.conf │ │ ├── bkunifylogbeat.conf.tpl │ │ ├── bkunifylogbeat_kafka.conf.tpl │ │ ├── bkunifylogbeat_main.conf.tpl │ │ ├── bkunifylogbeat_redis_slowlog.conf.tpl │ │ ├── bkunifylogbeat_syslog.conf.tpl │ │ └── bkunifylogbeat_winlog.conf.tpl │ └── project.yaml │ └── x86_64 │ ├── etc │ ├── bkunifylogbeat.conf │ ├── bkunifylogbeat.conf.tpl │ ├── bkunifylogbeat_kafka.conf.tpl │ ├── bkunifylogbeat_main.conf.tpl │ ├── bkunifylogbeat_redis_slowlog.conf.tpl │ ├── bkunifylogbeat_syslog.conf.tpl │ └── bkunifylogbeat_winlog.conf.tpl │ └── project.yaml ├── task ├── base │ └── base.go ├── filter │ ├── filter.go │ └── filter_test.go ├── formatter │ ├── formatter.go │ ├── tqos.go │ ├── tqos_test.go │ ├── unifytlogc.go │ ├── unifytlogc_test.go │ ├── v1.go │ ├── v2.go │ └── v2_test.go ├── input │ ├── input.go │ └── wineventlog │ │ ├── config.go │ │ ├── eventlogger.go │ │ ├── eventrecord.go │ │ └── input.go ├── processor │ └── processor.go ├── sender │ ├── sender.go │ └── sender_test.go └── task.go ├── tests ├── conf │ ├── main.conf │ └── task.conf ├── logs │ └── test.log └── test.go └── utils ├── cpulimit.go ├── cpulimit_linux.go ├── cpulimit_other.go ├── cpulimit_test.go ├── docker.go ├── hash.go ├── hash_test.go ├── reader_test.go ├── time.go └── time_test.go /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/.github/ISSUE_TEMPLATE/support.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /bin 3 | /build 4 | /vendor 5 | coverage.out 6 | *.bkpipe.db 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /CHANGELOG-developer.md: -------------------------------------------------------------------------------- 1 | # 新增 2 | # 修复 3 | # 优化 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/CODE_OF_CONDUCT_EN.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/CONTRIBUTING_EN.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/README_EN.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 7.7 2 | -------------------------------------------------------------------------------- /beater/acker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/beater/acker.go -------------------------------------------------------------------------------- /beater/beater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/beater/beater.go -------------------------------------------------------------------------------- /beater/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/beater/manager.go -------------------------------------------------------------------------------- /bkunifylogbeat.reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/bkunifylogbeat.reference.yml -------------------------------------------------------------------------------- /bkunifylogbeat_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/bkunifylogbeat_main.yml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/input/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/input/log.go -------------------------------------------------------------------------------- /config/input/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/input/log_test.go -------------------------------------------------------------------------------- /config/input/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/input/redis.go -------------------------------------------------------------------------------- /config/input/wineventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/input/wineventlog.go -------------------------------------------------------------------------------- /config/input/wineventlog_test.go: -------------------------------------------------------------------------------- 1 | package input 2 | -------------------------------------------------------------------------------- /config/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/operator.go -------------------------------------------------------------------------------- /config/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/task.go -------------------------------------------------------------------------------- /config/task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/config/task_test.go -------------------------------------------------------------------------------- /docs/overview/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/overview/architecture.md -------------------------------------------------------------------------------- /docs/overview/architecture_en.md: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /docs/overview/code_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/overview/code_framework.md -------------------------------------------------------------------------------- /docs/overview/code_framework_en.md: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /docs/resource/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/architecture.png -------------------------------------------------------------------------------- /docs/resource/img/logo-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/logo-en.png -------------------------------------------------------------------------------- /docs/resource/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/logo.png -------------------------------------------------------------------------------- /docs/resource/img/product.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/product.jpeg -------------------------------------------------------------------------------- /docs/resource/img/wiki/blueking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/wiki/blueking.png -------------------------------------------------------------------------------- /docs/resource/img/wiki/community-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/wiki/community-flow.png -------------------------------------------------------------------------------- /docs/resource/img/wiki/community.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/wiki/community.jpg -------------------------------------------------------------------------------- /docs/resource/img/wiki/join-bk-community.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/resource/img/wiki/join-bk-community.jpg -------------------------------------------------------------------------------- /docs/wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/README.md -------------------------------------------------------------------------------- /docs/wiki/_Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/_Footer.md -------------------------------------------------------------------------------- /docs/wiki/_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/_Sidebar.md -------------------------------------------------------------------------------- /docs/wiki/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/community.md -------------------------------------------------------------------------------- /docs/wiki/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/faq.md -------------------------------------------------------------------------------- /docs/wiki/issues-guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/issues-guideline.md -------------------------------------------------------------------------------- /docs/wiki/join-bk-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/join-bk-community.md -------------------------------------------------------------------------------- /docs/wiki/specification/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/specification/review.md -------------------------------------------------------------------------------- /docs/wiki/specification/review_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/docs/wiki/specification/review_en.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/go.sum -------------------------------------------------------------------------------- /include/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/include/default.go -------------------------------------------------------------------------------- /json/sonic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/json/sonic.go -------------------------------------------------------------------------------- /json/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/json/std.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/main.go -------------------------------------------------------------------------------- /registrar/registrar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/registrar/registrar.go -------------------------------------------------------------------------------- /registrar/registrar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/registrar/registrar_test.go -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/aix/powerpc/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/aix/powerpc/project.yaml -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat_redis_slowlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat_redis_slowlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/aarch64/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/aarch64/project.yaml -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat_redis_slowlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat_redis_slowlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86/project.yaml -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat_redis_slowlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat_redis_slowlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/linux/x86_64/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/linux/x86_64/project.yaml -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat_redis_slowlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat_redis_slowlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/etc/bkunifylogbeat_winlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/etc/bkunifylogbeat_winlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86/project.yaml -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat.conf -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat_kafka.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat_kafka.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat_main.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat_main.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat_redis_slowlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat_redis_slowlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat_syslog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat_syslog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/etc/bkunifylogbeat_winlog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/etc/bkunifylogbeat_winlog.conf.tpl -------------------------------------------------------------------------------- /support-files/templates/windows/x86_64/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/support-files/templates/windows/x86_64/project.yaml -------------------------------------------------------------------------------- /task/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/base/base.go -------------------------------------------------------------------------------- /task/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/filter/filter.go -------------------------------------------------------------------------------- /task/filter/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/filter/filter_test.go -------------------------------------------------------------------------------- /task/formatter/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/formatter.go -------------------------------------------------------------------------------- /task/formatter/tqos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/tqos.go -------------------------------------------------------------------------------- /task/formatter/tqos_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/tqos_test.go -------------------------------------------------------------------------------- /task/formatter/unifytlogc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/unifytlogc.go -------------------------------------------------------------------------------- /task/formatter/unifytlogc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/unifytlogc_test.go -------------------------------------------------------------------------------- /task/formatter/v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/v1.go -------------------------------------------------------------------------------- /task/formatter/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/v2.go -------------------------------------------------------------------------------- /task/formatter/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/formatter/v2_test.go -------------------------------------------------------------------------------- /task/input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/input/input.go -------------------------------------------------------------------------------- /task/input/wineventlog/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/input/wineventlog/config.go -------------------------------------------------------------------------------- /task/input/wineventlog/eventlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/input/wineventlog/eventlogger.go -------------------------------------------------------------------------------- /task/input/wineventlog/eventrecord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/input/wineventlog/eventrecord.go -------------------------------------------------------------------------------- /task/input/wineventlog/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/input/wineventlog/input.go -------------------------------------------------------------------------------- /task/processor/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/processor/processor.go -------------------------------------------------------------------------------- /task/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/sender/sender.go -------------------------------------------------------------------------------- /task/sender/sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/sender/sender_test.go -------------------------------------------------------------------------------- /task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/task/task.go -------------------------------------------------------------------------------- /tests/conf/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/tests/conf/main.conf -------------------------------------------------------------------------------- /tests/conf/task.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/tests/conf/task.conf -------------------------------------------------------------------------------- /tests/logs/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/tests/logs/test.log -------------------------------------------------------------------------------- /tests/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/tests/test.go -------------------------------------------------------------------------------- /utils/cpulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/cpulimit.go -------------------------------------------------------------------------------- /utils/cpulimit_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/cpulimit_linux.go -------------------------------------------------------------------------------- /utils/cpulimit_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/cpulimit_other.go -------------------------------------------------------------------------------- /utils/cpulimit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/cpulimit_test.go -------------------------------------------------------------------------------- /utils/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/docker.go -------------------------------------------------------------------------------- /utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/hash.go -------------------------------------------------------------------------------- /utils/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/hash_test.go -------------------------------------------------------------------------------- /utils/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/reader_test.go -------------------------------------------------------------------------------- /utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/time.go -------------------------------------------------------------------------------- /utils/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bkunifylogbeat/HEAD/utils/time_test.go --------------------------------------------------------------------------------