mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-12-25 23:19:06 +01:00
Split InfiniBand metric collector, one using
/sys filesystem reads and one using perfquery.
This commit is contained in:
parent
76884c3380
commit
7077452a5d
@ -14,23 +14,24 @@ import (
|
|||||||
// Map of all available metric collectors
|
// Map of all available metric collectors
|
||||||
var AvailableCollectors = map[string]MetricCollector{
|
var AvailableCollectors = map[string]MetricCollector{
|
||||||
|
|
||||||
"likwid": new(LikwidCollector),
|
"likwid": new(LikwidCollector),
|
||||||
"loadavg": new(LoadavgCollector),
|
"loadavg": new(LoadavgCollector),
|
||||||
"memstat": new(MemstatCollector),
|
"memstat": new(MemstatCollector),
|
||||||
"netstat": new(NetstatCollector),
|
"netstat": new(NetstatCollector),
|
||||||
"ibstat": new(InfinibandCollector),
|
"ibstat": new(InfinibandCollector),
|
||||||
"lustrestat": new(LustreCollector),
|
"ibstat_perfquery": new(InfinibandPerfQueryCollector),
|
||||||
"cpustat": new(CpustatCollector),
|
"lustrestat": new(LustreCollector),
|
||||||
"topprocs": new(TopProcsCollector),
|
"cpustat": new(CpustatCollector),
|
||||||
"nvidia": new(NvidiaCollector),
|
"topprocs": new(TopProcsCollector),
|
||||||
"customcmd": new(CustomCmdCollector),
|
"nvidia": new(NvidiaCollector),
|
||||||
"diskstat": new(DiskstatCollector),
|
"customcmd": new(CustomCmdCollector),
|
||||||
"tempstat": new(TempCollector),
|
"diskstat": new(DiskstatCollector),
|
||||||
"ipmistat": new(IpmiCollector),
|
"tempstat": new(TempCollector),
|
||||||
"gpfs": new(GpfsCollector),
|
"ipmistat": new(IpmiCollector),
|
||||||
"cpufreq": new(CPUFreqCollector),
|
"gpfs": new(GpfsCollector),
|
||||||
"cpufreq_cpuinfo": new(CPUFreqCpuInfoCollector),
|
"cpufreq": new(CPUFreqCollector),
|
||||||
"nfsstat": new(NfsCollector),
|
"cpufreq_cpuinfo": new(CPUFreqCpuInfoCollector),
|
||||||
|
"nfsstat": new(NfsCollector),
|
||||||
}
|
}
|
||||||
|
|
||||||
type collectorManager struct {
|
type collectorManager struct {
|
||||||
|
@ -3,10 +3,9 @@ package collectors
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
|
||||||
"os/exec"
|
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
// "os"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -15,35 +14,25 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const IB_BASEPATH = `/sys/class/infiniband/`
|
||||||
IBBASEPATH = `/sys/class/infiniband/`
|
|
||||||
PERFQUERY = `/usr/sbin/perfquery`
|
|
||||||
)
|
|
||||||
|
|
||||||
type InfinibandCollectorConfig struct {
|
|
||||||
ExcludeDevices []string `json:"exclude_devices,omitempty"`
|
|
||||||
PerfQueryPath string `json:"perfquery_path"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type InfinibandCollector struct {
|
type InfinibandCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
tags map[string]string
|
tags map[string]string
|
||||||
lids map[string]map[string]string
|
lids map[string]map[string]string
|
||||||
config InfinibandCollectorConfig
|
config struct {
|
||||||
use_perfquery bool
|
ExcludeDevices []string `json:"exclude_devices,omitempty"`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *InfinibandCollector) Help() {
|
func (m *InfinibandCollector) Help() {
|
||||||
fmt.Println("This collector includes all devices that can be found below ", IBBASEPATH)
|
fmt.Println("This collector includes all devices that can be found below ", IB_BASEPATH)
|
||||||
fmt.Println("and where any of the ports provides a 'lid' file (glob ", IBBASEPATH, "/<dev>/ports/<port>/lid).")
|
fmt.Println("and where any of the ports provides a 'lid' file (glob ", IB_BASEPATH, "/<dev>/ports/<port>/lid).")
|
||||||
fmt.Println("The devices can be filtered with the 'exclude_devices' option in the configuration.")
|
fmt.Println("The devices can be filtered with the 'exclude_devices' option in the configuration.")
|
||||||
fmt.Println("For each found LIDs the collector calls the 'perfquery' command")
|
fmt.Println("For each found LIDs the collector calls the 'perfquery' command")
|
||||||
fmt.Println("The path to the 'perfquery' command can be configured with the 'perfquery_path' option")
|
|
||||||
fmt.Println("in the configuration")
|
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
fmt.Println("Full configuration object:")
|
fmt.Println("Full configuration object:")
|
||||||
fmt.Println("\"ibstat\" : {")
|
fmt.Println("\"ibstat\" : {")
|
||||||
fmt.Println(" \"perfquery_path\" : \"path/to/perfquery\" # if omitted, it searches in $PATH")
|
|
||||||
fmt.Println(" \"exclude_devices\" : [\"dev1\"]")
|
fmt.Println(" \"exclude_devices\" : [\"dev1\"]")
|
||||||
fmt.Println("}")
|
fmt.Println("}")
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
@ -57,7 +46,6 @@ func (m *InfinibandCollector) Help() {
|
|||||||
func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
||||||
var err error
|
var err error
|
||||||
m.name = "InfinibandCollector"
|
m.name = "InfinibandCollector"
|
||||||
m.use_perfquery = false
|
|
||||||
m.setup()
|
m.setup()
|
||||||
m.meta = map[string]string{"source": m.name, "group": "Network"}
|
m.meta = map[string]string{"source": m.name, "group": "Network"}
|
||||||
m.tags = map[string]string{"type": "node"}
|
m.tags = map[string]string{"type": "node"}
|
||||||
@ -67,19 +55,13 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(m.config.PerfQueryPath) == 0 {
|
|
||||||
path, err := exec.LookPath("perfquery")
|
|
||||||
if err == nil {
|
|
||||||
m.config.PerfQueryPath = path
|
|
||||||
}
|
|
||||||
}
|
|
||||||
m.lids = make(map[string]map[string]string)
|
m.lids = make(map[string]map[string]string)
|
||||||
p := fmt.Sprintf("%s/*/ports/*/lid", string(IBBASEPATH))
|
p := fmt.Sprintf("%s/*/ports/*/lid", string(IB_BASEPATH))
|
||||||
files, err := filepath.Glob(p)
|
files, err := filepath.Glob(p)
|
||||||
for _, f := range files {
|
for _, f := range files {
|
||||||
lid, err := ioutil.ReadFile(f)
|
lid, err := ioutil.ReadFile(f)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
plist := strings.Split(strings.Replace(f, string(IBBASEPATH), "", -1), "/")
|
plist := strings.Split(strings.Replace(f, string(IB_BASEPATH), "", -1), "/")
|
||||||
skip := false
|
skip := false
|
||||||
for _, d := range m.config.ExcludeDevices {
|
for _, d := range m.config.ExcludeDevices {
|
||||||
if d == plist[0] {
|
if d == plist[0] {
|
||||||
@ -93,152 +75,11 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, ports := range m.lids {
|
if len(m.lids) == 0 {
|
||||||
for port, lid := range ports {
|
return errors.New("No usable IB devices")
|
||||||
args := fmt.Sprintf("-r %s %s 0xf000", lid, port)
|
|
||||||
command := exec.Command(m.config.PerfQueryPath, args)
|
|
||||||
command.Wait()
|
|
||||||
_, err := command.Output()
|
|
||||||
if err == nil {
|
|
||||||
m.use_perfquery = true
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(m.lids) > 0 {
|
m.init = true
|
||||||
m.init = true
|
|
||||||
} else {
|
|
||||||
err = errors.New("No usable devices")
|
|
||||||
}
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *InfinibandCollector) doPerfQuery(cmd string, dev string, lid string, port string, tags map[string]string, output chan lp.CCMetric) error {
|
|
||||||
|
|
||||||
args := fmt.Sprintf("-r %s %s 0xf000", lid, port)
|
|
||||||
command := exec.Command(cmd, args)
|
|
||||||
command.Wait()
|
|
||||||
stdout, err := command.Output()
|
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
ll := strings.Split(string(stdout), "\n")
|
|
||||||
|
|
||||||
for _, line := range ll {
|
|
||||||
if strings.HasPrefix(line, "PortRcvData") || strings.HasPrefix(line, "RcvData") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_recv", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "PortXmitData") || strings.HasPrefix(line, "XmtData") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_xmit", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "PortRcvPkts") || strings.HasPrefix(line, "RcvPkts") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "PortXmitPkts") || strings.HasPrefix(line, "XmtPkts") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "PortRcvPkts") || strings.HasPrefix(line, "RcvPkts") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(line, "PortXmitPkts") || strings.HasPrefix(line, "XmtPkts") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
v, err := strconv.ParseFloat(lv[1], 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *InfinibandCollector) doSysfsRead(dev string, lid string, port string, tags map[string]string, output chan lp.CCMetric) error {
|
|
||||||
path := fmt.Sprintf("%s/%s/ports/%s/counters/", string(IBBASEPATH), dev, port)
|
|
||||||
buffer, err := ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_data", path))
|
|
||||||
if err == nil {
|
|
||||||
data := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
v, err := strconv.ParseFloat(data, 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_recv", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_data", path))
|
|
||||||
if err == nil {
|
|
||||||
data := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
v, err := strconv.ParseFloat(data, 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_xmit", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_packets", path))
|
|
||||||
if err == nil {
|
|
||||||
data := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
v, err := strconv.ParseFloat(data, 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_packets", path))
|
|
||||||
if err == nil {
|
|
||||||
data := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
v, err := strconv.ParseFloat(data, 64)
|
|
||||||
if err == nil {
|
|
||||||
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
output <- y
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -247,11 +88,55 @@ func (m *InfinibandCollector) Read(interval time.Duration, output chan lp.CCMetr
|
|||||||
if m.init {
|
if m.init {
|
||||||
for dev, ports := range m.lids {
|
for dev, ports := range m.lids {
|
||||||
for port, lid := range ports {
|
for port, lid := range ports {
|
||||||
tags := map[string]string{"type": "node", "device": dev, "port": port}
|
tags := map[string]string{
|
||||||
if m.use_perfquery {
|
"type": "node",
|
||||||
m.doPerfQuery(m.config.PerfQueryPath, dev, lid, port, tags, output)
|
"device": dev,
|
||||||
} else {
|
"port": port,
|
||||||
m.doSysfsRead(dev, lid, port, tags, output)
|
"lid": lid}
|
||||||
|
path := fmt.Sprintf("%s/%s/ports/%s/counters/", string(IB_BASEPATH), dev, port)
|
||||||
|
buffer, err := ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_data", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_data", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_packets", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_packets", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
250
collectors/infinibandPerfQueryMetric.go
Normal file
250
collectors/infinibandPerfQueryMetric.go
Normal file
@ -0,0 +1,250 @@
|
|||||||
|
package collectors
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
|
"os/exec"
|
||||||
|
|
||||||
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
|
|
||||||
|
// "os"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"path/filepath"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
const PERFQUERY = `/usr/sbin/perfquery`
|
||||||
|
|
||||||
|
type InfinibandPerfQueryCollector struct {
|
||||||
|
metricCollector
|
||||||
|
tags map[string]string
|
||||||
|
lids map[string]map[string]string
|
||||||
|
config struct {
|
||||||
|
ExcludeDevices []string `json:"exclude_devices,omitempty"`
|
||||||
|
PerfQueryPath string `json:"perfquery_path"`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *InfinibandPerfQueryCollector) Help() {
|
||||||
|
fmt.Println("This collector includes all devices that can be found below ", IB_BASEPATH)
|
||||||
|
fmt.Println("and where any of the ports provides a 'lid' file (glob ", IB_BASEPATH, "/<dev>/ports/<port>/lid).")
|
||||||
|
fmt.Println("The devices can be filtered with the 'exclude_devices' option in the configuration.")
|
||||||
|
fmt.Println("For each found LIDs the collector calls the 'perfquery' command")
|
||||||
|
fmt.Println("The path to the 'perfquery' command can be configured with the 'perfquery_path' option")
|
||||||
|
fmt.Println("in the configuration")
|
||||||
|
fmt.Println("")
|
||||||
|
fmt.Println("Full configuration object:")
|
||||||
|
fmt.Println("\"ibstat\" : {")
|
||||||
|
fmt.Println(" \"perfquery_path\" : \"path/to/perfquery\" # if omitted, it searches in $PATH")
|
||||||
|
fmt.Println(" \"exclude_devices\" : [\"dev1\"]")
|
||||||
|
fmt.Println("}")
|
||||||
|
fmt.Println("")
|
||||||
|
fmt.Println("Metrics:")
|
||||||
|
fmt.Println("- ib_recv")
|
||||||
|
fmt.Println("- ib_xmit")
|
||||||
|
fmt.Println("- ib_recv_pkts")
|
||||||
|
fmt.Println("- ib_xmit_pkts")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *InfinibandPerfQueryCollector) Init(config json.RawMessage) error {
|
||||||
|
var err error
|
||||||
|
m.name = "InfinibandCollectorPerfQuery"
|
||||||
|
m.setup()
|
||||||
|
m.meta = map[string]string{"source": m.name, "group": "Network"}
|
||||||
|
m.tags = map[string]string{"type": "node"}
|
||||||
|
if len(config) > 0 {
|
||||||
|
err = json.Unmarshal(config, &m.config)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(m.config.PerfQueryPath) == 0 {
|
||||||
|
path, err := exec.LookPath("perfquery")
|
||||||
|
if err == nil {
|
||||||
|
m.config.PerfQueryPath = path
|
||||||
|
}
|
||||||
|
}
|
||||||
|
m.lids = make(map[string]map[string]string)
|
||||||
|
p := fmt.Sprintf("%s/*/ports/*/lid", string(IB_BASEPATH))
|
||||||
|
files, err := filepath.Glob(p)
|
||||||
|
for _, f := range files {
|
||||||
|
lid, err := ioutil.ReadFile(f)
|
||||||
|
if err == nil {
|
||||||
|
plist := strings.Split(strings.Replace(f, string(IB_BASEPATH), "", -1), "/")
|
||||||
|
skip := false
|
||||||
|
for _, d := range m.config.ExcludeDevices {
|
||||||
|
if d == plist[0] {
|
||||||
|
skip = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !skip {
|
||||||
|
m.lids[plist[0]] = make(map[string]string)
|
||||||
|
m.lids[plist[0]][plist[2]] = string(lid)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, ports := range m.lids {
|
||||||
|
for port, lid := range ports {
|
||||||
|
args := fmt.Sprintf("-r %s %s 0xf000", lid, port)
|
||||||
|
command := exec.Command(m.config.PerfQueryPath, args)
|
||||||
|
command.Wait()
|
||||||
|
_, err := command.Output()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("Failed to execute %s: %v", m.config.PerfQueryPath, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(m.lids) == 0 {
|
||||||
|
return errors.New("No usable IB devices")
|
||||||
|
}
|
||||||
|
|
||||||
|
m.init = true
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *InfinibandPerfQueryCollector) doPerfQuery(cmd string, dev string, lid string, port string, tags map[string]string, output chan lp.CCMetric) error {
|
||||||
|
|
||||||
|
args := fmt.Sprintf("-r %s %s 0xf000", lid, port)
|
||||||
|
command := exec.Command(cmd, args)
|
||||||
|
command.Wait()
|
||||||
|
stdout, err := command.Output()
|
||||||
|
if err != nil {
|
||||||
|
log.Print(err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ll := strings.Split(string(stdout), "\n")
|
||||||
|
|
||||||
|
for _, line := range ll {
|
||||||
|
if strings.HasPrefix(line, "PortRcvData") || strings.HasPrefix(line, "RcvData") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "PortXmitData") || strings.HasPrefix(line, "XmtData") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "PortRcvPkts") || strings.HasPrefix(line, "RcvPkts") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "PortXmitPkts") || strings.HasPrefix(line, "XmtPkts") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "PortRcvPkts") || strings.HasPrefix(line, "RcvPkts") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(line, "PortXmitPkts") || strings.HasPrefix(line, "XmtPkts") {
|
||||||
|
lv := strings.Fields(line)
|
||||||
|
v, err := strconv.ParseFloat(lv[1], 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *InfinibandPerfQueryCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
||||||
|
|
||||||
|
if m.init {
|
||||||
|
for dev, ports := range m.lids {
|
||||||
|
for port, lid := range ports {
|
||||||
|
tags := map[string]string{
|
||||||
|
"type": "node",
|
||||||
|
"device": dev,
|
||||||
|
"port": port,
|
||||||
|
"lid": lid}
|
||||||
|
path := fmt.Sprintf("%s/%s/ports/%s/counters/", string(IB_BASEPATH), dev, port)
|
||||||
|
buffer, err := ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_data", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_data", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_rcv_packets", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_recv_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer, err = ioutil.ReadFile(fmt.Sprintf("%s/port_xmit_packets", path))
|
||||||
|
if err == nil {
|
||||||
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
|
v, err := strconv.ParseFloat(data, 64)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("ib_xmit_pkts", tags, m.meta, map[string]interface{}{"value": float64(v)}, time.Now())
|
||||||
|
if err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *InfinibandPerfQueryCollector) Close() {
|
||||||
|
m.init = false
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user