@@ -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 // --------------------------------------------------------------------------
0 commit comments