@cryptotaxi247 / netdata-1 / commits / 4cb5435b8

Fix typos (#12183)

Dimitris Apostolou committed Feb 21, 2022 at 09:30 UTC 4cb5435b8d16c6b117ef1774dcf324c75b5bab9d
9 files changed +13 -13
packaging/installer/dependencies/centos.sh
+1 -1
@@ -36,7 +36,7 @@ os_version() {
36 # shellcheck disable=SC2002
37 cat /etc/os-release | grep VERSION_ID | cut -d'=' -f2 | cut -d'"' -f2
38 else
39 - echo "Erorr: Cannot determine OS version!"
39 + echo "Error: Cannot determine OS version!"
40 exit 1
41 fi
42 }
packaging/installer/dependencies/fedora.sh
+1 -1
@@ -12,7 +12,7 @@ os_version() {
12 # shellcheck disable=SC2002
13 cat /etc/os-release | grep VERSION_ID | cut -d'=' -f2
14 else
15 - echo "Erorr: Cannot determine OS version!"
15 + echo "Error: Cannot determine OS version!"
16 exit 1
17 fi
18 }
packaging/installer/methods/kickstart.md
+1 -1
@@ -48,7 +48,7 @@ The `kickstart.sh` script accepts a number of optional parameters to control how
48 - `--non-interactive`: Don’t prompt for anything and assume yes whenever possible, overriding any automatic detection of an interactive run.
49 - `--interactive`: Act as if running interactively, even if automatic detection indicates a run is non-interactive.
50 - `--dont-wait`: Synonym for `--non-interactive`
51 -- `--dont-start-it`: Don’t auto-start the daemon after installing. This parameter is not gauranteed to work.
51 +- `--dont-start-it`: Don’t auto-start the daemon after installing. This parameter is not guaranteed to work.
52 - `--nightly-channel`: Use a nightly build instead of a stable release (this is the default).
53 - `--stable-channel`: Use a stable release instead of a nightly build.
54 - `--auto-update`: Enable automatic updates (this is the default).
streaming/README.md
+1 -1
@@ -368,7 +368,7 @@ A compressed data packet is determined and decompressed on the fly.
368 #### Limitations
369 This limitation will be withdrawn asap and is work-in-progress.
370
371 -The current implementation of streaming data compression can support only a few number of dimensions in a chart with names that cannot exceed the size of 16384 bytes. In case you experience stream connection problems or gaps in the charts please disable stream compresssion in the `stream.conf` file. This limitation can be seen in the error.log file with the sequence of the following messages:
371 +The current implementation of streaming data compression can support only a few number of dimensions in a chart with names that cannot exceed the size of 16384 bytes. In case you experience stream connection problems or gaps in the charts please disable stream compression in the `stream.conf` file. This limitation can be seen in the error.log file with the sequence of the following messages:
372 ```
373 Compression error - data discarded
374 Message size above limit:
streaming/compression.c
+3 -3
@@ -56,7 +56,7 @@ static void lz4_compressor_destroy(struct compressor_state **state)
56
57 /*
58 * Compress the given block of data
59 - * Comprecced data will remain in the internal buffer until the next invokation
59 + * Comprecced data will remain in the internal buffer until the next invocation
60 * Return the size of compressed data block as result and the pointer to internal buffer using the last argument
61 * or 0 in case of error
62 */
@@ -98,7 +98,7 @@ static size_t lz4_compressor_compress(struct compressor_state *state, const char
98 }
99
100 /*
101 - * Create and initalize compressor state
101 + * Create and initialize compressor state
102 * Return the pointer to compressor_state structure created
103 */
104 struct compressor_state *create_compressor()
@@ -318,7 +318,7 @@ static size_t lz4_decompressor_get(struct decompressor_state *state, char *data,
318 }
319
320 /*
321 - * Create and initalize decompressor state
321 + * Create and initialize decompressor state
322 * Return the pointer to decompressor_state structure created
323 */
324 struct decompressor_state *create_decompressor()
streaming/rrdpush.h
+1 -1
@@ -62,7 +62,7 @@ struct decompressor_state {
62 size_t total_compressed;
63 size_t total_uncompressed;
64 size_t packet_count;
65 - struct decompressor_data *data; // Deompression API specific data
65 + struct decompressor_data *data; // Decompression API specific data
66 void (*reset)(struct decompressor_state *state);
67 size_t (*start)(struct decompressor_state *state, const char *header, size_t header_size);
68 size_t (*put)(struct decompressor_state *state, const char *data, size_t size);
streaming/stream.conf
+3 -3
@@ -60,7 +60,7 @@
60 # The API_KEY to use (as the sender)
61 api key =
62
63 - # Stream Compresssion
63 + # Stream Compression
64 #
65 # The netdata child is configurated to enable stream compression by default.
66 # You can control stream compression in this agent with options: yes | no
@@ -162,7 +162,7 @@
162 #default proxy api key = API_KEY
163 #default proxy send charts matching = *
164
165 - # Stream Compresssion
165 + # Stream Compression
166 #
167 # The stream with the child can be configurated to enable stream compression.
168 # You can control stream compression in this parent agent stream with options: yes | no
@@ -216,7 +216,7 @@
216 #proxy api key = API_KEY
217 #proxy send charts matching = *
218
219 - # Stream Compresssion
219 + # Stream Compression
220 #
221 # The stream with the child can be configurated to enable stream compression.
222 # You can control stream compression in this parent agent stream with options: yes | no
web/api/netdata-swagger.json
+1 -1
@@ -2099,7 +2099,7 @@
2099 },
2100 "agent-claimed": {
2101 "type": "boolean",
2102 - "description": "Informs whether this agent has been added to a space in the cloud (User has to perform claiming). If false (user didnt perform claiming) agent will never attempt any cloud connection."
2102 + "description": "Informs whether this agent has been added to a space in the cloud (User has to perform claiming). If false (user didn't perform claiming) agent will never attempt any cloud connection."
2103 },
2104 "claimed-id": {
2105 "type": "string",
web/api/netdata-swagger.yaml
+1 -1
@@ -1641,7 +1641,7 @@ components:
1641 agent-claimed:
1642 type: boolean
1643 description: Informs whether this agent has been added to a space in the cloud (User has to perform claiming).
1644 - If false (user didnt perform claiming) agent will never attempt any cloud connection.
1644 + If false (user didn't perform claiming) agent will never attempt any cloud connection.
1645 claimed_id:
1646 type: string
1647 format: uuid