Skip to content

Commit 4c5e2b5

Browse files
cosmetic
1 parent d1b1905 commit 4c5e2b5

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010
- Panel with Сartridge configuration checksum (#242)
11-
- Panels with `CPU/memory/virtual memory` utilization per instance and total (#TNTP-4365)
11+
- Panels with `CPU/memory/virtual memory` utilization per instance and total (#245)
1212

1313
## [3.2.1] - 2024-12-06
1414
Grafana revisions:

dashboard/panels/cpu.libsonnet

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ local prometheus = grafana.prometheus;
120120

121121
getrusage_cpu_total_time(
122122
cfg,
123-
title='CPU total time',
123+
title='CPU total time per cluster',
124124
description=|||
125125
This is the total share of time spent
126-
by each instance process executing.
126+
by each cluster process executing.
127127
128128
Panel minimal requirements: metrics 0.8.0.
129129
|||,
@@ -132,15 +132,15 @@ local prometheus = grafana.prometheus;
132132
title=title,
133133
description=description,
134134
expr='sum(rate(tnt_cpu_user_time{job=~"$job"}[$__rate_interval])) + sum(rate(tnt_cpu_system_time{job=~"$job"}[$__rate_interval]))',
135-
legend=title,
135+
legend='CPU total time',
136136
),
137137

138138
getrusage_cpu_total_user_time(
139139
cfg,
140-
title='CPU total user time',
140+
title='CPU total user time per cluster',
141141
description=|||
142142
This is the total share of time
143-
spent in user mode.
143+
spent in user mode per cluster.
144144
145145
Panel minimal requirements: metrics 0.8.0.
146146
|||,
@@ -149,15 +149,15 @@ local prometheus = grafana.prometheus;
149149
title=title,
150150
description=description,
151151
expr='sum(rate(tnt_cpu_user_time{job=~"$job"}[$__rate_interval]))',
152-
legend=title,
152+
legend='CPU total user time',
153153
),
154154

155155
getrusage_cpu_total_system_time(
156156
cfg,
157-
title='CPU total system time',
157+
title='CPU total system time per cluster',
158158
description=|||
159159
This is the total share of time
160-
spent in system mode.
160+
spent in system mode per cluster.
161161
162162
Panel minimal requirements: metrics 0.8.0.
163163
|||,
@@ -166,7 +166,7 @@ local prometheus = grafana.prometheus;
166166
title=title,
167167
description=description,
168168
expr='sum(rate(tnt_cpu_system_time{job=~"$job"}[$__rate_interval]))',
169-
legend=title,
169+
legend='CPU total system time',
170170
),
171171

172172
// --------------------------------------------------------------------------

supported_metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Format is as follows.
77

88
Based on [tarantool/metrics 1.2.0](https://github.com/tarantool/metrics/releases/tag/1.2.0).
99

10-
- [x] **tnt_memory**: see *Tarantool runtime overview/Resident memory per instance*, *Tarantool runtime overview/Total resident memory usage* panels (Prometheus only) (#TNTP-4365)
11-
- [x] **tnt_memory_virt**: see *Tarantool runtime overview/Virtual memory per instance*, *Tarantool runtime overview/Total virtual memory usage* panels (Prometheus only) (#TNTP-4365)
10+
- [x] **tnt_memory**: see *Tarantool runtime overview/Resident memory per instance*, *Tarantool runtime overview/Total resident memory usage* panels (Prometheus only) ([#245](https://github.com/tarantool/grafana-dashboard/pull/245))
11+
- [x] **tnt_memory_virt**: see *Tarantool runtime overview/Virtual memory per instance*, *Tarantool runtime overview/Total virtual memory usage* panels (Prometheus only) ([#245](https://github.com/tarantool/grafana-dashboard/pull/245))
1212
- [x] **tnt_clock_delta**: see *Replication overview/Instances clock delta* panel ([#133](https://github.com/tarantool/grafana-dashboard/issues/133))
1313
- [x] **tnt_cpu_user_time**: see *Tarantool CPU statistics/CPU user time* panel ([#71](https://github.com/tarantool/grafana-dashboard/issues/71))
1414
- [x] **tnt_cpu_system_time**: see *Tarantool CPU statistics/CPU system time* panel ([#71](https://github.com/tarantool/grafana-dashboard/issues/71))

0 commit comments

Comments
 (0)