You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/user-guide/quick-start/setup/main-page.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ CLP uses Docker to deploy its different components. You can check whether Docker
16
16
docker version
17
17
```
18
18
19
-
If Docker is not on your system, follow the instructions [here][Docker] to install it.
19
+
If Docker is not on your system, follow the instructions [here][Docker] to install it.
20
20
21
21
If you're not running as root, ensure Docker can be run [without superuser privileges][docker-non-root].
22
22
23
23
If you're using Docker Desktop, ensure version 4.34 or higher is installed, and [host networking is enabled][docker-desktop-host-networking].
24
24
25
25
### Python
26
26
27
-
CLP uses Python to interpret the scripts that coordinate how it runs. Specifically, CLP needs Python version 3.8 or higher. Many Linux distributions come with Python pre-installed, but just to be sure, run the command
27
+
CLP uses Python to interpret the scripts that coordinate how it runs. Specifically, CLP needs Python version 3.8 or higher. Many Linux distributions come with Python pre-installed; to confirm that it's on your system, run the command
28
28
29
29
```bash
30
30
python3 --version
@@ -33,7 +33,7 @@ python3 --version
33
33
If Python isn't on your system, or if the version isn't high enough, install or upgrade it.
34
34
35
35
:::{note}
36
-
If you're planning on deploying CLP on multiple nodes/systems, there are a few other system requirements; check out the [multi-node deployment](../../guides/guides-multi-node/multi-node) page for more details.
36
+
If you're planning to deploy CLP on multiple nodes/systems, there are a few other system requirements; check out the [multi-node deployment](../../guides/guides-multi-node/multi-node) page for more details.
37
37
:::
38
38
39
39
---
@@ -52,7 +52,7 @@ Both flavours contain the same binaries but are configured with different values
52
52
53
53
### clp-json
54
54
55
-
The JSON flavour of CLP is appropriate for JSON logs where each log event is an independent JSON
55
+
The JSON flavour of CLP is appropriate for JSON logs, where each log event is an independent JSON
56
56
object. For example:
57
57
58
58
```json lines
@@ -89,7 +89,7 @@ Learn how to start up clp-json, and begin compressing and searching JSON logs.
89
89
90
90
### clp-text
91
91
92
-
The unstructured text flavour of CLP is appropriate for unstructured text logs where each log event contains a
92
+
The unstructured text flavour of CLP is appropriate for unstructured text logs, where each log event contains a
93
93
timestamp and may span one or more lines.
94
94
95
95
:::{note}
@@ -99,7 +99,7 @@ it will treat each line as an independent log event.
99
99
100
100
For example:
101
101
102
-
```
102
+
```text
103
103
2015-03-23T15:50:17.926Z INFO container_1 Transitioned from ALLOCATED to ACQUIRED
104
104
2015-03-23T15:50:17.927Z ERROR Scheduler: Error trying to assign container token
0 commit comments