Skip to content

Commit 3d79ef1

Browse files
committed
fix: fix typos (#22)
Signed-off-by: Vitaly Zhuravlev <[email protected]>
1 parent 10495ef commit 3d79ef1

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/node-mixin/dashboards/memory.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ local common = import '../lib/common.libsonnet';
166166
nodeTimeseries.new(
167167
'Memory Shared and Mapped',
168168
description=|||
169-
Mapped: This refers to the memory used in mapped page files that have been mmaped, such as libraries.
169+
Mapped: This refers to the memory used in mapped page files that have been memory mapped, such as libraries.
170170
Shmem: This is the memory used by shared memory, which is shared between multiple processes, including RAM disks.
171171
ShmemHugePages: This is the memory used by shared memory and tmpfs allocated with huge pages.
172172
ShmemPmdMapped: This is the amount of shared memory (shmem/tmpfs) backed by huge pages.

docs/node-mixin/dashboards/network.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ local common = import '../lib/common.libsonnet';
6666
description=|||
6767
errors received: Total number of bad packets received on this network device. This counter must include events counted by rx_length_errors, rx_crc_errors, rx_frame_errors and other errors not otherwise counted.
6868
69-
errors tranmitted: Total number of transmit problems. This counter must include events counter by tx_aborted_errors, tx_carrier_errors, tx_fifo_errors, tx_heartbeat_errors, tx_window_errors and other errors not otherwise counted.
69+
errors transmitted: Total number of transmit problems. This counter must include events counter by tx_aborted_errors, tx_carrier_errors, tx_fifo_errors, tx_heartbeat_errors, tx_window_errors and other errors not otherwise counted.
7070
7171
https://docs.kernel.org/networking/statistics.html
7272
|||
@@ -90,7 +90,7 @@ local common = import '../lib/common.libsonnet';
9090
description=|||
9191
drops received: Number of packets received but not processed, e.g. due to lack of resources or unsupported protocol. For hardware interfaces this counter may include packets discarded due to L2 address filtering but should not include packets dropped by the device due to buffer exhaustion which are counted separately in rx_missed_errors (since procfs folds those two counters together).
9292
93-
drops tranmitted: Number of packets dropped on their way to transmission, e.g. due to lack of resources.
93+
drops transmitted: Number of packets dropped on their way to transmission, e.g. due to lack of resources.
9494
https://docs.kernel.org/networking/statistics.html
9595
|||
9696
)

docs/node-mixin/dashboards/prom-mixin.libsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ local nodeTemplates = common.templates;
9191
description=|||
9292
errors received: Total number of bad packets received on this network device. This counter must include events counted by rx_length_errors, rx_crc_errors, rx_frame_errors and other errors not otherwise counted.
9393
94-
errors tranmitted: Total number of transmit problems. This counter must include events counter by tx_aborted_errors, tx_carrier_errors, tx_fifo_errors, tx_heartbeat_errors, tx_window_errors and other errors not otherwise counted.
94+
errors transmitted: Total number of transmit problems. This counter must include events counter by tx_aborted_errors, tx_carrier_errors, tx_fifo_errors, tx_heartbeat_errors, tx_window_errors and other errors not otherwise counted.
9595
9696
drops received: Number of packets received but not processed, e.g. due to lack of resources or unsupported protocol. For hardware interfaces this counter may include packets discarded due to L2 address filtering but should not include packets dropped by the device due to buffer exhaustion which are counted separately in rx_missed_errors (since procfs folds those two counters together).
9797
98-
drops tranmitted: Number of packets dropped on their way to transmission, e.g. due to lack of resources.
98+
drops transmitted: Number of packets dropped on their way to transmission, e.g. due to lack of resources.
9999
100100
https://docs.kernel.org/networking/statistics.html
101101
|||
@@ -106,7 +106,7 @@ local nodeTemplates = common.templates;
106106
))
107107
.addTarget(commonPromTarget(
108108
expr=q.networkTransmitErrorsPerSec,
109-
legendFormat='{{device}} errors tranmitted',
109+
legendFormat='{{device}} errors transmitted',
110110
))
111111
.addTarget(commonPromTarget(
112112
expr=q.networkReceiveDropsPerSec,

docs/node-mixin/dashboards/system.libsonnet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ local common = import '../lib/common.libsonnet';
5151
{ options+: { reduceOptions+: { fields: '/^time_zone$/' } } },
5252
local timeSyncDrift =
5353
nodeTimeseries.new(
54-
'Time Syncronized Drift',
54+
'Time Synchronized Drift',
5555
description=|||
5656
Time synchronization is essential to ensure accurate timekeeping, which is critical for many system operations such as logging, authentication, and network communication, as well as distributed systems or clusters where data consistency is important.
5757
|||
@@ -70,10 +70,10 @@ local common = import '../lib/common.libsonnet';
7070
legendFormat='Maximum error in seconds'
7171
)),
7272

73-
local timeSyncronizedStatus =
73+
local timeSynchronizedStatus =
7474
nodeTimeseries.new(
75-
'Time Syncronized Status',
76-
description='Status of time syncronization.'
75+
'Time Synchronized Status',
76+
description='Status of time synchronization.'
7777
)
7878
.withColor(mode='palette-classic')
7979
.withFillOpacity(75)
@@ -125,7 +125,7 @@ local common = import '../lib/common.libsonnet';
125125
c.panelsWithTargets.systemContextSwitches { gridPos: { x: 12, h: 6, w: 12, y: 25 } },
126126
{ type: 'row', title: 'Time', gridPos: { x: 0, w: 24, y: 75 } },
127127
timeZoneOffset { gridPos: { x: 0, h: 3, w: 3, y: 75 } },
128-
timeSyncronizedStatus { gridPos: { x: 3, h: 3, w: 21, y: 75 } },
128+
timeSynchronizedStatus { gridPos: { x: 3, h: 3, w: 21, y: 75 } },
129129
timeSyncDrift { gridPos: { x: 0, h: 6, w: 24, y: 80 } },
130130
],
131131

0 commit comments

Comments
 (0)