Skip to content

Commit 2bc8b08

Browse files
remove other unnecessary instances of $
Signed-off-by: Alexa Kreizinger <[email protected]>
1 parent 4871322 commit 2bc8b08

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+125
-125
lines changed

administration/monitoring.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ Start Fluent bit with the corresponding configuration chosen above:
7171

7272
```shell
7373
# For YAML configuration.
74-
$ ./bin/fluent-bit --config fluent-bit.yaml
74+
./bin/fluent-bit --config fluent-bit.yaml
7575

7676
# For classic configuration.
77-
$ ./bin/fluent-bit --config fluent-bit.conf
77+
./bin/fluent-bit --config fluent-bit.conf
7878
```
7979

8080
Fluent Bit starts and generates output in your terminal:
@@ -282,7 +282,7 @@ The command prints a similar output like this:
282282
Query internal metrics in JSON format with the following command:
283283

284284
```shell
285-
$ curl -s http://127.0.0.1:2020/api/v1/metrics | jq
285+
curl -s http://127.0.0.1:2020/api/v1/metrics | jq
286286
```
287287

288288
The command prints a similar output like this:
@@ -312,7 +312,7 @@ The command prints a similar output like this:
312312
Query internal metrics in Prometheus Text 0.0.4 format:
313313

314314
```shell
315-
$ curl -s http://127.0.0.1:2020/api/v1/metrics/prometheus
315+
curl -s http://127.0.0.1:2020/api/v1/metrics/prometheus
316316
```
317317

318318
This command returns the same metrics in Prometheus format instead of JSON:
@@ -506,7 +506,7 @@ pipeline:
506506
Use the following command to call the health endpoint:
507507

508508
```shell
509-
$ curl -s http://127.0.0.1:2020/api/v1/health
509+
curl -s http://127.0.0.1:2020/api/v1/health
510510
```
511511

512512
With the example configuration, the health status is determined by the following equation:

development/msgpack-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This section provides an overview of the specific types used by Fluent Bit withi
1616
Set up Fluent Bit to send in `msgpack` format to a specific port.
1717

1818
```bash
19-
$ docker run --rm -it --network=host fluent/fluent-bit /fluent-bit/bin/fluent-bit -i cpu -o tcp://127.0.0.1:5170 -p format=msgpack -v
19+
docker run --rm -it --network=host fluent/fluent-bit /fluent-bit/bin/fluent-bit -i cpu -o tcp://127.0.0.1:5170 -p format=msgpack -v
2020

2121
```
2222

development/wasm-filter-plugins.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Currently, Fluent Bit supports the following Wasm tool chains:
3535
As described in the general options in the [source installation](../installation/sources/build-and-install.md) guide, Wasm support is enabled by default. Compile Fluent Bit with Wasm support, for example:
3636

3737
```text
38-
$ cd build/
39-
$ cmake .. [-DFLB_WAMRC=On]
40-
$ make
38+
cd build/
39+
cmake .. [-DFLB_WAMRC=On]
40+
make
4141
```
4242

4343
To support AOT-compiled Wasm execution as filter plugins, build Fluent Bit with `-DFLB_WAMRC=On`.
@@ -65,7 +65,7 @@ The Fluent Bit Wasm filter assumes C ABI, also known as `wasm32-unknown-unknown`
6565
TinyGo and WASI SDK support Wasm target by default. When using Rust's `wasm32-unknown-unknown` target, you must install `wasm32-unknown-unknown` by using [rustup](https://rustup.rs/). Then, install the target components as follows:
6666

6767
```text
68-
$ rustup target add wasm32-unknown-unknown
68+
rustup target add wasm32-unknown-unknown
6969
```
7070

7171
### Requirements of Wasm programs
@@ -228,13 +228,13 @@ To optimize Wasm program execution, there is the option of using `flb-wamrc`. Th
228228
This tool will be built when the `-DFLB_WAMRC=On` CMake option is specified and LLVM infrastructure is installed on the building box.
229229

230230
```shell
231-
$ flb-wamrc -o /path/to/built_wasm.aot /path/to/built_wasm.wasm
231+
flb-wamrc -o /path/to/built_wasm.aot /path/to/built_wasm.wasm
232232
```
233233

234234
For further optimizations to the specific CPU, such as Cortex-A57 series:
235235

236236
```text
237-
$ flb-wamrc --size-level=3 --target=aarch64v8 --cpu=cortex-a57 -o /path/to/built_wasm.aot /path/to/built_wasm.wasm
237+
flb-wamrc --size-level=3 --target=aarch64v8 --cpu=cortex-a57 -o /path/to/built_wasm.aot /path/to/built_wasm.wasm
238238
```
239239

240240
Then, when AOT (Ahead Of Time) compiling has succeeded:

development/wasm-input-plugins.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Fluent Bit supports the following Wasm toolchains:
2525
Compile Fluent Bit with Wasm support. For example:
2626

2727
```text
28-
$ cd build/
29-
$ cmake ..
30-
$ make
28+
cd build/
29+
cmake ..
30+
make
3131
```
3232

3333
Once compiled, you can see new plugins that handle `wasm`. For example:
@@ -53,7 +53,7 @@ Wasm input in Fluent Bit assumes WASI ABI, also known as `wasm32-wasi` on Rust t
5353
TinyGo and WASI SDK support Wasm target by default. When using Rust's `wasm32-wasi` target, you must install `wasm32-wasi` by using [rustup](https://rustup.rs/). Then, install the target components as:
5454

5555
```text
56-
$ rustup target add wasm32-wasi
56+
rustup target add wasm32-wasi
5757
```
5858

5959
### Requirements of Wasm/WASI programs

pipeline/inputs/cpu-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In order to get the statistics of the CPU usage of your system, you can run the
4040
You can run this filter from the command line using a command like the following:
4141

4242
```shell
43-
$ build/bin/fluent-bit -i cpu -t my_cpu -o stdout -m '*'
43+
build/bin/fluent-bit -i cpu -t my_cpu -o stdout -m '*'
4444
```
4545

4646
The command returns results similar to the following:

pipeline/inputs/disk-io-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In order to get disk usage from your system, you can run the plugin from the com
2424
You can run the plugin from the command line:
2525

2626
```shell
27-
$ fluent-bit -i disk -o stdout
27+
fluent-bit -i disk -o stdout
2828
```
2929

3030
Which returns information like the following:

pipeline/inputs/docker-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This plugin supports the following configuration parameters:
2121
You can run this plugin from the command line:
2222

2323
```shell
24-
$ fluent-bit -i docker_events -o stdout
24+
fluent-bit -i docker_events -o stdout
2525
```
2626

2727
### Configuration file

pipeline/inputs/dummy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can run the plugin from the command line or through the configuration file:
2929
Run the plugin from the command line using the following command:
3030

3131
```shell
32-
$ fluent-bit -i dummy -o stdout
32+
fluent-bit -i dummy -o stdout
3333
```
3434

3535
which returns results like the following:

pipeline/inputs/ebpf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ To enable the `in_ebpf` plugin, follow these steps to build Fluent Bit from sour
5858

5959
```bash
6060
# For YAML configuration.
61-
$ sudo ./bin/fluent-bit --config fluent-bit.yaml
61+
sudo ./bin/fluent-bit --config fluent-bit.yaml
6262

6363
# For classic configuration.
64-
$ sudo ./bin/fluent-bit --config fluent-bit.conf
64+
sudo ./bin/fluent-bit --config fluent-bit.conf
6565
```
6666

6767
## Configuration example

pipeline/inputs/elasticsearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In order to start performing the checks, you can run the plugin from the command
2929
From the command line you can configure Fluent Bit to handle Bulk API requests with the following options:
3030

3131
```shell
32-
$ fluent-bit -i elasticsearch -p port=9200 -o stdout
32+
fluent-bit -i elasticsearch -p port=9200 -o stdout
3333
```
3434

3535
### Configuration file

0 commit comments

Comments
 (0)