Skip to content

Commit 448aa63

Browse files
Merge pull request #255 from csatib02/docs/fix-typos
docs: fix some typos
2 parents c7aaa1c + 455870f commit 448aa63

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

content/docs/configuration/fluentd-vs-syslog-ng.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ linktitle: Fluentd or syslog-ng
44
weight: 10
55
---
66

7-
The Logging operator supports [Fluentd](https://www.fluentd.org/) and syslog-ng (via the [AxoSyslog syslog-ng distribution](https://axoflow.com/docs/axosyslog-core/)) as log forwarders. The log forwarder instance receives, filters, and transforms the incoming the logs, and transfers them to one or more destination outputs. Which one to use depends on your logging requirements.
7+
The Logging operator supports [Fluentd](https://www.fluentd.org/) and syslog-ng (via the [AxoSyslog syslog-ng distribution](https://axoflow.com/docs/axosyslog-core/)) as log forwarders. The log forwarder instance receives, filters, and transforms the incoming logs, and transfers them to one or more destination outputs. Which one to use depends on your logging requirements.
88

99
<!-- (note that you can use both syslog-ng and Fluentd side-by-side, but in this case you have to explicitly configure your Fluent Bit instances to FIXME) -->
1010

1111
The following points help you decide which forwarder to use.
1212

13-
- The forwarders support different outputs. If the output you want to use is supported only by one forwarder, use that.
13+
- The forwarders support different outputs. If the output you want to use is supported by only one forwarder, use that.
1414
- If the volume of incoming log messages is high, use syslog-ng, as its multithreaded processing provides higher performance.
15-
- If you have lots of logging flows or need complex routing or log message processing, use syslog-ng.
15+
- If you have many logging flows or need complex routing or log message processing, use syslog-ng.
1616

17-
> Note: Depending on which log forwarder you use, some of the CRDs you have to create and configure are different.
17+
> Note: Depending on the log forwarder you choose, the CRDs you need to create and configure will differ.
1818
1919
{{< include-headless "syslog-ng-minimum-version.md" >}}

content/docs/configuration/output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ spec:
5252
## syslog-ng outputs {#syslogngoutput}
5353
5454
- The `SyslogNGOutput` resource defines an output for **syslog-ng** where your SyslogNGFlows can send the log messages. The output is a `namespaced` resource which means only a `SyslogNGFlow` within the *same* namespace can access it. You can use `secrets` in these definitions, but they must also be in the same namespace.
55-
Outputs are the final stage for a `logging flow`. You can define multiple `SyslogNGoutputs` and attach them to multiple `SyslogNGFlows`.
55+
Outputs are the final stage for a `logging flow`. You can define multiple `SyslogNGOutputs` and attach them to multiple `SyslogNGFlows`.
5656
- `SyslogNGClusterOutput` defines a SyslogNGOutput **without** namespace restrictions. It is only evaluated in the `controlNamespace` by default unless `allowClusterResourcesFromAllNamespaces` is set to true.
5757

58-
> Note: `SyslogNGFlow` can be connected to `SyslogNGOutput` and `SyslogNGClusterOutput`, but `SyslogNGClusterFlow` can be attached only to `SyslogNGClusterOutput`.
58+
> Note: `SyslogNGFlow` can be connected to `SyslogNGOutput` and `SyslogNGClusterOutput`, but a `SyslogNGClusterFlow` can only be attached to a `SyslogNGClusterOutput`.
5959

6060
### RFC5424 syslog-ng output example
6161

content/docs/quickstarts/single.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ weight: 100
88
In this tutorial, you will:
99

1010
- Install the Logging operator on a cluster.
11-
- Configure Logging operator to collect logs from a namespace and send it to an sample output.
11+
- Configure Logging operator to collect logs from a namespace and send it to a sample output.
1212
- Install a sample application (log-generator) to collect its logs.
1313
- Check the collected logs.
1414

@@ -53,7 +53,7 @@ EOF
5353
{{% /tab %}}
5454
{{< /tabpane >}}
5555

56-
> Note: The control namespace is where the Logging operator deploys the forwarder's resources, like the StatefulSet and the configuration secrets. Usually it's called `logging`.
56+
> Note: The control namespace is where the Logging operator deploys the forwarder's resources, such as the StatefulSet and the configuration secrets. Usually it's called `logging`.
5757
>
5858
> By default, this namespace is used to define the cluster-wide resources: `SyslogNGClusterOutput`, `SyslogNGClusterFlow`, `ClusterOutput`, and `ClusterFlow`. For details, see {{% xref "/docs/configuration/_index.md" %}}.
5959

@@ -110,7 +110,7 @@ quickstart-fluentd-configcheck-ac2d4553 0/1 Completed 0 60s
110110
{{% /tab %}}
111111
{{< /tabpane >}}
112112
113-
1. Create a namespace (for example, `quickstart`) from where you want to collect the logs.
113+
1. Create a namespace (for example: `quickstart`) from which you want to collect the logs from.
114114
115115
```bash
116116
kubectl create namespace quickstart
@@ -258,7 +258,7 @@ fluentbitagent.logging.banzaicloud.io/quickstart 3m2s
258258
{{% /tab %}}
259259
{{< /tabpane >}}
260260

261-
1. Install log-generator to produce logs with the label `app.kubernetes.io/name: log-generator`
261+
1. Install the log-generator to produce logs labelled with: `app.kubernetes.io/name: log-generator`
262262

263263
```bash
264264
helm upgrade --install --wait --namespace quickstart log-generator oci://ghcr.io/kube-logging/helm-charts/log-generator
@@ -340,10 +340,10 @@ If you have completed this guide, you have made the following changes to your cl
340340
- Installed syslog-ng or Fluentd on the cluster, to receive the logs from the Fluent Bit agents, and filter, parse, and transform them as needed, and to route the incoming logs to an output. To learn more about routing and filtering, see {{% xref "/docs/configuration/log-routing-syslog-ng.md" %}} or {{% xref "/docs/configuration/log-routing.md" %}}. - Created the following resources that configure Logging operator and the components it manages:
341341

342342
- `Logging` to configure the logging infrastructure, like the details of the Fluent Bit and the syslog-ng or Fluentd deployment. To learn more about configuring the logging infrastructure, see {{% xref "/docs/logging-infrastructure/_index.md" %}}.
343-
- `SyslogNGOutput` or `Output` to define an http output that receives the collected messages. To learn more, see {{% xref "/docs/configuration/output.md#syslogngoutput" %}} or {{% xref "/docs/configuration/output.md" %}}.
343+
- `SyslogNGOutput` or `Output` to define an HTTP output that receives the collected messages. To learn more, see {{% xref "/docs/configuration/output.md#syslogngoutput" %}} or {{% xref "/docs/configuration/output.md" %}}.
344344
- `SyslogNGFlow` or `Flow` that processes the incoming messages and routes them to the appropriate output. To learn more, see {{% xref "/docs/configuration/flow.md#syslogngflow" %}} or {{% xref "/docs/configuration/flow.md" %}}.
345345

346-
- Installed a simple receiver to act as the destination of the logs, and configured the the log forwarder to send the logs from the `quickstart` namespace to this destination.
346+
- Installed a simple receiver to act as the destination of the logs, and configured the log forwarder to send the logs from the `quickstart` namespace to this destination.
347347
- Installed a log-generator application to generate sample log messages, and verified that the logs of this application arrive to the output.
348348

349349
<!-- FIXME next steps/links to examples -->

content/headless/quickstart/deploy-logging-operator-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ REVISION: 1
2626
TEST SUITE: None
2727
```
2828

29-
After the installation, check that the following pods and services are running:
29+
After the installation is completed, check that the following pods and services are running:
3030

3131
```shell
3232
kubectl get deploy -n logging

content/headless/quickstart/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
This guide shows you how to collect application and container logs in Kubernetes using the Logging operator.
33

4-
The Logging operator itself doesn't store any logs. For demonstration purposes, it can deploy a special workload will to the cluster to let you observe the logs flowing through the system.
4+
The Logging operator itself doesn't store any logs. For demonstration purposes, it can deploy a special workload to the cluster to let you observe the logs flowing through the system.
55

66
The Logging operator collects all logs from the cluster, selects the specific logs based on pod labels, and sends the selected log messages to the output.
77
For more details about the Logging operator, see the [Logging operator overview]({{< relref "/docs/_index.md">}}).

0 commit comments

Comments
 (0)