summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpackaging/installer/dependencies/centos.sh2
-rwxr-xr-xpackaging/installer/dependencies/fedora.sh2
-rw-r--r--packaging/installer/methods/kickstart.md2
-rw-r--r--streaming/README.md2
-rw-r--r--streaming/compression.c6
-rw-r--r--streaming/rrdpush.h2
-rw-r--r--streaming/stream.conf6
-rw-r--r--web/api/netdata-swagger.json2
-rw-r--r--web/api/netdata-swagger.yaml2
9 files changed, 13 insertions, 13 deletions
diff --git a/packaging/installer/dependencies/centos.sh b/packaging/installer/dependencies/centos.sh
index d17911664e..da440c06d0 100755
--- a/packaging/installer/dependencies/centos.sh
+++ b/packaging/installer/dependencies/centos.sh
@@ -36,7 +36,7 @@ os_version() {
# shellcheck disable=SC2002
cat /etc/os-release | grep VERSION_ID | cut -d'=' -f2 | cut -d'"' -f2
else
- echo "Erorr: Cannot determine OS version!"
+ echo "Error: Cannot determine OS version!"
exit 1
fi
}
diff --git a/packaging/installer/dependencies/fedora.sh b/packaging/installer/dependencies/fedora.sh
index edb695bca1..0027725b0a 100755
--- a/packaging/installer/dependencies/fedora.sh
+++ b/packaging/installer/dependencies/fedora.sh
@@ -12,7 +12,7 @@ os_version() {
# shellcheck disable=SC2002
cat /etc/os-release | grep VERSION_ID | cut -d'=' -f2
else
- echo "Erorr: Cannot determine OS version!"
+ echo "Error: Cannot determine OS version!"
exit 1
fi
}
diff --git a/packaging/installer/methods/kickstart.md b/packaging/installer/methods/kickstart.md
index 7fbfad58ca..0c39a9455f 100644
--- a/packaging/installer/methods/kickstart.md
+++ b/packaging/installer/methods/kickstart.md
@@ -48,7 +48,7 @@ The `kickstart.sh` script accepts a number of optional parameters to control how
- `--non-interactive`: Don’t prompt for anything and assume yes whenever possible, overriding any automatic detection of an interactive run.
- `--interactive`: Act as if running interactively, even if automatic detection indicates a run is non-interactive.
- `--dont-wait`: Synonym for `--non-interactive`
-- `--dont-start-it`: Don’t auto-start the daemon after installing. This parameter is not gauranteed to work.
+- `--dont-start-it`: Don’t auto-start the daemon after installing. This parameter is not guaranteed to work.
- `--nightly-channel`: Use a nightly build instead of a stable release (this is the default).
- `--stable-channel`: Use a stable release instead of a nightly build.
- `--auto-update`: Enable automatic updates (this is the default).
diff --git a/streaming/README.md b/streaming/README.md
index b10c4a5db4..25967ebce5 100644
--- a/streaming/README.md
+++ b/streaming/README.md
@@ -368,7 +368,7 @@ A compressed data packet is determined and decompressed on the fly.
#### Limitations
This limitation will be withdrawn asap and is work-in-progress.
-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:
+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:
```
Compression error - data discarded
Message size above limit:
diff --git a/streaming/compression.c b/streaming/compression.c
index 93810aaed6..65351ed08a 100644
--- a/streaming/compression.c
+++ b/streaming/compression.c
@@ -56,7 +56,7 @@ static void lz4_compressor_destroy(struct compressor_state **state)
/*
* Compress the given block of data
- * Comprecced data will remain in the internal buffer until the next invokation
+ * Comprecced data will remain in the internal buffer until the next invocation
* Return the size of compressed data block as result and the pointer to internal buffer using the last argument
* or 0 in case of error
*/
@@ -98,7 +98,7 @@ static size_t lz4_compressor_compress(struct compressor_state *state, const char
}
/*
- * Create and initalize compressor state
+ * Create and initialize compressor state
* Return the pointer to compressor_state structure created
*/
struct compressor_state *create_compressor()
@@ -318,7 +318,7 @@ static size_t lz4_decompressor_get(struct decompressor_state *state, char *data,
}
/*
- * Create and initalize decompressor state
+ * Create and initialize decompressor state
* Return the pointer to decompressor_state structure created
*/
struct decompressor_state *create_decompressor()
diff --git a/streaming/rrdpush.h b/streaming/rrdpush.h
index 937ead6faa..7eb2c6e580 100644
--- a/streaming/rrdpush.h
+++ b/streaming/rrdpush.h
@@ -62,7 +62,7 @@ struct decompressor_state {
size_t total_compressed;
size_t total_uncompressed;
size_t packet_count;
- struct decompressor_data *data; // Deompression API specific data
+ struct decompressor_data *data; // Decompression API specific data
void (*reset)(struct decompressor_state *state);
size_t (*start)(struct decompressor_state *state, const char *header, size_t header_size);
size_t (*put)(struct decompressor_state *state, const char *data, size_t size);
diff --git a/streaming/stream.conf b/streaming/stream.conf
index 3c363fad69..e65e76fa40 100644
--- a/streaming/stream.conf
+++ b/streaming/stream.conf
@@ -60,7 +60,7 @@
# The API_KEY to use (as the sender)
api key =
- # Stream Compresssion
+ # Stream Compression
#
# The netdata child is configurated to enable stream compression by default.
# You can control stream compression in this agent with options: yes | no
@@ -162,7 +162,7 @@
#default proxy api key = API_KEY
#default proxy send charts matching = *
- # Stream Compresssion
+ # Stream Compression
#
# The stream with the child can be configurated to enable stream compression.
# You can control stream compression in this parent agent stream with options: yes | no
@@ -216,7 +216,7 @@
#proxy api key = API_KEY
#proxy send charts matching = *
- # Stream Compresssion
+ # Stream Compression
#
# The stream with the child can be configurated to enable stream compression.
# You can control stream compression in this parent agent stream with options: yes | no
diff --git a/web/api/netdata-swagger.json b/web/api/netdata-swagger.json
index 7786b333a5..cf2aca4c00 100644
--- a/web/api/netdata-swagger.json
+++ b/web/api/netdata-swagger.json
@@ -2099,7 +2099,7 @@
},
"agent-claimed": {
"type": "boolean",
- "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."
+ "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."
},
"claimed-id": {
"type": "string",
diff --git a/web/api/netdata-swagger.yaml b/web/api/netdata-swagger.yaml
index 83487bda8d..7fc736b644 100644
--- a/web/api/netdata-swagger.yaml
+++ b/web/api/netdata-swagger.yaml
@@ -1641,7 +1641,7 @@ components:
agent-claimed:
type: boolean
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.
+ If false (user didn't perform claiming) agent will never attempt any cloud connection.
claimed_id:
type: string
format: uuid