From ed239cc6ae33087d31168e9e1cfe5fa9564170fb Mon Sep 17 00:00:00 2001 From: Huxing Zhang Date: Wed, 25 Dec 2024 17:32:29 +0800 Subject: [PATCH 1/2] Update README.md Polish quick start. --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 71beae8bf1..d30863fa0a 100644 --- a/README.md +++ b/README.md @@ -45,19 +45,17 @@ The core advantages of **LoongCollector**: ## 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. ```bash make cp -r example_config/quick_start/* output cd output ./loongcollector -# Now, LoongCollector is collecting data from output/simple.log and outputing the result to stdout +# Now, LoongCollector is collecting data from output/simple.log, +# and outputing the result to stdout ``` - HEAD ## Documentation From b1d5feb367d1d6f60c1f1263a6f90220a48aee1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8F=AF=E7=94=B2?= Date: Thu, 26 Dec 2024 10:46:44 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d30863fa0a..298552cc38 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ cp -r example_config/quick_start/* output cd output ./loongcollector # Now, LoongCollector is collecting data from output/simple.log, -# and outputing the result to stdout +# and outputing the result to stdout. ```