summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/gui/dashboard.css4
-rw-r--r--web/gui/dashboard.html8
-rw-r--r--web/gui/dashboard.js6
-rw-r--r--web/gui/dashboard.slate.css2
-rw-r--r--web/gui/dashboard_info.js22
-rw-r--r--web/gui/demosites.html22
-rw-r--r--web/gui/demosites2.html4
-rw-r--r--web/gui/index.html6
-rw-r--r--web/gui/infographic.html6
-rw-r--r--web/gui/main.js6
-rw-r--r--web/gui/old/index.html6
-rw-r--r--web/gui/src/dashboard.js/main.js4
-rw-r--r--web/gui/src/dashboard.js/prologue.js.inc2
13 files changed, 49 insertions, 49 deletions
diff --git a/web/gui/dashboard.css b/web/gui/dashboard.css
index 674131a1dc..7325b3aa3b 100644
--- a/web/gui/dashboard.css
+++ b/web/gui/dashboard.css
@@ -1,4 +1,4 @@
-/* SPDX-License-Identfier: GPL-3.0-or-later */
+/* SPDX-License-Identifier: GPL-3.0-or-later */
html,
body {
/*font-family: Calibri,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;*/
@@ -742,7 +742,7 @@ body {
position: absolute;
top: 50%;
transform: translateY(-50%);
- display: none; /* overriden in js */
+ display: none; /* overridden in js */
margin-right: 25px;
direction: rtl;
overflow: hidden;
diff --git a/web/gui/dashboard.html b/web/gui/dashboard.html
index d843fc5cb3..8f2a9b4721 100644
--- a/web/gui/dashboard.html
+++ b/web/gui/dashboard.html
@@ -518,7 +518,7 @@ Sparklines using dygraphs
<hr>
<h1>Google Charts</h1>
-NetData was originaly developed with Google Charts.
+NetData was originally developed with Google Charts.
NetData is a complete Google Visualization API provider.
<br/>
<div style="width: 33%; display: inline-block;">
@@ -559,7 +559,7 @@ NetData is a complete Google Visualization API provider.
<hr>
<h1>Morris Charts</h1>
-Unfortunatelly, Morris Charts are very slow. Here we force them to lower their detail to get acceptable results.
+Unfortunately, Morris Charts are very slow. Here we force them to lower their detail to get acceptable results.
<br/>
<div style="width: 33%; display: inline-block;">
<div data-netdata="system.processes"
@@ -601,8 +601,8 @@ Unfortunatelly, Morris Charts are very slow. Here we force them to lower their d
C3 charts are not usable in large scale. They suffer from the following issues:
<ul>
<li>extreme use of transitions (implemented with D3 instead of CSS, meaning they are javascript rendered) that cannot be disabled - even opacity is hardcoded in the javascript library</li>
- <li>rendering is done with <code>SVG</code> instead of <code>canvas</code>, so they use DOM elements for every point, becomimg useless if more than 500 points are drawn</li>
- <li>lack of a <code>raw</code> data format, so every time a chart is updated, data convertion in javascript is required</li>
+ <li>rendering is done with <code>SVG</code> instead of <code>canvas</code>, so they use DOM elements for every point, becoming useless if more than 500 points are drawn</li>
+ <li>lack of a <code>raw</code> data format, so every time a chart is updated, data conversion in javascript is required</li>
<li>lack of <code>stacked</code> charts support</li>
</ul>
So, to avoid flashing the charts, we destroy and re-create the charts on each update. Also, since they manipulate the data with javascript we were forced to lower the detail they render to get acceptable speeds.
diff --git a/web/gui/dashboard.js b/web/gui/dashboard.js
index 53e9090b12..31bb45b77b 100644
--- a/web/gui/dashboard.js
+++ b/web/gui/dashboard.js
@@ -63,7 +63,7 @@
* (default: null) */
/*global netdataAlarmsRecipients *//* array, an array of alarm recipients to show notifications for
* (default: null) */
-/*global netdataAlarmsRemember *//* boolen, keep our position in the alarm log at browser local storage
+/*global netdataAlarmsRemember *//* boolean, keep our position in the alarm log at browser local storage
* (default: true) */
/*global netdataAlarmsActiveCallback *//* function, a hook for the alarm logs
* (default: undefined) */
@@ -6654,7 +6654,7 @@ let chartState = function (element) {
if (NETDATA.options.current.show_help) {
if (this.element_legend_childs.toolbox !== null) {
if (this.debug) {
- this.log('hideChart(): hidding legend popovers');
+ this.log('hideChart(): hiding legend popovers');
}
$(this.element_legend_childs.toolbox_left).popover('hide');
@@ -8201,7 +8201,7 @@ let chartState = function (element) {
}
}
- // create a hidden div to be used for hidding
+ // create a hidden div to be used for hiding
// the original legend of the chart library
let el = document.createElement('div');
if (this.element_legend !== null) {
diff --git a/web/gui/dashboard.slate.css b/web/gui/dashboard.slate.css
index af33825213..45091c945e 100644
--- a/web/gui/dashboard.slate.css
+++ b/web/gui/dashboard.slate.css
@@ -760,7 +760,7 @@ code {
position: absolute;
top: 50%;
transform: translateY(-50%);
- display: none; /* overriden in js */
+ display: none; /* overridden in js */
margin-right: 25px;
direction: rtl;
overflow: hidden;
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index 683dbd65e7..f69c143c70 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -1058,7 +1058,7 @@ netdataDashboard.context = {
// network interfaces
'net.drops': {
- info: 'Packets that have been dropped at the network interface level. These are the same counters reported by <code>ifconfig</code> as <code>RX dropped</code> (inbound) and <code>TX dropped</code> (outbound). <b>inbound</b> packets can be dropped at the network interface level due to <a href="#menu_system_submenu_softnet_stat">softnet backlog</a> overflow, bad / unintented VLAN tags, unknown or unregistered protocols, IPv6 frames when the server is not configured for IPv6. Check <a href="https://www.novell.com/support/kb/doc.php?id=7007165" target="_blank">this document</a> for more information.'
+ info: 'Packets that have been dropped at the network interface level. These are the same counters reported by <code>ifconfig</code> as <code>RX dropped</code> (inbound) and <code>TX dropped</code> (outbound). <b>inbound</b> packets can be dropped at the network interface level due to <a href="#menu_system_submenu_softnet_stat">softnet backlog</a> overflow, bad / unintended VLAN tags, unknown or unregistered protocols, IPv6 frames when the server is not configured for IPv6. Check <a href="https://www.novell.com/support/kb/doc.php?id=7007165" target="_blank">this document</a> for more information.'
},
'net.duplex': {
@@ -1240,7 +1240,7 @@ netdataDashboard.context = {
},
'apps.bandwidth_tcp_retransmit': {
- info: 'Calls for functions <code>tcp_retranstmit_skb</code>.'
+ info: 'Calls for functions <code>tcp_retransmit_skb</code>.'
},
'apps.bandwidth_udp_send': {
@@ -1967,7 +1967,7 @@ netdataDashboard.context = {
},
'beanstalk.connections_rate': {
- info: 'Tthe rate of connections opened to beanstalkd.'
+ info: 'The rate of connections opened to beanstalkd.'
},
'beanstalk.commands_rate': {
@@ -2593,7 +2593,7 @@ netdataDashboard.context = {
},
'btrfs.disk': {
- info: 'Physical disk usage of BTRFS. The disk space reported here is the raw physical disk space assigned to the BTRFS volume (i.e. <b>before any RAID levels</b>). BTRFS uses a two-stage allocator, first allocating large regions of disk space for one type of block (data, metadata, or system), and then using a regular block allocator inside those regions. <code>unallocated</code> is the physical disk space that is not allocated yet and is available to become data, metdata or system on demand. When <code>unallocated</code> is zero, all available disk space has been allocated to a specific function. Healthy volumes should ideally have at least five percent of their total space <code>unallocated</code>. You can keep your volume healthy by running the <code>btrfs balance</code> command on it regularly (check <code>man btrfs-balance</code> for more info). Note that some of the space listed as <code>unallocated</code> may not actually be usable if the volume uses devices of different sizes.',
+ info: 'Physical disk usage of BTRFS. The disk space reported here is the raw physical disk space assigned to the BTRFS volume (i.e. <b>before any RAID levels</b>). BTRFS uses a two-stage allocator, first allocating large regions of disk space for one type of block (data, metadata, or system), and then using a regular block allocator inside those regions. <code>unallocated</code> is the physical disk space that is not allocated yet and is available to become data, metadata or system on demand. When <code>unallocated</code> is zero, all available disk space has been allocated to a specific function. Healthy volumes should ideally have at least five percent of their total space <code>unallocated</code>. You can keep your volume healthy by running the <code>btrfs balance</code> command on it regularly (check <code>man btrfs-balance</code> for more info). Note that some of the space listed as <code>unallocated</code> may not actually be usable if the volume uses devices of different sizes.',
colors: [NETDATA.colors[12]]
},
@@ -2602,7 +2602,7 @@ netdataDashboard.context = {
},
'btrfs.metadata': {
- info: 'Logical disk usage for BTRFS metadata. Metadata chunks store most of the filesystem interal structures, as well as information like directory structure and file names. The disk space reported here is the usable allocation (i.e. after any striping or replication). Healthy volumes should ideally have no more than a few GB of free space reported here persistently. Running <code>btrfs balance</code> can help here.'
+ info: 'Logical disk usage for BTRFS metadata. Metadata chunks store most of the filesystem internal structures, as well as information like directory structure and file names. The disk space reported here is the usable allocation (i.e. after any striping or replication). Healthy volumes should ideally have no more than a few GB of free space reported here persistently. Running <code>btrfs balance</code> can help here.'
},
'btrfs.system': {
@@ -2623,7 +2623,7 @@ netdataDashboard.context = {
},
'rabbitmq.message_rates': {
- info: 'Overall messaging rates including acknowledgements, delieveries, redeliveries, and publishes.'
+ info: 'Overall messaging rates including acknowledgements, deliveries, redeliveries, and publishes.'
},
'rabbitmq.global_counts': {
@@ -2666,7 +2666,7 @@ netdataDashboard.context = {
},
'rabbitmq.queue_messages_stats': {
- info: 'Overall messaging rates including acknowledgements, delieveries, redeliveries, and publishes.',
+ info: 'Overall messaging rates including acknowledgements, deliveries, redeliveries, and publishes.',
colors: NETDATA.colors[3]
},
@@ -2774,7 +2774,7 @@ netdataDashboard.context = {
},
'boinc.tasks': {
- info: 'The total number of tasks and the number of active tasks. Active tasks are those which are either currently being processed, or are partialy processed but suspended.'
+ info: 'The total number of tasks and the number of active tasks. Active tasks are those which are either currently being processed, or are partially processed but suspended.'
},
'boinc.states': {
@@ -2923,7 +2923,7 @@ netdataDashboard.context = {
// VM specific
'vsphere.vm_mem_usage_percentage': {
- info: 'Percentage of used virtual machine “physical” memory: <code>actvive</code> / <code>virtual machine configured size</code>.'
+ info: 'Percentage of used virtual machine “physical” memory: <code>active</code> / <code>virtual machine configured size</code>.'
},
'vsphere.vm_mem_usage': {
@@ -3356,7 +3356,7 @@ netdataDashboard.context = {
'ebpf.tcp_retransmit': {
title : 'TCP retransmit',
- info: 'Number of packets retransmitted for function <code>tcp_retranstmit_skb</code>.'
+ info: 'Number of packets retransmitted for function <code>tcp_retransmit_skb</code>.'
},
'ebpf.tcp_error': {
@@ -3414,7 +3414,7 @@ netdataDashboard.context = {
'ebpf.process_thread': {
title : 'Task creation',
- info: 'Number of times that either <a href="https://www.ece.uic.edu/~yshi1/linux/lkse/node4.html#SECTION00421000000000000000" target="_blank">do_fork</a>, or <code>kernel_clone</code> if you are running kernel newer than 5.9.16, is called to create a new task, which is the common name used to define process and tasks inside the kernel. Netdata identifies the threads by couting the number of calls for <a href="https://linux.die.net/man/2/clone" target="_blank">sys_clone</a> that has the flag <code>CLONE_THREAD</code> set.'
+ info: 'Number of times that either <a href="https://www.ece.uic.edu/~yshi1/linux/lkse/node4.html#SECTION00421000000000000000" target="_blank">do_fork</a>, or <code>kernel_clone</code> if you are running kernel newer than 5.9.16, is called to create a new task, which is the common name used to define process and tasks inside the kernel. Netdata identifies the threads by counting the number of calls for <a href="https://linux.die.net/man/2/clone" target="_blank">sys_clone</a> that has the flag <code>CLONE_THREAD</code> set.'
},
'ebpf.exit': {
diff --git a/web/gui/demosites.html b/web/gui/demosites.html
index e8a310a19c..f0fa2fd527 100644
--- a/web/gui/demosites.html
+++ b/web/gui/demosites.html
@@ -603,7 +603,7 @@ p {
font-size: 13px;
}
- .mygause-donation {
+ .mygauge-donation {
font-size: 9px;
color: #999;
}
@@ -912,7 +912,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//london.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoLondon><strong>Enter London!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -933,7 +933,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//atlanta.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoAtlanta><strong>Enter Atlanta!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by CDN77.com
</div>
</div>
@@ -954,7 +954,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//sanfrancisco.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoSanfrancisco><strong>Enter California!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -975,7 +975,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//toronto.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoToronto><strong>Enter Canada!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -997,7 +997,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//frankfurt.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoFrankfurt><strong>Enter Germany!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -1018,7 +1018,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//newyork.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoNewYork><strong>Enter New York!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -1039,7 +1039,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//singapore.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoSingapore><strong>Enter Singapore!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -1060,7 +1060,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//bangalore.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoBangalore><strong>Enter India!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by DigitalOcean.com
</div>
</div>
@@ -1095,7 +1095,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//octopuscs.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoOctopuscs><strong>Enter Israel!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by octopuscs.com
</div>
</div>
@@ -1130,7 +1130,7 @@ p {
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//stackscale.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoStackScale><strong>Enter Madrid!</strong></a>
- <div class="mygause-donation">
+ <div class="mygauge-donation">
Donated by stackscale.com
</div>
</div>
diff --git a/web/gui/demosites2.html b/web/gui/demosites2.html
index fe35cfb6d0..53fca0f6e3 100644
--- a/web/gui/demosites2.html
+++ b/web/gui/demosites2.html
@@ -602,13 +602,13 @@
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist" style="padding-top: 1vw;">
- <li role="presentation" class="active"><a href="#outbout" aria-controls="outbout" role="tab" data-toggle="tab">Outbound</a></li>
+ <li role="presentation" class="active"><a href="#outbound" aria-controls="outbound" role="tab" data-toggle="tab">Outbound</a></li>
<li role="presentation"><a href="#inbound" aria-controls="inbound" role="tab" data-toggle="tab">Inbound</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
- <div role="tabpanel" class="tab-pane active" id="outbout">
+ <div role="tabpanel" class="tab-pane active" id="outbound">
<div class="myfullchart">
<div data-netdata="tc.world_out"
data-host="//london.my-netdata.io"
diff --git a/web/gui/index.html b/web/gui/index.html
index d3099101f1..05c142379d 100644
--- a/web/gui/index.html
+++ b/web/gui/index.html
@@ -228,7 +228,7 @@
<p>
<small>
This process will put some CPU and memory pressure on your browser.<br/>
- For the netdata server, we will sequencially download all the charts, to avoid congesting network and server resources.<br/>
+ For the netdata server, we will sequentially download all the charts, to avoid congesting network and server resources.<br/>
<b>Please, do not print netdata dashboards on paper!</b>
</small>
</p>
@@ -413,7 +413,7 @@
<b><a href="https://github.com/netdata/netdata/wiki" target="_blank">netdata</a></b>
has been designed to monitor <strong>massive amounts of metrics, per server, per second</strong>.
When installed, it might come up with 1k to 3k metrics, but we have been testing it with 100k
- metrics, all collected per second, and still the cpu utilisation remained negligible.
+ metrics, all collected per second, and still the cpu utilization remained negligible.
<br/>
We have also tried to give each metric, a meaning, a context.
We have grouped and categorized all metrics into meaningful charts, providing a
@@ -705,7 +705,7 @@
<tr class="option-row">
<td class="option-control"><input id="pan_and_zoom_data_padding" type="checkbox" checked data-toggle="toggle" data-on="Pad" data-off="Don't Pad" data-width="110px"></td>
<td class="option-info"><strong>Enable data padding when panning and zooming?</strong><br/>
- <small>When set to <b>Pad</b> the charts will be padded with more data, both before and after the visible area, thus giving the impression the whole database is loaded. This padding will happen only after the first pan or zoom operation on the chart (initially all charts have only the visible data). When set to <b>Don't Pad</b> only the visible data will be transfered from the netdata server, even after the first pan and zoom operation.</small>
+ <small>When set to <b>Pad</b> the charts will be padded with more data, both before and after the visible area, thus giving the impression the whole database is loaded. This padding will happen only after the first pan or zoom operation on the chart (initially all charts have only the visible data). When set to <b>Don't Pad</b> only the visible data will be transferred from the netdata server, even after the first pan and zoom operation.</small>
</td>
</tr>
<tr class="option-row">
diff --git a/web/gui/infographic.html b/web/gui/infographic.html
index 24ff8f4e6a..e14601f1f2 100644
--- a/web/gui/infographic.html
+++ b/web/gui/infographic.html
@@ -69,9 +69,9 @@
<b>New to netdata?</b> <a href="//my-netdata.io" target="_blank">Have a look at a netdata demo</a>. You will love it!
</p>
<p>
- <embed style="padding-top: 10px; padding-botton: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_entries&dimensions=persons&label=user%20base&units=null&value_color=blue&precision=0&v42" type="image/svg+xml" height="20" />
- <embed style="padding-top: 10px; padding-botton: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_entries&dimensions=machines&label=servers%20monitored&units=null&value_color=orange&precision=0&v42" type="image/svg+xml" height="20" />
- <embed style="padding-top: 10px; padding-botton: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_sessions&label=sessions%20served&units=null&value_color=yellowgreen&precision=0&v42" type="image/svg+xml" height="20" />
+ <embed style="padding-top: 10px; padding-bottom: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_entries&dimensions=persons&label=user%20base&units=null&value_color=blue&precision=0&v42" type="image/svg+xml" height="20" />
+ <embed style="padding-top: 10px; padding-bottom: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_entries&dimensions=machines&label=servers%20monitored&units=null&value_color=orange&precision=0&v42" type="image/svg+xml" height="20" />
+ <embed style="padding-top: 10px; padding-bottom: 25px;" src="//registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_sessions&label=sessions%20served&units=null&value_color=yellowgreen&precision=0&v42" type="image/svg+xml" height="20" />
</p>
<hr/>
</div>
diff --git a/web/gui/main.js b/web/gui/main.js
index dc9a5f7f05..c646b68c92 100644
--- a/web/gui/main.js
+++ b/web/gui/main.js
@@ -496,7 +496,7 @@ function toggleAgentItem(e, guid) {
}
}
-// When you stream metrics from netdata to netdata, the recieving netdata now
+// When you stream metrics from netdata to netdata, the receiving netdata now
// has multiple host databases. It's own, and multiple mirrored. Mirrored databases
// can be accessed with <http://localhost:19999/host/NAME/>
const OLD_DASHBOARD_SUFFIX = "old"
@@ -2840,7 +2840,7 @@ function initializeDynamicDashboardWithData(data) {
}
}
-// an object to keep initilization configuration
+// an object to keep initialization configuration
// needed due to the async nature of the XSS modal
var initializeConfig = {
url: null,
@@ -4431,7 +4431,7 @@ function runOnceOnDashboardWithjQuery() {
function finalizePage() {
// resize all charts - without starting the background thread
// this has to be done while NETDATA is paused
- // if we ommit this, the affix menu will be wrong, since all
+ // if we omit this, the affix menu will be wrong, since all
// the Dom elements are initially zero-sized
NETDATA.parseDom();
diff --git a/web/gui/old/index.html b/web/gui/old/index.html
index 94ec12b709..87499c6172 100644
--- a/web/gui/old/index.html
+++ b/web/gui/old/index.html
@@ -227,7 +227,7 @@
<p>
<small>
This process will put some CPU and memory pressure on your browser.<br/>
- For the netdata server, we will sequencially download all the charts, to avoid congesting network and server resources.<br/>
+ For the netdata server, we will sequentially download all the charts, to avoid congesting network and server resources.<br/>
<b>Please, do not print netdata dashboards on paper!</b>
</small>
</p>
@@ -412,7 +412,7 @@
<b><a href="https://github.com/netdata/netdata/wiki" target="_blank">netdata</a></b>
has been designed to monitor <strong>massive amounts of metrics, per server, per second</strong>.
When installed, it might come up with 1k to 3k metrics, but we have been testing it with 100k
- metrics, all collected per second, and still the cpu utilisation remained negligible.
+ metrics, all collected per second, and still the cpu utilization remained negligible.
<br/>
We have also tried to give each metric, a meaning, a context.
We have grouped and categorized all metrics into meaningful charts, providing a
@@ -704,7 +704,7 @@
<tr class="option-row">
<td class="option-control"><input id="pan_and_zoom_data_padding" type="checkbox" checked data-toggle="toggle" data-on="Pad" data-off="Don't Pad" data-width="110px"></td>
<td class="option-info"><strong>Enable data padding when panning and zooming?</strong><br/>
- <small>When set to <b>Pad</b> the charts will be padded with more data, both before and after the visible area, thus giving the impression the whole database is loaded. This padding will happen only after the first pan or zoom operation on the chart (initially all charts have only the visible data). When set to <b>Don't Pad</b> only the visible data will be transfered from the netdata server, even after the first pan and zoom operation.</small>
+ <small>When set to <b>Pad</b> the charts will be padded with more data, both before and after the visible area, thus giving the impression the whole database is loaded. This padding will happen only after the first pan or zoom operation on the chart (initially all charts have only the visible data). When set to <b>Don't Pad</b> only the visible data will be transferred from the netdata server, even after the first pan and zoom operation.</small>
</td>
</tr>
<tr class="option-row">
diff --git a/web/gui/src/dashboard.js/main.js b/web/gui/src/dashboard.js/main.js
index c1cfba5e54..a638b4e99f 100644
--- a/web/gui/src/dashboard.js/main.js
+++ b/web/gui/src/dashboard.js/main.js
@@ -1432,7 +1432,7 @@ let chartState = function (element) {
if (NETDATA.options.current.show_help) {
if (this.element_legend_childs.toolbox !== null) {
if (this.debug) {
- this.log('hideChart(): hidding legend popovers');
+ this.log('hideChart(): hiding legend popovers');
}
$(this.element_legend_childs.toolbox_left).popover('hide');
@@ -2979,7 +2979,7 @@ let chartState = function (element) {
}
}
- // create a hidden div to be used for hidding
+ // create a hidden div to be used for hiding
// the original legend of the chart library
let el = document.createElement('div');
if (this.element_legend !== null) {
diff --git a/web/gui/src/dashboard.js/prologue.js.inc b/web/gui/src/dashboard.js/prologue.js.inc
index afa1f0e052..2094d3baf3 100644
--- a/web/gui/src/dashboard.js/prologue.js.inc
+++ b/web/gui/src/dashboard.js/prologue.js.inc
@@ -63,7 +63,7 @@
* (default: null) */
/*global netdataAlarmsRecipients *//* array, an array of alarm recipients to show notifications for
* (default: null) */
-/*global netdataAlarmsRemember *//* boolen, keep our position in the alarm log at browser local storage
+/*global netdataAlarmsRemember *//* boolean, keep our position in the alarm log at browser local storage
* (default: true) */
/*global netdataAlarmsActiveCallback *//* function, a hook for the alarm logs
* (default: undefined) */