-
Notifications
You must be signed in to change notification settings - Fork 408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polish README #1992
Merged
Merged
Polish README #1992
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Polish quick start.
For the complexity of C++ dependencies, the compilation of LoongCollector requires you have docker installed. If you aim to build LoongCollector from sources, you can go ahead and start with the following commands. | ||
|
||
1. Start with local | ||
For the complexity of C++ dependencies, the compilation of LoongCollector requires you have docker and golang installed. If you aim to build LoongCollector from sources, you can go ahead and start with the following commands. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
编译的过程是,make里面会拉起docer,剩下的事情都在docker里完成了,golang的依赖在docker中已经解决了。所以这里不需要修改
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果没有安装 golang 运行时,make 的时候会直接报错,需要先 yum install go 才能继续完成编译流程
Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
rm -rf "license_coverage.txt"
rm -rf "output" "dist"
rm -rf behavior-test
rm -rf performance-test
rm -rf core-test
rm -rf e2e-engine-coverage.txt
rm -rf find_licenses
rm -rf "generated_files"
rm -rf .testCoverage.txt
rm -rf .coretestCoverage.txt
rm -rf core/build
rm -rf plugin_main/*.dll
rm -rf plugin_main/*.so
rm -rf plugins/all/all.go
rm -rf plugins/all/all_debug.go
rm -rf plugins/all/all_windows.go
rm -rf plugins/all/all_linux.go
go mod tidy -modfile "go.mod" || true
/bin/sh: go: command not found
./scripts/import_plugins.sh plugins.yml,external_plugins.yml go.mod
===============GENERATING PLUGINS IMPORT==================
config: plugins.yml,external_plugins.yml
modfile: go.mod
root-dir: /root/loongcollector
==========================================================
./scripts/import_plugins.sh: line 39: go: command not found
make: *** [Makefile:149: import_plugins] Error 127
messixukejia
approved these changes
Dec 30, 2024
henryzhx8
pushed a commit
that referenced
this pull request
Jan 20, 2025
…in-20241229 merge Link: https://code.alibaba-inc.com/sls/ilogtail/codereview/19919644 * set the logtail_mode flag to true for enterprise builds (#1976) * fix: add check future object valid before wait on it (#1986) * init (#1993) * Optimize the limiter code to meet better isolation and recovery scenarios (#1985) * fix: flusher_otlp stop nil log/metric/trace client (#1994) * fix nil log/metric/trace otlp client stop issue Change-Id: I8948322d1e54a61c7b17968a5bcaf5590d9a437c * add ut Change-Id: Ib0003a387cb9d23592f28fd8097bc49ff3ae2351 * Polish README (#1992) * Update README.md Polish quick start. * test: pipeline update unittest (#1991) * test: pipeline update unittest * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: prom stream scrape and stream process (#1925) * add ut (#1997) * feat: add metrics for logtail mode (#2001) * init * fix ut * Merge remote-tracking branch 'upstream/main' into merge-opensource-main-20241229 merge
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Polish quick start.