forked from vpenso/prometheus-slurm-exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gpus.go
248 lines (219 loc) · 8.49 KB
/
gpus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* Copyright 2022 Joeri Hermans, Victor Penso, Matteo Dessalvi, Iztok Lebar Bajec
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
package main
import (
"os/exec"
"regexp"
"strconv"
"strings"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/log"
)
type GPUsMetrics struct {
alloc float64
idle float64
other float64
total float64
utilization float64
}
func GPUsGetMetrics() *GPUsMetrics {
return ParseGPUsMetrics()
}
/* TODO:
sinfo has gresUSED since slurm>=19.05.0rc01 https://github.com/SchedMD/slurm/blob/master/NEWS
revert to old process on slurm<19.05.0rc01
--format=AllocGRES will return gres/gpu=8
--format=AllocTRES will return billing=16,cpu=16,gres/gpu=8,mem=256G,node=1
func ParseAllocatedGPUs() float64 {
var num_gpus = 0.0
args := []string{"-a", "-X", "--format=Allocgres", "--state=RUNNING", "--noheader", "--parsable2"}
output := string(Execute("sacct", args))
if len(output) > 0 {
for _, line := range strings.Split(output, "\n") {
if len(line) > 0 {
line = strings.Trim(line, "\"")
descriptor := strings.TrimPrefix(line, "gpu:")
job_gpus, _ := strconv.ParseFloat(descriptor, 64)
num_gpus += job_gpus
}
}
}
return num_gpus
}
*/
func ParseAllocatedGPUs(data []byte) float64 {
var num_gpus = 0.0
// sinfo -a -h --Format="Nodes: ,GresUsed:" --state=allocated
// 3 gpu:2 # slurm>=20.11.8
// 1 gpu:(null):3(IDX:0-7) # slurm 21.08.5
// 13 gpu:A30:4(IDX:0-3),gpu:Q6K:4(IDX:0-3) # slurm 21.08.5
sinfo_lines := string(data)
re := regexp.MustCompile(`gpu:(\(null\)|[^:(]*):?([0-9]+)(\([^)]*\))?`)
if len(sinfo_lines) > 0 {
for _, line := range strings.Split(sinfo_lines, "\n") {
// log.info(line)
if len(line) > 0 && strings.Contains(line, "gpu:") {
nodes := strings.Fields(line)[0]
num_nodes, _ := strconv.ParseFloat(nodes, 64)
node_active_gpus := strings.Fields(line)[1]
num_node_active_gpus := 0.0
for _, node_active_gpus_type := range strings.Split(node_active_gpus, ",") {
if strings.Contains(node_active_gpus_type, "gpu:") {
node_active_gpus_type = re.FindStringSubmatch(node_active_gpus_type)[2]
num_node_active_gpus_type, _ := strconv.ParseFloat(node_active_gpus_type, 64)
num_node_active_gpus += num_node_active_gpus_type
}
}
num_gpus += num_nodes * num_node_active_gpus
}
}
}
return num_gpus
}
func ParseIdleGPUs(data []byte) float64 {
var num_gpus = 0.0
// sinfo -a -h --Format="Nodes: ,Gres: ,GresUsed:" --state=idle,allocated
// 3 gpu:4 gpu:2 # slurm 20.11.8
// 1 gpu:8(S:0-1) gpu:(null):3(IDX:0-7) # slurm 21.08.5
// 13 gpu:A30:4(S:0-1),gpu:Q6K:40(S:0-1) gpu:A30:4(IDX:0-3),gpu:Q6K:4(IDX:0-3) # slurm 21.08.5
sinfo_lines := string(data)
re := regexp.MustCompile(`gpu:(\(null\)|[^:(]*):?([0-9]+)(\([^)]*\))?`)
if len(sinfo_lines) > 0 {
for _, line := range strings.Split(sinfo_lines, "\n") {
// log.info(line)
if len(line) > 0 && strings.Contains(line, "gpu:") {
nodes := strings.Fields(line)[0]
num_nodes, _ := strconv.ParseFloat(nodes, 64)
node_gpus := strings.Fields(line)[1]
num_node_gpus := 0.0
for _, node_gpus_type := range strings.Split(node_gpus, ",") {
if strings.Contains(node_gpus_type, "gpu:") {
node_gpus_type = re.FindStringSubmatch(node_gpus_type)[2]
num_node_gpus_type, _ := strconv.ParseFloat(node_gpus_type, 64)
num_node_gpus += num_node_gpus_type
}
}
num_node_active_gpus := 0.0
node_active_gpus := strings.Fields(line)[2]
for _, node_active_gpus_type := range strings.Split(node_active_gpus, ",") {
if strings.Contains(node_active_gpus_type, "gpu:") {
node_active_gpus_type = re.FindStringSubmatch(node_active_gpus_type)[2]
num_node_active_gpus_type, _ := strconv.ParseFloat(node_active_gpus_type, 64)
num_node_active_gpus += num_node_active_gpus_type
}
}
num_gpus += num_nodes * (num_node_gpus - num_node_active_gpus)
}
}
}
return num_gpus
}
func ParseTotalGPUs(data []byte) float64 {
var num_gpus = 0.0
// sinfo -a -h --Format="Nodes: ,Gres:"
// 3 gpu:4 # slurm 20.11.8
// 1 gpu:8(S:0-1) # slurm 21.08.5
// 13 gpu:A30:4(S:0-1),gpu:Q6K:40(S:0-1) # slurm 21.08.5
sinfo_lines := string(data)
re := regexp.MustCompile(`gpu:(\(null\)|[^:(]*):?([0-9]+)(\([^)]*\))?`)
if len(sinfo_lines) > 0 {
for _, line := range strings.Split(sinfo_lines, "\n") {
// log.Info(line)
if len(line) > 0 && strings.Contains(line, "gpu:") {
nodes := strings.Fields(line)[0]
num_nodes, _ := strconv.ParseFloat(nodes, 64)
node_gpus := strings.Fields(line)[1]
num_node_gpus := 0.0
for _, node_gpus_type := range strings.Split(node_gpus, ",") {
if strings.Contains(node_gpus_type, "gpu:") {
node_gpus_type = re.FindStringSubmatch(node_gpus_type)[2]
num_node_gpus_type, _ := strconv.ParseFloat(node_gpus_type, 64)
num_node_gpus += num_node_gpus_type
}
}
num_gpus += num_nodes * num_node_gpus
}
}
}
return num_gpus
}
func ParseGPUsMetrics() *GPUsMetrics {
var gm GPUsMetrics
total_gpus := ParseTotalGPUs(TotalGPUsData())
allocated_gpus := ParseAllocatedGPUs(AllocatedGPUsData())
idle_gpus := ParseIdleGPUs(IdleGPUsData())
other_gpus := total_gpus - allocated_gpus - idle_gpus
gm.alloc = allocated_gpus
gm.idle = idle_gpus
gm.other = other_gpus
gm.total = total_gpus
gm.utilization = allocated_gpus / total_gpus
return &gm
}
func AllocatedGPUsData() []byte {
args := []string{"-a", "-h", "--Format=Nodes: ,GresUsed:", "--state=allocated"}
return Execute("sinfo", args)
}
func IdleGPUsData() []byte {
args := []string{"-a", "-h", "--Format=Nodes: ,Gres: ,GresUsed:", "--state=idle,allocated"}
return Execute("sinfo", args)
}
func TotalGPUsData() []byte {
args := []string{"-a", "-h", "--Format=Nodes: ,Gres:"}
return Execute("sinfo", args)
}
// Execute the sinfo command and return its output
func Execute(command string, arguments []string) []byte {
cmd := exec.Command(command, arguments...)
out, err := cmd.CombinedOutput()
if err != nil {
log.Fatal(err)
}
return out
}
/*
* Implement the Prometheus Collector interface and feed the
* Slurm scheduler metrics into it.
* https://godoc.org/github.com/prometheus/client_golang/prometheus#Collector
*/
func NewGPUsCollector() *GPUsCollector {
return &GPUsCollector{
alloc: prometheus.NewDesc("slurm_gpus_alloc", "Allocated GPUs", nil, nil),
idle: prometheus.NewDesc("slurm_gpus_idle", "Idle GPUs", nil, nil),
other: prometheus.NewDesc("slurm_gpus_other", "Other GPUs", nil, nil),
total: prometheus.NewDesc("slurm_gpus_total", "Total GPUs", nil, nil),
utilization: prometheus.NewDesc("slurm_gpus_utilization", "Total GPU utilization", nil, nil),
}
}
type GPUsCollector struct {
alloc *prometheus.Desc
idle *prometheus.Desc
other *prometheus.Desc
total *prometheus.Desc
utilization *prometheus.Desc
}
// Send all metric descriptions
func (cc *GPUsCollector) Describe(ch chan<- *prometheus.Desc) {
ch <- cc.alloc
ch <- cc.idle
ch <- cc.other
ch <- cc.total
ch <- cc.utilization
}
func (cc *GPUsCollector) Collect(ch chan<- prometheus.Metric) {
cm := GPUsGetMetrics()
ch <- prometheus.MustNewConstMetric(cc.alloc, prometheus.GaugeValue, cm.alloc)
ch <- prometheus.MustNewConstMetric(cc.idle, prometheus.GaugeValue, cm.idle)
ch <- prometheus.MustNewConstMetric(cc.other, prometheus.GaugeValue, cm.other)
ch <- prometheus.MustNewConstMetric(cc.total, prometheus.GaugeValue, cm.total)
ch <- prometheus.MustNewConstMetric(cc.utilization, prometheus.GaugeValue, cm.utilization)
}