forked from vpenso/prometheus-slurm-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sshare.go
86 lines (74 loc) · 2.82 KB
/
sshare.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
/* Copyright 2021 Victor Penso
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 (
"io/ioutil"
"os/exec"
"log"
"strings"
"strconv"
"github.com/prometheus/client_golang/prometheus"
)
func FairShareData() []byte {
cmd := exec.Command( "sshare", "-a", "-n", "-P", "-o", "user,fairshare" )
stdout, err := cmd.StdoutPipe()
if err != nil {
log.Fatal(err)
}
if err := cmd.Start(); err != nil {
log.Fatal(err)
}
out, _ := ioutil.ReadAll(stdout)
if err := cmd.Wait(); err != nil {
log.Fatal(err)
}
return out
}
type FairShareMetrics struct {
fairshare float64
}
func ParseFairShareMetrics() map[string]*FairShareMetrics {
accounts := make(map[string]*FairShareMetrics)
lines := strings.Split(string(FairShareData()), "\n")
for _, line := range lines {
if ! strings.HasPrefix(line," ") {
if strings.Contains(line,"|") {
account := strings.Trim(strings.Split(line,"|")[0]," ")
_,key := accounts[account]
if !key {
accounts[account] = &FairShareMetrics{0}
}
fairshare,_ := strconv.ParseFloat(strings.Split(line,"|")[1],64)
accounts[account].fairshare = fairshare
}
}
}
return accounts
}
type FairShareCollector struct {
fairshare *prometheus.Desc
}
func NewFairShareCollector() *FairShareCollector {
labels := []string{"account"}
return &FairShareCollector{
fairshare: prometheus.NewDesc("slurm_account_fairshare","FairShare for account" , labels,nil),
}
}
func (fsc *FairShareCollector) Describe(ch chan<- *prometheus.Desc) {
ch <- fsc.fairshare
}
func (fsc *FairShareCollector) Collect(ch chan<- prometheus.Metric) {
fsm := ParseFairShareMetrics()
for f := range fsm {
ch <- prometheus.MustNewConstMetric(fsc.fairshare, prometheus.GaugeValue, fsm[f].fairshare, f)
}
}